├── .gitignore ├── Dependencies └── .gitignore ├── Installer └── Uninstall.app │ └── Contents │ └── _CodeSignature │ ├── CodeDirectory │ ├── CodeRequirements │ ├── CodeResources │ └── CodeSignature ├── LICENSE.txt ├── README.markdown ├── Release Notes ├── 1.0.md ├── 2013.07.26.md ├── 2013.10.22.md ├── 2013.5.20.md ├── 2015.06.md ├── 2015.08.md ├── 2015.09.md ├── 2016.07.md ├── 2016.08.md ├── 2016.10.md ├── 2017.1.md ├── 2017.1b2.md ├── 2017.1b3.md ├── 2017.2.md ├── 2017.3.md └── 2018.1.md └── Version.config /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGTools_Installer/HEAD/.gitignore -------------------------------------------------------------------------------- /Dependencies/.gitignore: -------------------------------------------------------------------------------- 1 | # 2 | -------------------------------------------------------------------------------- /Installer/Uninstall.app/Contents/_CodeSignature/CodeDirectory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGTools_Installer/HEAD/Installer/Uninstall.app/Contents/_CodeSignature/CodeDirectory -------------------------------------------------------------------------------- /Installer/Uninstall.app/Contents/_CodeSignature/CodeRequirements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGTools_Installer/HEAD/Installer/Uninstall.app/Contents/_CodeSignature/CodeRequirements -------------------------------------------------------------------------------- /Installer/Uninstall.app/Contents/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGTools_Installer/HEAD/Installer/Uninstall.app/Contents/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /Installer/Uninstall.app/Contents/_CodeSignature/CodeSignature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGTools_Installer/HEAD/Installer/Uninstall.app/Contents/_CodeSignature/CodeSignature -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGTools_Installer/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGTools_Installer/HEAD/README.markdown -------------------------------------------------------------------------------- /Release Notes/1.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGTools_Installer/HEAD/Release Notes/1.0.md -------------------------------------------------------------------------------- /Release Notes/2013.07.26.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGTools_Installer/HEAD/Release Notes/2013.07.26.md -------------------------------------------------------------------------------- /Release Notes/2013.10.22.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGTools_Installer/HEAD/Release Notes/2013.10.22.md -------------------------------------------------------------------------------- /Release Notes/2013.5.20.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGTools_Installer/HEAD/Release Notes/2013.5.20.md -------------------------------------------------------------------------------- /Release Notes/2015.06.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGTools_Installer/HEAD/Release Notes/2015.06.md -------------------------------------------------------------------------------- /Release Notes/2015.08.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGTools_Installer/HEAD/Release Notes/2015.08.md -------------------------------------------------------------------------------- /Release Notes/2015.09.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGTools_Installer/HEAD/Release Notes/2015.09.md -------------------------------------------------------------------------------- /Release Notes/2016.07.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGTools_Installer/HEAD/Release Notes/2016.07.md -------------------------------------------------------------------------------- /Release Notes/2016.08.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGTools_Installer/HEAD/Release Notes/2016.08.md -------------------------------------------------------------------------------- /Release Notes/2016.10.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGTools_Installer/HEAD/Release Notes/2016.10.md -------------------------------------------------------------------------------- /Release Notes/2017.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGTools_Installer/HEAD/Release Notes/2017.1.md -------------------------------------------------------------------------------- /Release Notes/2017.1b2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGTools_Installer/HEAD/Release Notes/2017.1b2.md -------------------------------------------------------------------------------- /Release Notes/2017.1b3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGTools_Installer/HEAD/Release Notes/2017.1b3.md -------------------------------------------------------------------------------- /Release Notes/2017.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGTools_Installer/HEAD/Release Notes/2017.2.md -------------------------------------------------------------------------------- /Release Notes/2017.3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGTools_Installer/HEAD/Release Notes/2017.3.md -------------------------------------------------------------------------------- /Release Notes/2018.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGTools_Installer/HEAD/Release Notes/2018.1.md -------------------------------------------------------------------------------- /Version.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGTools_Installer/HEAD/Version.config --------------------------------------------------------------------------------