aboutsummaryrefslogtreecommitdiffstats
path: root/Word Count
AgeCommit message (Collapse)Author
2018-11-21Add license (GNU GPLv3+)Teddy Wing
2018-11-21AppDelegate.applescript: Fix whitespaceTeddy Wing
Xcode was set to 4-space tabs, but the template-generated AppDelegate used tabs. Switch over to tabs.
2018-10-08MainMenu.xib: Make filename label the width of the windowTeddy Wing
Otherwise names that were larger than "No File" would be cut off.
2018-10-08Close the application when the window is closed with the close buttonTeddy Wing
2018-10-08MainMenu.xib: Change filename label to "No File"Teddy Wing
Makes it clear that the application wasn't able to find a file to read from.
2018-10-08MainMenu.xib: Remove non-essentials from menu barTeddy Wing
2018-10-08MainMenu.xib: Remove Auto LayoutTeddy Wing
Fix this error: error: Auto Layout before OS X 10.7 by un-checking the "Use Auto Layout" check box in Interface Builder.
2018-10-08Fix missing nib file from bd8933f4a930150cc0f9fa8f5f8d5a2c21df96c7Teddy Wing
I accidentally deleted the nib file when disabling internationalisation. When prompted, I had selected the "Move to Trash" option instead of the "Move to English" option, thinking that the non-defined files would get moved and the English one would remain. Not so. This restores the nib file.
2018-10-08Change deployment target to 10.6Teddy Wing
Uncheck the "Use Base Internationalization" check box in the project Info panel as that requires OS 10.8 or higher.
2018-10-08Add a label to display the filename of the document usedTeddy Wing
Provides a way to confirm that the word counter operated on the expected document.
2018-10-08MainMenu.xib: Extend width of count labelsTeddy Wing
Previously they were only a single digit wide. Extend them to reach the right edge of the window to allow large numbers to be displayed correctly.
2018-10-08Update the window with character, word, and paragraph countsTeddy Wing
Turns out you have to call Objective-C methods, weird. Never seen that syntax in AppleScript before. Neat though once you know.
2018-10-08Add basic UITeddy Wing
A single window with an "OK" button and three lines for character, word, and paragraph count.
2018-10-08New AppleScript App initialised from Xcode Version 9.2 (9C40b)Teddy Wing