├── .gitignore ├── DropScript-binaries.dmg ├── DropScript-master ├── AppDrop2Bundle.icns ├── ApplicationController.h ├── ApplicationController.m ├── Credits.rtf ├── DropScript-106.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ └── bh.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── bh.xcuserdatad │ │ └── xcschemes │ │ ├── DropScript.xcscheme │ │ └── xcschememanagement.plist ├── DropScript-109.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── DropScript-109.xccheckout │ │ └── xcuserdata │ │ │ ├── bertin.xcuserdatad │ │ │ ├── UserInterfaceState.xcuserstate │ │ │ └── WorkspaceSettings.xcsettings │ │ │ └── bh.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ ├── bertin.xcuserdatad │ │ └── xcschemes │ │ │ ├── DropScript.xcscheme │ │ │ ├── examples.xcscheme │ │ │ └── xcschememanagement.plist │ │ └── bh.xcuserdatad │ │ └── xcschemes │ │ ├── DropScript.xcscheme │ │ └── xcschememanagement.plist ├── DropScript-1094.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ ├── bertin.xcuserdatad │ │ │ ├── UserInterfaceState.xcuserstate │ │ │ └── WorkspaceSettings.xcsettings │ │ │ └── bh.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ ├── bertin.xcuserdatad │ │ └── xcschemes │ │ │ ├── AppDrop2Bundle.xcscheme │ │ │ ├── DropScript.xcscheme │ │ │ ├── Examples.xcscheme │ │ │ ├── osxlaunch.xcscheme │ │ │ └── xcschememanagement.plist │ │ └── bh.xcuserdatad │ │ └── xcschemes │ │ ├── DropScript.xcscheme │ │ └── xcschememanagement.plist ├── DropScript.icns ├── English.lproj │ ├── InfoPlist.strings │ ├── MainMenu.nib │ │ ├── designable.nib │ │ └── keyedobjects.nib │ └── locversion.plist ├── Info copy.plist ├── Info.plist ├── InfoApp2Bundle.plist ├── drop_script.py ├── examples │ ├── Archive and Compress │ │ ├── GUnzip.sh │ │ ├── GZip.sh │ │ ├── Shove.sh │ │ └── UnShove.sh │ ├── CVS Support │ │ ├── CVSAdd.sh │ │ ├── CVSChanges.sh │ │ ├── CVSCheckout.sh │ │ ├── CVSCommit.sh │ │ ├── CVSDiff.sh │ │ └── README │ ├── EchoBack │ │ └── EchoBack.sh │ ├── Makefile │ ├── README │ ├── Subversion │ │ ├── README │ │ ├── SVNAdd.sh │ │ ├── SVNChanges.sh │ │ ├── SVNCheckout.sh │ │ ├── SVNCleanup.sh │ │ ├── SVNCommit.sh │ │ ├── SVNDelete.sh │ │ ├── SVNDiff.sh │ │ ├── SVNExportRepository.sh │ │ ├── SVNImport.sh │ │ ├── SVNInfo.sh │ │ ├── SVNLog.sh │ │ ├── SVNMerge.sh │ │ ├── SVNResolve.sh │ │ ├── SVNRevert.sh │ │ ├── SVNStatus.sh │ │ ├── SVNSwitch.sh │ │ └── SVNUpdate.sh │ └── Terminal │ │ └── NewShellHere.sh ├── main.m ├── tools │ ├── UpdateServicesMenu.m │ ├── alert │ └── terminal └── version.plist ├── README ├── Scripts ├── DropConvert_to_JPG.sh ├── DropConvert_to_PNG.sh ├── DropResize to 1".sh ├── DropResize to 2".sh ├── DropResize to 4".sh └── DropResize to 5".sh └── osxlaunch.m /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJVB/DropScript/HEAD/.gitignore -------------------------------------------------------------------------------- /DropScript-binaries.dmg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJVB/DropScript/HEAD/DropScript-binaries.dmg -------------------------------------------------------------------------------- /DropScript-master/AppDrop2Bundle.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJVB/DropScript/HEAD/DropScript-master/AppDrop2Bundle.icns -------------------------------------------------------------------------------- /DropScript-master/ApplicationController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJVB/DropScript/HEAD/DropScript-master/ApplicationController.h -------------------------------------------------------------------------------- /DropScript-master/ApplicationController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJVB/DropScript/HEAD/DropScript-master/ApplicationController.m -------------------------------------------------------------------------------- /DropScript-master/Credits.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJVB/DropScript/HEAD/DropScript-master/Credits.rtf -------------------------------------------------------------------------------- /DropScript-master/DropScript-106.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJVB/DropScript/HEAD/DropScript-master/DropScript-106.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /DropScript-master/DropScript-106.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJVB/DropScript/HEAD/DropScript-master/DropScript-106.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /DropScript-master/DropScript-106.xcodeproj/project.xcworkspace/xcuserdata/bh.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJVB/DropScript/HEAD/DropScript-master/DropScript-106.xcodeproj/project.xcworkspace/xcuserdata/bh.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /DropScript-master/DropScript-106.xcodeproj/xcuserdata/bh.xcuserdatad/xcschemes/DropScript.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJVB/DropScript/HEAD/DropScript-master/DropScript-106.xcodeproj/xcuserdata/bh.xcuserdatad/xcschemes/DropScript.xcscheme -------------------------------------------------------------------------------- /DropScript-master/DropScript-106.xcodeproj/xcuserdata/bh.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJVB/DropScript/HEAD/DropScript-master/DropScript-106.xcodeproj/xcuserdata/bh.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /DropScript-master/DropScript-109.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJVB/DropScript/HEAD/DropScript-master/DropScript-109.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /DropScript-master/DropScript-109.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJVB/DropScript/HEAD/DropScript-master/DropScript-109.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /DropScript-master/DropScript-109.xcodeproj/project.xcworkspace/xcshareddata/DropScript-109.xccheckout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJVB/DropScript/HEAD/DropScript-master/DropScript-109.xcodeproj/project.xcworkspace/xcshareddata/DropScript-109.xccheckout -------------------------------------------------------------------------------- /DropScript-master/DropScript-109.xcodeproj/project.xcworkspace/xcuserdata/bertin.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJVB/DropScript/HEAD/DropScript-master/DropScript-109.xcodeproj/project.xcworkspace/xcuserdata/bertin.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /DropScript-master/DropScript-109.xcodeproj/project.xcworkspace/xcuserdata/bertin.xcuserdatad/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJVB/DropScript/HEAD/DropScript-master/DropScript-109.xcodeproj/project.xcworkspace/xcuserdata/bertin.xcuserdatad/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /DropScript-master/DropScript-109.xcodeproj/project.xcworkspace/xcuserdata/bh.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJVB/DropScript/HEAD/DropScript-master/DropScript-109.xcodeproj/project.xcworkspace/xcuserdata/bh.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /DropScript-master/DropScript-109.xcodeproj/xcuserdata/bertin.xcuserdatad/xcschemes/DropScript.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJVB/DropScript/HEAD/DropScript-master/DropScript-109.xcodeproj/xcuserdata/bertin.xcuserdatad/xcschemes/DropScript.xcscheme -------------------------------------------------------------------------------- /DropScript-master/DropScript-109.xcodeproj/xcuserdata/bertin.xcuserdatad/xcschemes/examples.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJVB/DropScript/HEAD/DropScript-master/DropScript-109.xcodeproj/xcuserdata/bertin.xcuserdatad/xcschemes/examples.xcscheme -------------------------------------------------------------------------------- /DropScript-master/DropScript-109.xcodeproj/xcuserdata/bertin.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJVB/DropScript/HEAD/DropScript-master/DropScript-109.xcodeproj/xcuserdata/bertin.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /DropScript-master/DropScript-109.xcodeproj/xcuserdata/bh.xcuserdatad/xcschemes/DropScript.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJVB/DropScript/HEAD/DropScript-master/DropScript-109.xcodeproj/xcuserdata/bh.xcuserdatad/xcschemes/DropScript.xcscheme -------------------------------------------------------------------------------- /DropScript-master/DropScript-109.xcodeproj/xcuserdata/bh.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJVB/DropScript/HEAD/DropScript-master/DropScript-109.xcodeproj/xcuserdata/bh.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /DropScript-master/DropScript-1094.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJVB/DropScript/HEAD/DropScript-master/DropScript-1094.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /DropScript-master/DropScript-1094.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJVB/DropScript/HEAD/DropScript-master/DropScript-1094.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /DropScript-master/DropScript-1094.xcodeproj/project.xcworkspace/xcuserdata/bertin.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJVB/DropScript/HEAD/DropScript-master/DropScript-1094.xcodeproj/project.xcworkspace/xcuserdata/bertin.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /DropScript-master/DropScript-1094.xcodeproj/project.xcworkspace/xcuserdata/bertin.xcuserdatad/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJVB/DropScript/HEAD/DropScript-master/DropScript-1094.xcodeproj/project.xcworkspace/xcuserdata/bertin.xcuserdatad/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /DropScript-master/DropScript-1094.xcodeproj/project.xcworkspace/xcuserdata/bh.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJVB/DropScript/HEAD/DropScript-master/DropScript-1094.xcodeproj/project.xcworkspace/xcuserdata/bh.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /DropScript-master/DropScript-1094.xcodeproj/xcuserdata/bertin.xcuserdatad/xcschemes/AppDrop2Bundle.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJVB/DropScript/HEAD/DropScript-master/DropScript-1094.xcodeproj/xcuserdata/bertin.xcuserdatad/xcschemes/AppDrop2Bundle.xcscheme -------------------------------------------------------------------------------- /DropScript-master/DropScript-1094.xcodeproj/xcuserdata/bertin.xcuserdatad/xcschemes/DropScript.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJVB/DropScript/HEAD/DropScript-master/DropScript-1094.xcodeproj/xcuserdata/bertin.xcuserdatad/xcschemes/DropScript.xcscheme -------------------------------------------------------------------------------- /DropScript-master/DropScript-1094.xcodeproj/xcuserdata/bertin.xcuserdatad/xcschemes/Examples.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJVB/DropScript/HEAD/DropScript-master/DropScript-1094.xcodeproj/xcuserdata/bertin.xcuserdatad/xcschemes/Examples.xcscheme -------------------------------------------------------------------------------- /DropScript-master/DropScript-1094.xcodeproj/xcuserdata/bertin.xcuserdatad/xcschemes/osxlaunch.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJVB/DropScript/HEAD/DropScript-master/DropScript-1094.xcodeproj/xcuserdata/bertin.xcuserdatad/xcschemes/osxlaunch.xcscheme -------------------------------------------------------------------------------- /DropScript-master/DropScript-1094.xcodeproj/xcuserdata/bertin.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJVB/DropScript/HEAD/DropScript-master/DropScript-1094.xcodeproj/xcuserdata/bertin.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /DropScript-master/DropScript-1094.xcodeproj/xcuserdata/bh.xcuserdatad/xcschemes/DropScript.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJVB/DropScript/HEAD/DropScript-master/DropScript-1094.xcodeproj/xcuserdata/bh.xcuserdatad/xcschemes/DropScript.xcscheme -------------------------------------------------------------------------------- /DropScript-master/DropScript-1094.xcodeproj/xcuserdata/bh.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJVB/DropScript/HEAD/DropScript-master/DropScript-1094.xcodeproj/xcuserdata/bh.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /DropScript-master/DropScript.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJVB/DropScript/HEAD/DropScript-master/DropScript.icns -------------------------------------------------------------------------------- /DropScript-master/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJVB/DropScript/HEAD/DropScript-master/English.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /DropScript-master/English.lproj/MainMenu.nib/designable.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJVB/DropScript/HEAD/DropScript-master/English.lproj/MainMenu.nib/designable.nib -------------------------------------------------------------------------------- /DropScript-master/English.lproj/MainMenu.nib/keyedobjects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJVB/DropScript/HEAD/DropScript-master/English.lproj/MainMenu.nib/keyedobjects.nib -------------------------------------------------------------------------------- /DropScript-master/English.lproj/locversion.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJVB/DropScript/HEAD/DropScript-master/English.lproj/locversion.plist -------------------------------------------------------------------------------- /DropScript-master/Info copy.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJVB/DropScript/HEAD/DropScript-master/Info copy.plist -------------------------------------------------------------------------------- /DropScript-master/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJVB/DropScript/HEAD/DropScript-master/Info.plist -------------------------------------------------------------------------------- /DropScript-master/InfoApp2Bundle.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJVB/DropScript/HEAD/DropScript-master/InfoApp2Bundle.plist -------------------------------------------------------------------------------- /DropScript-master/drop_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJVB/DropScript/HEAD/DropScript-master/drop_script.py -------------------------------------------------------------------------------- /DropScript-master/examples/Archive and Compress/GUnzip.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gunzip "$@" 4 | -------------------------------------------------------------------------------- /DropScript-master/examples/Archive and Compress/GZip.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gzip -9 "$@" 4 | -------------------------------------------------------------------------------- /DropScript-master/examples/Archive and Compress/Shove.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJVB/DropScript/HEAD/DropScript-master/examples/Archive and Compress/Shove.sh -------------------------------------------------------------------------------- /DropScript-master/examples/Archive and Compress/UnShove.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJVB/DropScript/HEAD/DropScript-master/examples/Archive and Compress/UnShove.sh -------------------------------------------------------------------------------- /DropScript-master/examples/CVS Support/CVSAdd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJVB/DropScript/HEAD/DropScript-master/examples/CVS Support/CVSAdd.sh -------------------------------------------------------------------------------- /DropScript-master/examples/CVS Support/CVSChanges.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJVB/DropScript/HEAD/DropScript-master/examples/CVS Support/CVSChanges.sh -------------------------------------------------------------------------------- /DropScript-master/examples/CVS Support/CVSCheckout.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJVB/DropScript/HEAD/DropScript-master/examples/CVS Support/CVSCheckout.sh -------------------------------------------------------------------------------- /DropScript-master/examples/CVS Support/CVSCommit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJVB/DropScript/HEAD/DropScript-master/examples/CVS Support/CVSCommit.sh -------------------------------------------------------------------------------- /DropScript-master/examples/CVS Support/CVSDiff.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJVB/DropScript/HEAD/DropScript-master/examples/CVS Support/CVSDiff.sh -------------------------------------------------------------------------------- /DropScript-master/examples/CVS Support/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJVB/DropScript/HEAD/DropScript-master/examples/CVS Support/README -------------------------------------------------------------------------------- /DropScript-master/examples/EchoBack/EchoBack.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJVB/DropScript/HEAD/DropScript-master/examples/EchoBack/EchoBack.sh -------------------------------------------------------------------------------- /DropScript-master/examples/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJVB/DropScript/HEAD/DropScript-master/examples/Makefile -------------------------------------------------------------------------------- /DropScript-master/examples/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJVB/DropScript/HEAD/DropScript-master/examples/README -------------------------------------------------------------------------------- /DropScript-master/examples/Subversion/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJVB/DropScript/HEAD/DropScript-master/examples/Subversion/README -------------------------------------------------------------------------------- /DropScript-master/examples/Subversion/SVNAdd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJVB/DropScript/HEAD/DropScript-master/examples/Subversion/SVNAdd.sh -------------------------------------------------------------------------------- /DropScript-master/examples/Subversion/SVNChanges.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJVB/DropScript/HEAD/DropScript-master/examples/Subversion/SVNChanges.sh -------------------------------------------------------------------------------- /DropScript-master/examples/Subversion/SVNCheckout.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJVB/DropScript/HEAD/DropScript-master/examples/Subversion/SVNCheckout.sh -------------------------------------------------------------------------------- /DropScript-master/examples/Subversion/SVNCleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJVB/DropScript/HEAD/DropScript-master/examples/Subversion/SVNCleanup.sh -------------------------------------------------------------------------------- /DropScript-master/examples/Subversion/SVNCommit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJVB/DropScript/HEAD/DropScript-master/examples/Subversion/SVNCommit.sh -------------------------------------------------------------------------------- /DropScript-master/examples/Subversion/SVNDelete.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJVB/DropScript/HEAD/DropScript-master/examples/Subversion/SVNDelete.sh -------------------------------------------------------------------------------- /DropScript-master/examples/Subversion/SVNDiff.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJVB/DropScript/HEAD/DropScript-master/examples/Subversion/SVNDiff.sh -------------------------------------------------------------------------------- /DropScript-master/examples/Subversion/SVNExportRepository.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJVB/DropScript/HEAD/DropScript-master/examples/Subversion/SVNExportRepository.sh -------------------------------------------------------------------------------- /DropScript-master/examples/Subversion/SVNImport.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJVB/DropScript/HEAD/DropScript-master/examples/Subversion/SVNImport.sh -------------------------------------------------------------------------------- /DropScript-master/examples/Subversion/SVNInfo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJVB/DropScript/HEAD/DropScript-master/examples/Subversion/SVNInfo.sh -------------------------------------------------------------------------------- /DropScript-master/examples/Subversion/SVNLog.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJVB/DropScript/HEAD/DropScript-master/examples/Subversion/SVNLog.sh -------------------------------------------------------------------------------- /DropScript-master/examples/Subversion/SVNMerge.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJVB/DropScript/HEAD/DropScript-master/examples/Subversion/SVNMerge.sh -------------------------------------------------------------------------------- /DropScript-master/examples/Subversion/SVNResolve.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJVB/DropScript/HEAD/DropScript-master/examples/Subversion/SVNResolve.sh -------------------------------------------------------------------------------- /DropScript-master/examples/Subversion/SVNRevert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJVB/DropScript/HEAD/DropScript-master/examples/Subversion/SVNRevert.sh -------------------------------------------------------------------------------- /DropScript-master/examples/Subversion/SVNStatus.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJVB/DropScript/HEAD/DropScript-master/examples/Subversion/SVNStatus.sh -------------------------------------------------------------------------------- /DropScript-master/examples/Subversion/SVNSwitch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJVB/DropScript/HEAD/DropScript-master/examples/Subversion/SVNSwitch.sh -------------------------------------------------------------------------------- /DropScript-master/examples/Subversion/SVNUpdate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJVB/DropScript/HEAD/DropScript-master/examples/Subversion/SVNUpdate.sh -------------------------------------------------------------------------------- /DropScript-master/examples/Terminal/NewShellHere.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJVB/DropScript/HEAD/DropScript-master/examples/Terminal/NewShellHere.sh -------------------------------------------------------------------------------- /DropScript-master/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJVB/DropScript/HEAD/DropScript-master/main.m -------------------------------------------------------------------------------- /DropScript-master/tools/UpdateServicesMenu.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJVB/DropScript/HEAD/DropScript-master/tools/UpdateServicesMenu.m -------------------------------------------------------------------------------- /DropScript-master/tools/alert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJVB/DropScript/HEAD/DropScript-master/tools/alert -------------------------------------------------------------------------------- /DropScript-master/tools/terminal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJVB/DropScript/HEAD/DropScript-master/tools/terminal -------------------------------------------------------------------------------- /DropScript-master/version.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJVB/DropScript/HEAD/DropScript-master/version.plist -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJVB/DropScript/HEAD/README -------------------------------------------------------------------------------- /Scripts/DropConvert_to_JPG.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJVB/DropScript/HEAD/Scripts/DropConvert_to_JPG.sh -------------------------------------------------------------------------------- /Scripts/DropConvert_to_PNG.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJVB/DropScript/HEAD/Scripts/DropConvert_to_PNG.sh -------------------------------------------------------------------------------- /Scripts/DropResize to 1".sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | sips --resampleWidth 72 "$@" 4 | -------------------------------------------------------------------------------- /Scripts/DropResize to 2".sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | sips --resampleWidth 144 "$@" 4 | -------------------------------------------------------------------------------- /Scripts/DropResize to 4".sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | sips --resampleWidth 288 "$@" 4 | -------------------------------------------------------------------------------- /Scripts/DropResize to 5".sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | sips --resampleWidth 360 "$@" 4 | -------------------------------------------------------------------------------- /osxlaunch.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RJVB/DropScript/HEAD/osxlaunch.m --------------------------------------------------------------------------------