├── .github └── issue_template.md ├── .gitignore ├── AutoDMG.xcodeproj ├── project.pbxproj └── xcshareddata │ └── xcschemes │ └── AutoDMG.xcscheme ├── AutoDMG ├── AutoDMG Template.iconset │ ├── icon_128x128.png │ ├── icon_128x128@2x.png │ ├── icon_16x16.png │ ├── icon_16x16@2x.png │ ├── icon_256x256.png │ ├── icon_256x256@2x.png │ ├── icon_32x32.png │ ├── icon_32x32@2x.png │ ├── icon_512x512.png │ ├── icon_512x512@2x.png │ └── resize.sh ├── AutoDMG-Info.plist ├── AutoDMG-Prefix.pch ├── AutoDMG.entitlements ├── AutoDMG.iconset │ ├── icon_128x128.png │ ├── icon_128x128@2x.png │ ├── icon_16x16.png │ ├── icon_16x16@2x.png │ ├── icon_256x256.png │ ├── icon_256x256@2x.png │ ├── icon_32x32.png │ ├── icon_32x32@2x.png │ ├── icon_512x512.png │ ├── icon_512x512@2x.png │ └── resize.sh ├── Base.lproj │ └── MainMenu.xib ├── Checkmark.png ├── Checkmark@2x.png ├── CocoaWrapper.py ├── DMG Placeholder.png ├── Defaults.plist ├── Download.png ├── Download@2x.png ├── Exclamation.png ├── Exclamation@2x.png ├── IEDAddPkgController.py ├── IEDAppDelegate.py ├── IEDAppVersionController.py ├── IEDCLIController.py ├── IEDController.py ├── IEDDMGHelper.py ├── IEDLog.py ├── IEDLogLine.py ├── IEDPackage.py ├── IEDPanelPathManager.py ├── IEDProfileController.py ├── IEDSocketListener.py ├── IEDSourceSelector.py ├── IEDTemplate.py ├── IEDUpdateCache.py ├── IEDUpdateController.py ├── IEDUtil.py ├── IEDWorkflow.py ├── Installer Placeholder 10.10.png ├── Installer Placeholder 10.11.png ├── Installer Placeholder 10.12.png ├── Installer Placeholder 10.13.png ├── Installer Placeholder 10.14.png ├── Installer Placeholder 10.9.png ├── Installer Placeholder.png ├── Package blue arrow.png ├── Package blue arrow@2x.png ├── Package.png ├── Package@2x.png ├── STPrivilegedTask.h ├── STPrivilegedTask.m ├── UpdateProfiles.plist ├── en.lproj │ ├── Credits.rtf │ └── InfoPlist.strings ├── installesdtodmg.sh ├── main.m ├── main.py └── progresswatcher.py ├── Distributions └── create_dmg.sh ├── LatestVersion.plist ├── Media ├── AutoDMG Template Icon.psd ├── Icons │ ├── Checkmark.psd │ ├── Download.psd │ └── Exclamation.psd ├── InstallESDtoDMG Icon.psd ├── Installer Placeholder.psd ├── Package blue arrow.psd └── Package blue arrow@2x.psd ├── README.footer ├── README.header └── README.markdown /.github/issue_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagerValp/AutoDMG/HEAD/.github/issue_template.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagerValp/AutoDMG/HEAD/.gitignore -------------------------------------------------------------------------------- /AutoDMG.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagerValp/AutoDMG/HEAD/AutoDMG.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /AutoDMG.xcodeproj/xcshareddata/xcschemes/AutoDMG.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagerValp/AutoDMG/HEAD/AutoDMG.xcodeproj/xcshareddata/xcschemes/AutoDMG.xcscheme -------------------------------------------------------------------------------- /AutoDMG/AutoDMG Template.iconset/icon_128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagerValp/AutoDMG/HEAD/AutoDMG/AutoDMG Template.iconset/icon_128x128.png -------------------------------------------------------------------------------- /AutoDMG/AutoDMG Template.iconset/icon_128x128@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagerValp/AutoDMG/HEAD/AutoDMG/AutoDMG Template.iconset/icon_128x128@2x.png -------------------------------------------------------------------------------- /AutoDMG/AutoDMG Template.iconset/icon_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagerValp/AutoDMG/HEAD/AutoDMG/AutoDMG Template.iconset/icon_16x16.png -------------------------------------------------------------------------------- /AutoDMG/AutoDMG Template.iconset/icon_16x16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagerValp/AutoDMG/HEAD/AutoDMG/AutoDMG Template.iconset/icon_16x16@2x.png -------------------------------------------------------------------------------- /AutoDMG/AutoDMG Template.iconset/icon_256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagerValp/AutoDMG/HEAD/AutoDMG/AutoDMG Template.iconset/icon_256x256.png -------------------------------------------------------------------------------- /AutoDMG/AutoDMG Template.iconset/icon_256x256@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagerValp/AutoDMG/HEAD/AutoDMG/AutoDMG Template.iconset/icon_256x256@2x.png -------------------------------------------------------------------------------- /AutoDMG/AutoDMG Template.iconset/icon_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagerValp/AutoDMG/HEAD/AutoDMG/AutoDMG Template.iconset/icon_32x32.png -------------------------------------------------------------------------------- /AutoDMG/AutoDMG Template.iconset/icon_32x32@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagerValp/AutoDMG/HEAD/AutoDMG/AutoDMG Template.iconset/icon_32x32@2x.png -------------------------------------------------------------------------------- /AutoDMG/AutoDMG Template.iconset/icon_512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagerValp/AutoDMG/HEAD/AutoDMG/AutoDMG Template.iconset/icon_512x512.png -------------------------------------------------------------------------------- /AutoDMG/AutoDMG Template.iconset/icon_512x512@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagerValp/AutoDMG/HEAD/AutoDMG/AutoDMG Template.iconset/icon_512x512@2x.png -------------------------------------------------------------------------------- /AutoDMG/AutoDMG Template.iconset/resize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagerValp/AutoDMG/HEAD/AutoDMG/AutoDMG Template.iconset/resize.sh -------------------------------------------------------------------------------- /AutoDMG/AutoDMG-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagerValp/AutoDMG/HEAD/AutoDMG/AutoDMG-Info.plist -------------------------------------------------------------------------------- /AutoDMG/AutoDMG-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagerValp/AutoDMG/HEAD/AutoDMG/AutoDMG-Prefix.pch -------------------------------------------------------------------------------- /AutoDMG/AutoDMG.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagerValp/AutoDMG/HEAD/AutoDMG/AutoDMG.entitlements -------------------------------------------------------------------------------- /AutoDMG/AutoDMG.iconset/icon_128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagerValp/AutoDMG/HEAD/AutoDMG/AutoDMG.iconset/icon_128x128.png -------------------------------------------------------------------------------- /AutoDMG/AutoDMG.iconset/icon_128x128@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagerValp/AutoDMG/HEAD/AutoDMG/AutoDMG.iconset/icon_128x128@2x.png -------------------------------------------------------------------------------- /AutoDMG/AutoDMG.iconset/icon_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagerValp/AutoDMG/HEAD/AutoDMG/AutoDMG.iconset/icon_16x16.png -------------------------------------------------------------------------------- /AutoDMG/AutoDMG.iconset/icon_16x16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagerValp/AutoDMG/HEAD/AutoDMG/AutoDMG.iconset/icon_16x16@2x.png -------------------------------------------------------------------------------- /AutoDMG/AutoDMG.iconset/icon_256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagerValp/AutoDMG/HEAD/AutoDMG/AutoDMG.iconset/icon_256x256.png -------------------------------------------------------------------------------- /AutoDMG/AutoDMG.iconset/icon_256x256@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagerValp/AutoDMG/HEAD/AutoDMG/AutoDMG.iconset/icon_256x256@2x.png -------------------------------------------------------------------------------- /AutoDMG/AutoDMG.iconset/icon_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagerValp/AutoDMG/HEAD/AutoDMG/AutoDMG.iconset/icon_32x32.png -------------------------------------------------------------------------------- /AutoDMG/AutoDMG.iconset/icon_32x32@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagerValp/AutoDMG/HEAD/AutoDMG/AutoDMG.iconset/icon_32x32@2x.png -------------------------------------------------------------------------------- /AutoDMG/AutoDMG.iconset/icon_512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagerValp/AutoDMG/HEAD/AutoDMG/AutoDMG.iconset/icon_512x512.png -------------------------------------------------------------------------------- /AutoDMG/AutoDMG.iconset/icon_512x512@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagerValp/AutoDMG/HEAD/AutoDMG/AutoDMG.iconset/icon_512x512@2x.png -------------------------------------------------------------------------------- /AutoDMG/AutoDMG.iconset/resize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagerValp/AutoDMG/HEAD/AutoDMG/AutoDMG.iconset/resize.sh -------------------------------------------------------------------------------- /AutoDMG/Base.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagerValp/AutoDMG/HEAD/AutoDMG/Base.lproj/MainMenu.xib -------------------------------------------------------------------------------- /AutoDMG/Checkmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagerValp/AutoDMG/HEAD/AutoDMG/Checkmark.png -------------------------------------------------------------------------------- /AutoDMG/Checkmark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagerValp/AutoDMG/HEAD/AutoDMG/Checkmark@2x.png -------------------------------------------------------------------------------- /AutoDMG/CocoaWrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagerValp/AutoDMG/HEAD/AutoDMG/CocoaWrapper.py -------------------------------------------------------------------------------- /AutoDMG/DMG Placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagerValp/AutoDMG/HEAD/AutoDMG/DMG Placeholder.png -------------------------------------------------------------------------------- /AutoDMG/Defaults.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagerValp/AutoDMG/HEAD/AutoDMG/Defaults.plist -------------------------------------------------------------------------------- /AutoDMG/Download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagerValp/AutoDMG/HEAD/AutoDMG/Download.png -------------------------------------------------------------------------------- /AutoDMG/Download@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagerValp/AutoDMG/HEAD/AutoDMG/Download@2x.png -------------------------------------------------------------------------------- /AutoDMG/Exclamation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagerValp/AutoDMG/HEAD/AutoDMG/Exclamation.png -------------------------------------------------------------------------------- /AutoDMG/Exclamation@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagerValp/AutoDMG/HEAD/AutoDMG/Exclamation@2x.png -------------------------------------------------------------------------------- /AutoDMG/IEDAddPkgController.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagerValp/AutoDMG/HEAD/AutoDMG/IEDAddPkgController.py -------------------------------------------------------------------------------- /AutoDMG/IEDAppDelegate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagerValp/AutoDMG/HEAD/AutoDMG/IEDAppDelegate.py -------------------------------------------------------------------------------- /AutoDMG/IEDAppVersionController.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagerValp/AutoDMG/HEAD/AutoDMG/IEDAppVersionController.py -------------------------------------------------------------------------------- /AutoDMG/IEDCLIController.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagerValp/AutoDMG/HEAD/AutoDMG/IEDCLIController.py -------------------------------------------------------------------------------- /AutoDMG/IEDController.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagerValp/AutoDMG/HEAD/AutoDMG/IEDController.py -------------------------------------------------------------------------------- /AutoDMG/IEDDMGHelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagerValp/AutoDMG/HEAD/AutoDMG/IEDDMGHelper.py -------------------------------------------------------------------------------- /AutoDMG/IEDLog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagerValp/AutoDMG/HEAD/AutoDMG/IEDLog.py -------------------------------------------------------------------------------- /AutoDMG/IEDLogLine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagerValp/AutoDMG/HEAD/AutoDMG/IEDLogLine.py -------------------------------------------------------------------------------- /AutoDMG/IEDPackage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagerValp/AutoDMG/HEAD/AutoDMG/IEDPackage.py -------------------------------------------------------------------------------- /AutoDMG/IEDPanelPathManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagerValp/AutoDMG/HEAD/AutoDMG/IEDPanelPathManager.py -------------------------------------------------------------------------------- /AutoDMG/IEDProfileController.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagerValp/AutoDMG/HEAD/AutoDMG/IEDProfileController.py -------------------------------------------------------------------------------- /AutoDMG/IEDSocketListener.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagerValp/AutoDMG/HEAD/AutoDMG/IEDSocketListener.py -------------------------------------------------------------------------------- /AutoDMG/IEDSourceSelector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagerValp/AutoDMG/HEAD/AutoDMG/IEDSourceSelector.py -------------------------------------------------------------------------------- /AutoDMG/IEDTemplate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagerValp/AutoDMG/HEAD/AutoDMG/IEDTemplate.py -------------------------------------------------------------------------------- /AutoDMG/IEDUpdateCache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagerValp/AutoDMG/HEAD/AutoDMG/IEDUpdateCache.py -------------------------------------------------------------------------------- /AutoDMG/IEDUpdateController.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagerValp/AutoDMG/HEAD/AutoDMG/IEDUpdateController.py -------------------------------------------------------------------------------- /AutoDMG/IEDUtil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagerValp/AutoDMG/HEAD/AutoDMG/IEDUtil.py -------------------------------------------------------------------------------- /AutoDMG/IEDWorkflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagerValp/AutoDMG/HEAD/AutoDMG/IEDWorkflow.py -------------------------------------------------------------------------------- /AutoDMG/Installer Placeholder 10.10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagerValp/AutoDMG/HEAD/AutoDMG/Installer Placeholder 10.10.png -------------------------------------------------------------------------------- /AutoDMG/Installer Placeholder 10.11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagerValp/AutoDMG/HEAD/AutoDMG/Installer Placeholder 10.11.png -------------------------------------------------------------------------------- /AutoDMG/Installer Placeholder 10.12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagerValp/AutoDMG/HEAD/AutoDMG/Installer Placeholder 10.12.png -------------------------------------------------------------------------------- /AutoDMG/Installer Placeholder 10.13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagerValp/AutoDMG/HEAD/AutoDMG/Installer Placeholder 10.13.png -------------------------------------------------------------------------------- /AutoDMG/Installer Placeholder 10.14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagerValp/AutoDMG/HEAD/AutoDMG/Installer Placeholder 10.14.png -------------------------------------------------------------------------------- /AutoDMG/Installer Placeholder 10.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagerValp/AutoDMG/HEAD/AutoDMG/Installer Placeholder 10.9.png -------------------------------------------------------------------------------- /AutoDMG/Installer Placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagerValp/AutoDMG/HEAD/AutoDMG/Installer Placeholder.png -------------------------------------------------------------------------------- /AutoDMG/Package blue arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagerValp/AutoDMG/HEAD/AutoDMG/Package blue arrow.png -------------------------------------------------------------------------------- /AutoDMG/Package blue arrow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagerValp/AutoDMG/HEAD/AutoDMG/Package blue arrow@2x.png -------------------------------------------------------------------------------- /AutoDMG/Package.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagerValp/AutoDMG/HEAD/AutoDMG/Package.png -------------------------------------------------------------------------------- /AutoDMG/Package@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagerValp/AutoDMG/HEAD/AutoDMG/Package@2x.png -------------------------------------------------------------------------------- /AutoDMG/STPrivilegedTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagerValp/AutoDMG/HEAD/AutoDMG/STPrivilegedTask.h -------------------------------------------------------------------------------- /AutoDMG/STPrivilegedTask.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagerValp/AutoDMG/HEAD/AutoDMG/STPrivilegedTask.m -------------------------------------------------------------------------------- /AutoDMG/UpdateProfiles.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagerValp/AutoDMG/HEAD/AutoDMG/UpdateProfiles.plist -------------------------------------------------------------------------------- /AutoDMG/en.lproj/Credits.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagerValp/AutoDMG/HEAD/AutoDMG/en.lproj/Credits.rtf -------------------------------------------------------------------------------- /AutoDMG/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /AutoDMG/installesdtodmg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagerValp/AutoDMG/HEAD/AutoDMG/installesdtodmg.sh -------------------------------------------------------------------------------- /AutoDMG/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagerValp/AutoDMG/HEAD/AutoDMG/main.m -------------------------------------------------------------------------------- /AutoDMG/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagerValp/AutoDMG/HEAD/AutoDMG/main.py -------------------------------------------------------------------------------- /AutoDMG/progresswatcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagerValp/AutoDMG/HEAD/AutoDMG/progresswatcher.py -------------------------------------------------------------------------------- /Distributions/create_dmg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagerValp/AutoDMG/HEAD/Distributions/create_dmg.sh -------------------------------------------------------------------------------- /LatestVersion.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagerValp/AutoDMG/HEAD/LatestVersion.plist -------------------------------------------------------------------------------- /Media/AutoDMG Template Icon.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagerValp/AutoDMG/HEAD/Media/AutoDMG Template Icon.psd -------------------------------------------------------------------------------- /Media/Icons/Checkmark.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagerValp/AutoDMG/HEAD/Media/Icons/Checkmark.psd -------------------------------------------------------------------------------- /Media/Icons/Download.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagerValp/AutoDMG/HEAD/Media/Icons/Download.psd -------------------------------------------------------------------------------- /Media/Icons/Exclamation.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagerValp/AutoDMG/HEAD/Media/Icons/Exclamation.psd -------------------------------------------------------------------------------- /Media/InstallESDtoDMG Icon.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagerValp/AutoDMG/HEAD/Media/InstallESDtoDMG Icon.psd -------------------------------------------------------------------------------- /Media/Installer Placeholder.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagerValp/AutoDMG/HEAD/Media/Installer Placeholder.psd -------------------------------------------------------------------------------- /Media/Package blue arrow.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagerValp/AutoDMG/HEAD/Media/Package blue arrow.psd -------------------------------------------------------------------------------- /Media/Package blue arrow@2x.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagerValp/AutoDMG/HEAD/Media/Package blue arrow@2x.psd -------------------------------------------------------------------------------- /README.footer: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /README.header: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagerValp/AutoDMG/HEAD/README.header -------------------------------------------------------------------------------- /README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagerValp/AutoDMG/HEAD/README.markdown --------------------------------------------------------------------------------