├── .github └── FUNDING.yml ├── .gitignore ├── .gitmodules ├── .travis.yml ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── Frameworks ├── CommerceKit │ ├── CKAccountStore.h │ ├── CKDownloadDirectory.h │ ├── CKDownloadQueue.h │ ├── CKDownloadQueueObserver.h │ ├── CKPurchaseController.h │ ├── CKServiceInterface.h │ ├── CKSoftwareMap.h │ └── module.modulemap └── StoreFoundation │ ├── CKSoftwareProduct.h │ ├── CKUpdate.h │ ├── ISAccountService.h │ ├── ISAuthenticationContext.h │ ├── ISAuthenticationResponse.h │ ├── ISServiceProxy.h │ ├── ISServiceRemoteObject.h │ ├── ISStoreAccount.h │ ├── ISStoreClient.h │ ├── SSDownload.h │ ├── SSDownloadMetadata.h │ ├── SSDownloadPhase.h │ ├── SSDownloadStatus.h │ ├── SSPurchase.h │ ├── SSPurchaseResponse.h │ └── module.modulemap ├── LICENSE.md ├── Latest.xcodeproj └── project.pbxproj ├── Latest ├── AppDelegate.swift ├── Interface │ ├── Base.lproj │ │ └── Main.storyboard │ ├── Main Window │ │ ├── Release Notes │ │ │ ├── Controller │ │ │ │ ├── ReleaseNotesContentProtocol.swift │ │ │ │ ├── ReleaseNotesErrorViewController.swift │ │ │ │ ├── ReleaseNotesLoadingViewController.swift │ │ │ │ └── ReleaseNotesTextViewController.swift │ │ │ ├── ReleaseNotesViewController.swift │ │ │ └── SupportState │ │ │ │ ├── SupportStatusButtonCell.swift │ │ │ │ └── SupportStatusInfoViewController.swift │ │ ├── Update Table View │ │ │ ├── Controller │ │ │ │ ├── UpdateTableView+Search.swift │ │ │ │ ├── UpdateTableView+TouchBar.swift │ │ │ │ └── UpdateTableViewController.swift │ │ │ └── Views │ │ │ │ ├── UpdateCell.swift │ │ │ │ ├── UpdateGroupCellView.swift │ │ │ │ ├── UpdateGroupRowView.swift │ │ │ │ ├── UpdateItemView.swift │ │ │ │ └── UpdateTableView.swift │ │ ├── Utilities │ │ │ └── DisplayLink.swift │ │ ├── Views │ │ │ ├── UpdateButton.swift │ │ │ └── UpdateButtonCell.swift │ │ └── Window Controllers │ │ │ └── MainWindowController.swift │ ├── Settings │ │ ├── General │ │ │ └── GeneralSettingsViewController.swift │ │ ├── Locations │ │ │ ├── AppDirectoryCellView.swift │ │ │ └── AppLocationViewController.swift │ │ └── SettingsTabViewController.swift │ ├── ar.lproj │ │ └── Main.strings │ ├── be.lproj │ │ └── Main.strings │ ├── bg.lproj │ │ └── Main.strings │ ├── ca.lproj │ │ └── Main.strings │ ├── cs.lproj │ │ └── Main.strings │ ├── da.lproj │ │ └── Main.strings │ ├── de.lproj │ │ └── Main.strings │ ├── el.lproj │ │ └── Main.strings │ ├── en.lproj │ │ └── Main.strings │ ├── es.lproj │ │ └── Main.strings │ ├── et.lproj │ │ └── Main.strings │ ├── fa.lproj │ │ └── Main.strings │ ├── fi.lproj │ │ └── Main.strings │ ├── fil.lproj │ │ └── Main.strings │ ├── fr.lproj │ │ └── Main.strings │ ├── gl.lproj │ │ └── Main.strings │ ├── he.lproj │ │ └── Main.strings │ ├── hi.lproj │ │ └── Main.strings │ ├── hr.lproj │ │ └── Main.strings │ ├── hu.lproj │ │ └── Main.strings │ ├── id.lproj │ │ └── Main.strings │ ├── it.lproj │ │ └── Main.strings │ ├── ja.lproj │ │ └── Main.strings │ ├── ko.lproj │ │ └── Main.strings │ ├── ms.lproj │ │ └── Main.strings │ ├── nb.lproj │ │ └── Main.strings │ ├── nl.lproj │ │ └── Main.strings │ ├── pl.lproj │ │ └── Main.strings │ ├── pt-BR.lproj │ │ └── Main.strings │ ├── pt-PT.lproj │ │ └── Main.strings │ ├── pt.lproj │ │ └── Main.strings │ ├── ro.lproj │ │ └── Main.strings │ ├── ru.lproj │ │ └── Main.strings │ ├── sk.lproj │ │ └── Main.strings │ ├── sl.lproj │ │ └── Main.strings │ ├── sr.lproj │ │ └── Main.strings │ ├── sv.lproj │ │ └── Main.strings │ ├── th.lproj │ │ └── Main.strings │ ├── tr.lproj │ │ └── Main.strings │ ├── uk.lproj │ │ └── Main.strings │ ├── vi.lproj │ │ └── Main.strings │ ├── zh-Hans.lproj │ │ └── Main.strings │ └── zh-Hant.lproj │ │ └── Main.strings ├── Model │ ├── App.swift │ ├── AppDataStore.swift │ ├── Bundle.swift │ ├── Directory │ │ ├── AppDirectory.swift │ │ ├── AppDirectoryStore.swift │ │ ├── AppLibrary.swift │ │ └── BundleCollector.swift │ ├── Source.swift │ ├── Sparkle │ │ └── Sparkle.swift │ ├── Update Checker Extensions │ │ ├── App Store │ │ │ └── MacAppStoreCheckerOperation.swift │ │ ├── Homebrew │ │ │ └── HomebrewCheckerOperation.swift │ │ ├── Sparkle │ │ │ └── SparkleCheckerOperation.swift │ │ └── UpdateCheckerOperation.swift │ ├── Update Repository │ │ ├── UpdateRepository+Entry.swift │ │ ├── UpdateRepository.swift │ │ └── UpdateRepositoryCache.swift │ ├── Update.swift │ ├── UpdateCheckCoordinator.swift │ ├── UpdateCheckSettings.swift │ ├── Updater │ │ ├── MacAppStoreUpdateOperation.swift │ │ ├── SparkleUpdateOperation.swift │ │ ├── UpdateOperation.swift │ │ └── UpdateQueue.swift │ ├── Utilities │ │ ├── FailableDecodable.swift │ │ ├── Observable.swift │ │ └── StatefulOperation.swift │ └── Version │ │ ├── Version.swift │ │ └── VersionParser.swift ├── Resources │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── 1024.png │ │ │ ├── 128.png │ │ │ ├── 16.png │ │ │ ├── 256-1.png │ │ │ ├── 256.png │ │ │ ├── 32-1.png │ │ │ ├── 32.png │ │ │ ├── 512-1.png │ │ │ ├── 512.png │ │ │ ├── 64.png │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── FadedSearchText.colorset │ │ │ └── Contents.json │ │ ├── PreferencesLocation.imageset │ │ │ ├── Contents.json │ │ │ ├── location.png │ │ │ └── location@2x.png │ │ └── warning.imageset │ │ │ ├── Contents.json │ │ │ └── icons8-error-30.png │ ├── Credits.rtf │ ├── ExcludedAppIdentifiers.plist │ ├── Info.plist │ ├── Latest Bridging_Header.h │ ├── Latest.entitlements │ ├── ar.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ ├── be.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ ├── bg.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ ├── ca.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ ├── cs.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ ├── da.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ ├── de.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ ├── dsa_pub.pem │ ├── el.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ ├── en.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ ├── es.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ ├── et.lproj │ │ ├── InfoPlist.strings │ │ └── Localizable.strings │ ├── fa.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ ├── fi.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ ├── fil.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ ├── fr.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ ├── gl.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ ├── he.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ ├── hi.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ ├── hr.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ ├── hu.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ ├── id.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ ├── it.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ ├── ja.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ ├── ko.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ ├── ms.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ ├── nb.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ ├── nl.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ ├── pl.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ ├── pt-BR.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ ├── pt-PT.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ ├── pt.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ ├── ro.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ ├── ru.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ ├── sk.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ ├── sl.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ ├── sr.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ ├── sv.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ ├── th.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ ├── tr.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ ├── uk.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ ├── vi.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ ├── zh-Hans.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ └── zh-Hant.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict ├── Utilities │ ├── CFBundle_Private.h │ └── LatestError.swift └── View Model │ ├── AppListSettings.swift │ ├── AppListSnapshot.swift │ ├── IconCache.swift │ ├── ReleaseNotesProvider.swift │ └── WebContentLoader.swift ├── README.md ├── Sparkle └── Exposed Private Headers │ ├── SPUDownloader.h │ ├── SPUDownloaderDelegate.h │ ├── SPUDownloaderProtocol.h │ └── SUUpdateDriver.h ├── Tests ├── Info.plist ├── OSVersionTest.swift ├── VersionParserTest.swift ├── VersionSanitizationTest.swift └── VersionTest.swift ├── _config.yml └── latest.png /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Frameworks/CommerceKit/CKAccountStore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Frameworks/CommerceKit/CKAccountStore.h -------------------------------------------------------------------------------- /Frameworks/CommerceKit/CKDownloadDirectory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Frameworks/CommerceKit/CKDownloadDirectory.h -------------------------------------------------------------------------------- /Frameworks/CommerceKit/CKDownloadQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Frameworks/CommerceKit/CKDownloadQueue.h -------------------------------------------------------------------------------- /Frameworks/CommerceKit/CKDownloadQueueObserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Frameworks/CommerceKit/CKDownloadQueueObserver.h -------------------------------------------------------------------------------- /Frameworks/CommerceKit/CKPurchaseController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Frameworks/CommerceKit/CKPurchaseController.h -------------------------------------------------------------------------------- /Frameworks/CommerceKit/CKServiceInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Frameworks/CommerceKit/CKServiceInterface.h -------------------------------------------------------------------------------- /Frameworks/CommerceKit/CKSoftwareMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Frameworks/CommerceKit/CKSoftwareMap.h -------------------------------------------------------------------------------- /Frameworks/CommerceKit/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Frameworks/CommerceKit/module.modulemap -------------------------------------------------------------------------------- /Frameworks/StoreFoundation/CKSoftwareProduct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Frameworks/StoreFoundation/CKSoftwareProduct.h -------------------------------------------------------------------------------- /Frameworks/StoreFoundation/CKUpdate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Frameworks/StoreFoundation/CKUpdate.h -------------------------------------------------------------------------------- /Frameworks/StoreFoundation/ISAccountService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Frameworks/StoreFoundation/ISAccountService.h -------------------------------------------------------------------------------- /Frameworks/StoreFoundation/ISAuthenticationContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Frameworks/StoreFoundation/ISAuthenticationContext.h -------------------------------------------------------------------------------- /Frameworks/StoreFoundation/ISAuthenticationResponse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Frameworks/StoreFoundation/ISAuthenticationResponse.h -------------------------------------------------------------------------------- /Frameworks/StoreFoundation/ISServiceProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Frameworks/StoreFoundation/ISServiceProxy.h -------------------------------------------------------------------------------- /Frameworks/StoreFoundation/ISServiceRemoteObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Frameworks/StoreFoundation/ISServiceRemoteObject.h -------------------------------------------------------------------------------- /Frameworks/StoreFoundation/ISStoreAccount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Frameworks/StoreFoundation/ISStoreAccount.h -------------------------------------------------------------------------------- /Frameworks/StoreFoundation/ISStoreClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Frameworks/StoreFoundation/ISStoreClient.h -------------------------------------------------------------------------------- /Frameworks/StoreFoundation/SSDownload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Frameworks/StoreFoundation/SSDownload.h -------------------------------------------------------------------------------- /Frameworks/StoreFoundation/SSDownloadMetadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Frameworks/StoreFoundation/SSDownloadMetadata.h -------------------------------------------------------------------------------- /Frameworks/StoreFoundation/SSDownloadPhase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Frameworks/StoreFoundation/SSDownloadPhase.h -------------------------------------------------------------------------------- /Frameworks/StoreFoundation/SSDownloadStatus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Frameworks/StoreFoundation/SSDownloadStatus.h -------------------------------------------------------------------------------- /Frameworks/StoreFoundation/SSPurchase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Frameworks/StoreFoundation/SSPurchase.h -------------------------------------------------------------------------------- /Frameworks/StoreFoundation/SSPurchaseResponse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Frameworks/StoreFoundation/SSPurchaseResponse.h -------------------------------------------------------------------------------- /Frameworks/StoreFoundation/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Frameworks/StoreFoundation/module.modulemap -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Latest.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Latest/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/AppDelegate.swift -------------------------------------------------------------------------------- /Latest/Interface/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Interface/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Latest/Interface/Main Window/Release Notes/Controller/ReleaseNotesContentProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Interface/Main Window/Release Notes/Controller/ReleaseNotesContentProtocol.swift -------------------------------------------------------------------------------- /Latest/Interface/Main Window/Release Notes/Controller/ReleaseNotesErrorViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Interface/Main Window/Release Notes/Controller/ReleaseNotesErrorViewController.swift -------------------------------------------------------------------------------- /Latest/Interface/Main Window/Release Notes/Controller/ReleaseNotesLoadingViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Interface/Main Window/Release Notes/Controller/ReleaseNotesLoadingViewController.swift -------------------------------------------------------------------------------- /Latest/Interface/Main Window/Release Notes/Controller/ReleaseNotesTextViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Interface/Main Window/Release Notes/Controller/ReleaseNotesTextViewController.swift -------------------------------------------------------------------------------- /Latest/Interface/Main Window/Release Notes/ReleaseNotesViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Interface/Main Window/Release Notes/ReleaseNotesViewController.swift -------------------------------------------------------------------------------- /Latest/Interface/Main Window/Release Notes/SupportState/SupportStatusButtonCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Interface/Main Window/Release Notes/SupportState/SupportStatusButtonCell.swift -------------------------------------------------------------------------------- /Latest/Interface/Main Window/Release Notes/SupportState/SupportStatusInfoViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Interface/Main Window/Release Notes/SupportState/SupportStatusInfoViewController.swift -------------------------------------------------------------------------------- /Latest/Interface/Main Window/Update Table View/Controller/UpdateTableView+Search.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Interface/Main Window/Update Table View/Controller/UpdateTableView+Search.swift -------------------------------------------------------------------------------- /Latest/Interface/Main Window/Update Table View/Controller/UpdateTableView+TouchBar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Interface/Main Window/Update Table View/Controller/UpdateTableView+TouchBar.swift -------------------------------------------------------------------------------- /Latest/Interface/Main Window/Update Table View/Controller/UpdateTableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Interface/Main Window/Update Table View/Controller/UpdateTableViewController.swift -------------------------------------------------------------------------------- /Latest/Interface/Main Window/Update Table View/Views/UpdateCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Interface/Main Window/Update Table View/Views/UpdateCell.swift -------------------------------------------------------------------------------- /Latest/Interface/Main Window/Update Table View/Views/UpdateGroupCellView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Interface/Main Window/Update Table View/Views/UpdateGroupCellView.swift -------------------------------------------------------------------------------- /Latest/Interface/Main Window/Update Table View/Views/UpdateGroupRowView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Interface/Main Window/Update Table View/Views/UpdateGroupRowView.swift -------------------------------------------------------------------------------- /Latest/Interface/Main Window/Update Table View/Views/UpdateItemView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Interface/Main Window/Update Table View/Views/UpdateItemView.swift -------------------------------------------------------------------------------- /Latest/Interface/Main Window/Update Table View/Views/UpdateTableView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Interface/Main Window/Update Table View/Views/UpdateTableView.swift -------------------------------------------------------------------------------- /Latest/Interface/Main Window/Utilities/DisplayLink.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Interface/Main Window/Utilities/DisplayLink.swift -------------------------------------------------------------------------------- /Latest/Interface/Main Window/Views/UpdateButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Interface/Main Window/Views/UpdateButton.swift -------------------------------------------------------------------------------- /Latest/Interface/Main Window/Views/UpdateButtonCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Interface/Main Window/Views/UpdateButtonCell.swift -------------------------------------------------------------------------------- /Latest/Interface/Main Window/Window Controllers/MainWindowController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Interface/Main Window/Window Controllers/MainWindowController.swift -------------------------------------------------------------------------------- /Latest/Interface/Settings/General/GeneralSettingsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Interface/Settings/General/GeneralSettingsViewController.swift -------------------------------------------------------------------------------- /Latest/Interface/Settings/Locations/AppDirectoryCellView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Interface/Settings/Locations/AppDirectoryCellView.swift -------------------------------------------------------------------------------- /Latest/Interface/Settings/Locations/AppLocationViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Interface/Settings/Locations/AppLocationViewController.swift -------------------------------------------------------------------------------- /Latest/Interface/Settings/SettingsTabViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Interface/Settings/SettingsTabViewController.swift -------------------------------------------------------------------------------- /Latest/Interface/ar.lproj/Main.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Interface/ar.lproj/Main.strings -------------------------------------------------------------------------------- /Latest/Interface/be.lproj/Main.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Interface/be.lproj/Main.strings -------------------------------------------------------------------------------- /Latest/Interface/bg.lproj/Main.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Interface/bg.lproj/Main.strings -------------------------------------------------------------------------------- /Latest/Interface/ca.lproj/Main.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Interface/ca.lproj/Main.strings -------------------------------------------------------------------------------- /Latest/Interface/cs.lproj/Main.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Interface/cs.lproj/Main.strings -------------------------------------------------------------------------------- /Latest/Interface/da.lproj/Main.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Latest/Interface/de.lproj/Main.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Interface/de.lproj/Main.strings -------------------------------------------------------------------------------- /Latest/Interface/el.lproj/Main.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Interface/el.lproj/Main.strings -------------------------------------------------------------------------------- /Latest/Interface/en.lproj/Main.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Interface/en.lproj/Main.strings -------------------------------------------------------------------------------- /Latest/Interface/es.lproj/Main.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Interface/es.lproj/Main.strings -------------------------------------------------------------------------------- /Latest/Interface/et.lproj/Main.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Interface/et.lproj/Main.strings -------------------------------------------------------------------------------- /Latest/Interface/fa.lproj/Main.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Interface/fa.lproj/Main.strings -------------------------------------------------------------------------------- /Latest/Interface/fi.lproj/Main.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Latest/Interface/fil.lproj/Main.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Interface/fil.lproj/Main.strings -------------------------------------------------------------------------------- /Latest/Interface/fr.lproj/Main.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Interface/fr.lproj/Main.strings -------------------------------------------------------------------------------- /Latest/Interface/gl.lproj/Main.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Latest/Interface/he.lproj/Main.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Interface/he.lproj/Main.strings -------------------------------------------------------------------------------- /Latest/Interface/hi.lproj/Main.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Interface/hi.lproj/Main.strings -------------------------------------------------------------------------------- /Latest/Interface/hr.lproj/Main.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Interface/hr.lproj/Main.strings -------------------------------------------------------------------------------- /Latest/Interface/hu.lproj/Main.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Interface/hu.lproj/Main.strings -------------------------------------------------------------------------------- /Latest/Interface/id.lproj/Main.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Interface/id.lproj/Main.strings -------------------------------------------------------------------------------- /Latest/Interface/it.lproj/Main.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Interface/it.lproj/Main.strings -------------------------------------------------------------------------------- /Latest/Interface/ja.lproj/Main.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Interface/ja.lproj/Main.strings -------------------------------------------------------------------------------- /Latest/Interface/ko.lproj/Main.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Interface/ko.lproj/Main.strings -------------------------------------------------------------------------------- /Latest/Interface/ms.lproj/Main.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Interface/ms.lproj/Main.strings -------------------------------------------------------------------------------- /Latest/Interface/nb.lproj/Main.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Interface/nb.lproj/Main.strings -------------------------------------------------------------------------------- /Latest/Interface/nl.lproj/Main.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Interface/nl.lproj/Main.strings -------------------------------------------------------------------------------- /Latest/Interface/pl.lproj/Main.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Interface/pl.lproj/Main.strings -------------------------------------------------------------------------------- /Latest/Interface/pt-BR.lproj/Main.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Interface/pt-BR.lproj/Main.strings -------------------------------------------------------------------------------- /Latest/Interface/pt-PT.lproj/Main.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Interface/pt-PT.lproj/Main.strings -------------------------------------------------------------------------------- /Latest/Interface/pt.lproj/Main.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Interface/pt.lproj/Main.strings -------------------------------------------------------------------------------- /Latest/Interface/ro.lproj/Main.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Interface/ro.lproj/Main.strings -------------------------------------------------------------------------------- /Latest/Interface/ru.lproj/Main.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Interface/ru.lproj/Main.strings -------------------------------------------------------------------------------- /Latest/Interface/sk.lproj/Main.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Interface/sk.lproj/Main.strings -------------------------------------------------------------------------------- /Latest/Interface/sl.lproj/Main.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Interface/sl.lproj/Main.strings -------------------------------------------------------------------------------- /Latest/Interface/sr.lproj/Main.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Interface/sr.lproj/Main.strings -------------------------------------------------------------------------------- /Latest/Interface/sv.lproj/Main.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Interface/sv.lproj/Main.strings -------------------------------------------------------------------------------- /Latest/Interface/th.lproj/Main.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Latest/Interface/tr.lproj/Main.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Interface/tr.lproj/Main.strings -------------------------------------------------------------------------------- /Latest/Interface/uk.lproj/Main.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Interface/uk.lproj/Main.strings -------------------------------------------------------------------------------- /Latest/Interface/vi.lproj/Main.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Latest/Interface/zh-Hans.lproj/Main.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Interface/zh-Hans.lproj/Main.strings -------------------------------------------------------------------------------- /Latest/Interface/zh-Hant.lproj/Main.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Interface/zh-Hant.lproj/Main.strings -------------------------------------------------------------------------------- /Latest/Model/App.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Model/App.swift -------------------------------------------------------------------------------- /Latest/Model/AppDataStore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Model/AppDataStore.swift -------------------------------------------------------------------------------- /Latest/Model/Bundle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Model/Bundle.swift -------------------------------------------------------------------------------- /Latest/Model/Directory/AppDirectory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Model/Directory/AppDirectory.swift -------------------------------------------------------------------------------- /Latest/Model/Directory/AppDirectoryStore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Model/Directory/AppDirectoryStore.swift -------------------------------------------------------------------------------- /Latest/Model/Directory/AppLibrary.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Model/Directory/AppLibrary.swift -------------------------------------------------------------------------------- /Latest/Model/Directory/BundleCollector.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Model/Directory/BundleCollector.swift -------------------------------------------------------------------------------- /Latest/Model/Source.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Model/Source.swift -------------------------------------------------------------------------------- /Latest/Model/Sparkle/Sparkle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Model/Sparkle/Sparkle.swift -------------------------------------------------------------------------------- /Latest/Model/Update Checker Extensions/App Store/MacAppStoreCheckerOperation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Model/Update Checker Extensions/App Store/MacAppStoreCheckerOperation.swift -------------------------------------------------------------------------------- /Latest/Model/Update Checker Extensions/Homebrew/HomebrewCheckerOperation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Model/Update Checker Extensions/Homebrew/HomebrewCheckerOperation.swift -------------------------------------------------------------------------------- /Latest/Model/Update Checker Extensions/Sparkle/SparkleCheckerOperation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Model/Update Checker Extensions/Sparkle/SparkleCheckerOperation.swift -------------------------------------------------------------------------------- /Latest/Model/Update Checker Extensions/UpdateCheckerOperation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Model/Update Checker Extensions/UpdateCheckerOperation.swift -------------------------------------------------------------------------------- /Latest/Model/Update Repository/UpdateRepository+Entry.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Model/Update Repository/UpdateRepository+Entry.swift -------------------------------------------------------------------------------- /Latest/Model/Update Repository/UpdateRepository.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Model/Update Repository/UpdateRepository.swift -------------------------------------------------------------------------------- /Latest/Model/Update Repository/UpdateRepositoryCache.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Model/Update Repository/UpdateRepositoryCache.swift -------------------------------------------------------------------------------- /Latest/Model/Update.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Model/Update.swift -------------------------------------------------------------------------------- /Latest/Model/UpdateCheckCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Model/UpdateCheckCoordinator.swift -------------------------------------------------------------------------------- /Latest/Model/UpdateCheckSettings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Model/UpdateCheckSettings.swift -------------------------------------------------------------------------------- /Latest/Model/Updater/MacAppStoreUpdateOperation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Model/Updater/MacAppStoreUpdateOperation.swift -------------------------------------------------------------------------------- /Latest/Model/Updater/SparkleUpdateOperation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Model/Updater/SparkleUpdateOperation.swift -------------------------------------------------------------------------------- /Latest/Model/Updater/UpdateOperation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Model/Updater/UpdateOperation.swift -------------------------------------------------------------------------------- /Latest/Model/Updater/UpdateQueue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Model/Updater/UpdateQueue.swift -------------------------------------------------------------------------------- /Latest/Model/Utilities/FailableDecodable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Model/Utilities/FailableDecodable.swift -------------------------------------------------------------------------------- /Latest/Model/Utilities/Observable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Model/Utilities/Observable.swift -------------------------------------------------------------------------------- /Latest/Model/Utilities/StatefulOperation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Model/Utilities/StatefulOperation.swift -------------------------------------------------------------------------------- /Latest/Model/Version/Version.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Model/Version/Version.swift -------------------------------------------------------------------------------- /Latest/Model/Version/VersionParser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Model/Version/VersionParser.swift -------------------------------------------------------------------------------- /Latest/Resources/Assets.xcassets/AppIcon.appiconset/1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Resources/Assets.xcassets/AppIcon.appiconset/1024.png -------------------------------------------------------------------------------- /Latest/Resources/Assets.xcassets/AppIcon.appiconset/128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Resources/Assets.xcassets/AppIcon.appiconset/128.png -------------------------------------------------------------------------------- /Latest/Resources/Assets.xcassets/AppIcon.appiconset/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Resources/Assets.xcassets/AppIcon.appiconset/16.png -------------------------------------------------------------------------------- /Latest/Resources/Assets.xcassets/AppIcon.appiconset/256-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Resources/Assets.xcassets/AppIcon.appiconset/256-1.png -------------------------------------------------------------------------------- /Latest/Resources/Assets.xcassets/AppIcon.appiconset/256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Resources/Assets.xcassets/AppIcon.appiconset/256.png -------------------------------------------------------------------------------- /Latest/Resources/Assets.xcassets/AppIcon.appiconset/32-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Resources/Assets.xcassets/AppIcon.appiconset/32-1.png -------------------------------------------------------------------------------- /Latest/Resources/Assets.xcassets/AppIcon.appiconset/32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Resources/Assets.xcassets/AppIcon.appiconset/32.png -------------------------------------------------------------------------------- /Latest/Resources/Assets.xcassets/AppIcon.appiconset/512-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Resources/Assets.xcassets/AppIcon.appiconset/512-1.png -------------------------------------------------------------------------------- /Latest/Resources/Assets.xcassets/AppIcon.appiconset/512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Resources/Assets.xcassets/AppIcon.appiconset/512.png -------------------------------------------------------------------------------- /Latest/Resources/Assets.xcassets/AppIcon.appiconset/64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Resources/Assets.xcassets/AppIcon.appiconset/64.png -------------------------------------------------------------------------------- /Latest/Resources/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Resources/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Latest/Resources/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Resources/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Latest/Resources/Assets.xcassets/FadedSearchText.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Resources/Assets.xcassets/FadedSearchText.colorset/Contents.json -------------------------------------------------------------------------------- /Latest/Resources/Assets.xcassets/PreferencesLocation.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Resources/Assets.xcassets/PreferencesLocation.imageset/Contents.json -------------------------------------------------------------------------------- /Latest/Resources/Assets.xcassets/PreferencesLocation.imageset/location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Resources/Assets.xcassets/PreferencesLocation.imageset/location.png -------------------------------------------------------------------------------- /Latest/Resources/Assets.xcassets/PreferencesLocation.imageset/location@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Resources/Assets.xcassets/PreferencesLocation.imageset/location@2x.png -------------------------------------------------------------------------------- /Latest/Resources/Assets.xcassets/warning.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Resources/Assets.xcassets/warning.imageset/Contents.json -------------------------------------------------------------------------------- /Latest/Resources/Assets.xcassets/warning.imageset/icons8-error-30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Resources/Assets.xcassets/warning.imageset/icons8-error-30.png -------------------------------------------------------------------------------- /Latest/Resources/Credits.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Resources/Credits.rtf -------------------------------------------------------------------------------- /Latest/Resources/ExcludedAppIdentifiers.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Resources/ExcludedAppIdentifiers.plist -------------------------------------------------------------------------------- /Latest/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Resources/Info.plist -------------------------------------------------------------------------------- /Latest/Resources/Latest Bridging_Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Resources/Latest Bridging_Header.h -------------------------------------------------------------------------------- /Latest/Resources/Latest.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Resources/Latest.entitlements -------------------------------------------------------------------------------- /Latest/Resources/ar.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Resources/ar.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Latest/Resources/ar.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Resources/ar.lproj/Localizable.strings -------------------------------------------------------------------------------- /Latest/Resources/ar.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Resources/ar.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /Latest/Resources/be.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Resources/be.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Latest/Resources/be.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Resources/be.lproj/Localizable.strings -------------------------------------------------------------------------------- /Latest/Resources/be.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Resources/be.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /Latest/Resources/bg.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Resources/bg.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Latest/Resources/bg.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Resources/bg.lproj/Localizable.strings -------------------------------------------------------------------------------- /Latest/Resources/bg.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Resources/bg.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /Latest/Resources/ca.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Resources/ca.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Latest/Resources/ca.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Resources/ca.lproj/Localizable.strings -------------------------------------------------------------------------------- /Latest/Resources/ca.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Resources/ca.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /Latest/Resources/cs.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Resources/cs.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Latest/Resources/cs.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Resources/cs.lproj/Localizable.strings -------------------------------------------------------------------------------- /Latest/Resources/cs.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Resources/cs.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /Latest/Resources/da.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Latest/Resources/da.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Resources/da.lproj/Localizable.strings -------------------------------------------------------------------------------- /Latest/Resources/da.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Resources/da.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /Latest/Resources/de.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Resources/de.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Latest/Resources/de.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Resources/de.lproj/Localizable.strings -------------------------------------------------------------------------------- /Latest/Resources/de.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Resources/de.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /Latest/Resources/dsa_pub.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Resources/dsa_pub.pem -------------------------------------------------------------------------------- /Latest/Resources/el.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Resources/el.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Latest/Resources/el.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Resources/el.lproj/Localizable.strings -------------------------------------------------------------------------------- /Latest/Resources/el.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Resources/el.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /Latest/Resources/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Resources/en.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Latest/Resources/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Resources/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /Latest/Resources/en.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Resources/en.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /Latest/Resources/es.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Resources/es.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Latest/Resources/es.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Resources/es.lproj/Localizable.strings -------------------------------------------------------------------------------- /Latest/Resources/es.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Resources/es.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /Latest/Resources/et.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Resources/et.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Latest/Resources/et.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Resources/et.lproj/Localizable.strings -------------------------------------------------------------------------------- /Latest/Resources/fa.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Resources/fa.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Latest/Resources/fa.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Resources/fa.lproj/Localizable.strings -------------------------------------------------------------------------------- /Latest/Resources/fa.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Resources/fa.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /Latest/Resources/fi.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Latest/Resources/fi.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Resources/fi.lproj/Localizable.strings -------------------------------------------------------------------------------- /Latest/Resources/fi.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Resources/fi.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /Latest/Resources/fil.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Resources/fil.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Latest/Resources/fil.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Resources/fil.lproj/Localizable.strings -------------------------------------------------------------------------------- /Latest/Resources/fil.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Resources/fil.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /Latest/Resources/fr.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Resources/fr.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Latest/Resources/fr.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Resources/fr.lproj/Localizable.strings -------------------------------------------------------------------------------- /Latest/Resources/fr.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Resources/fr.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /Latest/Resources/gl.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Latest/Resources/gl.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Resources/gl.lproj/Localizable.strings -------------------------------------------------------------------------------- /Latest/Resources/gl.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Resources/gl.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /Latest/Resources/he.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Resources/he.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Latest/Resources/he.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Resources/he.lproj/Localizable.strings -------------------------------------------------------------------------------- /Latest/Resources/he.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Resources/he.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /Latest/Resources/hi.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Latest/Resources/hi.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Resources/hi.lproj/Localizable.strings -------------------------------------------------------------------------------- /Latest/Resources/hi.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Resources/hi.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /Latest/Resources/hr.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Resources/hr.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Latest/Resources/hr.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Resources/hr.lproj/Localizable.strings -------------------------------------------------------------------------------- /Latest/Resources/hr.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Resources/hr.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /Latest/Resources/hu.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Resources/hu.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Latest/Resources/hu.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Resources/hu.lproj/Localizable.strings -------------------------------------------------------------------------------- /Latest/Resources/hu.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Resources/hu.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /Latest/Resources/id.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Resources/id.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Latest/Resources/id.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Resources/id.lproj/Localizable.strings -------------------------------------------------------------------------------- /Latest/Resources/id.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Resources/id.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /Latest/Resources/it.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Resources/it.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Latest/Resources/it.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Resources/it.lproj/Localizable.strings -------------------------------------------------------------------------------- /Latest/Resources/it.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Resources/it.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /Latest/Resources/ja.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Resources/ja.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Latest/Resources/ja.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Resources/ja.lproj/Localizable.strings -------------------------------------------------------------------------------- /Latest/Resources/ja.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Resources/ja.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /Latest/Resources/ko.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Resources/ko.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Latest/Resources/ko.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Resources/ko.lproj/Localizable.strings -------------------------------------------------------------------------------- /Latest/Resources/ko.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Resources/ko.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /Latest/Resources/ms.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Resources/ms.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Latest/Resources/ms.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Resources/ms.lproj/Localizable.strings -------------------------------------------------------------------------------- /Latest/Resources/ms.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Resources/ms.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /Latest/Resources/nb.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Resources/nb.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Latest/Resources/nb.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Resources/nb.lproj/Localizable.strings -------------------------------------------------------------------------------- /Latest/Resources/nb.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Resources/nb.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /Latest/Resources/nl.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Resources/nl.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Latest/Resources/nl.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Resources/nl.lproj/Localizable.strings -------------------------------------------------------------------------------- /Latest/Resources/nl.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Resources/nl.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /Latest/Resources/pl.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Resources/pl.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Latest/Resources/pl.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Resources/pl.lproj/Localizable.strings -------------------------------------------------------------------------------- /Latest/Resources/pl.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Resources/pl.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /Latest/Resources/pt-BR.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Resources/pt-BR.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Latest/Resources/pt-BR.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Resources/pt-BR.lproj/Localizable.strings -------------------------------------------------------------------------------- /Latest/Resources/pt-BR.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Resources/pt-BR.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /Latest/Resources/pt-PT.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Resources/pt-PT.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Latest/Resources/pt-PT.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Resources/pt-PT.lproj/Localizable.strings -------------------------------------------------------------------------------- /Latest/Resources/pt-PT.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Resources/pt-PT.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /Latest/Resources/pt.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Resources/pt.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Latest/Resources/pt.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Resources/pt.lproj/Localizable.strings -------------------------------------------------------------------------------- /Latest/Resources/pt.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Resources/pt.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /Latest/Resources/ro.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Resources/ro.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Latest/Resources/ro.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Resources/ro.lproj/Localizable.strings -------------------------------------------------------------------------------- /Latest/Resources/ro.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Resources/ro.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /Latest/Resources/ru.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Resources/ru.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Latest/Resources/ru.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Resources/ru.lproj/Localizable.strings -------------------------------------------------------------------------------- /Latest/Resources/ru.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Resources/ru.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /Latest/Resources/sk.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Resources/sk.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Latest/Resources/sk.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Resources/sk.lproj/Localizable.strings -------------------------------------------------------------------------------- /Latest/Resources/sk.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Resources/sk.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /Latest/Resources/sl.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Resources/sl.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Latest/Resources/sl.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Resources/sl.lproj/Localizable.strings -------------------------------------------------------------------------------- /Latest/Resources/sl.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Resources/sl.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /Latest/Resources/sr.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Resources/sr.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Latest/Resources/sr.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Resources/sr.lproj/Localizable.strings -------------------------------------------------------------------------------- /Latest/Resources/sr.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Resources/sr.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /Latest/Resources/sv.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Resources/sv.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Latest/Resources/sv.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Resources/sv.lproj/Localizable.strings -------------------------------------------------------------------------------- /Latest/Resources/sv.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Resources/sv.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /Latest/Resources/th.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Latest/Resources/th.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Resources/th.lproj/Localizable.strings -------------------------------------------------------------------------------- /Latest/Resources/th.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Resources/th.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /Latest/Resources/tr.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Resources/tr.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Latest/Resources/tr.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Resources/tr.lproj/Localizable.strings -------------------------------------------------------------------------------- /Latest/Resources/tr.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Resources/tr.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /Latest/Resources/uk.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Resources/uk.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Latest/Resources/uk.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Resources/uk.lproj/Localizable.strings -------------------------------------------------------------------------------- /Latest/Resources/uk.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Resources/uk.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /Latest/Resources/vi.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Latest/Resources/vi.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Resources/vi.lproj/Localizable.strings -------------------------------------------------------------------------------- /Latest/Resources/vi.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Resources/vi.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /Latest/Resources/zh-Hans.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Resources/zh-Hans.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Latest/Resources/zh-Hans.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Resources/zh-Hans.lproj/Localizable.strings -------------------------------------------------------------------------------- /Latest/Resources/zh-Hans.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Resources/zh-Hans.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /Latest/Resources/zh-Hant.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Resources/zh-Hant.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Latest/Resources/zh-Hant.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Resources/zh-Hant.lproj/Localizable.strings -------------------------------------------------------------------------------- /Latest/Resources/zh-Hant.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Resources/zh-Hant.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /Latest/Utilities/CFBundle_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Utilities/CFBundle_Private.h -------------------------------------------------------------------------------- /Latest/Utilities/LatestError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/Utilities/LatestError.swift -------------------------------------------------------------------------------- /Latest/View Model/AppListSettings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/View Model/AppListSettings.swift -------------------------------------------------------------------------------- /Latest/View Model/AppListSnapshot.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/View Model/AppListSnapshot.swift -------------------------------------------------------------------------------- /Latest/View Model/IconCache.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/View Model/IconCache.swift -------------------------------------------------------------------------------- /Latest/View Model/ReleaseNotesProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/View Model/ReleaseNotesProvider.swift -------------------------------------------------------------------------------- /Latest/View Model/WebContentLoader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Latest/View Model/WebContentLoader.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/README.md -------------------------------------------------------------------------------- /Sparkle/Exposed Private Headers/SPUDownloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Sparkle/Exposed Private Headers/SPUDownloader.h -------------------------------------------------------------------------------- /Sparkle/Exposed Private Headers/SPUDownloaderDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Sparkle/Exposed Private Headers/SPUDownloaderDelegate.h -------------------------------------------------------------------------------- /Sparkle/Exposed Private Headers/SPUDownloaderProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Sparkle/Exposed Private Headers/SPUDownloaderProtocol.h -------------------------------------------------------------------------------- /Sparkle/Exposed Private Headers/SUUpdateDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Sparkle/Exposed Private Headers/SUUpdateDriver.h -------------------------------------------------------------------------------- /Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Tests/Info.plist -------------------------------------------------------------------------------- /Tests/OSVersionTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Tests/OSVersionTest.swift -------------------------------------------------------------------------------- /Tests/VersionParserTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Tests/VersionParserTest.swift -------------------------------------------------------------------------------- /Tests/VersionSanitizationTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Tests/VersionSanitizationTest.swift -------------------------------------------------------------------------------- /Tests/VersionTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/Tests/VersionTest.swift -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/_config.yml -------------------------------------------------------------------------------- /latest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mangerlahn/Latest/HEAD/latest.png --------------------------------------------------------------------------------