git.fiddlerwoaroof.com
Browse code

modified: README.md modified: Today Scripts.xcodeproj/project.pbxproj

SamRothCA authored on 29/10/2014 05:39:03
Showing 2 changed files
... ...
@@ -25,3 +25,9 @@ To edit an existing script, click the "action" button to the right of its label.
25 25
 * An interpreter can be speficied using a path to any valid executable (it need not be an "interpreter" at all). The provided script is piped to the interpreter via its standard input.
26 26
 * Today Scripts emulates a 40-column terminal. When running a script, a pseudo-TTY is opened for it, and the standard output and standard error of it is set to that. The `COLUMNS` environment variable for scripts is set to `40`, and `PAGER` is set to `/bin/cat`.
27 27
 * Today Scripts supports all ANSI color sequences; both standard and bright, as well as both foreground and background. The `TERM` environment variable for scripts is set to `ansi`.
28
+
29
+##Special Thanks
30
+
31
+Support for ANSI escape sequences made possible thanks to [Ali Rantakari's ANSIEscapeHelper](http://hasseg.org/ansiEscapeHelper/).
32
+
33
+Icon designed by [Friedrich Preuß](http://phriedrich.de).
... ...
@@ -28,6 +28,7 @@
28 28
 		2265B37819FC51DF000802FB /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 2265B37719FC51DF000802FB /* Images.xcassets */; };
29 29
 		2265CC7319F89D18000802FB /* MainMenu.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2265CC7219F89D18000802FB /* MainMenu.xib */; };
30 30
 		2265CC7619F89D86000802FB /* XPC.xpc in CopyFiles */ = {isa = PBXBuildFile; fileRef = 223F9A4A19F89532000802FB /* XPC.xpc */; settings = {ATTRIBUTES = (RemoveHeadersOnCopy, ); }; };
31
+		2287A09D1A00B294000802FB /* README.md in Sources */ = {isa = PBXBuildFile; fileRef = 2287A09C1A00B294000802FB /* README.md */; };
31 32
 		22A1BFCD1A004D8C000802FB /* Icon Credit.txt in Resources */ = {isa = PBXBuildFile; fileRef = 22A1BFCC1A004D8C000802FB /* Icon Credit.txt */; };
32 33
 /* End PBXBuildFile section */
33 34
 
... ...
@@ -124,6 +125,7 @@
124 125
 		2265B37719FC51DF000802FB /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Images.xcassets; sourceTree = "<group>"; };
125 126
 		2265B37A19FC53CA000802FB /* readme.txt */ = {isa = PBXFileReference; lastKnownFileType = text; path = readme.txt; sourceTree = "<group>"; };
126 127
 		2265CC7219F89D18000802FB /* MainMenu.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = MainMenu.xib; sourceTree = "<group>"; };
128
+		2287A09C1A00B294000802FB /* README.md */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = net.daringfireball.markdown; name = README.md; path = Widget/README.md; sourceTree = "<group>"; };
127 129
 		22A1BFCC1A004D8C000802FB /* Icon Credit.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "Icon Credit.txt"; sourceTree = "<group>"; };
128 130
 /* End PBXFileReference section */
129 131
 
... ...
@@ -156,6 +158,7 @@
156 158
 		223F99FA19F894AE000802FB = {
157 159
 			isa = PBXGroup;
158 160
 			children = (
161
+				2287A09C1A00B294000802FB /* README.md */,
159 162
 				223F9A5B19F895AF000802FB /* TodayScripts.h */,
160 163
 				223F9A5C19F895AF000802FB /* TodayScripts.m */,
161 164
 				223F9A0519F894AE000802FB /* Today Scripts */,
... ...
@@ -420,6 +423,7 @@
420 423
 				223F9A7219F8963C000802FB /* TodayViewController.m in Sources */,
421 424
 				223F9A6C19F8963C000802FB /* AMR_ANSIEscapeHelper.m in Sources */,
422 425
 				223F9A5D19F895AF000802FB /* TodayScripts.m in Sources */,
426
+				2287A09D1A00B294000802FB /* README.md in Sources */,
423 427
 				223F9A6D19F8963C000802FB /* ListRowViewController.m in Sources */,
424 428
 				223F9A6F19F8963C000802FB /* EditViewController.m in Sources */,
425 429
 				223F9A7119F8963C000802FB /* TodayScript.m in Sources */,