├── .github └── FUNDING.yml ├── .gitignore ├── Debug.xcconfig ├── LICENSE.txt ├── README.md ├── Release.xcconfig ├── Shared.xcconfig ├── StopTheMAS.xcodeproj └── project.pbxproj ├── nonsource ├── Info.plist └── StopTheMAS.entitlements └── source ├── JJApplicationDelegate.h ├── JJApplicationDelegate.m ├── JJLicenseWindow.h ├── JJLicenseWindow.m ├── JJMainMenu.h ├── JJMainMenu.m ├── JJMainWindow.h ├── JJMainWindow.m └── main.m /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | custom: https://www.paypal.me/JeffJohnsonWI 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapcat/StopTheMacAppStore/HEAD/.gitignore -------------------------------------------------------------------------------- /Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapcat/StopTheMacAppStore/HEAD/Debug.xcconfig -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapcat/StopTheMacAppStore/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapcat/StopTheMacAppStore/HEAD/README.md -------------------------------------------------------------------------------- /Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapcat/StopTheMacAppStore/HEAD/Release.xcconfig -------------------------------------------------------------------------------- /Shared.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapcat/StopTheMacAppStore/HEAD/Shared.xcconfig -------------------------------------------------------------------------------- /StopTheMAS.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapcat/StopTheMacAppStore/HEAD/StopTheMAS.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /nonsource/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapcat/StopTheMacAppStore/HEAD/nonsource/Info.plist -------------------------------------------------------------------------------- /nonsource/StopTheMAS.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapcat/StopTheMacAppStore/HEAD/nonsource/StopTheMAS.entitlements -------------------------------------------------------------------------------- /source/JJApplicationDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapcat/StopTheMacAppStore/HEAD/source/JJApplicationDelegate.h -------------------------------------------------------------------------------- /source/JJApplicationDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapcat/StopTheMacAppStore/HEAD/source/JJApplicationDelegate.m -------------------------------------------------------------------------------- /source/JJLicenseWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapcat/StopTheMacAppStore/HEAD/source/JJLicenseWindow.h -------------------------------------------------------------------------------- /source/JJLicenseWindow.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapcat/StopTheMacAppStore/HEAD/source/JJLicenseWindow.m -------------------------------------------------------------------------------- /source/JJMainMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapcat/StopTheMacAppStore/HEAD/source/JJMainMenu.h -------------------------------------------------------------------------------- /source/JJMainMenu.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapcat/StopTheMacAppStore/HEAD/source/JJMainMenu.m -------------------------------------------------------------------------------- /source/JJMainWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapcat/StopTheMacAppStore/HEAD/source/JJMainWindow.h -------------------------------------------------------------------------------- /source/JJMainWindow.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapcat/StopTheMacAppStore/HEAD/source/JJMainWindow.m -------------------------------------------------------------------------------- /source/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapcat/StopTheMacAppStore/HEAD/source/main.m --------------------------------------------------------------------------------