├── .gitignore ├── 0.tiff ├── 1.tiff ├── 2.tiff ├── 3.tiff ├── AddAction.png ├── BookmarkPreferences.tiff ├── Build.md ├── ClickBoxPref.h ├── ClickBoxPref.m ├── ClickBoxPref.tiff ├── ClickBox_Prefix.h ├── CornerClick.xcodeproj └── project.pbxproj ├── CornerClickIcon.tiff ├── CornerClickSupport.h ├── CornerClickSupport.m ├── English.lproj ├── ClickBoxPref.xib ├── InfoPlist.strings ├── Information.rtf ├── Localizable.strings ├── Readme.rtf ├── Uninstall.rtf └── quickFiles.plist ├── FileActionMenuItem.h ├── FileActionMenuItem.m ├── French.lproj ├── ClickBoxPref.strings ├── ClickBoxPref.xib ├── InfoPlist.strings ├── Information.rtf ├── Localizable.strings └── Readme.rtf ├── German.lproj ├── ClickBoxPref.strings ├── ClickBoxPref.xib ├── Deinstallieren.rtf ├── Information.rtf ├── Localizable.strings └── Readme.rtf ├── HideAppIcon.png ├── HideOthersIcon.png ├── History.md ├── Info-ClickBox__Upgraded_.plist ├── Info-CornerClickBG__Upgraded_.plist ├── Japanese.lproj ├── ClickBoxPref.nib │ ├── classes.nib │ ├── info.nib │ └── keyedobjects.nib ├── InfoPlist.strings ├── Localizable.strings └── Readme.rtf ├── LICENSE ├── Logo.tiff ├── Makefile ├── Readme.md ├── RemoveAction.png ├── Spanish.lproj ├── ClickBoxPref.strings ├── ClickBoxPref.xib ├── InfoPlist.strings ├── Information.rtf ├── Localizable.strings ├── Readme.rtf └── Uninstall.rtf ├── Todo.oo3 ├── Version History.md ├── WindowVous.tif ├── clickBG ├── BubbleAction.h ├── BubbleAction.m ├── BubbleActionsList.h ├── BubbleActionsList.m ├── BubbleView.h ├── BubbleView.m ├── ClickAction.h ├── ClickAction.m ├── ClickApp.h ├── ClickApp.m ├── ClickView.h ├── ClickView.m ├── ClickWindow.h ├── ClickWindow.m ├── Clicker.h ├── Clicker.m ├── CornerClickBG_Prefix.h ├── English.lproj │ ├── BookmarkPreferences.tiff │ ├── InfoPlist.strings │ └── MainMenu.nib │ │ ├── classes.nib │ │ ├── info.nib │ │ └── objects.nib ├── GrayView.h ├── GrayView.m └── main.m ├── common_prefix.h ├── dmg-source └── sample scripts │ ├── Next Track in iTunes.applescript │ ├── Play Pause iTunes.applescript │ └── iTunes Previous Track.applescript ├── extra stuff ├── CornerClick.icns ├── CornerClick.jpg ├── CornerClick.tiff ├── icon graphics │ ├── 128x128.png │ ├── 32x32.png │ └── 48x48.png └── web │ └── graphics │ └── corner hilight.xcf ├── production └── CornerClick.dmg ├── scripts └── addcp.pl ├── transbuild ├── Makefile.old.txt ├── README ├── exportstrings.pl ├── makenib.pl ├── mergeids.pl ├── mergestrings.pl └── transstrings.pl ├── updateversion.sh └── zh_TW.lproj ├── ClickBoxPref.strings ├── ClickBoxPref.xib ├── Information.rtf ├── Localizable.strings └── Readme.rtf /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | -------------------------------------------------------------------------------- /0.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gschueler/CornerClick/HEAD/0.tiff -------------------------------------------------------------------------------- /1.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gschueler/CornerClick/HEAD/1.tiff -------------------------------------------------------------------------------- /2.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gschueler/CornerClick/HEAD/2.tiff -------------------------------------------------------------------------------- /3.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gschueler/CornerClick/HEAD/3.tiff -------------------------------------------------------------------------------- /AddAction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gschueler/CornerClick/HEAD/AddAction.png -------------------------------------------------------------------------------- /BookmarkPreferences.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gschueler/CornerClick/HEAD/BookmarkPreferences.tiff -------------------------------------------------------------------------------- /Build.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gschueler/CornerClick/HEAD/Build.md -------------------------------------------------------------------------------- /ClickBoxPref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gschueler/CornerClick/HEAD/ClickBoxPref.h -------------------------------------------------------------------------------- /ClickBoxPref.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gschueler/CornerClick/HEAD/ClickBoxPref.m -------------------------------------------------------------------------------- /ClickBoxPref.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gschueler/CornerClick/HEAD/ClickBoxPref.tiff -------------------------------------------------------------------------------- /ClickBox_Prefix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gschueler/CornerClick/HEAD/ClickBox_Prefix.h -------------------------------------------------------------------------------- /CornerClick.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gschueler/CornerClick/HEAD/CornerClick.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /CornerClickIcon.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gschueler/CornerClick/HEAD/CornerClickIcon.tiff -------------------------------------------------------------------------------- /CornerClickSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gschueler/CornerClick/HEAD/CornerClickSupport.h -------------------------------------------------------------------------------- /CornerClickSupport.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gschueler/CornerClick/HEAD/CornerClickSupport.m -------------------------------------------------------------------------------- /English.lproj/ClickBoxPref.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gschueler/CornerClick/HEAD/English.lproj/ClickBoxPref.xib -------------------------------------------------------------------------------- /English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gschueler/CornerClick/HEAD/English.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /English.lproj/Information.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gschueler/CornerClick/HEAD/English.lproj/Information.rtf -------------------------------------------------------------------------------- /English.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gschueler/CornerClick/HEAD/English.lproj/Localizable.strings -------------------------------------------------------------------------------- /English.lproj/Readme.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gschueler/CornerClick/HEAD/English.lproj/Readme.rtf -------------------------------------------------------------------------------- /English.lproj/Uninstall.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gschueler/CornerClick/HEAD/English.lproj/Uninstall.rtf -------------------------------------------------------------------------------- /English.lproj/quickFiles.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gschueler/CornerClick/HEAD/English.lproj/quickFiles.plist -------------------------------------------------------------------------------- /FileActionMenuItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gschueler/CornerClick/HEAD/FileActionMenuItem.h -------------------------------------------------------------------------------- /FileActionMenuItem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gschueler/CornerClick/HEAD/FileActionMenuItem.m -------------------------------------------------------------------------------- /French.lproj/ClickBoxPref.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gschueler/CornerClick/HEAD/French.lproj/ClickBoxPref.strings -------------------------------------------------------------------------------- /French.lproj/ClickBoxPref.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gschueler/CornerClick/HEAD/French.lproj/ClickBoxPref.xib -------------------------------------------------------------------------------- /French.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gschueler/CornerClick/HEAD/French.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /French.lproj/Information.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gschueler/CornerClick/HEAD/French.lproj/Information.rtf -------------------------------------------------------------------------------- /French.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gschueler/CornerClick/HEAD/French.lproj/Localizable.strings -------------------------------------------------------------------------------- /French.lproj/Readme.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gschueler/CornerClick/HEAD/French.lproj/Readme.rtf -------------------------------------------------------------------------------- /German.lproj/ClickBoxPref.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gschueler/CornerClick/HEAD/German.lproj/ClickBoxPref.strings -------------------------------------------------------------------------------- /German.lproj/ClickBoxPref.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gschueler/CornerClick/HEAD/German.lproj/ClickBoxPref.xib -------------------------------------------------------------------------------- /German.lproj/Deinstallieren.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gschueler/CornerClick/HEAD/German.lproj/Deinstallieren.rtf -------------------------------------------------------------------------------- /German.lproj/Information.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gschueler/CornerClick/HEAD/German.lproj/Information.rtf -------------------------------------------------------------------------------- /German.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gschueler/CornerClick/HEAD/German.lproj/Localizable.strings -------------------------------------------------------------------------------- /German.lproj/Readme.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gschueler/CornerClick/HEAD/German.lproj/Readme.rtf -------------------------------------------------------------------------------- /HideAppIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gschueler/CornerClick/HEAD/HideAppIcon.png -------------------------------------------------------------------------------- /HideOthersIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gschueler/CornerClick/HEAD/HideOthersIcon.png -------------------------------------------------------------------------------- /History.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gschueler/CornerClick/HEAD/History.md -------------------------------------------------------------------------------- /Info-ClickBox__Upgraded_.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gschueler/CornerClick/HEAD/Info-ClickBox__Upgraded_.plist -------------------------------------------------------------------------------- /Info-CornerClickBG__Upgraded_.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gschueler/CornerClick/HEAD/Info-CornerClickBG__Upgraded_.plist -------------------------------------------------------------------------------- /Japanese.lproj/ClickBoxPref.nib/classes.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gschueler/CornerClick/HEAD/Japanese.lproj/ClickBoxPref.nib/classes.nib -------------------------------------------------------------------------------- /Japanese.lproj/ClickBoxPref.nib/info.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gschueler/CornerClick/HEAD/Japanese.lproj/ClickBoxPref.nib/info.nib -------------------------------------------------------------------------------- /Japanese.lproj/ClickBoxPref.nib/keyedobjects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gschueler/CornerClick/HEAD/Japanese.lproj/ClickBoxPref.nib/keyedobjects.nib -------------------------------------------------------------------------------- /Japanese.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gschueler/CornerClick/HEAD/Japanese.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Japanese.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gschueler/CornerClick/HEAD/Japanese.lproj/Localizable.strings -------------------------------------------------------------------------------- /Japanese.lproj/Readme.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gschueler/CornerClick/HEAD/Japanese.lproj/Readme.rtf -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gschueler/CornerClick/HEAD/LICENSE -------------------------------------------------------------------------------- /Logo.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gschueler/CornerClick/HEAD/Logo.tiff -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gschueler/CornerClick/HEAD/Makefile -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gschueler/CornerClick/HEAD/Readme.md -------------------------------------------------------------------------------- /RemoveAction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gschueler/CornerClick/HEAD/RemoveAction.png -------------------------------------------------------------------------------- /Spanish.lproj/ClickBoxPref.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gschueler/CornerClick/HEAD/Spanish.lproj/ClickBoxPref.strings -------------------------------------------------------------------------------- /Spanish.lproj/ClickBoxPref.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gschueler/CornerClick/HEAD/Spanish.lproj/ClickBoxPref.xib -------------------------------------------------------------------------------- /Spanish.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gschueler/CornerClick/HEAD/Spanish.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Spanish.lproj/Information.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gschueler/CornerClick/HEAD/Spanish.lproj/Information.rtf -------------------------------------------------------------------------------- /Spanish.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gschueler/CornerClick/HEAD/Spanish.lproj/Localizable.strings -------------------------------------------------------------------------------- /Spanish.lproj/Readme.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gschueler/CornerClick/HEAD/Spanish.lproj/Readme.rtf -------------------------------------------------------------------------------- /Spanish.lproj/Uninstall.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gschueler/CornerClick/HEAD/Spanish.lproj/Uninstall.rtf -------------------------------------------------------------------------------- /Todo.oo3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gschueler/CornerClick/HEAD/Todo.oo3 -------------------------------------------------------------------------------- /Version History.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gschueler/CornerClick/HEAD/Version History.md -------------------------------------------------------------------------------- /WindowVous.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gschueler/CornerClick/HEAD/WindowVous.tif -------------------------------------------------------------------------------- /clickBG/BubbleAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gschueler/CornerClick/HEAD/clickBG/BubbleAction.h -------------------------------------------------------------------------------- /clickBG/BubbleAction.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gschueler/CornerClick/HEAD/clickBG/BubbleAction.m -------------------------------------------------------------------------------- /clickBG/BubbleActionsList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gschueler/CornerClick/HEAD/clickBG/BubbleActionsList.h -------------------------------------------------------------------------------- /clickBG/BubbleActionsList.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gschueler/CornerClick/HEAD/clickBG/BubbleActionsList.m -------------------------------------------------------------------------------- /clickBG/BubbleView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gschueler/CornerClick/HEAD/clickBG/BubbleView.h -------------------------------------------------------------------------------- /clickBG/BubbleView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gschueler/CornerClick/HEAD/clickBG/BubbleView.m -------------------------------------------------------------------------------- /clickBG/ClickAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gschueler/CornerClick/HEAD/clickBG/ClickAction.h -------------------------------------------------------------------------------- /clickBG/ClickAction.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gschueler/CornerClick/HEAD/clickBG/ClickAction.m -------------------------------------------------------------------------------- /clickBG/ClickApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gschueler/CornerClick/HEAD/clickBG/ClickApp.h -------------------------------------------------------------------------------- /clickBG/ClickApp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gschueler/CornerClick/HEAD/clickBG/ClickApp.m -------------------------------------------------------------------------------- /clickBG/ClickView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gschueler/CornerClick/HEAD/clickBG/ClickView.h -------------------------------------------------------------------------------- /clickBG/ClickView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gschueler/CornerClick/HEAD/clickBG/ClickView.m -------------------------------------------------------------------------------- /clickBG/ClickWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gschueler/CornerClick/HEAD/clickBG/ClickWindow.h -------------------------------------------------------------------------------- /clickBG/ClickWindow.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gschueler/CornerClick/HEAD/clickBG/ClickWindow.m -------------------------------------------------------------------------------- /clickBG/Clicker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gschueler/CornerClick/HEAD/clickBG/Clicker.h -------------------------------------------------------------------------------- /clickBG/Clicker.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gschueler/CornerClick/HEAD/clickBG/Clicker.m -------------------------------------------------------------------------------- /clickBG/CornerClickBG_Prefix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gschueler/CornerClick/HEAD/clickBG/CornerClickBG_Prefix.h -------------------------------------------------------------------------------- /clickBG/English.lproj/BookmarkPreferences.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gschueler/CornerClick/HEAD/clickBG/English.lproj/BookmarkPreferences.tiff -------------------------------------------------------------------------------- /clickBG/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gschueler/CornerClick/HEAD/clickBG/English.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /clickBG/English.lproj/MainMenu.nib/classes.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gschueler/CornerClick/HEAD/clickBG/English.lproj/MainMenu.nib/classes.nib -------------------------------------------------------------------------------- /clickBG/English.lproj/MainMenu.nib/info.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gschueler/CornerClick/HEAD/clickBG/English.lproj/MainMenu.nib/info.nib -------------------------------------------------------------------------------- /clickBG/English.lproj/MainMenu.nib/objects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gschueler/CornerClick/HEAD/clickBG/English.lproj/MainMenu.nib/objects.nib -------------------------------------------------------------------------------- /clickBG/GrayView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gschueler/CornerClick/HEAD/clickBG/GrayView.h -------------------------------------------------------------------------------- /clickBG/GrayView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gschueler/CornerClick/HEAD/clickBG/GrayView.m -------------------------------------------------------------------------------- /clickBG/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gschueler/CornerClick/HEAD/clickBG/main.m -------------------------------------------------------------------------------- /common_prefix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gschueler/CornerClick/HEAD/common_prefix.h -------------------------------------------------------------------------------- /dmg-source/sample scripts/Next Track in iTunes.applescript: -------------------------------------------------------------------------------- 1 | tell application "iTunes" 2 | next track 3 | end tell -------------------------------------------------------------------------------- /dmg-source/sample scripts/Play Pause iTunes.applescript: -------------------------------------------------------------------------------- 1 | tell application "iTunes" 2 | playpause 3 | end tell -------------------------------------------------------------------------------- /dmg-source/sample scripts/iTunes Previous Track.applescript: -------------------------------------------------------------------------------- 1 | tell application "iTunes" 2 | previous track 3 | end tell -------------------------------------------------------------------------------- /extra stuff/CornerClick.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gschueler/CornerClick/HEAD/extra stuff/CornerClick.icns -------------------------------------------------------------------------------- /extra stuff/CornerClick.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gschueler/CornerClick/HEAD/extra stuff/CornerClick.jpg -------------------------------------------------------------------------------- /extra stuff/CornerClick.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gschueler/CornerClick/HEAD/extra stuff/CornerClick.tiff -------------------------------------------------------------------------------- /extra stuff/icon graphics/128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gschueler/CornerClick/HEAD/extra stuff/icon graphics/128x128.png -------------------------------------------------------------------------------- /extra stuff/icon graphics/32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gschueler/CornerClick/HEAD/extra stuff/icon graphics/32x32.png -------------------------------------------------------------------------------- /extra stuff/icon graphics/48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gschueler/CornerClick/HEAD/extra stuff/icon graphics/48x48.png -------------------------------------------------------------------------------- /extra stuff/web/graphics/corner hilight.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gschueler/CornerClick/HEAD/extra stuff/web/graphics/corner hilight.xcf -------------------------------------------------------------------------------- /production/CornerClick.dmg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gschueler/CornerClick/HEAD/production/CornerClick.dmg -------------------------------------------------------------------------------- /scripts/addcp.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gschueler/CornerClick/HEAD/scripts/addcp.pl -------------------------------------------------------------------------------- /transbuild/Makefile.old.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gschueler/CornerClick/HEAD/transbuild/Makefile.old.txt -------------------------------------------------------------------------------- /transbuild/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gschueler/CornerClick/HEAD/transbuild/README -------------------------------------------------------------------------------- /transbuild/exportstrings.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gschueler/CornerClick/HEAD/transbuild/exportstrings.pl -------------------------------------------------------------------------------- /transbuild/makenib.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gschueler/CornerClick/HEAD/transbuild/makenib.pl -------------------------------------------------------------------------------- /transbuild/mergeids.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gschueler/CornerClick/HEAD/transbuild/mergeids.pl -------------------------------------------------------------------------------- /transbuild/mergestrings.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gschueler/CornerClick/HEAD/transbuild/mergestrings.pl -------------------------------------------------------------------------------- /transbuild/transstrings.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gschueler/CornerClick/HEAD/transbuild/transstrings.pl -------------------------------------------------------------------------------- /updateversion.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gschueler/CornerClick/HEAD/updateversion.sh -------------------------------------------------------------------------------- /zh_TW.lproj/ClickBoxPref.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gschueler/CornerClick/HEAD/zh_TW.lproj/ClickBoxPref.strings -------------------------------------------------------------------------------- /zh_TW.lproj/ClickBoxPref.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gschueler/CornerClick/HEAD/zh_TW.lproj/ClickBoxPref.xib -------------------------------------------------------------------------------- /zh_TW.lproj/Information.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gschueler/CornerClick/HEAD/zh_TW.lproj/Information.rtf -------------------------------------------------------------------------------- /zh_TW.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gschueler/CornerClick/HEAD/zh_TW.lproj/Localizable.strings -------------------------------------------------------------------------------- /zh_TW.lproj/Readme.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gschueler/CornerClick/HEAD/zh_TW.lproj/Readme.rtf --------------------------------------------------------------------------------