├── .gitignore ├── 01-create-app.sh ├── 02-codesign.sh ├── 03-notarize.sh ├── 04-create-dmg.sh ├── 05-sign-dmg.sh ├── LICENSE ├── README.md ├── resources ├── app │ ├── Cryptomator-Vault.icns │ ├── Cryptomator.entitlements │ ├── Cryptomator.icns │ └── Info.plist └── dmg │ ├── Cryptomator-Volume.icns │ ├── Cryptomator-background.tiff │ ├── license.rtf │ └── macFUSE.webloc └── tools └── create-dmg ├── LICENSE ├── create-dmg.sh └── support ├── dmg-license.py └── template.applescript /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/cryptomator-mac/HEAD/.gitignore -------------------------------------------------------------------------------- /01-create-app.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/cryptomator-mac/HEAD/01-create-app.sh -------------------------------------------------------------------------------- /02-codesign.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/cryptomator-mac/HEAD/02-codesign.sh -------------------------------------------------------------------------------- /03-notarize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/cryptomator-mac/HEAD/03-notarize.sh -------------------------------------------------------------------------------- /04-create-dmg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/cryptomator-mac/HEAD/04-create-dmg.sh -------------------------------------------------------------------------------- /05-sign-dmg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/cryptomator-mac/HEAD/05-sign-dmg.sh -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/cryptomator-mac/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/cryptomator-mac/HEAD/README.md -------------------------------------------------------------------------------- /resources/app/Cryptomator-Vault.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/cryptomator-mac/HEAD/resources/app/Cryptomator-Vault.icns -------------------------------------------------------------------------------- /resources/app/Cryptomator.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/cryptomator-mac/HEAD/resources/app/Cryptomator.entitlements -------------------------------------------------------------------------------- /resources/app/Cryptomator.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/cryptomator-mac/HEAD/resources/app/Cryptomator.icns -------------------------------------------------------------------------------- /resources/app/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/cryptomator-mac/HEAD/resources/app/Info.plist -------------------------------------------------------------------------------- /resources/dmg/Cryptomator-Volume.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/cryptomator-mac/HEAD/resources/dmg/Cryptomator-Volume.icns -------------------------------------------------------------------------------- /resources/dmg/Cryptomator-background.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/cryptomator-mac/HEAD/resources/dmg/Cryptomator-background.tiff -------------------------------------------------------------------------------- /resources/dmg/license.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/cryptomator-mac/HEAD/resources/dmg/license.rtf -------------------------------------------------------------------------------- /resources/dmg/macFUSE.webloc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/cryptomator-mac/HEAD/resources/dmg/macFUSE.webloc -------------------------------------------------------------------------------- /tools/create-dmg/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/cryptomator-mac/HEAD/tools/create-dmg/LICENSE -------------------------------------------------------------------------------- /tools/create-dmg/create-dmg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/cryptomator-mac/HEAD/tools/create-dmg/create-dmg.sh -------------------------------------------------------------------------------- /tools/create-dmg/support/dmg-license.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/cryptomator-mac/HEAD/tools/create-dmg/support/dmg-license.py -------------------------------------------------------------------------------- /tools/create-dmg/support/template.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/cryptomator-mac/HEAD/tools/create-dmg/support/template.applescript --------------------------------------------------------------------------------