├── .gitignore ├── LICENSE ├── ProxyMenu.xcodeproj └── project.pbxproj ├── ProxyMenu ├── Icon.icns ├── PMAppDelegate.h ├── PMAppDelegate.m ├── PMStringToNumberTransformer.h ├── PMStringToNumberTransformer.m ├── ProxyInfo.h ├── ProxyInfo.m ├── ProxyMenu-Info.plist ├── ProxyMenu-Prefix.pch ├── ProxyMenu.xcdatamodeld │ ├── .xccurrentversion │ └── ProxyMenu.xcdatamodel │ │ └── contents ├── en.lproj │ ├── Credits.rtf │ ├── InfoPlist.strings │ └── MainMenu.xib ├── main.m ├── status_item_icon.png ├── status_item_icon@2x.png ├── status_item_icon_alt.png └── status_item_icon_alt@2x.png ├── README.md └── Screenshots ├── MainWindow.png └── StatusItemMenu.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohdarling/ProxyMenu/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohdarling/ProxyMenu/HEAD/LICENSE -------------------------------------------------------------------------------- /ProxyMenu.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohdarling/ProxyMenu/HEAD/ProxyMenu.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ProxyMenu/Icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohdarling/ProxyMenu/HEAD/ProxyMenu/Icon.icns -------------------------------------------------------------------------------- /ProxyMenu/PMAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohdarling/ProxyMenu/HEAD/ProxyMenu/PMAppDelegate.h -------------------------------------------------------------------------------- /ProxyMenu/PMAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohdarling/ProxyMenu/HEAD/ProxyMenu/PMAppDelegate.m -------------------------------------------------------------------------------- /ProxyMenu/PMStringToNumberTransformer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohdarling/ProxyMenu/HEAD/ProxyMenu/PMStringToNumberTransformer.h -------------------------------------------------------------------------------- /ProxyMenu/PMStringToNumberTransformer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohdarling/ProxyMenu/HEAD/ProxyMenu/PMStringToNumberTransformer.m -------------------------------------------------------------------------------- /ProxyMenu/ProxyInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohdarling/ProxyMenu/HEAD/ProxyMenu/ProxyInfo.h -------------------------------------------------------------------------------- /ProxyMenu/ProxyInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohdarling/ProxyMenu/HEAD/ProxyMenu/ProxyInfo.m -------------------------------------------------------------------------------- /ProxyMenu/ProxyMenu-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohdarling/ProxyMenu/HEAD/ProxyMenu/ProxyMenu-Info.plist -------------------------------------------------------------------------------- /ProxyMenu/ProxyMenu-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohdarling/ProxyMenu/HEAD/ProxyMenu/ProxyMenu-Prefix.pch -------------------------------------------------------------------------------- /ProxyMenu/ProxyMenu.xcdatamodeld/.xccurrentversion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohdarling/ProxyMenu/HEAD/ProxyMenu/ProxyMenu.xcdatamodeld/.xccurrentversion -------------------------------------------------------------------------------- /ProxyMenu/ProxyMenu.xcdatamodeld/ProxyMenu.xcdatamodel/contents: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohdarling/ProxyMenu/HEAD/ProxyMenu/ProxyMenu.xcdatamodeld/ProxyMenu.xcdatamodel/contents -------------------------------------------------------------------------------- /ProxyMenu/en.lproj/Credits.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohdarling/ProxyMenu/HEAD/ProxyMenu/en.lproj/Credits.rtf -------------------------------------------------------------------------------- /ProxyMenu/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /ProxyMenu/en.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohdarling/ProxyMenu/HEAD/ProxyMenu/en.lproj/MainMenu.xib -------------------------------------------------------------------------------- /ProxyMenu/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohdarling/ProxyMenu/HEAD/ProxyMenu/main.m -------------------------------------------------------------------------------- /ProxyMenu/status_item_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohdarling/ProxyMenu/HEAD/ProxyMenu/status_item_icon.png -------------------------------------------------------------------------------- /ProxyMenu/status_item_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohdarling/ProxyMenu/HEAD/ProxyMenu/status_item_icon@2x.png -------------------------------------------------------------------------------- /ProxyMenu/status_item_icon_alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohdarling/ProxyMenu/HEAD/ProxyMenu/status_item_icon_alt.png -------------------------------------------------------------------------------- /ProxyMenu/status_item_icon_alt@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohdarling/ProxyMenu/HEAD/ProxyMenu/status_item_icon_alt@2x.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohdarling/ProxyMenu/HEAD/README.md -------------------------------------------------------------------------------- /Screenshots/MainWindow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohdarling/ProxyMenu/HEAD/Screenshots/MainWindow.png -------------------------------------------------------------------------------- /Screenshots/StatusItemMenu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohdarling/ProxyMenu/HEAD/Screenshots/StatusItemMenu.png --------------------------------------------------------------------------------