├── .github └── FUNDING.yml ├── .gitignore ├── Debug.xcconfig ├── LICENSE.txt ├── PrivateWindow.xcodeproj └── project.pbxproj ├── README.md ├── Release.xcconfig ├── Shared.xcconfig ├── nonsource ├── Codesign.entitlements ├── FileDefault@2x.png ├── FileProfiles@2x.png └── Info.plist ├── screenshots ├── 1.png ├── 2.png ├── 4.png ├── 5.png └── 6.png └── 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/PrivateWindow/HEAD/.gitignore -------------------------------------------------------------------------------- /Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapcat/PrivateWindow/HEAD/Debug.xcconfig -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapcat/PrivateWindow/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /PrivateWindow.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapcat/PrivateWindow/HEAD/PrivateWindow.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapcat/PrivateWindow/HEAD/README.md -------------------------------------------------------------------------------- /Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapcat/PrivateWindow/HEAD/Release.xcconfig -------------------------------------------------------------------------------- /Shared.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapcat/PrivateWindow/HEAD/Shared.xcconfig -------------------------------------------------------------------------------- /nonsource/Codesign.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapcat/PrivateWindow/HEAD/nonsource/Codesign.entitlements -------------------------------------------------------------------------------- /nonsource/FileDefault@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapcat/PrivateWindow/HEAD/nonsource/FileDefault@2x.png -------------------------------------------------------------------------------- /nonsource/FileProfiles@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapcat/PrivateWindow/HEAD/nonsource/FileProfiles@2x.png -------------------------------------------------------------------------------- /nonsource/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapcat/PrivateWindow/HEAD/nonsource/Info.plist -------------------------------------------------------------------------------- /screenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapcat/PrivateWindow/HEAD/screenshots/1.png -------------------------------------------------------------------------------- /screenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapcat/PrivateWindow/HEAD/screenshots/2.png -------------------------------------------------------------------------------- /screenshots/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapcat/PrivateWindow/HEAD/screenshots/4.png -------------------------------------------------------------------------------- /screenshots/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapcat/PrivateWindow/HEAD/screenshots/5.png -------------------------------------------------------------------------------- /screenshots/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapcat/PrivateWindow/HEAD/screenshots/6.png -------------------------------------------------------------------------------- /source/JJApplicationDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapcat/PrivateWindow/HEAD/source/JJApplicationDelegate.h -------------------------------------------------------------------------------- /source/JJApplicationDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapcat/PrivateWindow/HEAD/source/JJApplicationDelegate.m -------------------------------------------------------------------------------- /source/JJLicenseWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapcat/PrivateWindow/HEAD/source/JJLicenseWindow.h -------------------------------------------------------------------------------- /source/JJLicenseWindow.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapcat/PrivateWindow/HEAD/source/JJLicenseWindow.m -------------------------------------------------------------------------------- /source/JJMainMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapcat/PrivateWindow/HEAD/source/JJMainMenu.h -------------------------------------------------------------------------------- /source/JJMainMenu.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapcat/PrivateWindow/HEAD/source/JJMainMenu.m -------------------------------------------------------------------------------- /source/JJMainWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapcat/PrivateWindow/HEAD/source/JJMainWindow.h -------------------------------------------------------------------------------- /source/JJMainWindow.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapcat/PrivateWindow/HEAD/source/JJMainWindow.m -------------------------------------------------------------------------------- /source/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapcat/PrivateWindow/HEAD/source/main.m --------------------------------------------------------------------------------