├── .gitignore ├── AGPMInjector.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── xcshareddata │ └── xcschemes │ │ └── AGPMInjector.xcscheme └── xcuserdata │ └── henrybrock.xcuserdatad │ └── xcschemes │ └── xcschememanagement.plist ├── AGPMInjector ├── AGPMInjector.entitlements ├── AppDelegate.swift ├── Assets.xcassets │ ├── AGPMInjector.imageset │ │ ├── AGPMInjector-1.png │ │ ├── AGPMInjector-2.png │ │ ├── AGPMInjector.png │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── icon_128x128.png │ │ ├── icon_128x128@2x.png │ │ ├── icon_16x16.png │ │ ├── icon_16x16@2x.png │ │ ├── icon_256x256.png │ │ ├── icon_256x256@2x.png │ │ ├── icon_32x32.png │ │ ├── icon_32x32@2x.png │ │ ├── icon_512x512.png │ │ └── icon_512x512@2x.png │ ├── Contents.json │ ├── amd-radeon.imageset │ │ ├── Contents.json │ │ └── amd-radeon.png │ ├── macpro.imageset │ │ ├── Contents.json │ │ └── macpro.png │ └── nvidia-icon.imageset │ │ ├── Contents.json │ │ └── nvidia-icon.png ├── Base.lproj │ └── Main.storyboard ├── Images │ ├── imac.png │ ├── imacpro.png │ ├── macpro.png │ ├── macpro61.png │ └── macpro71.png ├── Info.plist ├── ViewController.swift ├── getPlist.swift └── setPlist.swift ├── Readme.md ├── Support Files ├── Sparkle.framework │ ├── Headers │ ├── Modules │ ├── Resources │ ├── Sparkle │ └── Versions │ │ ├── A │ │ ├── Headers │ │ │ ├── SPUDownloadData.h │ │ │ ├── SPUStandardUpdaterController.h │ │ │ ├── SPUStandardUserDriver.h │ │ │ ├── SPUStandardUserDriverDelegate.h │ │ │ ├── SPUStatusCompletionResults.h │ │ │ ├── SPUUpdatePermissionRequest.h │ │ │ ├── SPUUpdater.h │ │ │ ├── SPUUpdaterDelegate.h │ │ │ ├── SPUUpdaterSettings.h │ │ │ ├── SPUUserDriver.h │ │ │ ├── SPUUserDriverCoreComponent.h │ │ │ ├── SUAppcast.h │ │ │ ├── SUAppcastItem.h │ │ │ ├── SUErrors.h │ │ │ ├── SUExport.h │ │ │ ├── SUStandardVersionComparator.h │ │ │ ├── SUUpdatePermissionResponse.h │ │ │ ├── SUUpdater.h │ │ │ ├── SUUpdaterDelegate.h │ │ │ ├── SUVersionComparisonProtocol.h │ │ │ ├── SUVersionDisplayProtocol.h │ │ │ └── Sparkle.h │ │ ├── Modules │ │ │ └── module.modulemap │ │ ├── Resources │ │ │ ├── Autoupdate │ │ │ ├── Base.lproj │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ │ ├── keyedobjects-110000.nib │ │ │ │ │ └── keyedobjects.nib │ │ │ │ └── Sparkle.strings │ │ │ ├── Info.plist │ │ │ ├── ReleaseNotesColorStyle.css │ │ │ ├── SUModelTranslation.plist │ │ │ ├── SUStatus.nib │ │ │ ├── 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 │ │ │ │ │ ├── fi.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── fr.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── fr_CA.lproj │ │ │ │ │ ├── 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.lproj │ │ │ │ │ ├── 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 │ │ │ ├── ar.lproj │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ └── SUUpdatePermissionPrompt.strings │ │ │ ├── ca.lproj │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ └── Sparkle.strings │ │ │ ├── cs.lproj │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ ├── SUUpdatePermissionPrompt.strings │ │ │ │ └── Sparkle.strings │ │ │ ├── da.lproj │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ ├── SUUpdatePermissionPrompt.strings │ │ │ │ └── Sparkle.strings │ │ │ ├── de.lproj │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ ├── SUUpdatePermissionPrompt.strings │ │ │ │ └── Sparkle.strings │ │ │ ├── el.lproj │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ ├── SUUpdatePermissionPrompt.strings │ │ │ │ └── Sparkle.strings │ │ │ ├── en.lproj │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ └── SUUpdatePermissionPrompt.strings │ │ │ ├── es.lproj │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ ├── SUUpdatePermissionPrompt.strings │ │ │ │ └── Sparkle.strings │ │ │ ├── fi.lproj │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ ├── SUUpdatePermissionPrompt.strings │ │ │ │ └── Sparkle.strings │ │ │ ├── fr.lproj │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ ├── SUUpdatePermissionPrompt.strings │ │ │ │ └── Sparkle.strings │ │ │ ├── he.lproj │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ └── Sparkle.strings │ │ │ ├── hr.lproj │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ ├── SUUpdatePermissionPrompt.strings │ │ │ │ └── Sparkle.strings │ │ │ ├── hu.lproj │ │ │ │ └── SUUpdatePermissionPrompt.strings │ │ │ ├── is.lproj │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ ├── SUUpdatePermissionPrompt.strings │ │ │ │ └── Sparkle.strings │ │ │ ├── it.lproj │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ ├── SUUpdatePermissionPrompt.strings │ │ │ │ └── Sparkle.strings │ │ │ ├── ja.lproj │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ ├── SUUpdatePermissionPrompt.strings │ │ │ │ └── Sparkle.strings │ │ │ ├── ko.lproj │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ ├── SUUpdatePermissionPrompt.strings │ │ │ │ └── Sparkle.strings │ │ │ ├── nb.lproj │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ ├── SUUpdatePermissionPrompt.strings │ │ │ │ └── Sparkle.strings │ │ │ ├── nl.lproj │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ ├── SUUpdatePermissionPrompt.strings │ │ │ │ └── Sparkle.strings │ │ │ ├── pl.lproj │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ ├── SUUpdatePermissionPrompt.strings │ │ │ │ └── Sparkle.strings │ │ │ ├── pt_BR.lproj │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ ├── SUUpdatePermissionPrompt.strings │ │ │ │ └── Sparkle.strings │ │ │ ├── pt_PT.lproj │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ ├── SUUpdatePermissionPrompt.strings │ │ │ │ └── Sparkle.strings │ │ │ ├── ro.lproj │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ ├── SUUpdatePermissionPrompt.strings │ │ │ │ └── Sparkle.strings │ │ │ ├── ru.lproj │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ ├── SUUpdatePermissionPrompt.strings │ │ │ │ └── Sparkle.strings │ │ │ ├── sk.lproj │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ ├── SUUpdatePermissionPrompt.strings │ │ │ │ └── Sparkle.strings │ │ │ ├── sl.lproj │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ ├── SUUpdatePermissionPrompt.strings │ │ │ │ └── Sparkle.strings │ │ │ ├── sv.lproj │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ ├── SUUpdatePermissionPrompt.strings │ │ │ │ └── Sparkle.strings │ │ │ ├── th.lproj │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ ├── SUUpdatePermissionPrompt.strings │ │ │ │ └── Sparkle.strings │ │ │ ├── tr.lproj │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ ├── SUUpdatePermissionPrompt.strings │ │ │ │ └── Sparkle.strings │ │ │ ├── uk.lproj │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ ├── SUUpdatePermissionPrompt.strings │ │ │ │ └── Sparkle.strings │ │ │ ├── zh_CN.lproj │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ ├── SUUpdatePermissionPrompt.strings │ │ │ │ └── Sparkle.strings │ │ │ └── zh_TW.lproj │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ ├── SUUpdatePermissionPrompt.strings │ │ │ │ └── Sparkle.strings │ │ ├── Sparkle │ │ └── _CodeSignature │ │ │ └── CodeResources │ │ └── Current ├── XPCServices │ ├── org.sparkle-project.Downloader.entitlements │ ├── org.sparkle-project.Downloader.xpc.dSYM │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── Resources │ │ │ └── DWARF │ │ │ └── org.sparkle-project.Downloader │ ├── org.sparkle-project.Downloader.xpc │ │ └── Contents │ │ │ ├── Info.plist │ │ │ ├── MacOS │ │ │ └── org.sparkle-project.Downloader │ │ │ └── _CodeSignature │ │ │ └── CodeResources │ ├── org.sparkle-project.InstallerConnection.xpc.dSYM │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── Resources │ │ │ └── DWARF │ │ │ └── org.sparkle-project.InstallerConnection │ ├── org.sparkle-project.InstallerConnection.xpc │ │ └── Contents │ │ │ ├── Info.plist │ │ │ ├── MacOS │ │ │ └── org.sparkle-project.InstallerConnection │ │ │ └── _CodeSignature │ │ │ └── CodeResources │ ├── org.sparkle-project.InstallerLauncher.xpc.dSYM │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── Resources │ │ │ └── DWARF │ │ │ └── org.sparkle-project.InstallerLauncher │ ├── 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 │ │ │ │ │ ├── fi.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── fr.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── fr_CA.lproj │ │ │ │ │ ├── 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.lproj │ │ │ │ │ ├── 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 │ ├── org.sparkle-project.InstallerStatus.xpc.dSYM │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── Resources │ │ │ └── DWARF │ │ │ └── org.sparkle-project.InstallerStatus │ └── org.sparkle-project.InstallerStatus.xpc │ │ └── Contents │ │ ├── Info.plist │ │ ├── MacOS │ │ └── org.sparkle-project.InstallerStatus │ │ └── _CodeSignature │ │ └── CodeResources ├── generate_appcast └── generate_keys └── bitrise.yml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/.gitignore -------------------------------------------------------------------------------- /AGPMInjector.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/AGPMInjector.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /AGPMInjector.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/AGPMInjector.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /AGPMInjector.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/AGPMInjector.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /AGPMInjector.xcodeproj/xcshareddata/xcschemes/AGPMInjector.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/AGPMInjector.xcodeproj/xcshareddata/xcschemes/AGPMInjector.xcscheme -------------------------------------------------------------------------------- /AGPMInjector.xcodeproj/xcuserdata/henrybrock.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/AGPMInjector.xcodeproj/xcuserdata/henrybrock.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /AGPMInjector/AGPMInjector.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/AGPMInjector/AGPMInjector.entitlements -------------------------------------------------------------------------------- /AGPMInjector/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/AGPMInjector/AppDelegate.swift -------------------------------------------------------------------------------- /AGPMInjector/Assets.xcassets/AGPMInjector.imageset/AGPMInjector-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/AGPMInjector/Assets.xcassets/AGPMInjector.imageset/AGPMInjector-1.png -------------------------------------------------------------------------------- /AGPMInjector/Assets.xcassets/AGPMInjector.imageset/AGPMInjector-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/AGPMInjector/Assets.xcassets/AGPMInjector.imageset/AGPMInjector-2.png -------------------------------------------------------------------------------- /AGPMInjector/Assets.xcassets/AGPMInjector.imageset/AGPMInjector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/AGPMInjector/Assets.xcassets/AGPMInjector.imageset/AGPMInjector.png -------------------------------------------------------------------------------- /AGPMInjector/Assets.xcassets/AGPMInjector.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/AGPMInjector/Assets.xcassets/AGPMInjector.imageset/Contents.json -------------------------------------------------------------------------------- /AGPMInjector/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/AGPMInjector/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /AGPMInjector/Assets.xcassets/AppIcon.appiconset/icon_128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/AGPMInjector/Assets.xcassets/AppIcon.appiconset/icon_128x128.png -------------------------------------------------------------------------------- /AGPMInjector/Assets.xcassets/AppIcon.appiconset/icon_128x128@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/AGPMInjector/Assets.xcassets/AppIcon.appiconset/icon_128x128@2x.png -------------------------------------------------------------------------------- /AGPMInjector/Assets.xcassets/AppIcon.appiconset/icon_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/AGPMInjector/Assets.xcassets/AppIcon.appiconset/icon_16x16.png -------------------------------------------------------------------------------- /AGPMInjector/Assets.xcassets/AppIcon.appiconset/icon_16x16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/AGPMInjector/Assets.xcassets/AppIcon.appiconset/icon_16x16@2x.png -------------------------------------------------------------------------------- /AGPMInjector/Assets.xcassets/AppIcon.appiconset/icon_256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/AGPMInjector/Assets.xcassets/AppIcon.appiconset/icon_256x256.png -------------------------------------------------------------------------------- /AGPMInjector/Assets.xcassets/AppIcon.appiconset/icon_256x256@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/AGPMInjector/Assets.xcassets/AppIcon.appiconset/icon_256x256@2x.png -------------------------------------------------------------------------------- /AGPMInjector/Assets.xcassets/AppIcon.appiconset/icon_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/AGPMInjector/Assets.xcassets/AppIcon.appiconset/icon_32x32.png -------------------------------------------------------------------------------- /AGPMInjector/Assets.xcassets/AppIcon.appiconset/icon_32x32@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/AGPMInjector/Assets.xcassets/AppIcon.appiconset/icon_32x32@2x.png -------------------------------------------------------------------------------- /AGPMInjector/Assets.xcassets/AppIcon.appiconset/icon_512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/AGPMInjector/Assets.xcassets/AppIcon.appiconset/icon_512x512.png -------------------------------------------------------------------------------- /AGPMInjector/Assets.xcassets/AppIcon.appiconset/icon_512x512@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/AGPMInjector/Assets.xcassets/AppIcon.appiconset/icon_512x512@2x.png -------------------------------------------------------------------------------- /AGPMInjector/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/AGPMInjector/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /AGPMInjector/Assets.xcassets/amd-radeon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/AGPMInjector/Assets.xcassets/amd-radeon.imageset/Contents.json -------------------------------------------------------------------------------- /AGPMInjector/Assets.xcassets/amd-radeon.imageset/amd-radeon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/AGPMInjector/Assets.xcassets/amd-radeon.imageset/amd-radeon.png -------------------------------------------------------------------------------- /AGPMInjector/Assets.xcassets/macpro.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/AGPMInjector/Assets.xcassets/macpro.imageset/Contents.json -------------------------------------------------------------------------------- /AGPMInjector/Assets.xcassets/macpro.imageset/macpro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/AGPMInjector/Assets.xcassets/macpro.imageset/macpro.png -------------------------------------------------------------------------------- /AGPMInjector/Assets.xcassets/nvidia-icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/AGPMInjector/Assets.xcassets/nvidia-icon.imageset/Contents.json -------------------------------------------------------------------------------- /AGPMInjector/Assets.xcassets/nvidia-icon.imageset/nvidia-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/AGPMInjector/Assets.xcassets/nvidia-icon.imageset/nvidia-icon.png -------------------------------------------------------------------------------- /AGPMInjector/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/AGPMInjector/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /AGPMInjector/Images/imac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/AGPMInjector/Images/imac.png -------------------------------------------------------------------------------- /AGPMInjector/Images/imacpro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/AGPMInjector/Images/imacpro.png -------------------------------------------------------------------------------- /AGPMInjector/Images/macpro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/AGPMInjector/Images/macpro.png -------------------------------------------------------------------------------- /AGPMInjector/Images/macpro61.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/AGPMInjector/Images/macpro61.png -------------------------------------------------------------------------------- /AGPMInjector/Images/macpro71.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/AGPMInjector/Images/macpro71.png -------------------------------------------------------------------------------- /AGPMInjector/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/AGPMInjector/Info.plist -------------------------------------------------------------------------------- /AGPMInjector/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/AGPMInjector/ViewController.swift -------------------------------------------------------------------------------- /AGPMInjector/getPlist.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/AGPMInjector/getPlist.swift -------------------------------------------------------------------------------- /AGPMInjector/setPlist.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/AGPMInjector/setPlist.swift -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Readme.md -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Modules: -------------------------------------------------------------------------------- 1 | Versions/Current/Modules -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Sparkle: -------------------------------------------------------------------------------- 1 | Versions/Current/Sparkle -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Headers/SPUDownloadData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Headers/SPUDownloadData.h -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Headers/SPUStandardUpdaterController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Headers/SPUStandardUpdaterController.h -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Headers/SPUStandardUserDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Headers/SPUStandardUserDriver.h -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Headers/SPUStandardUserDriverDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Headers/SPUStandardUserDriverDelegate.h -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Headers/SPUStatusCompletionResults.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Headers/SPUStatusCompletionResults.h -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Headers/SPUUpdatePermissionRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Headers/SPUUpdatePermissionRequest.h -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Headers/SPUUpdater.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Headers/SPUUpdater.h -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Headers/SPUUpdaterDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Headers/SPUUpdaterDelegate.h -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Headers/SPUUpdaterSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Headers/SPUUpdaterSettings.h -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Headers/SPUUserDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Headers/SPUUserDriver.h -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Headers/SPUUserDriverCoreComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Headers/SPUUserDriverCoreComponent.h -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Headers/SUAppcast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Headers/SUAppcast.h -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Headers/SUAppcastItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Headers/SUAppcastItem.h -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Headers/SUErrors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Headers/SUErrors.h -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Headers/SUExport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Headers/SUExport.h -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Headers/SUStandardVersionComparator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Headers/SUStandardVersionComparator.h -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Headers/SUUpdatePermissionResponse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Headers/SUUpdatePermissionResponse.h -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Headers/SUUpdater.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Headers/SUUpdater.h -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Headers/SUUpdaterDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Headers/SUUpdaterDelegate.h -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Headers/SUVersionComparisonProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Headers/SUVersionComparisonProtocol.h -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Headers/SUVersionDisplayProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Headers/SUVersionDisplayProtocol.h -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Headers/Sparkle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Headers/Sparkle.h -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Modules/module.modulemap -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Resources/Autoupdate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Resources/Autoupdate -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Resources/Base.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Resources/Base.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Resources/Base.lproj/SUUpdatePermissionPrompt.nib/keyedobjects-110000.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Resources/Base.lproj/SUUpdatePermissionPrompt.nib/keyedobjects-110000.nib -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Resources/Base.lproj/SUUpdatePermissionPrompt.nib/keyedobjects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Resources/Base.lproj/SUUpdatePermissionPrompt.nib/keyedobjects.nib -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Resources/Base.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Resources/Base.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Resources/Info.plist -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Resources/ReleaseNotesColorStyle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Resources/ReleaseNotesColorStyle.css -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Resources/SUModelTranslation.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Resources/SUModelTranslation.plist -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Resources/SUStatus.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Resources/SUStatus.nib -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Resources/Updater.app/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Resources/Updater.app/Contents/Info.plist -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Resources/Updater.app/Contents/MacOS/Updater: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Resources/Updater.app/Contents/MacOS/Updater -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Resources/Updater.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPL???? -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Resources/Updater.app/Contents/Resources/Base.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Resources/Updater.app/Contents/Resources/Base.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Resources/Updater.app/Contents/Resources/SUStatus.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Resources/Updater.app/Contents/Resources/SUStatus.nib -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Resources/Updater.app/Contents/Resources/ca.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Resources/Updater.app/Contents/Resources/ca.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Resources/Updater.app/Contents/Resources/cs.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Resources/Updater.app/Contents/Resources/cs.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Resources/Updater.app/Contents/Resources/da.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Resources/Updater.app/Contents/Resources/da.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Resources/Updater.app/Contents/Resources/de.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Resources/Updater.app/Contents/Resources/de.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Resources/Updater.app/Contents/Resources/el.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Resources/Updater.app/Contents/Resources/el.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Resources/Updater.app/Contents/Resources/es.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Resources/Updater.app/Contents/Resources/es.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Resources/Updater.app/Contents/Resources/fi.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Resources/Updater.app/Contents/Resources/fi.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Resources/Updater.app/Contents/Resources/fr.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Resources/Updater.app/Contents/Resources/fr.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Resources/Updater.app/Contents/Resources/fr_CA.lproj: -------------------------------------------------------------------------------- 1 | fr.lproj -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Resources/Updater.app/Contents/Resources/he.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Resources/Updater.app/Contents/Resources/he.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Resources/Updater.app/Contents/Resources/hr.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Resources/Updater.app/Contents/Resources/hr.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Resources/Updater.app/Contents/Resources/is.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Resources/Updater.app/Contents/Resources/is.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Resources/Updater.app/Contents/Resources/it.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Resources/Updater.app/Contents/Resources/it.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Resources/Updater.app/Contents/Resources/ja.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Resources/Updater.app/Contents/Resources/ja.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Resources/Updater.app/Contents/Resources/ko.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Resources/Updater.app/Contents/Resources/ko.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Resources/Updater.app/Contents/Resources/nb.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Resources/Updater.app/Contents/Resources/nb.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Resources/Updater.app/Contents/Resources/nl.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Resources/Updater.app/Contents/Resources/nl.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Resources/Updater.app/Contents/Resources/pl.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Resources/Updater.app/Contents/Resources/pl.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Resources/Updater.app/Contents/Resources/pt.lproj: -------------------------------------------------------------------------------- 1 | pt_BR.lproj -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Resources/Updater.app/Contents/Resources/pt_BR.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Resources/Updater.app/Contents/Resources/pt_BR.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Resources/Updater.app/Contents/Resources/pt_PT.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Resources/Updater.app/Contents/Resources/pt_PT.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Resources/Updater.app/Contents/Resources/ro.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Resources/Updater.app/Contents/Resources/ro.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Resources/Updater.app/Contents/Resources/ru.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Resources/Updater.app/Contents/Resources/ru.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Resources/Updater.app/Contents/Resources/sk.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Resources/Updater.app/Contents/Resources/sk.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Resources/Updater.app/Contents/Resources/sl.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Resources/Updater.app/Contents/Resources/sl.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Resources/Updater.app/Contents/Resources/sv.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Resources/Updater.app/Contents/Resources/sv.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Resources/Updater.app/Contents/Resources/th.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Resources/Updater.app/Contents/Resources/th.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Resources/Updater.app/Contents/Resources/tr.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Resources/Updater.app/Contents/Resources/tr.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Resources/Updater.app/Contents/Resources/uk.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Resources/Updater.app/Contents/Resources/uk.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Resources/Updater.app/Contents/Resources/zh_CN.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Resources/Updater.app/Contents/Resources/zh_CN.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Resources/Updater.app/Contents/Resources/zh_TW.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Resources/Updater.app/Contents/Resources/zh_TW.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Resources/Updater.app/Contents/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Resources/Updater.app/Contents/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Resources/ar.lproj/SUUpdateAlert.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Resources/ar.lproj/SUUpdateAlert.strings -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Resources/ar.lproj/SUUpdatePermissionPrompt.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Resources/ar.lproj/SUUpdatePermissionPrompt.strings -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Resources/ca.lproj/SUUpdateAlert.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Resources/ca.lproj/SUUpdateAlert.strings -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Resources/ca.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Resources/ca.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Resources/cs.lproj/SUUpdateAlert.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Resources/cs.lproj/SUUpdateAlert.strings -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Resources/cs.lproj/SUUpdatePermissionPrompt.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Resources/cs.lproj/SUUpdatePermissionPrompt.strings -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Resources/cs.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Resources/cs.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Resources/da.lproj/SUUpdateAlert.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Resources/da.lproj/SUUpdateAlert.strings -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Resources/da.lproj/SUUpdatePermissionPrompt.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Resources/da.lproj/SUUpdatePermissionPrompt.strings -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Resources/da.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Resources/da.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Resources/de.lproj/SUUpdateAlert.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Resources/de.lproj/SUUpdateAlert.strings -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Resources/de.lproj/SUUpdatePermissionPrompt.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Resources/de.lproj/SUUpdatePermissionPrompt.strings -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Resources/de.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Resources/de.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Resources/el.lproj/SUUpdateAlert.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Resources/el.lproj/SUUpdateAlert.strings -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Resources/el.lproj/SUUpdatePermissionPrompt.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Resources/el.lproj/SUUpdatePermissionPrompt.strings -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Resources/el.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Resources/el.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Resources/en.lproj/SUUpdateAlert.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Resources/en.lproj/SUUpdateAlert.strings -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Resources/en.lproj/SUUpdatePermissionPrompt.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Resources/en.lproj/SUUpdatePermissionPrompt.strings -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Resources/es.lproj/SUUpdateAlert.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Resources/es.lproj/SUUpdateAlert.strings -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Resources/es.lproj/SUUpdatePermissionPrompt.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Resources/es.lproj/SUUpdatePermissionPrompt.strings -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Resources/es.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Resources/es.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Resources/fi.lproj/SUUpdateAlert.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Resources/fi.lproj/SUUpdateAlert.strings -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Resources/fi.lproj/SUUpdatePermissionPrompt.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Resources/fi.lproj/SUUpdatePermissionPrompt.strings -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Resources/fi.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Resources/fi.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Resources/fr.lproj/SUUpdateAlert.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Resources/fr.lproj/SUUpdateAlert.strings -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Resources/fr.lproj/SUUpdatePermissionPrompt.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Resources/fr.lproj/SUUpdatePermissionPrompt.strings -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Resources/fr.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Resources/fr.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Resources/he.lproj/SUUpdateAlert.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Resources/he.lproj/SUUpdateAlert.strings -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Resources/he.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Resources/he.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Resources/hr.lproj/SUUpdateAlert.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Resources/hr.lproj/SUUpdateAlert.strings -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Resources/hr.lproj/SUUpdatePermissionPrompt.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Resources/hr.lproj/SUUpdatePermissionPrompt.strings -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Resources/hr.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Resources/hr.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Resources/hu.lproj/SUUpdatePermissionPrompt.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Resources/hu.lproj/SUUpdatePermissionPrompt.strings -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Resources/is.lproj/SUUpdateAlert.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Resources/is.lproj/SUUpdateAlert.strings -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Resources/is.lproj/SUUpdatePermissionPrompt.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Resources/is.lproj/SUUpdatePermissionPrompt.strings -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Resources/is.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Resources/is.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Resources/it.lproj/SUUpdateAlert.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Resources/it.lproj/SUUpdateAlert.strings -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Resources/it.lproj/SUUpdatePermissionPrompt.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Resources/it.lproj/SUUpdatePermissionPrompt.strings -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Resources/it.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Resources/it.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Resources/ja.lproj/SUUpdateAlert.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Resources/ja.lproj/SUUpdateAlert.strings -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Resources/ja.lproj/SUUpdatePermissionPrompt.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Resources/ja.lproj/SUUpdatePermissionPrompt.strings -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Resources/ja.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Resources/ja.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Resources/ko.lproj/SUUpdateAlert.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Resources/ko.lproj/SUUpdateAlert.strings -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Resources/ko.lproj/SUUpdatePermissionPrompt.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Resources/ko.lproj/SUUpdatePermissionPrompt.strings -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Resources/ko.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Resources/ko.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Resources/nb.lproj/SUUpdateAlert.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Resources/nb.lproj/SUUpdateAlert.strings -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Resources/nb.lproj/SUUpdatePermissionPrompt.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Resources/nb.lproj/SUUpdatePermissionPrompt.strings -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Resources/nb.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Resources/nb.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Resources/nl.lproj/SUUpdateAlert.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Resources/nl.lproj/SUUpdateAlert.strings -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Resources/nl.lproj/SUUpdatePermissionPrompt.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Resources/nl.lproj/SUUpdatePermissionPrompt.strings -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Resources/nl.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Resources/nl.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Resources/pl.lproj/SUUpdateAlert.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Resources/pl.lproj/SUUpdateAlert.strings -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Resources/pl.lproj/SUUpdatePermissionPrompt.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Resources/pl.lproj/SUUpdatePermissionPrompt.strings -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Resources/pl.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Resources/pl.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Resources/pt_BR.lproj/SUUpdateAlert.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Resources/pt_BR.lproj/SUUpdateAlert.strings -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Resources/pt_BR.lproj/SUUpdatePermissionPrompt.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Resources/pt_BR.lproj/SUUpdatePermissionPrompt.strings -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Resources/pt_BR.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Resources/pt_BR.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Resources/pt_PT.lproj/SUUpdateAlert.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Resources/pt_PT.lproj/SUUpdateAlert.strings -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Resources/pt_PT.lproj/SUUpdatePermissionPrompt.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Resources/pt_PT.lproj/SUUpdatePermissionPrompt.strings -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Resources/pt_PT.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Resources/pt_PT.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Resources/ro.lproj/SUUpdateAlert.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Resources/ro.lproj/SUUpdateAlert.strings -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Resources/ro.lproj/SUUpdatePermissionPrompt.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Resources/ro.lproj/SUUpdatePermissionPrompt.strings -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Resources/ro.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Resources/ro.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Resources/ru.lproj/SUUpdateAlert.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Resources/ru.lproj/SUUpdateAlert.strings -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Resources/ru.lproj/SUUpdatePermissionPrompt.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Resources/ru.lproj/SUUpdatePermissionPrompt.strings -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Resources/ru.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Resources/ru.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Resources/sk.lproj/SUUpdateAlert.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Resources/sk.lproj/SUUpdateAlert.strings -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Resources/sk.lproj/SUUpdatePermissionPrompt.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Resources/sk.lproj/SUUpdatePermissionPrompt.strings -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Resources/sk.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Resources/sk.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Resources/sl.lproj/SUUpdateAlert.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Resources/sl.lproj/SUUpdateAlert.strings -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Resources/sl.lproj/SUUpdatePermissionPrompt.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Resources/sl.lproj/SUUpdatePermissionPrompt.strings -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Resources/sl.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Resources/sl.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Resources/sv.lproj/SUUpdateAlert.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Resources/sv.lproj/SUUpdateAlert.strings -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Resources/sv.lproj/SUUpdatePermissionPrompt.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Resources/sv.lproj/SUUpdatePermissionPrompt.strings -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Resources/sv.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Resources/sv.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Resources/th.lproj/SUUpdateAlert.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Resources/th.lproj/SUUpdateAlert.strings -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Resources/th.lproj/SUUpdatePermissionPrompt.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Resources/th.lproj/SUUpdatePermissionPrompt.strings -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Resources/th.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Resources/th.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Resources/tr.lproj/SUUpdateAlert.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Resources/tr.lproj/SUUpdateAlert.strings -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Resources/tr.lproj/SUUpdatePermissionPrompt.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Resources/tr.lproj/SUUpdatePermissionPrompt.strings -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Resources/tr.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Resources/tr.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Resources/uk.lproj/SUUpdateAlert.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Resources/uk.lproj/SUUpdateAlert.strings -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Resources/uk.lproj/SUUpdatePermissionPrompt.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Resources/uk.lproj/SUUpdatePermissionPrompt.strings -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Resources/uk.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Resources/uk.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Resources/zh_CN.lproj/SUUpdateAlert.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Resources/zh_CN.lproj/SUUpdateAlert.strings -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Resources/zh_CN.lproj/SUUpdatePermissionPrompt.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Resources/zh_CN.lproj/SUUpdatePermissionPrompt.strings -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Resources/zh_CN.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Resources/zh_CN.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Resources/zh_TW.lproj/SUUpdateAlert.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Resources/zh_TW.lproj/SUUpdateAlert.strings -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Resources/zh_TW.lproj/SUUpdatePermissionPrompt.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Resources/zh_TW.lproj/SUUpdatePermissionPrompt.strings -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Resources/zh_TW.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Resources/zh_TW.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/Sparkle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/Sparkle -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/A/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/Sparkle.framework/Versions/A/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /Support Files/Sparkle.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /Support Files/XPCServices/org.sparkle-project.Downloader.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/XPCServices/org.sparkle-project.Downloader.entitlements -------------------------------------------------------------------------------- /Support Files/XPCServices/org.sparkle-project.Downloader.xpc.dSYM/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/XPCServices/org.sparkle-project.Downloader.xpc.dSYM/Contents/Info.plist -------------------------------------------------------------------------------- /Support Files/XPCServices/org.sparkle-project.Downloader.xpc.dSYM/Contents/Resources/DWARF/org.sparkle-project.Downloader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/XPCServices/org.sparkle-project.Downloader.xpc.dSYM/Contents/Resources/DWARF/org.sparkle-project.Downloader -------------------------------------------------------------------------------- /Support Files/XPCServices/org.sparkle-project.Downloader.xpc/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/XPCServices/org.sparkle-project.Downloader.xpc/Contents/Info.plist -------------------------------------------------------------------------------- /Support Files/XPCServices/org.sparkle-project.Downloader.xpc/Contents/MacOS/org.sparkle-project.Downloader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/XPCServices/org.sparkle-project.Downloader.xpc/Contents/MacOS/org.sparkle-project.Downloader -------------------------------------------------------------------------------- /Support Files/XPCServices/org.sparkle-project.Downloader.xpc/Contents/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/XPCServices/org.sparkle-project.Downloader.xpc/Contents/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /Support Files/XPCServices/org.sparkle-project.InstallerConnection.xpc.dSYM/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/XPCServices/org.sparkle-project.InstallerConnection.xpc.dSYM/Contents/Info.plist -------------------------------------------------------------------------------- /Support Files/XPCServices/org.sparkle-project.InstallerConnection.xpc.dSYM/Contents/Resources/DWARF/org.sparkle-project.InstallerConnection: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/XPCServices/org.sparkle-project.InstallerConnection.xpc.dSYM/Contents/Resources/DWARF/org.sparkle-project.InstallerConnection -------------------------------------------------------------------------------- /Support Files/XPCServices/org.sparkle-project.InstallerConnection.xpc/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/XPCServices/org.sparkle-project.InstallerConnection.xpc/Contents/Info.plist -------------------------------------------------------------------------------- /Support Files/XPCServices/org.sparkle-project.InstallerConnection.xpc/Contents/MacOS/org.sparkle-project.InstallerConnection: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/XPCServices/org.sparkle-project.InstallerConnection.xpc/Contents/MacOS/org.sparkle-project.InstallerConnection -------------------------------------------------------------------------------- /Support Files/XPCServices/org.sparkle-project.InstallerConnection.xpc/Contents/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/XPCServices/org.sparkle-project.InstallerConnection.xpc/Contents/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /Support Files/XPCServices/org.sparkle-project.InstallerLauncher.xpc.dSYM/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/XPCServices/org.sparkle-project.InstallerLauncher.xpc.dSYM/Contents/Info.plist -------------------------------------------------------------------------------- /Support Files/XPCServices/org.sparkle-project.InstallerLauncher.xpc.dSYM/Contents/Resources/DWARF/org.sparkle-project.InstallerLauncher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/XPCServices/org.sparkle-project.InstallerLauncher.xpc.dSYM/Contents/Resources/DWARF/org.sparkle-project.InstallerLauncher -------------------------------------------------------------------------------- /Support Files/XPCServices/org.sparkle-project.InstallerLauncher.xpc/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/XPCServices/org.sparkle-project.InstallerLauncher.xpc/Contents/Info.plist -------------------------------------------------------------------------------- /Support Files/XPCServices/org.sparkle-project.InstallerLauncher.xpc/Contents/MacOS/Autoupdate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/XPCServices/org.sparkle-project.InstallerLauncher.xpc/Contents/MacOS/Autoupdate -------------------------------------------------------------------------------- /Support Files/XPCServices/org.sparkle-project.InstallerLauncher.xpc/Contents/MacOS/Updater.app/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/XPCServices/org.sparkle-project.InstallerLauncher.xpc/Contents/MacOS/Updater.app/Contents/Info.plist -------------------------------------------------------------------------------- /Support Files/XPCServices/org.sparkle-project.InstallerLauncher.xpc/Contents/MacOS/Updater.app/Contents/MacOS/Updater: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/XPCServices/org.sparkle-project.InstallerLauncher.xpc/Contents/MacOS/Updater.app/Contents/MacOS/Updater -------------------------------------------------------------------------------- /Support Files/XPCServices/org.sparkle-project.InstallerLauncher.xpc/Contents/MacOS/Updater.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPL???? -------------------------------------------------------------------------------- /Support Files/XPCServices/org.sparkle-project.InstallerLauncher.xpc/Contents/MacOS/Updater.app/Contents/Resources/Base.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/XPCServices/org.sparkle-project.InstallerLauncher.xpc/Contents/MacOS/Updater.app/Contents/Resources/Base.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Support Files/XPCServices/org.sparkle-project.InstallerLauncher.xpc/Contents/MacOS/Updater.app/Contents/Resources/SUStatus.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/XPCServices/org.sparkle-project.InstallerLauncher.xpc/Contents/MacOS/Updater.app/Contents/Resources/SUStatus.nib -------------------------------------------------------------------------------- /Support Files/XPCServices/org.sparkle-project.InstallerLauncher.xpc/Contents/MacOS/Updater.app/Contents/Resources/ca.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/XPCServices/org.sparkle-project.InstallerLauncher.xpc/Contents/MacOS/Updater.app/Contents/Resources/ca.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Support Files/XPCServices/org.sparkle-project.InstallerLauncher.xpc/Contents/MacOS/Updater.app/Contents/Resources/cs.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/XPCServices/org.sparkle-project.InstallerLauncher.xpc/Contents/MacOS/Updater.app/Contents/Resources/cs.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Support Files/XPCServices/org.sparkle-project.InstallerLauncher.xpc/Contents/MacOS/Updater.app/Contents/Resources/da.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/XPCServices/org.sparkle-project.InstallerLauncher.xpc/Contents/MacOS/Updater.app/Contents/Resources/da.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Support Files/XPCServices/org.sparkle-project.InstallerLauncher.xpc/Contents/MacOS/Updater.app/Contents/Resources/de.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/XPCServices/org.sparkle-project.InstallerLauncher.xpc/Contents/MacOS/Updater.app/Contents/Resources/de.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Support Files/XPCServices/org.sparkle-project.InstallerLauncher.xpc/Contents/MacOS/Updater.app/Contents/Resources/el.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/XPCServices/org.sparkle-project.InstallerLauncher.xpc/Contents/MacOS/Updater.app/Contents/Resources/el.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Support Files/XPCServices/org.sparkle-project.InstallerLauncher.xpc/Contents/MacOS/Updater.app/Contents/Resources/es.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/XPCServices/org.sparkle-project.InstallerLauncher.xpc/Contents/MacOS/Updater.app/Contents/Resources/es.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Support Files/XPCServices/org.sparkle-project.InstallerLauncher.xpc/Contents/MacOS/Updater.app/Contents/Resources/fi.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/XPCServices/org.sparkle-project.InstallerLauncher.xpc/Contents/MacOS/Updater.app/Contents/Resources/fi.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Support Files/XPCServices/org.sparkle-project.InstallerLauncher.xpc/Contents/MacOS/Updater.app/Contents/Resources/fr.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/XPCServices/org.sparkle-project.InstallerLauncher.xpc/Contents/MacOS/Updater.app/Contents/Resources/fr.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Support Files/XPCServices/org.sparkle-project.InstallerLauncher.xpc/Contents/MacOS/Updater.app/Contents/Resources/fr_CA.lproj: -------------------------------------------------------------------------------- 1 | fr.lproj -------------------------------------------------------------------------------- /Support Files/XPCServices/org.sparkle-project.InstallerLauncher.xpc/Contents/MacOS/Updater.app/Contents/Resources/he.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/XPCServices/org.sparkle-project.InstallerLauncher.xpc/Contents/MacOS/Updater.app/Contents/Resources/he.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Support Files/XPCServices/org.sparkle-project.InstallerLauncher.xpc/Contents/MacOS/Updater.app/Contents/Resources/hr.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/XPCServices/org.sparkle-project.InstallerLauncher.xpc/Contents/MacOS/Updater.app/Contents/Resources/hr.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Support Files/XPCServices/org.sparkle-project.InstallerLauncher.xpc/Contents/MacOS/Updater.app/Contents/Resources/is.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/XPCServices/org.sparkle-project.InstallerLauncher.xpc/Contents/MacOS/Updater.app/Contents/Resources/is.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Support Files/XPCServices/org.sparkle-project.InstallerLauncher.xpc/Contents/MacOS/Updater.app/Contents/Resources/it.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/XPCServices/org.sparkle-project.InstallerLauncher.xpc/Contents/MacOS/Updater.app/Contents/Resources/it.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Support Files/XPCServices/org.sparkle-project.InstallerLauncher.xpc/Contents/MacOS/Updater.app/Contents/Resources/ja.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/XPCServices/org.sparkle-project.InstallerLauncher.xpc/Contents/MacOS/Updater.app/Contents/Resources/ja.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Support Files/XPCServices/org.sparkle-project.InstallerLauncher.xpc/Contents/MacOS/Updater.app/Contents/Resources/ko.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/XPCServices/org.sparkle-project.InstallerLauncher.xpc/Contents/MacOS/Updater.app/Contents/Resources/ko.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Support Files/XPCServices/org.sparkle-project.InstallerLauncher.xpc/Contents/MacOS/Updater.app/Contents/Resources/nb.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/XPCServices/org.sparkle-project.InstallerLauncher.xpc/Contents/MacOS/Updater.app/Contents/Resources/nb.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Support Files/XPCServices/org.sparkle-project.InstallerLauncher.xpc/Contents/MacOS/Updater.app/Contents/Resources/nl.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/XPCServices/org.sparkle-project.InstallerLauncher.xpc/Contents/MacOS/Updater.app/Contents/Resources/nl.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Support Files/XPCServices/org.sparkle-project.InstallerLauncher.xpc/Contents/MacOS/Updater.app/Contents/Resources/pl.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/XPCServices/org.sparkle-project.InstallerLauncher.xpc/Contents/MacOS/Updater.app/Contents/Resources/pl.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Support Files/XPCServices/org.sparkle-project.InstallerLauncher.xpc/Contents/MacOS/Updater.app/Contents/Resources/pt.lproj: -------------------------------------------------------------------------------- 1 | pt_BR.lproj -------------------------------------------------------------------------------- /Support Files/XPCServices/org.sparkle-project.InstallerLauncher.xpc/Contents/MacOS/Updater.app/Contents/Resources/pt_BR.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/XPCServices/org.sparkle-project.InstallerLauncher.xpc/Contents/MacOS/Updater.app/Contents/Resources/pt_BR.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Support Files/XPCServices/org.sparkle-project.InstallerLauncher.xpc/Contents/MacOS/Updater.app/Contents/Resources/pt_PT.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/XPCServices/org.sparkle-project.InstallerLauncher.xpc/Contents/MacOS/Updater.app/Contents/Resources/pt_PT.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Support Files/XPCServices/org.sparkle-project.InstallerLauncher.xpc/Contents/MacOS/Updater.app/Contents/Resources/ro.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/XPCServices/org.sparkle-project.InstallerLauncher.xpc/Contents/MacOS/Updater.app/Contents/Resources/ro.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Support Files/XPCServices/org.sparkle-project.InstallerLauncher.xpc/Contents/MacOS/Updater.app/Contents/Resources/ru.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/XPCServices/org.sparkle-project.InstallerLauncher.xpc/Contents/MacOS/Updater.app/Contents/Resources/ru.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Support Files/XPCServices/org.sparkle-project.InstallerLauncher.xpc/Contents/MacOS/Updater.app/Contents/Resources/sk.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/XPCServices/org.sparkle-project.InstallerLauncher.xpc/Contents/MacOS/Updater.app/Contents/Resources/sk.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Support Files/XPCServices/org.sparkle-project.InstallerLauncher.xpc/Contents/MacOS/Updater.app/Contents/Resources/sl.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/XPCServices/org.sparkle-project.InstallerLauncher.xpc/Contents/MacOS/Updater.app/Contents/Resources/sl.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Support Files/XPCServices/org.sparkle-project.InstallerLauncher.xpc/Contents/MacOS/Updater.app/Contents/Resources/sv.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/XPCServices/org.sparkle-project.InstallerLauncher.xpc/Contents/MacOS/Updater.app/Contents/Resources/sv.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Support Files/XPCServices/org.sparkle-project.InstallerLauncher.xpc/Contents/MacOS/Updater.app/Contents/Resources/th.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/XPCServices/org.sparkle-project.InstallerLauncher.xpc/Contents/MacOS/Updater.app/Contents/Resources/th.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Support Files/XPCServices/org.sparkle-project.InstallerLauncher.xpc/Contents/MacOS/Updater.app/Contents/Resources/tr.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/XPCServices/org.sparkle-project.InstallerLauncher.xpc/Contents/MacOS/Updater.app/Contents/Resources/tr.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Support Files/XPCServices/org.sparkle-project.InstallerLauncher.xpc/Contents/MacOS/Updater.app/Contents/Resources/uk.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/XPCServices/org.sparkle-project.InstallerLauncher.xpc/Contents/MacOS/Updater.app/Contents/Resources/uk.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Support Files/XPCServices/org.sparkle-project.InstallerLauncher.xpc/Contents/MacOS/Updater.app/Contents/Resources/zh_CN.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/XPCServices/org.sparkle-project.InstallerLauncher.xpc/Contents/MacOS/Updater.app/Contents/Resources/zh_CN.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Support Files/XPCServices/org.sparkle-project.InstallerLauncher.xpc/Contents/MacOS/Updater.app/Contents/Resources/zh_TW.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/XPCServices/org.sparkle-project.InstallerLauncher.xpc/Contents/MacOS/Updater.app/Contents/Resources/zh_TW.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Support Files/XPCServices/org.sparkle-project.InstallerLauncher.xpc/Contents/MacOS/Updater.app/Contents/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/XPCServices/org.sparkle-project.InstallerLauncher.xpc/Contents/MacOS/Updater.app/Contents/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /Support Files/XPCServices/org.sparkle-project.InstallerLauncher.xpc/Contents/MacOS/org.sparkle-project.InstallerLauncher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/XPCServices/org.sparkle-project.InstallerLauncher.xpc/Contents/MacOS/org.sparkle-project.InstallerLauncher -------------------------------------------------------------------------------- /Support Files/XPCServices/org.sparkle-project.InstallerLauncher.xpc/Contents/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/XPCServices/org.sparkle-project.InstallerLauncher.xpc/Contents/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /Support Files/XPCServices/org.sparkle-project.InstallerStatus.xpc.dSYM/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/XPCServices/org.sparkle-project.InstallerStatus.xpc.dSYM/Contents/Info.plist -------------------------------------------------------------------------------- /Support Files/XPCServices/org.sparkle-project.InstallerStatus.xpc.dSYM/Contents/Resources/DWARF/org.sparkle-project.InstallerStatus: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/XPCServices/org.sparkle-project.InstallerStatus.xpc.dSYM/Contents/Resources/DWARF/org.sparkle-project.InstallerStatus -------------------------------------------------------------------------------- /Support Files/XPCServices/org.sparkle-project.InstallerStatus.xpc/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/XPCServices/org.sparkle-project.InstallerStatus.xpc/Contents/Info.plist -------------------------------------------------------------------------------- /Support Files/XPCServices/org.sparkle-project.InstallerStatus.xpc/Contents/MacOS/org.sparkle-project.InstallerStatus: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/XPCServices/org.sparkle-project.InstallerStatus.xpc/Contents/MacOS/org.sparkle-project.InstallerStatus -------------------------------------------------------------------------------- /Support Files/XPCServices/org.sparkle-project.InstallerStatus.xpc/Contents/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/XPCServices/org.sparkle-project.InstallerStatus.xpc/Contents/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /Support Files/generate_appcast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/generate_appcast -------------------------------------------------------------------------------- /Support Files/generate_keys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/Support Files/generate_keys -------------------------------------------------------------------------------- /bitrise.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pavo-IM/AGPMInjector/HEAD/bitrise.yml --------------------------------------------------------------------------------