Skip to content

Commit ad6ba9a

Browse files
author
Reda Lemeden
committed
Add contact support
1 parent 9b73017 commit ad6ba9a

File tree

5 files changed

+32
-346
lines changed

5 files changed

+32
-346
lines changed

Markoff.xcodeproj/project.pbxproj

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
005103AD1B95BDD0006F04C9 /* Result.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 005103AA1B95BDD0006F04C9 /* Result.framework */; };
1818
005103AE1B95BDD0006F04C9 /* Result.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 005103AA1B95BDD0006F04C9 /* Result.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
1919
0053089F1BCFDB1700BA6B7E /* cmark.entitlements in Resources */ = {isa = PBXBuildFile; fileRef = 0053089E1BCFDB1700BA6B7E /* cmark.entitlements */; };
20+
008847741C6CD0ED004347A5 /* Support Controller.swift in Sources */ = {isa = PBXBuildFile; fileRef = 008847731C6CD0ED004347A5 /* Support Controller.swift */; };
2021
009627881B97384300E0A79D /* Template in Resources */ = {isa = PBXBuildFile; fileRef = 009627871B97384300E0A79D /* Template */; };
2122
0096278A1B975C6700E0A79D /* Regex.swift in Sources */ = {isa = PBXBuildFile; fileRef = 009627891B975C6700E0A79D /* Regex.swift */; };
2223
009750141C6B42C700D349A0 /* PreferencesView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 009750131C6B42C700D349A0 /* PreferencesView.swift */; };
@@ -58,6 +59,7 @@
5859
005103A91B95BDD0006F04C9 /* ReactiveCocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = ReactiveCocoa.framework; path = ../Carthage/Build/Mac/ReactiveCocoa.framework; sourceTree = "<group>"; };
5960
005103AA1B95BDD0006F04C9 /* Result.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Result.framework; path = ../Carthage/Build/Mac/Result.framework; sourceTree = "<group>"; };
6061
0053089E1BCFDB1700BA6B7E /* cmark.entitlements */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = cmark.entitlements; sourceTree = "<group>"; };
62+
008847731C6CD0ED004347A5 /* Support Controller.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Support Controller.swift"; sourceTree = "<group>"; };
6163
009627871B97384300E0A79D /* Template */ = {isa = PBXFileReference; lastKnownFileType = folder; path = Template; sourceTree = SOURCE_ROOT; };
6264
009627891B975C6700E0A79D /* Regex.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Regex.swift; sourceTree = "<group>"; };
6365
009750131C6B42C700D349A0 /* PreferencesView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = PreferencesView.swift; sourceTree = "<group>"; };
@@ -216,6 +218,7 @@
216218
009F10271B94657D0004EA76 /* MarkdownDocument.swift */,
217219
000516FA1B948CD400BCFD09 /* MarkdownParser.swift */,
218220
009750171C6B42EB00D349A0 /* PreferencesController.swift */,
221+
008847731C6CD0ED004347A5 /* Support Controller.swift */,
219222
);
220223
name = Models;
221224
sourceTree = "<group>";
@@ -322,6 +325,7 @@
322325
009750141C6B42C700D349A0 /* PreferencesView.swift in Sources */,
323326
009750161C6B42E300D349A0 /* Editor.swift in Sources */,
324327
005103A61B95B13F006F04C9 /* WindowController.swift in Sources */,
328+
008847741C6CD0ED004347A5 /* Support Controller.swift in Sources */,
325329
00A2ABBC1C69E4B20099A7E2 /* String.swift in Sources */,
326330
0097501A1C6B432A00D349A0 /* NSUserDefaults.swift in Sources */,
327331
00F47CA51B99BF4500663B03 /* FileWatcher.swift in Sources */,

Markoff/AppDelegate.swift

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,8 @@ class AppDelegate: NSObject, NSApplicationDelegate {
55
func applicationDidFinishLaunching(aNotification: NSNotification) {
66
PreferencesController().registerDefaults()
77
}
8+
9+
@IBAction func contactSupport(sender: AnyObject) {
10+
SupportController().contactSupport()
11+
}
812
}

0 commit comments

Comments
 (0)