├── .github └── workflows │ └── build.yml ├── .gitignore ├── .gitmodules ├── Entitlement.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── swiftpm │ │ └── Package.resolved └── xcshareddata │ └── xcschemes │ └── Entitlement.xcscheme ├── Entitlement ├── AnisetteDataHelper.swift ├── AppIDView.swift ├── AppIDViewModel.swift ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json ├── ContentView.swift ├── EntitlementApp.swift ├── Info.plist ├── Keychain.swift ├── LoginViewModel.swift ├── Preview Content │ └── Preview Assets.xcassets │ │ └── Contents.json ├── SettingsView.swift └── Shared.swift └── README.md /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeBlack/GetMoreRam/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | xcuserdata -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeBlack/GetMoreRam/HEAD/.gitmodules -------------------------------------------------------------------------------- /Entitlement.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeBlack/GetMoreRam/HEAD/Entitlement.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Entitlement.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeBlack/GetMoreRam/HEAD/Entitlement.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Entitlement.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeBlack/GetMoreRam/HEAD/Entitlement.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved -------------------------------------------------------------------------------- /Entitlement.xcodeproj/xcshareddata/xcschemes/Entitlement.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeBlack/GetMoreRam/HEAD/Entitlement.xcodeproj/xcshareddata/xcschemes/Entitlement.xcscheme -------------------------------------------------------------------------------- /Entitlement/AnisetteDataHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeBlack/GetMoreRam/HEAD/Entitlement/AnisetteDataHelper.swift -------------------------------------------------------------------------------- /Entitlement/AppIDView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeBlack/GetMoreRam/HEAD/Entitlement/AppIDView.swift -------------------------------------------------------------------------------- /Entitlement/AppIDViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeBlack/GetMoreRam/HEAD/Entitlement/AppIDViewModel.swift -------------------------------------------------------------------------------- /Entitlement/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeBlack/GetMoreRam/HEAD/Entitlement/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /Entitlement/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeBlack/GetMoreRam/HEAD/Entitlement/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Entitlement/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeBlack/GetMoreRam/HEAD/Entitlement/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Entitlement/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeBlack/GetMoreRam/HEAD/Entitlement/ContentView.swift -------------------------------------------------------------------------------- /Entitlement/EntitlementApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeBlack/GetMoreRam/HEAD/Entitlement/EntitlementApp.swift -------------------------------------------------------------------------------- /Entitlement/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeBlack/GetMoreRam/HEAD/Entitlement/Info.plist -------------------------------------------------------------------------------- /Entitlement/Keychain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeBlack/GetMoreRam/HEAD/Entitlement/Keychain.swift -------------------------------------------------------------------------------- /Entitlement/LoginViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeBlack/GetMoreRam/HEAD/Entitlement/LoginViewModel.swift -------------------------------------------------------------------------------- /Entitlement/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeBlack/GetMoreRam/HEAD/Entitlement/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Entitlement/SettingsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeBlack/GetMoreRam/HEAD/Entitlement/SettingsView.swift -------------------------------------------------------------------------------- /Entitlement/Shared.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeBlack/GetMoreRam/HEAD/Entitlement/Shared.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugeBlack/GetMoreRam/HEAD/README.md --------------------------------------------------------------------------------