├── .github ├── FUNDING.yml └── workflows │ └── macos.yml ├── .gitignore ├── FastDMG.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcuserdata │ └── sveinbjorn.xcuserdatad │ └── xcschemes │ ├── FastDMG.xcscheme │ └── xcschememanagement.plist ├── FastDMG ├── Base.lproj │ ├── MainMenu.xib │ └── MainWindow.xib ├── Credits.rtf ├── FastDMGAppDelegate.h ├── FastDMGAppDelegate.m ├── FastDMGWindowController.h ├── FastDMGWindowController.m ├── Info.plist ├── diskimage.icns ├── fastdmg.icns └── main.m ├── Icon ├── createicns ├── fastdmg.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 ├── fastdmg.png ├── fastdmg.svg ├── make_icon.sh └── old │ ├── fastdmg.ai │ ├── fastdmg.icns │ ├── fastdmg.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 │ └── fastdmg_icon.png ├── LICENSE.txt ├── Makefile └── README.md /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/FastDMG/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/macos.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/FastDMG/HEAD/.github/workflows/macos.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/FastDMG/HEAD/.gitignore -------------------------------------------------------------------------------- /FastDMG.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/FastDMG/HEAD/FastDMG.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /FastDMG.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/FastDMG/HEAD/FastDMG.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /FastDMG.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/FastDMG/HEAD/FastDMG.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /FastDMG.xcodeproj/xcuserdata/sveinbjorn.xcuserdatad/xcschemes/FastDMG.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/FastDMG/HEAD/FastDMG.xcodeproj/xcuserdata/sveinbjorn.xcuserdatad/xcschemes/FastDMG.xcscheme -------------------------------------------------------------------------------- /FastDMG.xcodeproj/xcuserdata/sveinbjorn.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/FastDMG/HEAD/FastDMG.xcodeproj/xcuserdata/sveinbjorn.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /FastDMG/Base.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/FastDMG/HEAD/FastDMG/Base.lproj/MainMenu.xib -------------------------------------------------------------------------------- /FastDMG/Base.lproj/MainWindow.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/FastDMG/HEAD/FastDMG/Base.lproj/MainWindow.xib -------------------------------------------------------------------------------- /FastDMG/Credits.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/FastDMG/HEAD/FastDMG/Credits.rtf -------------------------------------------------------------------------------- /FastDMG/FastDMGAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/FastDMG/HEAD/FastDMG/FastDMGAppDelegate.h -------------------------------------------------------------------------------- /FastDMG/FastDMGAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/FastDMG/HEAD/FastDMG/FastDMGAppDelegate.m -------------------------------------------------------------------------------- /FastDMG/FastDMGWindowController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/FastDMG/HEAD/FastDMG/FastDMGWindowController.h -------------------------------------------------------------------------------- /FastDMG/FastDMGWindowController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/FastDMG/HEAD/FastDMG/FastDMGWindowController.m -------------------------------------------------------------------------------- /FastDMG/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/FastDMG/HEAD/FastDMG/Info.plist -------------------------------------------------------------------------------- /FastDMG/diskimage.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/FastDMG/HEAD/FastDMG/diskimage.icns -------------------------------------------------------------------------------- /FastDMG/fastdmg.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/FastDMG/HEAD/FastDMG/fastdmg.icns -------------------------------------------------------------------------------- /FastDMG/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/FastDMG/HEAD/FastDMG/main.m -------------------------------------------------------------------------------- /Icon/createicns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/FastDMG/HEAD/Icon/createicns -------------------------------------------------------------------------------- /Icon/fastdmg.iconset/icon_128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/FastDMG/HEAD/Icon/fastdmg.iconset/icon_128x128.png -------------------------------------------------------------------------------- /Icon/fastdmg.iconset/icon_128x128@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/FastDMG/HEAD/Icon/fastdmg.iconset/icon_128x128@2x.png -------------------------------------------------------------------------------- /Icon/fastdmg.iconset/icon_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/FastDMG/HEAD/Icon/fastdmg.iconset/icon_16x16.png -------------------------------------------------------------------------------- /Icon/fastdmg.iconset/icon_16x16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/FastDMG/HEAD/Icon/fastdmg.iconset/icon_16x16@2x.png -------------------------------------------------------------------------------- /Icon/fastdmg.iconset/icon_256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/FastDMG/HEAD/Icon/fastdmg.iconset/icon_256x256.png -------------------------------------------------------------------------------- /Icon/fastdmg.iconset/icon_256x256@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/FastDMG/HEAD/Icon/fastdmg.iconset/icon_256x256@2x.png -------------------------------------------------------------------------------- /Icon/fastdmg.iconset/icon_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/FastDMG/HEAD/Icon/fastdmg.iconset/icon_32x32.png -------------------------------------------------------------------------------- /Icon/fastdmg.iconset/icon_32x32@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/FastDMG/HEAD/Icon/fastdmg.iconset/icon_32x32@2x.png -------------------------------------------------------------------------------- /Icon/fastdmg.iconset/icon_512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/FastDMG/HEAD/Icon/fastdmg.iconset/icon_512x512.png -------------------------------------------------------------------------------- /Icon/fastdmg.iconset/icon_512x512@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/FastDMG/HEAD/Icon/fastdmg.iconset/icon_512x512@2x.png -------------------------------------------------------------------------------- /Icon/fastdmg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/FastDMG/HEAD/Icon/fastdmg.png -------------------------------------------------------------------------------- /Icon/fastdmg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/FastDMG/HEAD/Icon/fastdmg.svg -------------------------------------------------------------------------------- /Icon/make_icon.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/FastDMG/HEAD/Icon/make_icon.sh -------------------------------------------------------------------------------- /Icon/old/fastdmg.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/FastDMG/HEAD/Icon/old/fastdmg.ai -------------------------------------------------------------------------------- /Icon/old/fastdmg.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/FastDMG/HEAD/Icon/old/fastdmg.icns -------------------------------------------------------------------------------- /Icon/old/fastdmg.iconset/icon_128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/FastDMG/HEAD/Icon/old/fastdmg.iconset/icon_128x128.png -------------------------------------------------------------------------------- /Icon/old/fastdmg.iconset/icon_128x128@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/FastDMG/HEAD/Icon/old/fastdmg.iconset/icon_128x128@2x.png -------------------------------------------------------------------------------- /Icon/old/fastdmg.iconset/icon_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/FastDMG/HEAD/Icon/old/fastdmg.iconset/icon_16x16.png -------------------------------------------------------------------------------- /Icon/old/fastdmg.iconset/icon_16x16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/FastDMG/HEAD/Icon/old/fastdmg.iconset/icon_16x16@2x.png -------------------------------------------------------------------------------- /Icon/old/fastdmg.iconset/icon_256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/FastDMG/HEAD/Icon/old/fastdmg.iconset/icon_256x256.png -------------------------------------------------------------------------------- /Icon/old/fastdmg.iconset/icon_256x256@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/FastDMG/HEAD/Icon/old/fastdmg.iconset/icon_256x256@2x.png -------------------------------------------------------------------------------- /Icon/old/fastdmg.iconset/icon_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/FastDMG/HEAD/Icon/old/fastdmg.iconset/icon_32x32.png -------------------------------------------------------------------------------- /Icon/old/fastdmg.iconset/icon_32x32@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/FastDMG/HEAD/Icon/old/fastdmg.iconset/icon_32x32@2x.png -------------------------------------------------------------------------------- /Icon/old/fastdmg.iconset/icon_512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/FastDMG/HEAD/Icon/old/fastdmg.iconset/icon_512x512.png -------------------------------------------------------------------------------- /Icon/old/fastdmg.iconset/icon_512x512@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/FastDMG/HEAD/Icon/old/fastdmg.iconset/icon_512x512@2x.png -------------------------------------------------------------------------------- /Icon/old/fastdmg_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/FastDMG/HEAD/Icon/old/fastdmg_icon.png -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/FastDMG/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/FastDMG/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveinbjornt/FastDMG/HEAD/README.md --------------------------------------------------------------------------------