├── .github └── workflows │ ├── release.yml │ └── test.yml ├── .gitignore ├── .swiftlint.yml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Info.plist ├── LICENSE ├── Makefile ├── Mintfile ├── Pareto Updater.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── swiftpm │ │ └── Package.resolved └── xcshareddata │ └── xcschemes │ └── Pareto Updater.xcscheme ├── Pareto Updater ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── icon_128x128.png │ │ ├── icon_128x128@2x.png │ │ ├── icon_16x16.png │ │ ├── icon_16x16@2x.png │ │ ├── icon_256x256.png │ │ ├── icon_256x256@2x.png │ │ ├── icon_32x32.png │ │ ├── icon_32x32@2x.png │ │ ├── icon_512x512.png │ │ └── icon_512x512@2x.png │ ├── Contents.json │ ├── Logo.imageset │ │ ├── Contents.json │ │ └── icon_512x512@2x.png │ ├── menubar-idle.imageset │ │ ├── Contents.json │ │ ├── updater-01-b.png │ │ └── updater-01-b.svg │ └── menubar-updates.imageset │ │ ├── Contents.json │ │ ├── updater-02-b.png │ │ └── updater-02-w.svg ├── Constants.swift ├── Extensions │ ├── AppStoreApps.swift │ ├── AppUpdater.swift │ ├── Bundle.swift │ ├── DMG.swift │ ├── Defaults.swift │ ├── FileManager.swift │ ├── GitHubApps.swift │ ├── Image.swift │ ├── PkgApps.swift │ ├── Process.swift │ ├── SparkleApps.swift │ ├── String.swift │ └── URL.swift ├── License.swift ├── Models │ ├── AppBundles.swift │ ├── AppCast.swift │ └── AppStore.swift ├── ParetoUpdater.swift ├── Pareto_Updater.entitlements ├── Preview Content │ └── Preview Assets.xcassets │ │ └── Contents.json ├── Software │ ├── 1Password.swift │ ├── AdGuard.swift │ ├── AppCleaner.swift │ ├── Audacity.swift │ ├── Bitwarden.swift │ ├── Brave Browser.swift │ ├── Cryptomator.swift │ ├── Cyberduck.swift │ ├── Discord.swift │ ├── Docker.swift │ ├── Dropbox.swift │ ├── DucDuckGo.swift │ ├── Firefox.swift │ ├── Gimp.swift │ ├── GitHub.swift │ ├── GitUp.swift │ ├── GoogleChrome.swift │ ├── Gramarly.swift │ ├── HandBrake.swift │ ├── HiddenBar.swift │ ├── IINA.swift │ ├── Inkscape.swift │ ├── LibreOffice.swift │ ├── Local.swift │ ├── Macy.swift │ ├── Maestral.swift │ ├── Messanger.swift │ ├── MicrosoftTeams.swift │ ├── Notion.swift │ ├── PrusaSlicer.swift │ ├── Raycast.swift │ ├── Rectangle.swift │ ├── Seashore.swift │ ├── Signal.swift │ ├── Skype.swift │ ├── Slack.swift │ ├── Spotify.swift │ ├── SpyBuster.swift │ ├── SublimeText.swift │ ├── SwiftBar.swift │ ├── TeamViewer.swift │ ├── TopNotch.swift │ ├── VLC.swift │ ├── VSCode.swift │ ├── Viber.swift │ ├── WorkHours.swift │ ├── Zoom.swift │ └── iTerm.swift └── Views │ ├── AppInstall.swift │ ├── AppList.swift │ ├── AppRow.swift │ ├── ClipButton.swift │ ├── Menubar.swift │ └── Preferences │ ├── AboutView.swift │ ├── AppsView.swift │ ├── GeneralView.swift │ ├── LicenseView.swift │ └── PreferencesView.swift ├── Pareto UpdaterTests ├── LicenseTests.swift ├── ParetoUpdaterTests.swift ├── SparkleInlinedVersionsTests.swift ├── SparkleRandomVersionsTests.swift ├── SparkleTests.swift └── UpdaterTests.swift ├── Pareto UpdaterUITests └── TestPopUp.swift ├── README.md ├── codecov.yml ├── exportOptions.plist └── exportOptionsDev.plist /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParetoSecurity/pareto-updater-mac/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParetoSecurity/pareto-updater-mac/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParetoSecurity/pareto-updater-mac/HEAD/.gitignore -------------------------------------------------------------------------------- /.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParetoSecurity/pareto-updater-mac/HEAD/.swiftlint.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParetoSecurity/pareto-updater-mac/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParetoSecurity/pareto-updater-mac/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParetoSecurity/pareto-updater-mac/HEAD/Info.plist -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParetoSecurity/pareto-updater-mac/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParetoSecurity/pareto-updater-mac/HEAD/Makefile -------------------------------------------------------------------------------- /Mintfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParetoSecurity/pareto-updater-mac/HEAD/Mintfile -------------------------------------------------------------------------------- /Pareto Updater.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParetoSecurity/pareto-updater-mac/HEAD/Pareto Updater.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Pareto Updater.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParetoSecurity/pareto-updater-mac/HEAD/Pareto Updater.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Pareto Updater.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParetoSecurity/pareto-updater-mac/HEAD/Pareto Updater.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Pareto Updater.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParetoSecurity/pareto-updater-mac/HEAD/Pareto Updater.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved -------------------------------------------------------------------------------- /Pareto Updater.xcodeproj/xcshareddata/xcschemes/Pareto Updater.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParetoSecurity/pareto-updater-mac/HEAD/Pareto Updater.xcodeproj/xcshareddata/xcschemes/Pareto Updater.xcscheme -------------------------------------------------------------------------------- /Pareto Updater/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParetoSecurity/pareto-updater-mac/HEAD/Pareto Updater/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /Pareto Updater/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParetoSecurity/pareto-updater-mac/HEAD/Pareto Updater/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Pareto Updater/Assets.xcassets/AppIcon.appiconset/icon_128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParetoSecurity/pareto-updater-mac/HEAD/Pareto Updater/Assets.xcassets/AppIcon.appiconset/icon_128x128.png -------------------------------------------------------------------------------- /Pareto Updater/Assets.xcassets/AppIcon.appiconset/icon_128x128@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParetoSecurity/pareto-updater-mac/HEAD/Pareto Updater/Assets.xcassets/AppIcon.appiconset/icon_128x128@2x.png -------------------------------------------------------------------------------- /Pareto Updater/Assets.xcassets/AppIcon.appiconset/icon_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParetoSecurity/pareto-updater-mac/HEAD/Pareto Updater/Assets.xcassets/AppIcon.appiconset/icon_16x16.png -------------------------------------------------------------------------------- /Pareto Updater/Assets.xcassets/AppIcon.appiconset/icon_16x16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParetoSecurity/pareto-updater-mac/HEAD/Pareto Updater/Assets.xcassets/AppIcon.appiconset/icon_16x16@2x.png -------------------------------------------------------------------------------- /Pareto Updater/Assets.xcassets/AppIcon.appiconset/icon_256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParetoSecurity/pareto-updater-mac/HEAD/Pareto Updater/Assets.xcassets/AppIcon.appiconset/icon_256x256.png -------------------------------------------------------------------------------- /Pareto Updater/Assets.xcassets/AppIcon.appiconset/icon_256x256@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParetoSecurity/pareto-updater-mac/HEAD/Pareto Updater/Assets.xcassets/AppIcon.appiconset/icon_256x256@2x.png -------------------------------------------------------------------------------- /Pareto Updater/Assets.xcassets/AppIcon.appiconset/icon_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParetoSecurity/pareto-updater-mac/HEAD/Pareto Updater/Assets.xcassets/AppIcon.appiconset/icon_32x32.png -------------------------------------------------------------------------------- /Pareto Updater/Assets.xcassets/AppIcon.appiconset/icon_32x32@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParetoSecurity/pareto-updater-mac/HEAD/Pareto Updater/Assets.xcassets/AppIcon.appiconset/icon_32x32@2x.png -------------------------------------------------------------------------------- /Pareto Updater/Assets.xcassets/AppIcon.appiconset/icon_512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParetoSecurity/pareto-updater-mac/HEAD/Pareto Updater/Assets.xcassets/AppIcon.appiconset/icon_512x512.png -------------------------------------------------------------------------------- /Pareto Updater/Assets.xcassets/AppIcon.appiconset/icon_512x512@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParetoSecurity/pareto-updater-mac/HEAD/Pareto Updater/Assets.xcassets/AppIcon.appiconset/icon_512x512@2x.png -------------------------------------------------------------------------------- /Pareto Updater/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParetoSecurity/pareto-updater-mac/HEAD/Pareto Updater/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Pareto Updater/Assets.xcassets/Logo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParetoSecurity/pareto-updater-mac/HEAD/Pareto Updater/Assets.xcassets/Logo.imageset/Contents.json -------------------------------------------------------------------------------- /Pareto Updater/Assets.xcassets/Logo.imageset/icon_512x512@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParetoSecurity/pareto-updater-mac/HEAD/Pareto Updater/Assets.xcassets/Logo.imageset/icon_512x512@2x.png -------------------------------------------------------------------------------- /Pareto Updater/Assets.xcassets/menubar-idle.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParetoSecurity/pareto-updater-mac/HEAD/Pareto Updater/Assets.xcassets/menubar-idle.imageset/Contents.json -------------------------------------------------------------------------------- /Pareto Updater/Assets.xcassets/menubar-idle.imageset/updater-01-b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParetoSecurity/pareto-updater-mac/HEAD/Pareto Updater/Assets.xcassets/menubar-idle.imageset/updater-01-b.png -------------------------------------------------------------------------------- /Pareto Updater/Assets.xcassets/menubar-idle.imageset/updater-01-b.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParetoSecurity/pareto-updater-mac/HEAD/Pareto Updater/Assets.xcassets/menubar-idle.imageset/updater-01-b.svg -------------------------------------------------------------------------------- /Pareto Updater/Assets.xcassets/menubar-updates.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParetoSecurity/pareto-updater-mac/HEAD/Pareto Updater/Assets.xcassets/menubar-updates.imageset/Contents.json -------------------------------------------------------------------------------- /Pareto Updater/Assets.xcassets/menubar-updates.imageset/updater-02-b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParetoSecurity/pareto-updater-mac/HEAD/Pareto Updater/Assets.xcassets/menubar-updates.imageset/updater-02-b.png -------------------------------------------------------------------------------- /Pareto Updater/Assets.xcassets/menubar-updates.imageset/updater-02-w.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParetoSecurity/pareto-updater-mac/HEAD/Pareto Updater/Assets.xcassets/menubar-updates.imageset/updater-02-w.svg -------------------------------------------------------------------------------- /Pareto Updater/Constants.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParetoSecurity/pareto-updater-mac/HEAD/Pareto Updater/Constants.swift -------------------------------------------------------------------------------- /Pareto Updater/Extensions/AppStoreApps.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParetoSecurity/pareto-updater-mac/HEAD/Pareto Updater/Extensions/AppStoreApps.swift -------------------------------------------------------------------------------- /Pareto Updater/Extensions/AppUpdater.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParetoSecurity/pareto-updater-mac/HEAD/Pareto Updater/Extensions/AppUpdater.swift -------------------------------------------------------------------------------- /Pareto Updater/Extensions/Bundle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParetoSecurity/pareto-updater-mac/HEAD/Pareto Updater/Extensions/Bundle.swift -------------------------------------------------------------------------------- /Pareto Updater/Extensions/DMG.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParetoSecurity/pareto-updater-mac/HEAD/Pareto Updater/Extensions/DMG.swift -------------------------------------------------------------------------------- /Pareto Updater/Extensions/Defaults.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParetoSecurity/pareto-updater-mac/HEAD/Pareto Updater/Extensions/Defaults.swift -------------------------------------------------------------------------------- /Pareto Updater/Extensions/FileManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParetoSecurity/pareto-updater-mac/HEAD/Pareto Updater/Extensions/FileManager.swift -------------------------------------------------------------------------------- /Pareto Updater/Extensions/GitHubApps.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParetoSecurity/pareto-updater-mac/HEAD/Pareto Updater/Extensions/GitHubApps.swift -------------------------------------------------------------------------------- /Pareto Updater/Extensions/Image.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParetoSecurity/pareto-updater-mac/HEAD/Pareto Updater/Extensions/Image.swift -------------------------------------------------------------------------------- /Pareto Updater/Extensions/PkgApps.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParetoSecurity/pareto-updater-mac/HEAD/Pareto Updater/Extensions/PkgApps.swift -------------------------------------------------------------------------------- /Pareto Updater/Extensions/Process.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParetoSecurity/pareto-updater-mac/HEAD/Pareto Updater/Extensions/Process.swift -------------------------------------------------------------------------------- /Pareto Updater/Extensions/SparkleApps.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParetoSecurity/pareto-updater-mac/HEAD/Pareto Updater/Extensions/SparkleApps.swift -------------------------------------------------------------------------------- /Pareto Updater/Extensions/String.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParetoSecurity/pareto-updater-mac/HEAD/Pareto Updater/Extensions/String.swift -------------------------------------------------------------------------------- /Pareto Updater/Extensions/URL.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParetoSecurity/pareto-updater-mac/HEAD/Pareto Updater/Extensions/URL.swift -------------------------------------------------------------------------------- /Pareto Updater/License.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParetoSecurity/pareto-updater-mac/HEAD/Pareto Updater/License.swift -------------------------------------------------------------------------------- /Pareto Updater/Models/AppBundles.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParetoSecurity/pareto-updater-mac/HEAD/Pareto Updater/Models/AppBundles.swift -------------------------------------------------------------------------------- /Pareto Updater/Models/AppCast.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParetoSecurity/pareto-updater-mac/HEAD/Pareto Updater/Models/AppCast.swift -------------------------------------------------------------------------------- /Pareto Updater/Models/AppStore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParetoSecurity/pareto-updater-mac/HEAD/Pareto Updater/Models/AppStore.swift -------------------------------------------------------------------------------- /Pareto Updater/ParetoUpdater.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParetoSecurity/pareto-updater-mac/HEAD/Pareto Updater/ParetoUpdater.swift -------------------------------------------------------------------------------- /Pareto Updater/Pareto_Updater.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParetoSecurity/pareto-updater-mac/HEAD/Pareto Updater/Pareto_Updater.entitlements -------------------------------------------------------------------------------- /Pareto Updater/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParetoSecurity/pareto-updater-mac/HEAD/Pareto Updater/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Pareto Updater/Software/1Password.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParetoSecurity/pareto-updater-mac/HEAD/Pareto Updater/Software/1Password.swift -------------------------------------------------------------------------------- /Pareto Updater/Software/AdGuard.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParetoSecurity/pareto-updater-mac/HEAD/Pareto Updater/Software/AdGuard.swift -------------------------------------------------------------------------------- /Pareto Updater/Software/AppCleaner.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParetoSecurity/pareto-updater-mac/HEAD/Pareto Updater/Software/AppCleaner.swift -------------------------------------------------------------------------------- /Pareto Updater/Software/Audacity.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParetoSecurity/pareto-updater-mac/HEAD/Pareto Updater/Software/Audacity.swift -------------------------------------------------------------------------------- /Pareto Updater/Software/Bitwarden.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParetoSecurity/pareto-updater-mac/HEAD/Pareto Updater/Software/Bitwarden.swift -------------------------------------------------------------------------------- /Pareto Updater/Software/Brave Browser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParetoSecurity/pareto-updater-mac/HEAD/Pareto Updater/Software/Brave Browser.swift -------------------------------------------------------------------------------- /Pareto Updater/Software/Cryptomator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParetoSecurity/pareto-updater-mac/HEAD/Pareto Updater/Software/Cryptomator.swift -------------------------------------------------------------------------------- /Pareto Updater/Software/Cyberduck.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParetoSecurity/pareto-updater-mac/HEAD/Pareto Updater/Software/Cyberduck.swift -------------------------------------------------------------------------------- /Pareto Updater/Software/Discord.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParetoSecurity/pareto-updater-mac/HEAD/Pareto Updater/Software/Discord.swift -------------------------------------------------------------------------------- /Pareto Updater/Software/Docker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParetoSecurity/pareto-updater-mac/HEAD/Pareto Updater/Software/Docker.swift -------------------------------------------------------------------------------- /Pareto Updater/Software/Dropbox.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParetoSecurity/pareto-updater-mac/HEAD/Pareto Updater/Software/Dropbox.swift -------------------------------------------------------------------------------- /Pareto Updater/Software/DucDuckGo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParetoSecurity/pareto-updater-mac/HEAD/Pareto Updater/Software/DucDuckGo.swift -------------------------------------------------------------------------------- /Pareto Updater/Software/Firefox.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParetoSecurity/pareto-updater-mac/HEAD/Pareto Updater/Software/Firefox.swift -------------------------------------------------------------------------------- /Pareto Updater/Software/Gimp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParetoSecurity/pareto-updater-mac/HEAD/Pareto Updater/Software/Gimp.swift -------------------------------------------------------------------------------- /Pareto Updater/Software/GitHub.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParetoSecurity/pareto-updater-mac/HEAD/Pareto Updater/Software/GitHub.swift -------------------------------------------------------------------------------- /Pareto Updater/Software/GitUp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParetoSecurity/pareto-updater-mac/HEAD/Pareto Updater/Software/GitUp.swift -------------------------------------------------------------------------------- /Pareto Updater/Software/GoogleChrome.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParetoSecurity/pareto-updater-mac/HEAD/Pareto Updater/Software/GoogleChrome.swift -------------------------------------------------------------------------------- /Pareto Updater/Software/Gramarly.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParetoSecurity/pareto-updater-mac/HEAD/Pareto Updater/Software/Gramarly.swift -------------------------------------------------------------------------------- /Pareto Updater/Software/HandBrake.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParetoSecurity/pareto-updater-mac/HEAD/Pareto Updater/Software/HandBrake.swift -------------------------------------------------------------------------------- /Pareto Updater/Software/HiddenBar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParetoSecurity/pareto-updater-mac/HEAD/Pareto Updater/Software/HiddenBar.swift -------------------------------------------------------------------------------- /Pareto Updater/Software/IINA.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParetoSecurity/pareto-updater-mac/HEAD/Pareto Updater/Software/IINA.swift -------------------------------------------------------------------------------- /Pareto Updater/Software/Inkscape.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParetoSecurity/pareto-updater-mac/HEAD/Pareto Updater/Software/Inkscape.swift -------------------------------------------------------------------------------- /Pareto Updater/Software/LibreOffice.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParetoSecurity/pareto-updater-mac/HEAD/Pareto Updater/Software/LibreOffice.swift -------------------------------------------------------------------------------- /Pareto Updater/Software/Local.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParetoSecurity/pareto-updater-mac/HEAD/Pareto Updater/Software/Local.swift -------------------------------------------------------------------------------- /Pareto Updater/Software/Macy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParetoSecurity/pareto-updater-mac/HEAD/Pareto Updater/Software/Macy.swift -------------------------------------------------------------------------------- /Pareto Updater/Software/Maestral.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParetoSecurity/pareto-updater-mac/HEAD/Pareto Updater/Software/Maestral.swift -------------------------------------------------------------------------------- /Pareto Updater/Software/Messanger.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParetoSecurity/pareto-updater-mac/HEAD/Pareto Updater/Software/Messanger.swift -------------------------------------------------------------------------------- /Pareto Updater/Software/MicrosoftTeams.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParetoSecurity/pareto-updater-mac/HEAD/Pareto Updater/Software/MicrosoftTeams.swift -------------------------------------------------------------------------------- /Pareto Updater/Software/Notion.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParetoSecurity/pareto-updater-mac/HEAD/Pareto Updater/Software/Notion.swift -------------------------------------------------------------------------------- /Pareto Updater/Software/PrusaSlicer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParetoSecurity/pareto-updater-mac/HEAD/Pareto Updater/Software/PrusaSlicer.swift -------------------------------------------------------------------------------- /Pareto Updater/Software/Raycast.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParetoSecurity/pareto-updater-mac/HEAD/Pareto Updater/Software/Raycast.swift -------------------------------------------------------------------------------- /Pareto Updater/Software/Rectangle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParetoSecurity/pareto-updater-mac/HEAD/Pareto Updater/Software/Rectangle.swift -------------------------------------------------------------------------------- /Pareto Updater/Software/Seashore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParetoSecurity/pareto-updater-mac/HEAD/Pareto Updater/Software/Seashore.swift -------------------------------------------------------------------------------- /Pareto Updater/Software/Signal.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParetoSecurity/pareto-updater-mac/HEAD/Pareto Updater/Software/Signal.swift -------------------------------------------------------------------------------- /Pareto Updater/Software/Skype.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParetoSecurity/pareto-updater-mac/HEAD/Pareto Updater/Software/Skype.swift -------------------------------------------------------------------------------- /Pareto Updater/Software/Slack.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParetoSecurity/pareto-updater-mac/HEAD/Pareto Updater/Software/Slack.swift -------------------------------------------------------------------------------- /Pareto Updater/Software/Spotify.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParetoSecurity/pareto-updater-mac/HEAD/Pareto Updater/Software/Spotify.swift -------------------------------------------------------------------------------- /Pareto Updater/Software/SpyBuster.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParetoSecurity/pareto-updater-mac/HEAD/Pareto Updater/Software/SpyBuster.swift -------------------------------------------------------------------------------- /Pareto Updater/Software/SublimeText.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParetoSecurity/pareto-updater-mac/HEAD/Pareto Updater/Software/SublimeText.swift -------------------------------------------------------------------------------- /Pareto Updater/Software/SwiftBar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParetoSecurity/pareto-updater-mac/HEAD/Pareto Updater/Software/SwiftBar.swift -------------------------------------------------------------------------------- /Pareto Updater/Software/TeamViewer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParetoSecurity/pareto-updater-mac/HEAD/Pareto Updater/Software/TeamViewer.swift -------------------------------------------------------------------------------- /Pareto Updater/Software/TopNotch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParetoSecurity/pareto-updater-mac/HEAD/Pareto Updater/Software/TopNotch.swift -------------------------------------------------------------------------------- /Pareto Updater/Software/VLC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParetoSecurity/pareto-updater-mac/HEAD/Pareto Updater/Software/VLC.swift -------------------------------------------------------------------------------- /Pareto Updater/Software/VSCode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParetoSecurity/pareto-updater-mac/HEAD/Pareto Updater/Software/VSCode.swift -------------------------------------------------------------------------------- /Pareto Updater/Software/Viber.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParetoSecurity/pareto-updater-mac/HEAD/Pareto Updater/Software/Viber.swift -------------------------------------------------------------------------------- /Pareto Updater/Software/WorkHours.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParetoSecurity/pareto-updater-mac/HEAD/Pareto Updater/Software/WorkHours.swift -------------------------------------------------------------------------------- /Pareto Updater/Software/Zoom.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParetoSecurity/pareto-updater-mac/HEAD/Pareto Updater/Software/Zoom.swift -------------------------------------------------------------------------------- /Pareto Updater/Software/iTerm.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParetoSecurity/pareto-updater-mac/HEAD/Pareto Updater/Software/iTerm.swift -------------------------------------------------------------------------------- /Pareto Updater/Views/AppInstall.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParetoSecurity/pareto-updater-mac/HEAD/Pareto Updater/Views/AppInstall.swift -------------------------------------------------------------------------------- /Pareto Updater/Views/AppList.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParetoSecurity/pareto-updater-mac/HEAD/Pareto Updater/Views/AppList.swift -------------------------------------------------------------------------------- /Pareto Updater/Views/AppRow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParetoSecurity/pareto-updater-mac/HEAD/Pareto Updater/Views/AppRow.swift -------------------------------------------------------------------------------- /Pareto Updater/Views/ClipButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParetoSecurity/pareto-updater-mac/HEAD/Pareto Updater/Views/ClipButton.swift -------------------------------------------------------------------------------- /Pareto Updater/Views/Menubar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParetoSecurity/pareto-updater-mac/HEAD/Pareto Updater/Views/Menubar.swift -------------------------------------------------------------------------------- /Pareto Updater/Views/Preferences/AboutView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParetoSecurity/pareto-updater-mac/HEAD/Pareto Updater/Views/Preferences/AboutView.swift -------------------------------------------------------------------------------- /Pareto Updater/Views/Preferences/AppsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParetoSecurity/pareto-updater-mac/HEAD/Pareto Updater/Views/Preferences/AppsView.swift -------------------------------------------------------------------------------- /Pareto Updater/Views/Preferences/GeneralView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParetoSecurity/pareto-updater-mac/HEAD/Pareto Updater/Views/Preferences/GeneralView.swift -------------------------------------------------------------------------------- /Pareto Updater/Views/Preferences/LicenseView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParetoSecurity/pareto-updater-mac/HEAD/Pareto Updater/Views/Preferences/LicenseView.swift -------------------------------------------------------------------------------- /Pareto Updater/Views/Preferences/PreferencesView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParetoSecurity/pareto-updater-mac/HEAD/Pareto Updater/Views/Preferences/PreferencesView.swift -------------------------------------------------------------------------------- /Pareto UpdaterTests/LicenseTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParetoSecurity/pareto-updater-mac/HEAD/Pareto UpdaterTests/LicenseTests.swift -------------------------------------------------------------------------------- /Pareto UpdaterTests/ParetoUpdaterTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParetoSecurity/pareto-updater-mac/HEAD/Pareto UpdaterTests/ParetoUpdaterTests.swift -------------------------------------------------------------------------------- /Pareto UpdaterTests/SparkleInlinedVersionsTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParetoSecurity/pareto-updater-mac/HEAD/Pareto UpdaterTests/SparkleInlinedVersionsTests.swift -------------------------------------------------------------------------------- /Pareto UpdaterTests/SparkleRandomVersionsTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParetoSecurity/pareto-updater-mac/HEAD/Pareto UpdaterTests/SparkleRandomVersionsTests.swift -------------------------------------------------------------------------------- /Pareto UpdaterTests/SparkleTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParetoSecurity/pareto-updater-mac/HEAD/Pareto UpdaterTests/SparkleTests.swift -------------------------------------------------------------------------------- /Pareto UpdaterTests/UpdaterTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParetoSecurity/pareto-updater-mac/HEAD/Pareto UpdaterTests/UpdaterTests.swift -------------------------------------------------------------------------------- /Pareto UpdaterUITests/TestPopUp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParetoSecurity/pareto-updater-mac/HEAD/Pareto UpdaterUITests/TestPopUp.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParetoSecurity/pareto-updater-mac/HEAD/README.md -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParetoSecurity/pareto-updater-mac/HEAD/codecov.yml -------------------------------------------------------------------------------- /exportOptions.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParetoSecurity/pareto-updater-mac/HEAD/exportOptions.plist -------------------------------------------------------------------------------- /exportOptionsDev.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParetoSecurity/pareto-updater-mac/HEAD/exportOptionsDev.plist --------------------------------------------------------------------------------