├── .gitignore ├── LICENSE ├── Schemes.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── swiftpm │ │ └── Package.resolved └── xcuserdata │ └── oliver.xcuserdatad │ └── xcschemes │ └── xcschememanagement.plist ├── Schemes ├── AppDelegate.swift ├── Credits.rtf ├── Info.plist ├── MainViewController.swift ├── MainWindowController.swift ├── Model │ └── Entry.swift ├── NIB Files │ ├── Base.lproj │ │ └── MainMenu.xib │ ├── MainViewController.xib │ └── MainWindowController.xib ├── Schemes.entitlements ├── Support Files │ └── Assets.xcassets │ │ ├── AccentColor.colorset │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── mac128.png │ │ ├── mac128@2x.png │ │ ├── mac16.png │ │ ├── mac16@2x.png │ │ ├── mac256.png │ │ ├── mac256@2x.png │ │ ├── mac32.png │ │ ├── mac32@2x.png │ │ ├── mac512.png │ │ └── mac512@2x.png │ │ └── Contents.json └── XPC Services │ ├── org.sparkle-project.Downloader.xpc │ └── Contents │ │ ├── Info.plist │ │ ├── MacOS │ │ └── org.sparkle-project.Downloader │ │ └── _CodeSignature │ │ └── CodeResources │ └── org.sparkle-project.InstallerLauncher.xpc │ └── Contents │ ├── Info.plist │ ├── MacOS │ ├── Autoupdate │ ├── Updater.app │ │ └── Contents │ │ │ ├── Info.plist │ │ │ ├── MacOS │ │ │ └── Updater │ │ │ ├── PkgInfo │ │ │ ├── Resources │ │ │ ├── Base.lproj │ │ │ │ └── Sparkle.strings │ │ │ ├── SUStatus.nib │ │ │ ├── ca.lproj │ │ │ │ └── Sparkle.strings │ │ │ ├── cs.lproj │ │ │ │ └── Sparkle.strings │ │ │ ├── da.lproj │ │ │ │ └── Sparkle.strings │ │ │ ├── de.lproj │ │ │ │ └── Sparkle.strings │ │ │ ├── el.lproj │ │ │ │ └── Sparkle.strings │ │ │ ├── es.lproj │ │ │ │ └── Sparkle.strings │ │ │ ├── fa.lproj │ │ │ │ └── Sparkle.strings │ │ │ ├── fi.lproj │ │ │ │ └── Sparkle.strings │ │ │ ├── fr.lproj │ │ │ │ └── Sparkle.strings │ │ │ ├── he.lproj │ │ │ │ └── Sparkle.strings │ │ │ ├── hr.lproj │ │ │ │ └── Sparkle.strings │ │ │ ├── is.lproj │ │ │ │ └── Sparkle.strings │ │ │ ├── it.lproj │ │ │ │ └── Sparkle.strings │ │ │ ├── ja.lproj │ │ │ │ └── Sparkle.strings │ │ │ ├── ko.lproj │ │ │ │ └── Sparkle.strings │ │ │ ├── nb.lproj │ │ │ │ └── Sparkle.strings │ │ │ ├── nl.lproj │ │ │ │ └── Sparkle.strings │ │ │ ├── pl.lproj │ │ │ │ └── Sparkle.strings │ │ │ ├── pt_BR.lproj │ │ │ │ └── Sparkle.strings │ │ │ ├── pt_PT.lproj │ │ │ │ └── Sparkle.strings │ │ │ ├── ro.lproj │ │ │ │ └── Sparkle.strings │ │ │ ├── ru.lproj │ │ │ │ └── Sparkle.strings │ │ │ ├── sk.lproj │ │ │ │ └── Sparkle.strings │ │ │ ├── sl.lproj │ │ │ │ └── Sparkle.strings │ │ │ ├── sv.lproj │ │ │ │ └── Sparkle.strings │ │ │ ├── th.lproj │ │ │ │ └── Sparkle.strings │ │ │ ├── tr.lproj │ │ │ │ └── Sparkle.strings │ │ │ ├── uk.lproj │ │ │ │ └── Sparkle.strings │ │ │ ├── zh_CN.lproj │ │ │ │ └── Sparkle.strings │ │ │ └── zh_TW.lproj │ │ │ │ └── Sparkle.strings │ │ │ └── _CodeSignature │ │ │ └── CodeResources │ └── org.sparkle-project.InstallerLauncher │ └── _CodeSignature │ └── CodeResources └── UnregisterSchemeHandler ├── Info.plist ├── UnregisterSchemeHandler.swift ├── UnregisterSchemeHandlerDelegate.swift ├── UnregisterSchemeHandlerProtocol.swift └── main.swift /.gitignore: -------------------------------------------------------------------------------- 1 | deploy 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliverepper/Schemes/HEAD/LICENSE -------------------------------------------------------------------------------- /Schemes.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliverepper/Schemes/HEAD/Schemes.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Schemes.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliverepper/Schemes/HEAD/Schemes.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Schemes.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliverepper/Schemes/HEAD/Schemes.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Schemes.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliverepper/Schemes/HEAD/Schemes.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved -------------------------------------------------------------------------------- /Schemes.xcodeproj/xcuserdata/oliver.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliverepper/Schemes/HEAD/Schemes.xcodeproj/xcuserdata/oliver.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Schemes/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliverepper/Schemes/HEAD/Schemes/AppDelegate.swift -------------------------------------------------------------------------------- /Schemes/Credits.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliverepper/Schemes/HEAD/Schemes/Credits.rtf -------------------------------------------------------------------------------- /Schemes/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliverepper/Schemes/HEAD/Schemes/Info.plist -------------------------------------------------------------------------------- /Schemes/MainViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliverepper/Schemes/HEAD/Schemes/MainViewController.swift -------------------------------------------------------------------------------- /Schemes/MainWindowController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliverepper/Schemes/HEAD/Schemes/MainWindowController.swift -------------------------------------------------------------------------------- /Schemes/Model/Entry.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliverepper/Schemes/HEAD/Schemes/Model/Entry.swift -------------------------------------------------------------------------------- /Schemes/NIB Files/Base.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliverepper/Schemes/HEAD/Schemes/NIB Files/Base.lproj/MainMenu.xib -------------------------------------------------------------------------------- /Schemes/NIB Files/MainViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliverepper/Schemes/HEAD/Schemes/NIB Files/MainViewController.xib -------------------------------------------------------------------------------- /Schemes/NIB Files/MainWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliverepper/Schemes/HEAD/Schemes/NIB Files/MainWindowController.xib -------------------------------------------------------------------------------- /Schemes/Schemes.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliverepper/Schemes/HEAD/Schemes/Schemes.entitlements -------------------------------------------------------------------------------- /Schemes/Support Files/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliverepper/Schemes/HEAD/Schemes/Support Files/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /Schemes/Support Files/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliverepper/Schemes/HEAD/Schemes/Support Files/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Schemes/Support Files/Assets.xcassets/AppIcon.appiconset/mac128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliverepper/Schemes/HEAD/Schemes/Support Files/Assets.xcassets/AppIcon.appiconset/mac128.png -------------------------------------------------------------------------------- /Schemes/Support Files/Assets.xcassets/AppIcon.appiconset/mac128@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliverepper/Schemes/HEAD/Schemes/Support Files/Assets.xcassets/AppIcon.appiconset/mac128@2x.png -------------------------------------------------------------------------------- /Schemes/Support Files/Assets.xcassets/AppIcon.appiconset/mac16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliverepper/Schemes/HEAD/Schemes/Support Files/Assets.xcassets/AppIcon.appiconset/mac16.png -------------------------------------------------------------------------------- /Schemes/Support Files/Assets.xcassets/AppIcon.appiconset/mac16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliverepper/Schemes/HEAD/Schemes/Support Files/Assets.xcassets/AppIcon.appiconset/mac16@2x.png -------------------------------------------------------------------------------- /Schemes/Support Files/Assets.xcassets/AppIcon.appiconset/mac256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliverepper/Schemes/HEAD/Schemes/Support Files/Assets.xcassets/AppIcon.appiconset/mac256.png -------------------------------------------------------------------------------- /Schemes/Support Files/Assets.xcassets/AppIcon.appiconset/mac256@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliverepper/Schemes/HEAD/Schemes/Support Files/Assets.xcassets/AppIcon.appiconset/mac256@2x.png -------------------------------------------------------------------------------- /Schemes/Support Files/Assets.xcassets/AppIcon.appiconset/mac32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliverepper/Schemes/HEAD/Schemes/Support Files/Assets.xcassets/AppIcon.appiconset/mac32.png -------------------------------------------------------------------------------- /Schemes/Support Files/Assets.xcassets/AppIcon.appiconset/mac32@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliverepper/Schemes/HEAD/Schemes/Support Files/Assets.xcassets/AppIcon.appiconset/mac32@2x.png -------------------------------------------------------------------------------- /Schemes/Support Files/Assets.xcassets/AppIcon.appiconset/mac512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliverepper/Schemes/HEAD/Schemes/Support Files/Assets.xcassets/AppIcon.appiconset/mac512.png -------------------------------------------------------------------------------- /Schemes/Support Files/Assets.xcassets/AppIcon.appiconset/mac512@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliverepper/Schemes/HEAD/Schemes/Support Files/Assets.xcassets/AppIcon.appiconset/mac512@2x.png -------------------------------------------------------------------------------- /Schemes/Support Files/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliverepper/Schemes/HEAD/Schemes/Support Files/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Schemes/XPC Services/org.sparkle-project.Downloader.xpc/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliverepper/Schemes/HEAD/Schemes/XPC Services/org.sparkle-project.Downloader.xpc/Contents/Info.plist -------------------------------------------------------------------------------- /Schemes/XPC Services/org.sparkle-project.Downloader.xpc/Contents/MacOS/org.sparkle-project.Downloader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliverepper/Schemes/HEAD/Schemes/XPC Services/org.sparkle-project.Downloader.xpc/Contents/MacOS/org.sparkle-project.Downloader -------------------------------------------------------------------------------- /Schemes/XPC Services/org.sparkle-project.Downloader.xpc/Contents/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliverepper/Schemes/HEAD/Schemes/XPC Services/org.sparkle-project.Downloader.xpc/Contents/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /Schemes/XPC Services/org.sparkle-project.InstallerLauncher.xpc/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliverepper/Schemes/HEAD/Schemes/XPC Services/org.sparkle-project.InstallerLauncher.xpc/Contents/Info.plist -------------------------------------------------------------------------------- /Schemes/XPC Services/org.sparkle-project.InstallerLauncher.xpc/Contents/MacOS/Autoupdate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliverepper/Schemes/HEAD/Schemes/XPC Services/org.sparkle-project.InstallerLauncher.xpc/Contents/MacOS/Autoupdate -------------------------------------------------------------------------------- /Schemes/XPC Services/org.sparkle-project.InstallerLauncher.xpc/Contents/MacOS/Updater.app/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliverepper/Schemes/HEAD/Schemes/XPC Services/org.sparkle-project.InstallerLauncher.xpc/Contents/MacOS/Updater.app/Contents/Info.plist -------------------------------------------------------------------------------- /Schemes/XPC Services/org.sparkle-project.InstallerLauncher.xpc/Contents/MacOS/Updater.app/Contents/MacOS/Updater: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliverepper/Schemes/HEAD/Schemes/XPC Services/org.sparkle-project.InstallerLauncher.xpc/Contents/MacOS/Updater.app/Contents/MacOS/Updater -------------------------------------------------------------------------------- /Schemes/XPC Services/org.sparkle-project.InstallerLauncher.xpc/Contents/MacOS/Updater.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPL???? -------------------------------------------------------------------------------- /Schemes/XPC Services/org.sparkle-project.InstallerLauncher.xpc/Contents/MacOS/Updater.app/Contents/Resources/Base.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliverepper/Schemes/HEAD/Schemes/XPC Services/org.sparkle-project.InstallerLauncher.xpc/Contents/MacOS/Updater.app/Contents/Resources/Base.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Schemes/XPC Services/org.sparkle-project.InstallerLauncher.xpc/Contents/MacOS/Updater.app/Contents/Resources/SUStatus.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliverepper/Schemes/HEAD/Schemes/XPC Services/org.sparkle-project.InstallerLauncher.xpc/Contents/MacOS/Updater.app/Contents/Resources/SUStatus.nib -------------------------------------------------------------------------------- /Schemes/XPC Services/org.sparkle-project.InstallerLauncher.xpc/Contents/MacOS/Updater.app/Contents/Resources/ca.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliverepper/Schemes/HEAD/Schemes/XPC Services/org.sparkle-project.InstallerLauncher.xpc/Contents/MacOS/Updater.app/Contents/Resources/ca.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Schemes/XPC Services/org.sparkle-project.InstallerLauncher.xpc/Contents/MacOS/Updater.app/Contents/Resources/cs.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliverepper/Schemes/HEAD/Schemes/XPC Services/org.sparkle-project.InstallerLauncher.xpc/Contents/MacOS/Updater.app/Contents/Resources/cs.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Schemes/XPC Services/org.sparkle-project.InstallerLauncher.xpc/Contents/MacOS/Updater.app/Contents/Resources/da.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliverepper/Schemes/HEAD/Schemes/XPC Services/org.sparkle-project.InstallerLauncher.xpc/Contents/MacOS/Updater.app/Contents/Resources/da.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Schemes/XPC Services/org.sparkle-project.InstallerLauncher.xpc/Contents/MacOS/Updater.app/Contents/Resources/de.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliverepper/Schemes/HEAD/Schemes/XPC Services/org.sparkle-project.InstallerLauncher.xpc/Contents/MacOS/Updater.app/Contents/Resources/de.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Schemes/XPC Services/org.sparkle-project.InstallerLauncher.xpc/Contents/MacOS/Updater.app/Contents/Resources/el.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliverepper/Schemes/HEAD/Schemes/XPC Services/org.sparkle-project.InstallerLauncher.xpc/Contents/MacOS/Updater.app/Contents/Resources/el.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Schemes/XPC Services/org.sparkle-project.InstallerLauncher.xpc/Contents/MacOS/Updater.app/Contents/Resources/es.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliverepper/Schemes/HEAD/Schemes/XPC Services/org.sparkle-project.InstallerLauncher.xpc/Contents/MacOS/Updater.app/Contents/Resources/es.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Schemes/XPC Services/org.sparkle-project.InstallerLauncher.xpc/Contents/MacOS/Updater.app/Contents/Resources/fa.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliverepper/Schemes/HEAD/Schemes/XPC Services/org.sparkle-project.InstallerLauncher.xpc/Contents/MacOS/Updater.app/Contents/Resources/fa.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Schemes/XPC Services/org.sparkle-project.InstallerLauncher.xpc/Contents/MacOS/Updater.app/Contents/Resources/fi.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliverepper/Schemes/HEAD/Schemes/XPC Services/org.sparkle-project.InstallerLauncher.xpc/Contents/MacOS/Updater.app/Contents/Resources/fi.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Schemes/XPC Services/org.sparkle-project.InstallerLauncher.xpc/Contents/MacOS/Updater.app/Contents/Resources/fr.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliverepper/Schemes/HEAD/Schemes/XPC Services/org.sparkle-project.InstallerLauncher.xpc/Contents/MacOS/Updater.app/Contents/Resources/fr.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Schemes/XPC Services/org.sparkle-project.InstallerLauncher.xpc/Contents/MacOS/Updater.app/Contents/Resources/he.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliverepper/Schemes/HEAD/Schemes/XPC Services/org.sparkle-project.InstallerLauncher.xpc/Contents/MacOS/Updater.app/Contents/Resources/he.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Schemes/XPC Services/org.sparkle-project.InstallerLauncher.xpc/Contents/MacOS/Updater.app/Contents/Resources/hr.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliverepper/Schemes/HEAD/Schemes/XPC Services/org.sparkle-project.InstallerLauncher.xpc/Contents/MacOS/Updater.app/Contents/Resources/hr.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Schemes/XPC Services/org.sparkle-project.InstallerLauncher.xpc/Contents/MacOS/Updater.app/Contents/Resources/is.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliverepper/Schemes/HEAD/Schemes/XPC Services/org.sparkle-project.InstallerLauncher.xpc/Contents/MacOS/Updater.app/Contents/Resources/is.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Schemes/XPC Services/org.sparkle-project.InstallerLauncher.xpc/Contents/MacOS/Updater.app/Contents/Resources/it.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliverepper/Schemes/HEAD/Schemes/XPC Services/org.sparkle-project.InstallerLauncher.xpc/Contents/MacOS/Updater.app/Contents/Resources/it.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Schemes/XPC Services/org.sparkle-project.InstallerLauncher.xpc/Contents/MacOS/Updater.app/Contents/Resources/ja.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliverepper/Schemes/HEAD/Schemes/XPC Services/org.sparkle-project.InstallerLauncher.xpc/Contents/MacOS/Updater.app/Contents/Resources/ja.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Schemes/XPC Services/org.sparkle-project.InstallerLauncher.xpc/Contents/MacOS/Updater.app/Contents/Resources/ko.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliverepper/Schemes/HEAD/Schemes/XPC Services/org.sparkle-project.InstallerLauncher.xpc/Contents/MacOS/Updater.app/Contents/Resources/ko.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Schemes/XPC Services/org.sparkle-project.InstallerLauncher.xpc/Contents/MacOS/Updater.app/Contents/Resources/nb.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliverepper/Schemes/HEAD/Schemes/XPC Services/org.sparkle-project.InstallerLauncher.xpc/Contents/MacOS/Updater.app/Contents/Resources/nb.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Schemes/XPC Services/org.sparkle-project.InstallerLauncher.xpc/Contents/MacOS/Updater.app/Contents/Resources/nl.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliverepper/Schemes/HEAD/Schemes/XPC Services/org.sparkle-project.InstallerLauncher.xpc/Contents/MacOS/Updater.app/Contents/Resources/nl.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Schemes/XPC Services/org.sparkle-project.InstallerLauncher.xpc/Contents/MacOS/Updater.app/Contents/Resources/pl.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliverepper/Schemes/HEAD/Schemes/XPC Services/org.sparkle-project.InstallerLauncher.xpc/Contents/MacOS/Updater.app/Contents/Resources/pl.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Schemes/XPC Services/org.sparkle-project.InstallerLauncher.xpc/Contents/MacOS/Updater.app/Contents/Resources/pt_BR.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliverepper/Schemes/HEAD/Schemes/XPC Services/org.sparkle-project.InstallerLauncher.xpc/Contents/MacOS/Updater.app/Contents/Resources/pt_BR.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Schemes/XPC Services/org.sparkle-project.InstallerLauncher.xpc/Contents/MacOS/Updater.app/Contents/Resources/pt_PT.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliverepper/Schemes/HEAD/Schemes/XPC Services/org.sparkle-project.InstallerLauncher.xpc/Contents/MacOS/Updater.app/Contents/Resources/pt_PT.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Schemes/XPC Services/org.sparkle-project.InstallerLauncher.xpc/Contents/MacOS/Updater.app/Contents/Resources/ro.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliverepper/Schemes/HEAD/Schemes/XPC Services/org.sparkle-project.InstallerLauncher.xpc/Contents/MacOS/Updater.app/Contents/Resources/ro.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Schemes/XPC Services/org.sparkle-project.InstallerLauncher.xpc/Contents/MacOS/Updater.app/Contents/Resources/ru.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliverepper/Schemes/HEAD/Schemes/XPC Services/org.sparkle-project.InstallerLauncher.xpc/Contents/MacOS/Updater.app/Contents/Resources/ru.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Schemes/XPC Services/org.sparkle-project.InstallerLauncher.xpc/Contents/MacOS/Updater.app/Contents/Resources/sk.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliverepper/Schemes/HEAD/Schemes/XPC Services/org.sparkle-project.InstallerLauncher.xpc/Contents/MacOS/Updater.app/Contents/Resources/sk.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Schemes/XPC Services/org.sparkle-project.InstallerLauncher.xpc/Contents/MacOS/Updater.app/Contents/Resources/sl.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliverepper/Schemes/HEAD/Schemes/XPC Services/org.sparkle-project.InstallerLauncher.xpc/Contents/MacOS/Updater.app/Contents/Resources/sl.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Schemes/XPC Services/org.sparkle-project.InstallerLauncher.xpc/Contents/MacOS/Updater.app/Contents/Resources/sv.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliverepper/Schemes/HEAD/Schemes/XPC Services/org.sparkle-project.InstallerLauncher.xpc/Contents/MacOS/Updater.app/Contents/Resources/sv.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Schemes/XPC Services/org.sparkle-project.InstallerLauncher.xpc/Contents/MacOS/Updater.app/Contents/Resources/th.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliverepper/Schemes/HEAD/Schemes/XPC Services/org.sparkle-project.InstallerLauncher.xpc/Contents/MacOS/Updater.app/Contents/Resources/th.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Schemes/XPC Services/org.sparkle-project.InstallerLauncher.xpc/Contents/MacOS/Updater.app/Contents/Resources/tr.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliverepper/Schemes/HEAD/Schemes/XPC Services/org.sparkle-project.InstallerLauncher.xpc/Contents/MacOS/Updater.app/Contents/Resources/tr.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Schemes/XPC Services/org.sparkle-project.InstallerLauncher.xpc/Contents/MacOS/Updater.app/Contents/Resources/uk.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliverepper/Schemes/HEAD/Schemes/XPC Services/org.sparkle-project.InstallerLauncher.xpc/Contents/MacOS/Updater.app/Contents/Resources/uk.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Schemes/XPC Services/org.sparkle-project.InstallerLauncher.xpc/Contents/MacOS/Updater.app/Contents/Resources/zh_CN.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliverepper/Schemes/HEAD/Schemes/XPC Services/org.sparkle-project.InstallerLauncher.xpc/Contents/MacOS/Updater.app/Contents/Resources/zh_CN.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Schemes/XPC Services/org.sparkle-project.InstallerLauncher.xpc/Contents/MacOS/Updater.app/Contents/Resources/zh_TW.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliverepper/Schemes/HEAD/Schemes/XPC Services/org.sparkle-project.InstallerLauncher.xpc/Contents/MacOS/Updater.app/Contents/Resources/zh_TW.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Schemes/XPC Services/org.sparkle-project.InstallerLauncher.xpc/Contents/MacOS/Updater.app/Contents/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliverepper/Schemes/HEAD/Schemes/XPC Services/org.sparkle-project.InstallerLauncher.xpc/Contents/MacOS/Updater.app/Contents/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /Schemes/XPC Services/org.sparkle-project.InstallerLauncher.xpc/Contents/MacOS/org.sparkle-project.InstallerLauncher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliverepper/Schemes/HEAD/Schemes/XPC Services/org.sparkle-project.InstallerLauncher.xpc/Contents/MacOS/org.sparkle-project.InstallerLauncher -------------------------------------------------------------------------------- /Schemes/XPC Services/org.sparkle-project.InstallerLauncher.xpc/Contents/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliverepper/Schemes/HEAD/Schemes/XPC Services/org.sparkle-project.InstallerLauncher.xpc/Contents/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /UnregisterSchemeHandler/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliverepper/Schemes/HEAD/UnregisterSchemeHandler/Info.plist -------------------------------------------------------------------------------- /UnregisterSchemeHandler/UnregisterSchemeHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliverepper/Schemes/HEAD/UnregisterSchemeHandler/UnregisterSchemeHandler.swift -------------------------------------------------------------------------------- /UnregisterSchemeHandler/UnregisterSchemeHandlerDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliverepper/Schemes/HEAD/UnregisterSchemeHandler/UnregisterSchemeHandlerDelegate.swift -------------------------------------------------------------------------------- /UnregisterSchemeHandler/UnregisterSchemeHandlerProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliverepper/Schemes/HEAD/UnregisterSchemeHandler/UnregisterSchemeHandlerProtocol.swift -------------------------------------------------------------------------------- /UnregisterSchemeHandler/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliverepper/Schemes/HEAD/UnregisterSchemeHandler/main.swift --------------------------------------------------------------------------------