├── .gitignore ├── .gitmodules ├── .tx └── config ├── Dependencies ├── .gitignore └── MacOSX10.14.sdk ├── GPGPreferences.xcodeproj └── project.pbxproj ├── LICENSE.txt ├── Makefile ├── Readme.md ├── Release Notes ├── 0.9.4.md ├── 1.0.1.md ├── 1.0.2.md ├── 1.5.md ├── 1.5b1.md ├── 1.5b2.md ├── 1.5b5.md ├── 1.5b6.md └── 2.0.md ├── Resources ├── Base.lproj │ ├── GPGToolsPref.xib │ └── WarningView.xib ├── Credits.rtf ├── GPGPreferencesTerms.searchTerms ├── Images │ ├── GKA.png │ ├── GPGMail.png │ ├── GPGTools+Text.png │ ├── GPGTools.iconset │ │ ├── icon_128x128.png │ │ ├── icon_16x16.png │ │ ├── icon_256x256.png │ │ ├── icon_32x32.png │ │ └── icon_512x512.png │ ├── gka-gray.png │ ├── gpgmail-gray.png │ ├── gpgprefs.png │ ├── gpgservices-gray.png │ ├── gpgservices.png │ ├── macgpg2-gray.png │ └── macgpg2.png ├── Info.plist ├── ca.lproj │ ├── GPGToolsPref.strings │ ├── Localizable.strings │ └── WarningView.strings ├── cs.lproj │ ├── GPGToolsPref.strings │ ├── Localizable.strings │ └── WarningView.strings ├── de.lproj │ ├── GPGToolsPref.strings │ ├── Localizable.strings │ └── WarningView.strings ├── el.lproj │ ├── GPGToolsPref.strings │ ├── Localizable.strings │ └── WarningView.strings ├── en.lproj │ ├── GPGToolsPref.strings │ ├── Localizable.strings │ └── WarningView.strings ├── es.lproj │ ├── GPGToolsPref.strings │ ├── Localizable.strings │ └── WarningView.strings ├── fa.lproj │ ├── GPGToolsPref.strings │ ├── Localizable.strings │ └── WarningView.strings ├── fr.lproj │ ├── GPGToolsPref.strings │ ├── Localizable.strings │ └── WarningView.strings ├── id.lproj │ ├── GPGToolsPref.strings │ ├── Localizable.strings │ └── WarningView.strings ├── it.lproj │ ├── GPGToolsPref.strings │ ├── Localizable.strings │ └── WarningView.strings ├── ja.lproj │ ├── GPGToolsPref.strings │ ├── Localizable.strings │ └── WarningView.strings ├── nb.lproj │ ├── GPGToolsPref.strings │ ├── Localizable.strings │ └── WarningView.strings ├── pt.lproj │ ├── GPGToolsPref.strings │ ├── Localizable.strings │ └── WarningView.strings ├── ru.lproj │ ├── GPGToolsPref.strings │ ├── Localizable.strings │ └── WarningView.strings ├── sv.lproj │ ├── GPGToolsPref.strings │ ├── Localizable.strings │ └── WarningView.strings ├── th.lproj │ ├── GPGToolsPref.strings │ ├── Localizable.strings │ └── WarningView.strings └── zh_CN.lproj │ ├── GPGToolsPref.strings │ ├── Localizable.strings │ └── WarningView.strings ├── Source ├── GPGDebugCollector.h ├── GPGDebugCollector.m ├── GPGIntegerNumberFormatter.h ├── GPGIntegerNumberFormatter.m ├── GPGIsUnselectedTransformer.h ├── GPGIsUnselectedTransformer.m ├── GPGPreferences-Prefix.pch ├── GPGReportController.h ├── GPGReportController.m ├── GPGToolsPref.h ├── GPGToolsPref.m ├── GPGToolsPrefController.h ├── GPGToolsPrefController.m ├── GPGWhiteView.h ├── GPGWhiteView.m ├── WindowIsReadyCheckingView.h └── WindowIsReadyCheckingView.m ├── Version.config └── images ├── GPGPreferences.icns ├── GPGPreferences.png ├── gpgtools.icns └── icon_dmg.icns /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGPreferences/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGPreferences/HEAD/.gitmodules -------------------------------------------------------------------------------- /.tx/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGPreferences/HEAD/.tx/config -------------------------------------------------------------------------------- /Dependencies/.gitignore: -------------------------------------------------------------------------------- 1 | # 2 | -------------------------------------------------------------------------------- /Dependencies/MacOSX10.14.sdk: -------------------------------------------------------------------------------- 1 | /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk -------------------------------------------------------------------------------- /GPGPreferences.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGPreferences/HEAD/GPGPreferences.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGPreferences/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGPreferences/HEAD/Makefile -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGPreferences/HEAD/Readme.md -------------------------------------------------------------------------------- /Release Notes/0.9.4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGPreferences/HEAD/Release Notes/0.9.4.md -------------------------------------------------------------------------------- /Release Notes/1.0.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGPreferences/HEAD/Release Notes/1.0.1.md -------------------------------------------------------------------------------- /Release Notes/1.0.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGPreferences/HEAD/Release Notes/1.0.2.md -------------------------------------------------------------------------------- /Release Notes/1.5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGPreferences/HEAD/Release Notes/1.5.md -------------------------------------------------------------------------------- /Release Notes/1.5b1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGPreferences/HEAD/Release Notes/1.5b1.md -------------------------------------------------------------------------------- /Release Notes/1.5b2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGPreferences/HEAD/Release Notes/1.5b2.md -------------------------------------------------------------------------------- /Release Notes/1.5b5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGPreferences/HEAD/Release Notes/1.5b5.md -------------------------------------------------------------------------------- /Release Notes/1.5b6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGPreferences/HEAD/Release Notes/1.5b6.md -------------------------------------------------------------------------------- /Release Notes/2.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGPreferences/HEAD/Release Notes/2.0.md -------------------------------------------------------------------------------- /Resources/Base.lproj/GPGToolsPref.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGPreferences/HEAD/Resources/Base.lproj/GPGToolsPref.xib -------------------------------------------------------------------------------- /Resources/Base.lproj/WarningView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGPreferences/HEAD/Resources/Base.lproj/WarningView.xib -------------------------------------------------------------------------------- /Resources/Credits.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGPreferences/HEAD/Resources/Credits.rtf -------------------------------------------------------------------------------- /Resources/GPGPreferencesTerms.searchTerms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGPreferences/HEAD/Resources/GPGPreferencesTerms.searchTerms -------------------------------------------------------------------------------- /Resources/Images/GKA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGPreferences/HEAD/Resources/Images/GKA.png -------------------------------------------------------------------------------- /Resources/Images/GPGMail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGPreferences/HEAD/Resources/Images/GPGMail.png -------------------------------------------------------------------------------- /Resources/Images/GPGTools+Text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGPreferences/HEAD/Resources/Images/GPGTools+Text.png -------------------------------------------------------------------------------- /Resources/Images/GPGTools.iconset/icon_128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGPreferences/HEAD/Resources/Images/GPGTools.iconset/icon_128x128.png -------------------------------------------------------------------------------- /Resources/Images/GPGTools.iconset/icon_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGPreferences/HEAD/Resources/Images/GPGTools.iconset/icon_16x16.png -------------------------------------------------------------------------------- /Resources/Images/GPGTools.iconset/icon_256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGPreferences/HEAD/Resources/Images/GPGTools.iconset/icon_256x256.png -------------------------------------------------------------------------------- /Resources/Images/GPGTools.iconset/icon_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGPreferences/HEAD/Resources/Images/GPGTools.iconset/icon_32x32.png -------------------------------------------------------------------------------- /Resources/Images/GPGTools.iconset/icon_512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGPreferences/HEAD/Resources/Images/GPGTools.iconset/icon_512x512.png -------------------------------------------------------------------------------- /Resources/Images/gka-gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGPreferences/HEAD/Resources/Images/gka-gray.png -------------------------------------------------------------------------------- /Resources/Images/gpgmail-gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGPreferences/HEAD/Resources/Images/gpgmail-gray.png -------------------------------------------------------------------------------- /Resources/Images/gpgprefs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGPreferences/HEAD/Resources/Images/gpgprefs.png -------------------------------------------------------------------------------- /Resources/Images/gpgservices-gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGPreferences/HEAD/Resources/Images/gpgservices-gray.png -------------------------------------------------------------------------------- /Resources/Images/gpgservices.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGPreferences/HEAD/Resources/Images/gpgservices.png -------------------------------------------------------------------------------- /Resources/Images/macgpg2-gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGPreferences/HEAD/Resources/Images/macgpg2-gray.png -------------------------------------------------------------------------------- /Resources/Images/macgpg2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGPreferences/HEAD/Resources/Images/macgpg2.png -------------------------------------------------------------------------------- /Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGPreferences/HEAD/Resources/Info.plist -------------------------------------------------------------------------------- /Resources/ca.lproj/GPGToolsPref.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGPreferences/HEAD/Resources/ca.lproj/GPGToolsPref.strings -------------------------------------------------------------------------------- /Resources/ca.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGPreferences/HEAD/Resources/ca.lproj/Localizable.strings -------------------------------------------------------------------------------- /Resources/ca.lproj/WarningView.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGPreferences/HEAD/Resources/ca.lproj/WarningView.strings -------------------------------------------------------------------------------- /Resources/cs.lproj/GPGToolsPref.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGPreferences/HEAD/Resources/cs.lproj/GPGToolsPref.strings -------------------------------------------------------------------------------- /Resources/cs.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGPreferences/HEAD/Resources/cs.lproj/Localizable.strings -------------------------------------------------------------------------------- /Resources/cs.lproj/WarningView.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGPreferences/HEAD/Resources/cs.lproj/WarningView.strings -------------------------------------------------------------------------------- /Resources/de.lproj/GPGToolsPref.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGPreferences/HEAD/Resources/de.lproj/GPGToolsPref.strings -------------------------------------------------------------------------------- /Resources/de.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGPreferences/HEAD/Resources/de.lproj/Localizable.strings -------------------------------------------------------------------------------- /Resources/de.lproj/WarningView.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGPreferences/HEAD/Resources/de.lproj/WarningView.strings -------------------------------------------------------------------------------- /Resources/el.lproj/GPGToolsPref.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGPreferences/HEAD/Resources/el.lproj/GPGToolsPref.strings -------------------------------------------------------------------------------- /Resources/el.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGPreferences/HEAD/Resources/el.lproj/Localizable.strings -------------------------------------------------------------------------------- /Resources/el.lproj/WarningView.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGPreferences/HEAD/Resources/el.lproj/WarningView.strings -------------------------------------------------------------------------------- /Resources/en.lproj/GPGToolsPref.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGPreferences/HEAD/Resources/en.lproj/GPGToolsPref.strings -------------------------------------------------------------------------------- /Resources/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGPreferences/HEAD/Resources/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /Resources/en.lproj/WarningView.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGPreferences/HEAD/Resources/en.lproj/WarningView.strings -------------------------------------------------------------------------------- /Resources/es.lproj/GPGToolsPref.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGPreferences/HEAD/Resources/es.lproj/GPGToolsPref.strings -------------------------------------------------------------------------------- /Resources/es.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGPreferences/HEAD/Resources/es.lproj/Localizable.strings -------------------------------------------------------------------------------- /Resources/es.lproj/WarningView.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGPreferences/HEAD/Resources/es.lproj/WarningView.strings -------------------------------------------------------------------------------- /Resources/fa.lproj/GPGToolsPref.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGPreferences/HEAD/Resources/fa.lproj/GPGToolsPref.strings -------------------------------------------------------------------------------- /Resources/fa.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGPreferences/HEAD/Resources/fa.lproj/Localizable.strings -------------------------------------------------------------------------------- /Resources/fa.lproj/WarningView.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGPreferences/HEAD/Resources/fa.lproj/WarningView.strings -------------------------------------------------------------------------------- /Resources/fr.lproj/GPGToolsPref.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGPreferences/HEAD/Resources/fr.lproj/GPGToolsPref.strings -------------------------------------------------------------------------------- /Resources/fr.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGPreferences/HEAD/Resources/fr.lproj/Localizable.strings -------------------------------------------------------------------------------- /Resources/fr.lproj/WarningView.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGPreferences/HEAD/Resources/fr.lproj/WarningView.strings -------------------------------------------------------------------------------- /Resources/id.lproj/GPGToolsPref.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGPreferences/HEAD/Resources/id.lproj/GPGToolsPref.strings -------------------------------------------------------------------------------- /Resources/id.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGPreferences/HEAD/Resources/id.lproj/Localizable.strings -------------------------------------------------------------------------------- /Resources/id.lproj/WarningView.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGPreferences/HEAD/Resources/id.lproj/WarningView.strings -------------------------------------------------------------------------------- /Resources/it.lproj/GPGToolsPref.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGPreferences/HEAD/Resources/it.lproj/GPGToolsPref.strings -------------------------------------------------------------------------------- /Resources/it.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGPreferences/HEAD/Resources/it.lproj/Localizable.strings -------------------------------------------------------------------------------- /Resources/it.lproj/WarningView.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGPreferences/HEAD/Resources/it.lproj/WarningView.strings -------------------------------------------------------------------------------- /Resources/ja.lproj/GPGToolsPref.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGPreferences/HEAD/Resources/ja.lproj/GPGToolsPref.strings -------------------------------------------------------------------------------- /Resources/ja.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGPreferences/HEAD/Resources/ja.lproj/Localizable.strings -------------------------------------------------------------------------------- /Resources/ja.lproj/WarningView.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGPreferences/HEAD/Resources/ja.lproj/WarningView.strings -------------------------------------------------------------------------------- /Resources/nb.lproj/GPGToolsPref.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGPreferences/HEAD/Resources/nb.lproj/GPGToolsPref.strings -------------------------------------------------------------------------------- /Resources/nb.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGPreferences/HEAD/Resources/nb.lproj/Localizable.strings -------------------------------------------------------------------------------- /Resources/nb.lproj/WarningView.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGPreferences/HEAD/Resources/nb.lproj/WarningView.strings -------------------------------------------------------------------------------- /Resources/pt.lproj/GPGToolsPref.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGPreferences/HEAD/Resources/pt.lproj/GPGToolsPref.strings -------------------------------------------------------------------------------- /Resources/pt.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGPreferences/HEAD/Resources/pt.lproj/Localizable.strings -------------------------------------------------------------------------------- /Resources/pt.lproj/WarningView.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGPreferences/HEAD/Resources/pt.lproj/WarningView.strings -------------------------------------------------------------------------------- /Resources/ru.lproj/GPGToolsPref.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGPreferences/HEAD/Resources/ru.lproj/GPGToolsPref.strings -------------------------------------------------------------------------------- /Resources/ru.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGPreferences/HEAD/Resources/ru.lproj/Localizable.strings -------------------------------------------------------------------------------- /Resources/ru.lproj/WarningView.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGPreferences/HEAD/Resources/ru.lproj/WarningView.strings -------------------------------------------------------------------------------- /Resources/sv.lproj/GPGToolsPref.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGPreferences/HEAD/Resources/sv.lproj/GPGToolsPref.strings -------------------------------------------------------------------------------- /Resources/sv.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGPreferences/HEAD/Resources/sv.lproj/Localizable.strings -------------------------------------------------------------------------------- /Resources/sv.lproj/WarningView.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGPreferences/HEAD/Resources/sv.lproj/WarningView.strings -------------------------------------------------------------------------------- /Resources/th.lproj/GPGToolsPref.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGPreferences/HEAD/Resources/th.lproj/GPGToolsPref.strings -------------------------------------------------------------------------------- /Resources/th.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGPreferences/HEAD/Resources/th.lproj/Localizable.strings -------------------------------------------------------------------------------- /Resources/th.lproj/WarningView.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGPreferences/HEAD/Resources/th.lproj/WarningView.strings -------------------------------------------------------------------------------- /Resources/zh_CN.lproj/GPGToolsPref.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGPreferences/HEAD/Resources/zh_CN.lproj/GPGToolsPref.strings -------------------------------------------------------------------------------- /Resources/zh_CN.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGPreferences/HEAD/Resources/zh_CN.lproj/Localizable.strings -------------------------------------------------------------------------------- /Resources/zh_CN.lproj/WarningView.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGPreferences/HEAD/Resources/zh_CN.lproj/WarningView.strings -------------------------------------------------------------------------------- /Source/GPGDebugCollector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGPreferences/HEAD/Source/GPGDebugCollector.h -------------------------------------------------------------------------------- /Source/GPGDebugCollector.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGPreferences/HEAD/Source/GPGDebugCollector.m -------------------------------------------------------------------------------- /Source/GPGIntegerNumberFormatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGPreferences/HEAD/Source/GPGIntegerNumberFormatter.h -------------------------------------------------------------------------------- /Source/GPGIntegerNumberFormatter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGPreferences/HEAD/Source/GPGIntegerNumberFormatter.m -------------------------------------------------------------------------------- /Source/GPGIsUnselectedTransformer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGPreferences/HEAD/Source/GPGIsUnselectedTransformer.h -------------------------------------------------------------------------------- /Source/GPGIsUnselectedTransformer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGPreferences/HEAD/Source/GPGIsUnselectedTransformer.m -------------------------------------------------------------------------------- /Source/GPGPreferences-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGPreferences/HEAD/Source/GPGPreferences-Prefix.pch -------------------------------------------------------------------------------- /Source/GPGReportController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGPreferences/HEAD/Source/GPGReportController.h -------------------------------------------------------------------------------- /Source/GPGReportController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGPreferences/HEAD/Source/GPGReportController.m -------------------------------------------------------------------------------- /Source/GPGToolsPref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGPreferences/HEAD/Source/GPGToolsPref.h -------------------------------------------------------------------------------- /Source/GPGToolsPref.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGPreferences/HEAD/Source/GPGToolsPref.m -------------------------------------------------------------------------------- /Source/GPGToolsPrefController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGPreferences/HEAD/Source/GPGToolsPrefController.h -------------------------------------------------------------------------------- /Source/GPGToolsPrefController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGPreferences/HEAD/Source/GPGToolsPrefController.m -------------------------------------------------------------------------------- /Source/GPGWhiteView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGPreferences/HEAD/Source/GPGWhiteView.h -------------------------------------------------------------------------------- /Source/GPGWhiteView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGPreferences/HEAD/Source/GPGWhiteView.m -------------------------------------------------------------------------------- /Source/WindowIsReadyCheckingView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGPreferences/HEAD/Source/WindowIsReadyCheckingView.h -------------------------------------------------------------------------------- /Source/WindowIsReadyCheckingView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGPreferences/HEAD/Source/WindowIsReadyCheckingView.m -------------------------------------------------------------------------------- /Version.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGPreferences/HEAD/Version.config -------------------------------------------------------------------------------- /images/GPGPreferences.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGPreferences/HEAD/images/GPGPreferences.icns -------------------------------------------------------------------------------- /images/GPGPreferences.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGPreferences/HEAD/images/GPGPreferences.png -------------------------------------------------------------------------------- /images/gpgtools.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGPreferences/HEAD/images/gpgtools.icns -------------------------------------------------------------------------------- /images/icon_dmg.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGPreferences/HEAD/images/icon_dmg.icns --------------------------------------------------------------------------------