├── .github └── FUNDING.yml ├── .gitignore ├── Debug.xcconfig ├── LICENSE.txt ├── README.md ├── Release.xcconfig ├── Shared.xcconfig ├── StopTheNews.xcodeproj └── project.pbxproj ├── nonsource ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── icon128x128@1x.png │ │ ├── icon128x128@2x.png │ │ ├── icon16x16@1x.png │ │ ├── icon16x16@2x.png │ │ ├── icon256x256@1x.png │ │ ├── icon256x256@2x.png │ │ ├── icon32x32@1x.png │ │ ├── icon32x32@2x.png │ │ ├── icon512x512@1x.png │ │ └── icon512x512@2x.png │ └── Contents.json ├── Info.plist └── StopTheNews.entitlements └── source ├── JJApplicationDelegate.h ├── JJApplicationDelegate.m ├── JJLicenseWindow.h ├── JJLicenseWindow.m ├── JJMainMenu.h ├── JJMainMenu.m ├── JJMainWindow.h ├── JJMainWindow.m ├── NewsOpener.c └── main.m /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | custom: https://www.paypal.me/JeffJohnsonWI 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapcat/StopTheNews/HEAD/.gitignore -------------------------------------------------------------------------------- /Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapcat/StopTheNews/HEAD/Debug.xcconfig -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapcat/StopTheNews/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapcat/StopTheNews/HEAD/README.md -------------------------------------------------------------------------------- /Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapcat/StopTheNews/HEAD/Release.xcconfig -------------------------------------------------------------------------------- /Shared.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapcat/StopTheNews/HEAD/Shared.xcconfig -------------------------------------------------------------------------------- /StopTheNews.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapcat/StopTheNews/HEAD/StopTheNews.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /nonsource/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapcat/StopTheNews/HEAD/nonsource/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /nonsource/Assets.xcassets/AppIcon.appiconset/icon128x128@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapcat/StopTheNews/HEAD/nonsource/Assets.xcassets/AppIcon.appiconset/icon128x128@1x.png -------------------------------------------------------------------------------- /nonsource/Assets.xcassets/AppIcon.appiconset/icon128x128@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapcat/StopTheNews/HEAD/nonsource/Assets.xcassets/AppIcon.appiconset/icon128x128@2x.png -------------------------------------------------------------------------------- /nonsource/Assets.xcassets/AppIcon.appiconset/icon16x16@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapcat/StopTheNews/HEAD/nonsource/Assets.xcassets/AppIcon.appiconset/icon16x16@1x.png -------------------------------------------------------------------------------- /nonsource/Assets.xcassets/AppIcon.appiconset/icon16x16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapcat/StopTheNews/HEAD/nonsource/Assets.xcassets/AppIcon.appiconset/icon16x16@2x.png -------------------------------------------------------------------------------- /nonsource/Assets.xcassets/AppIcon.appiconset/icon256x256@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapcat/StopTheNews/HEAD/nonsource/Assets.xcassets/AppIcon.appiconset/icon256x256@1x.png -------------------------------------------------------------------------------- /nonsource/Assets.xcassets/AppIcon.appiconset/icon256x256@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapcat/StopTheNews/HEAD/nonsource/Assets.xcassets/AppIcon.appiconset/icon256x256@2x.png -------------------------------------------------------------------------------- /nonsource/Assets.xcassets/AppIcon.appiconset/icon32x32@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapcat/StopTheNews/HEAD/nonsource/Assets.xcassets/AppIcon.appiconset/icon32x32@1x.png -------------------------------------------------------------------------------- /nonsource/Assets.xcassets/AppIcon.appiconset/icon32x32@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapcat/StopTheNews/HEAD/nonsource/Assets.xcassets/AppIcon.appiconset/icon32x32@2x.png -------------------------------------------------------------------------------- /nonsource/Assets.xcassets/AppIcon.appiconset/icon512x512@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapcat/StopTheNews/HEAD/nonsource/Assets.xcassets/AppIcon.appiconset/icon512x512@1x.png -------------------------------------------------------------------------------- /nonsource/Assets.xcassets/AppIcon.appiconset/icon512x512@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapcat/StopTheNews/HEAD/nonsource/Assets.xcassets/AppIcon.appiconset/icon512x512@2x.png -------------------------------------------------------------------------------- /nonsource/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapcat/StopTheNews/HEAD/nonsource/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /nonsource/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapcat/StopTheNews/HEAD/nonsource/Info.plist -------------------------------------------------------------------------------- /nonsource/StopTheNews.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapcat/StopTheNews/HEAD/nonsource/StopTheNews.entitlements -------------------------------------------------------------------------------- /source/JJApplicationDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapcat/StopTheNews/HEAD/source/JJApplicationDelegate.h -------------------------------------------------------------------------------- /source/JJApplicationDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapcat/StopTheNews/HEAD/source/JJApplicationDelegate.m -------------------------------------------------------------------------------- /source/JJLicenseWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapcat/StopTheNews/HEAD/source/JJLicenseWindow.h -------------------------------------------------------------------------------- /source/JJLicenseWindow.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapcat/StopTheNews/HEAD/source/JJLicenseWindow.m -------------------------------------------------------------------------------- /source/JJMainMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapcat/StopTheNews/HEAD/source/JJMainMenu.h -------------------------------------------------------------------------------- /source/JJMainMenu.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapcat/StopTheNews/HEAD/source/JJMainMenu.m -------------------------------------------------------------------------------- /source/JJMainWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapcat/StopTheNews/HEAD/source/JJMainWindow.h -------------------------------------------------------------------------------- /source/JJMainWindow.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapcat/StopTheNews/HEAD/source/JJMainWindow.m -------------------------------------------------------------------------------- /source/NewsOpener.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapcat/StopTheNews/HEAD/source/NewsOpener.c -------------------------------------------------------------------------------- /source/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapcat/StopTheNews/HEAD/source/main.m --------------------------------------------------------------------------------