├── .git-blame-ignore-revs ├── .gitignore ├── LICENSE ├── M1Craft-Info.plist ├── M1Craft.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── swiftpm │ │ └── Package.resolved └── xcshareddata │ └── xcschemes │ └── M1Craft UI.xcscheme ├── M1Craft ├── AppState.swift ├── Array+RawRepresentable.swift ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── 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 │ └── Contents.json ├── Constants.swift ├── Localization │ └── Localizable.strings ├── M1Craft App.swift ├── M1Craft-Debug.entitlements ├── M1Craft.entitlements └── Views │ ├── AuthView.swift │ ├── ContentView.swift │ ├── MainWindow.swift │ ├── Preflight.swift │ ├── RefreshAuthView.swift │ ├── SettingsView.swift │ ├── SparkleView.swift │ ├── VersionList │ ├── VersionListRowView.swift │ └── VersionListView.swift │ └── Xcodes │ └── AppStoreButtonStyle.swift ├── README.md └── readme-fr.md /.git-blame-ignore-revs: -------------------------------------------------------------------------------- 1 | 21672816604f7f8e0c179ca8f97ffd6eb271cf33 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | xcuserdata -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezfe/m1craft/HEAD/LICENSE -------------------------------------------------------------------------------- /M1Craft-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezfe/m1craft/HEAD/M1Craft-Info.plist -------------------------------------------------------------------------------- /M1Craft.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezfe/m1craft/HEAD/M1Craft.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /M1Craft.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezfe/m1craft/HEAD/M1Craft.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /M1Craft.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezfe/m1craft/HEAD/M1Craft.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /M1Craft.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezfe/m1craft/HEAD/M1Craft.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved -------------------------------------------------------------------------------- /M1Craft.xcodeproj/xcshareddata/xcschemes/M1Craft UI.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezfe/m1craft/HEAD/M1Craft.xcodeproj/xcshareddata/xcschemes/M1Craft UI.xcscheme -------------------------------------------------------------------------------- /M1Craft/AppState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezfe/m1craft/HEAD/M1Craft/AppState.swift -------------------------------------------------------------------------------- /M1Craft/Array+RawRepresentable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezfe/m1craft/HEAD/M1Craft/Array+RawRepresentable.swift -------------------------------------------------------------------------------- /M1Craft/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezfe/m1craft/HEAD/M1Craft/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /M1Craft/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezfe/m1craft/HEAD/M1Craft/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /M1Craft/Assets.xcassets/AppIcon.appiconset/icon_128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezfe/m1craft/HEAD/M1Craft/Assets.xcassets/AppIcon.appiconset/icon_128x128.png -------------------------------------------------------------------------------- /M1Craft/Assets.xcassets/AppIcon.appiconset/icon_128x128@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezfe/m1craft/HEAD/M1Craft/Assets.xcassets/AppIcon.appiconset/icon_128x128@2x.png -------------------------------------------------------------------------------- /M1Craft/Assets.xcassets/AppIcon.appiconset/icon_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezfe/m1craft/HEAD/M1Craft/Assets.xcassets/AppIcon.appiconset/icon_16x16.png -------------------------------------------------------------------------------- /M1Craft/Assets.xcassets/AppIcon.appiconset/icon_16x16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezfe/m1craft/HEAD/M1Craft/Assets.xcassets/AppIcon.appiconset/icon_16x16@2x.png -------------------------------------------------------------------------------- /M1Craft/Assets.xcassets/AppIcon.appiconset/icon_256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezfe/m1craft/HEAD/M1Craft/Assets.xcassets/AppIcon.appiconset/icon_256x256.png -------------------------------------------------------------------------------- /M1Craft/Assets.xcassets/AppIcon.appiconset/icon_256x256@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezfe/m1craft/HEAD/M1Craft/Assets.xcassets/AppIcon.appiconset/icon_256x256@2x.png -------------------------------------------------------------------------------- /M1Craft/Assets.xcassets/AppIcon.appiconset/icon_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezfe/m1craft/HEAD/M1Craft/Assets.xcassets/AppIcon.appiconset/icon_32x32.png -------------------------------------------------------------------------------- /M1Craft/Assets.xcassets/AppIcon.appiconset/icon_32x32@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezfe/m1craft/HEAD/M1Craft/Assets.xcassets/AppIcon.appiconset/icon_32x32@2x.png -------------------------------------------------------------------------------- /M1Craft/Assets.xcassets/AppIcon.appiconset/icon_512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezfe/m1craft/HEAD/M1Craft/Assets.xcassets/AppIcon.appiconset/icon_512x512.png -------------------------------------------------------------------------------- /M1Craft/Assets.xcassets/AppIcon.appiconset/icon_512x512@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezfe/m1craft/HEAD/M1Craft/Assets.xcassets/AppIcon.appiconset/icon_512x512@2x.png -------------------------------------------------------------------------------- /M1Craft/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezfe/m1craft/HEAD/M1Craft/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /M1Craft/Constants.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezfe/m1craft/HEAD/M1Craft/Constants.swift -------------------------------------------------------------------------------- /M1Craft/Localization/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezfe/m1craft/HEAD/M1Craft/Localization/Localizable.strings -------------------------------------------------------------------------------- /M1Craft/M1Craft App.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezfe/m1craft/HEAD/M1Craft/M1Craft App.swift -------------------------------------------------------------------------------- /M1Craft/M1Craft-Debug.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezfe/m1craft/HEAD/M1Craft/M1Craft-Debug.entitlements -------------------------------------------------------------------------------- /M1Craft/M1Craft.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezfe/m1craft/HEAD/M1Craft/M1Craft.entitlements -------------------------------------------------------------------------------- /M1Craft/Views/AuthView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezfe/m1craft/HEAD/M1Craft/Views/AuthView.swift -------------------------------------------------------------------------------- /M1Craft/Views/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezfe/m1craft/HEAD/M1Craft/Views/ContentView.swift -------------------------------------------------------------------------------- /M1Craft/Views/MainWindow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezfe/m1craft/HEAD/M1Craft/Views/MainWindow.swift -------------------------------------------------------------------------------- /M1Craft/Views/Preflight.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezfe/m1craft/HEAD/M1Craft/Views/Preflight.swift -------------------------------------------------------------------------------- /M1Craft/Views/RefreshAuthView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezfe/m1craft/HEAD/M1Craft/Views/RefreshAuthView.swift -------------------------------------------------------------------------------- /M1Craft/Views/SettingsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezfe/m1craft/HEAD/M1Craft/Views/SettingsView.swift -------------------------------------------------------------------------------- /M1Craft/Views/SparkleView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezfe/m1craft/HEAD/M1Craft/Views/SparkleView.swift -------------------------------------------------------------------------------- /M1Craft/Views/VersionList/VersionListRowView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezfe/m1craft/HEAD/M1Craft/Views/VersionList/VersionListRowView.swift -------------------------------------------------------------------------------- /M1Craft/Views/VersionList/VersionListView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezfe/m1craft/HEAD/M1Craft/Views/VersionList/VersionListView.swift -------------------------------------------------------------------------------- /M1Craft/Views/Xcodes/AppStoreButtonStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezfe/m1craft/HEAD/M1Craft/Views/Xcodes/AppStoreButtonStyle.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezfe/m1craft/HEAD/README.md -------------------------------------------------------------------------------- /readme-fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezfe/m1craft/HEAD/readme-fr.md --------------------------------------------------------------------------------