Skip to content

Commit

Permalink
Add contact support
Browse files Browse the repository at this point in the history
  • Loading branch information
Reda Lemeden committed Feb 11, 2016
1 parent 9b73017 commit ad6ba9a
Show file tree
Hide file tree
Showing 5 changed files with 32 additions and 346 deletions.
4 changes: 4 additions & 0 deletions Markoff.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
005103AD1B95BDD0006F04C9 /* Result.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 005103AA1B95BDD0006F04C9 /* Result.framework */; };
005103AE1B95BDD0006F04C9 /* Result.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 005103AA1B95BDD0006F04C9 /* Result.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
0053089F1BCFDB1700BA6B7E /* cmark.entitlements in Resources */ = {isa = PBXBuildFile; fileRef = 0053089E1BCFDB1700BA6B7E /* cmark.entitlements */; };
008847741C6CD0ED004347A5 /* Support Controller.swift in Sources */ = {isa = PBXBuildFile; fileRef = 008847731C6CD0ED004347A5 /* Support Controller.swift */; };
009627881B97384300E0A79D /* Template in Resources */ = {isa = PBXBuildFile; fileRef = 009627871B97384300E0A79D /* Template */; };
0096278A1B975C6700E0A79D /* Regex.swift in Sources */ = {isa = PBXBuildFile; fileRef = 009627891B975C6700E0A79D /* Regex.swift */; };
009750141C6B42C700D349A0 /* PreferencesView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 009750131C6B42C700D349A0 /* PreferencesView.swift */; };
Expand Down Expand Up @@ -58,6 +59,7 @@
005103A91B95BDD0006F04C9 /* ReactiveCocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = ReactiveCocoa.framework; path = ../Carthage/Build/Mac/ReactiveCocoa.framework; sourceTree = "<group>"; };
005103AA1B95BDD0006F04C9 /* Result.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Result.framework; path = ../Carthage/Build/Mac/Result.framework; sourceTree = "<group>"; };
0053089E1BCFDB1700BA6B7E /* cmark.entitlements */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = cmark.entitlements; sourceTree = "<group>"; };
008847731C6CD0ED004347A5 /* Support Controller.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Support Controller.swift"; sourceTree = "<group>"; };
009627871B97384300E0A79D /* Template */ = {isa = PBXFileReference; lastKnownFileType = folder; path = Template; sourceTree = SOURCE_ROOT; };
009627891B975C6700E0A79D /* Regex.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Regex.swift; sourceTree = "<group>"; };
009750131C6B42C700D349A0 /* PreferencesView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = PreferencesView.swift; sourceTree = "<group>"; };
Expand Down Expand Up @@ -216,6 +218,7 @@
009F10271B94657D0004EA76 /* MarkdownDocument.swift */,
000516FA1B948CD400BCFD09 /* MarkdownParser.swift */,
009750171C6B42EB00D349A0 /* PreferencesController.swift */,
008847731C6CD0ED004347A5 /* Support Controller.swift */,
);
name = Models;
sourceTree = "<group>";
Expand Down Expand Up @@ -322,6 +325,7 @@
009750141C6B42C700D349A0 /* PreferencesView.swift in Sources */,
009750161C6B42E300D349A0 /* Editor.swift in Sources */,
005103A61B95B13F006F04C9 /* WindowController.swift in Sources */,
008847741C6CD0ED004347A5 /* Support Controller.swift in Sources */,
00A2ABBC1C69E4B20099A7E2 /* String.swift in Sources */,
0097501A1C6B432A00D349A0 /* NSUserDefaults.swift in Sources */,
00F47CA51B99BF4500663B03 /* FileWatcher.swift in Sources */,
Expand Down
4 changes: 4 additions & 0 deletions Markoff/AppDelegate.swift
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,8 @@ class AppDelegate: NSObject, NSApplicationDelegate {
func applicationDidFinishLaunching(aNotification: NSNotification) {
PreferencesController().registerDefaults()
}

@IBAction func contactSupport(sender: AnyObject) {
SupportController().contactSupport()
}
}
Loading

0 comments on commit ad6ba9a

Please sign in to comment.