├── .gitignore ├── .swift-version ├── .swiftformat ├── ExportOptions.plist ├── HACKING.md ├── LICENSE ├── Makefile ├── README.md ├── RELEASING.md ├── Sparkle-1.27.1.tar.xz ├── Spotiqueue-Bridging-Header.h ├── Spotiqueue.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── swiftpm │ │ └── Package.resolved ├── xcshareddata │ └── xcschemes │ │ └── Spotiqueue.xcscheme └── xcuserdata │ └── paul.xcuserdatad │ └── xcschemes │ └── xcschememanagement.plist ├── Spotiqueue ├── AppDelegate.swift ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── spotiqueue-icon-1024x1024.png │ │ ├── spotiqueue-icon-128x128.png │ │ ├── spotiqueue-icon-16x16.png │ │ ├── spotiqueue-icon-256x256.png │ │ ├── spotiqueue-icon-32x32.png │ │ ├── spotiqueue-icon-512x512.png │ │ └── spotiqueue-icon-64x64.png │ └── Contents.json ├── Classes │ ├── Extensions │ │ ├── CalendarExtensions.swift │ │ ├── ComparableExtensions.swift │ │ ├── DateExtensions.swift │ │ ├── FormatterExtensions.swift │ │ ├── OptionSetExtensions.swift │ │ ├── PublishersExtensions.swift │ │ ├── SpotifyAPIExtensions.swift │ │ ├── TimeIntervalExtensions.swift │ │ └── TrackExtensions.swift │ ├── RBCachedImageView.swift │ ├── RBFilterField.swift │ ├── RBGuileBridge.swift │ ├── RBQueueTableView.swift │ ├── RBSearchTableView.swift │ ├── RBSecrets.swift │ ├── RBSpotifyAPI.swift │ ├── RBSpotifyItem.swift │ └── RBTableView.swift ├── GuileHelpers.h ├── GuileHelpers.m ├── Info.plist ├── MainMenu.xib ├── RBLoginWindow.swift ├── RBLoginWindow.xib ├── Sparkle.framework │ ├── Headers │ ├── Modules │ ├── PrivateHeaders │ ├── Resources │ ├── Sparkle │ └── Versions │ │ ├── A │ │ ├── Headers │ │ │ ├── SPUDownloadData.h │ │ │ ├── SPUDownloader.h │ │ │ ├── SPUDownloaderDelegate.h │ │ │ ├── SPUDownloaderProtocol.h │ │ │ ├── SPUDownloaderSession.h │ │ │ ├── SPUURLRequest.h │ │ │ ├── SUAppcast.h │ │ │ ├── SUAppcastItem.h │ │ │ ├── SUCodeSigningVerifier.h │ │ │ ├── SUErrors.h │ │ │ ├── SUExport.h │ │ │ ├── SUStandardVersionComparator.h │ │ │ ├── SUUpdater.h │ │ │ ├── SUUpdaterDelegate.h │ │ │ ├── SUVersionComparisonProtocol.h │ │ │ ├── SUVersionDisplayProtocol.h │ │ │ └── Sparkle.h │ │ ├── Modules │ │ │ └── module.modulemap │ │ ├── PrivateHeaders │ │ │ └── SUUnarchiver.h │ │ ├── Resources │ │ │ ├── Autoupdate.app │ │ │ │ └── Contents │ │ │ │ │ ├── Info.plist │ │ │ │ │ ├── MacOS │ │ │ │ │ ├── Autoupdate │ │ │ │ │ └── fileop │ │ │ │ │ ├── PkgInfo │ │ │ │ │ ├── Resources │ │ │ │ │ ├── AppIcon.icns │ │ │ │ │ ├── Base.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── SUStatus.nib │ │ │ │ │ ├── ar.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── ca.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── cs.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── da.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── de.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── el.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── es.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── fi.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── fr.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── he.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── hr.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── hu.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── is.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── it.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── ja.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── ko.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── nb.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── nl.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── pl.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── pt_BR.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── pt_PT.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── ro.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── ru.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── sk.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── sl.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── sv.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── th.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── tr.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── uk.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── zh_CN.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ └── zh_TW.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ └── _CodeSignature │ │ │ │ │ └── CodeResources │ │ │ ├── Base.lproj │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ │ ├── keyedobjects-110000.nib │ │ │ │ │ └── keyedobjects.nib │ │ │ │ └── Sparkle.strings │ │ │ ├── Info.plist │ │ │ ├── ReleaseNotesColorStyle.css │ │ │ ├── SUModelTranslation.plist │ │ │ ├── SUStatus.nib │ │ │ ├── ar.lproj │ │ │ │ ├── SUAutomaticUpdateAlert.strings │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ ├── SUUpdatePermissionPrompt.strings │ │ │ │ └── Sparkle.strings │ │ │ ├── ca.lproj │ │ │ │ ├── SUAutomaticUpdateAlert.strings │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ └── Sparkle.strings │ │ │ ├── cs.lproj │ │ │ │ ├── SUAutomaticUpdateAlert.strings │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ ├── SUUpdatePermissionPrompt.strings │ │ │ │ └── Sparkle.strings │ │ │ ├── da.lproj │ │ │ │ ├── SUAutomaticUpdateAlert.strings │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ ├── SUUpdatePermissionPrompt.strings │ │ │ │ └── Sparkle.strings │ │ │ ├── de.lproj │ │ │ │ ├── SUAutomaticUpdateAlert.strings │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ ├── SUUpdatePermissionPrompt.strings │ │ │ │ └── Sparkle.strings │ │ │ ├── el.lproj │ │ │ │ ├── SUAutomaticUpdateAlert.strings │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ ├── SUUpdatePermissionPrompt.strings │ │ │ │ └── Sparkle.strings │ │ │ ├── en.lproj │ │ │ │ ├── SUAutomaticUpdateAlert.strings │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ └── SUUpdatePermissionPrompt.strings │ │ │ ├── es.lproj │ │ │ │ ├── SUAutomaticUpdateAlert.strings │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ ├── SUUpdatePermissionPrompt.strings │ │ │ │ └── Sparkle.strings │ │ │ ├── fi.lproj │ │ │ │ ├── SUAutomaticUpdateAlert.strings │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ ├── SUUpdatePermissionPrompt.strings │ │ │ │ └── Sparkle.strings │ │ │ ├── fr.lproj │ │ │ │ ├── SUAutomaticUpdateAlert.strings │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ ├── SUUpdatePermissionPrompt.strings │ │ │ │ └── Sparkle.strings │ │ │ ├── he.lproj │ │ │ │ ├── SUAutomaticUpdateAlert.strings │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ └── Sparkle.strings │ │ │ ├── hr.lproj │ │ │ │ ├── SUAutomaticUpdateAlert.strings │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ ├── SUUpdatePermissionPrompt.strings │ │ │ │ └── Sparkle.strings │ │ │ ├── hu.lproj │ │ │ │ ├── SUAutomaticUpdateAlert.strings │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ ├── SUUpdatePermissionPrompt.strings │ │ │ │ └── Sparkle.strings │ │ │ ├── is.lproj │ │ │ │ ├── SUAutomaticUpdateAlert.strings │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ ├── SUUpdatePermissionPrompt.strings │ │ │ │ └── Sparkle.strings │ │ │ ├── it.lproj │ │ │ │ ├── SUAutomaticUpdateAlert.strings │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ ├── SUUpdatePermissionPrompt.strings │ │ │ │ └── Sparkle.strings │ │ │ ├── ja.lproj │ │ │ │ ├── SUAutomaticUpdateAlert.strings │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ ├── SUUpdatePermissionPrompt.strings │ │ │ │ └── Sparkle.strings │ │ │ ├── ko.lproj │ │ │ │ ├── SUAutomaticUpdateAlert.strings │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ ├── SUUpdatePermissionPrompt.strings │ │ │ │ └── Sparkle.strings │ │ │ ├── nb.lproj │ │ │ │ ├── SUAutomaticUpdateAlert.strings │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ ├── SUUpdatePermissionPrompt.strings │ │ │ │ └── Sparkle.strings │ │ │ ├── nl.lproj │ │ │ │ ├── SUAutomaticUpdateAlert.strings │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ ├── SUUpdatePermissionPrompt.strings │ │ │ │ └── Sparkle.strings │ │ │ ├── pl.lproj │ │ │ │ ├── SUAutomaticUpdateAlert.strings │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ ├── SUUpdatePermissionPrompt.strings │ │ │ │ └── Sparkle.strings │ │ │ ├── pt_BR.lproj │ │ │ │ ├── SUAutomaticUpdateAlert.strings │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ ├── SUUpdatePermissionPrompt.strings │ │ │ │ └── Sparkle.strings │ │ │ ├── pt_PT.lproj │ │ │ │ ├── SUAutomaticUpdateAlert.strings │ │ │ │ ├── SUUpdatePermissionPrompt.strings │ │ │ │ └── Sparkle.strings │ │ │ ├── ro.lproj │ │ │ │ ├── SUAutomaticUpdateAlert.strings │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ ├── SUUpdatePermissionPrompt.strings │ │ │ │ └── Sparkle.strings │ │ │ ├── ru.lproj │ │ │ │ ├── SUAutomaticUpdateAlert.strings │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ ├── SUUpdatePermissionPrompt.strings │ │ │ │ └── Sparkle.strings │ │ │ ├── sk.lproj │ │ │ │ ├── SUAutomaticUpdateAlert.strings │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ ├── SUUpdatePermissionPrompt.strings │ │ │ │ └── Sparkle.strings │ │ │ ├── sl.lproj │ │ │ │ ├── SUAutomaticUpdateAlert.strings │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ ├── SUUpdatePermissionPrompt.strings │ │ │ │ └── Sparkle.strings │ │ │ ├── sv.lproj │ │ │ │ ├── SUAutomaticUpdateAlert.strings │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ ├── SUUpdatePermissionPrompt.strings │ │ │ │ └── Sparkle.strings │ │ │ ├── th.lproj │ │ │ │ ├── SUAutomaticUpdateAlert.strings │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ ├── SUUpdatePermissionPrompt.strings │ │ │ │ └── Sparkle.strings │ │ │ ├── tr.lproj │ │ │ │ ├── SUAutomaticUpdateAlert.strings │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ ├── SUUpdatePermissionPrompt.strings │ │ │ │ └── Sparkle.strings │ │ │ ├── uk.lproj │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ ├── SUUpdatePermissionPrompt.strings │ │ │ │ └── Sparkle.strings │ │ │ ├── zh_CN.lproj │ │ │ │ ├── SUAutomaticUpdateAlert.strings │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ ├── SUUpdatePermissionPrompt.strings │ │ │ │ └── Sparkle.strings │ │ │ └── zh_TW.lproj │ │ │ │ ├── SUAutomaticUpdateAlert.strings │ │ │ │ ├── SUUpdateAlert.strings │ │ │ │ ├── SUUpdatePermissionPrompt.strings │ │ │ │ └── Sparkle.strings │ │ ├── Sparkle │ │ └── _CodeSignature │ │ │ └── CodeResources │ │ └── Current ├── Spotiqueue.entitlements └── main.m ├── TODO.md ├── examples └── paul-config.scm ├── generate-keymaps.sh ├── guile └── spotiqueue │ ├── base.scm │ ├── exceptions.scm │ ├── key-constants.scm │ ├── keybindings.scm │ └── records.scm ├── img └── screenshot.png ├── mise.toml ├── spotiqueue-icon-1024x1024.psd ├── spotiqueue_worker ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── build.rs ├── spotiqueue_worker.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ └── spotiqueue_worker-staticlib.xcscheme ├── spotiqueue_worker_bindings.h └── src │ └── lib.rs ├── updates └── appcast.xml └── vendor ├── .gitignore ├── 34a984164cd0c16b3b14639f9d6da15f06b2692e46b53e08c5af6fe929106f00--guile--3.0.7_2.arm64_big_sur.bottle.tar.gz ├── 3e74dcc39d8faf31f1e226060beea4bda63ec6888f7fe71d3513fd2b977df55e--gmp--6.2.1_1.arm64_big_sur.bottle.tar.gz ├── 684cb343ba872ad91be4bbd4c48f3fb683f30df24d56c348dadd470fa1eee54d--libunistring--0.9.10.big_sur.bottle.tar.gz ├── Makefile ├── a00f689ab39ab3049acd92301d96bb98bdc7b1860536e8e1eaf536be892b9780--bdw-gc--8.0.6.big_sur.bottle.tar.gz ├── a297b225b0a05f699f6d9a1c41e33fc810aee6ee12c24cfef4ff14ae3cfdf73a--guile--3.0.7_2.big_sur.bottle.tar.gz ├── aa890f249658cee1133694519fccd9e5d64397ca8f5932ffb3eb04b46c2d1abd--bdw-gc--8.0.6.arm64_big_sur.bottle.tar.gz ├── b35c301599402facd4fad83244926c99d9808808a7af196e9e6ec988346395fe--gmp--6.2.1_1.big_sur.bottle.tar.gz ├── b68429257038e80dad7f5e906f26422d73b1a124cafb3a4f6d4d8aad2a96419c--libunistring--0.9.10.arm64_big_sur.bottle.tar.gz ├── lib ├── libgc.a ├── libgmp.a ├── libguile-3.0.a └── libunistring.a └── unzip.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/.gitignore -------------------------------------------------------------------------------- /.swift-version: -------------------------------------------------------------------------------- 1 | 5.4 2 | -------------------------------------------------------------------------------- /.swiftformat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/.swiftformat -------------------------------------------------------------------------------- /ExportOptions.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/ExportOptions.plist -------------------------------------------------------------------------------- /HACKING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/HACKING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/README.md -------------------------------------------------------------------------------- /RELEASING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/RELEASING.md -------------------------------------------------------------------------------- /Sparkle-1.27.1.tar.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Sparkle-1.27.1.tar.xz -------------------------------------------------------------------------------- /Spotiqueue-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue-Bridging-Header.h -------------------------------------------------------------------------------- /Spotiqueue.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Spotiqueue.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Spotiqueue.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Spotiqueue.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved -------------------------------------------------------------------------------- /Spotiqueue.xcodeproj/xcshareddata/xcschemes/Spotiqueue.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue.xcodeproj/xcshareddata/xcschemes/Spotiqueue.xcscheme -------------------------------------------------------------------------------- /Spotiqueue.xcodeproj/xcuserdata/paul.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue.xcodeproj/xcuserdata/paul.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Spotiqueue/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/AppDelegate.swift -------------------------------------------------------------------------------- /Spotiqueue/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Spotiqueue/Assets.xcassets/AppIcon.appiconset/spotiqueue-icon-1024x1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Assets.xcassets/AppIcon.appiconset/spotiqueue-icon-1024x1024.png -------------------------------------------------------------------------------- /Spotiqueue/Assets.xcassets/AppIcon.appiconset/spotiqueue-icon-128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Assets.xcassets/AppIcon.appiconset/spotiqueue-icon-128x128.png -------------------------------------------------------------------------------- /Spotiqueue/Assets.xcassets/AppIcon.appiconset/spotiqueue-icon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Assets.xcassets/AppIcon.appiconset/spotiqueue-icon-16x16.png -------------------------------------------------------------------------------- /Spotiqueue/Assets.xcassets/AppIcon.appiconset/spotiqueue-icon-256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Assets.xcassets/AppIcon.appiconset/spotiqueue-icon-256x256.png -------------------------------------------------------------------------------- /Spotiqueue/Assets.xcassets/AppIcon.appiconset/spotiqueue-icon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Assets.xcassets/AppIcon.appiconset/spotiqueue-icon-32x32.png -------------------------------------------------------------------------------- /Spotiqueue/Assets.xcassets/AppIcon.appiconset/spotiqueue-icon-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Assets.xcassets/AppIcon.appiconset/spotiqueue-icon-512x512.png -------------------------------------------------------------------------------- /Spotiqueue/Assets.xcassets/AppIcon.appiconset/spotiqueue-icon-64x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Assets.xcassets/AppIcon.appiconset/spotiqueue-icon-64x64.png -------------------------------------------------------------------------------- /Spotiqueue/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Spotiqueue/Classes/Extensions/CalendarExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Classes/Extensions/CalendarExtensions.swift -------------------------------------------------------------------------------- /Spotiqueue/Classes/Extensions/ComparableExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Classes/Extensions/ComparableExtensions.swift -------------------------------------------------------------------------------- /Spotiqueue/Classes/Extensions/DateExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Classes/Extensions/DateExtensions.swift -------------------------------------------------------------------------------- /Spotiqueue/Classes/Extensions/FormatterExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Classes/Extensions/FormatterExtensions.swift -------------------------------------------------------------------------------- /Spotiqueue/Classes/Extensions/OptionSetExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Classes/Extensions/OptionSetExtensions.swift -------------------------------------------------------------------------------- /Spotiqueue/Classes/Extensions/PublishersExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Classes/Extensions/PublishersExtensions.swift -------------------------------------------------------------------------------- /Spotiqueue/Classes/Extensions/SpotifyAPIExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Classes/Extensions/SpotifyAPIExtensions.swift -------------------------------------------------------------------------------- /Spotiqueue/Classes/Extensions/TimeIntervalExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Classes/Extensions/TimeIntervalExtensions.swift -------------------------------------------------------------------------------- /Spotiqueue/Classes/Extensions/TrackExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Classes/Extensions/TrackExtensions.swift -------------------------------------------------------------------------------- /Spotiqueue/Classes/RBCachedImageView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Classes/RBCachedImageView.swift -------------------------------------------------------------------------------- /Spotiqueue/Classes/RBFilterField.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Classes/RBFilterField.swift -------------------------------------------------------------------------------- /Spotiqueue/Classes/RBGuileBridge.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Classes/RBGuileBridge.swift -------------------------------------------------------------------------------- /Spotiqueue/Classes/RBQueueTableView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Classes/RBQueueTableView.swift -------------------------------------------------------------------------------- /Spotiqueue/Classes/RBSearchTableView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Classes/RBSearchTableView.swift -------------------------------------------------------------------------------- /Spotiqueue/Classes/RBSecrets.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Classes/RBSecrets.swift -------------------------------------------------------------------------------- /Spotiqueue/Classes/RBSpotifyAPI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Classes/RBSpotifyAPI.swift -------------------------------------------------------------------------------- /Spotiqueue/Classes/RBSpotifyItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Classes/RBSpotifyItem.swift -------------------------------------------------------------------------------- /Spotiqueue/Classes/RBTableView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Classes/RBTableView.swift -------------------------------------------------------------------------------- /Spotiqueue/GuileHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/GuileHelpers.h -------------------------------------------------------------------------------- /Spotiqueue/GuileHelpers.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/GuileHelpers.m -------------------------------------------------------------------------------- /Spotiqueue/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Info.plist -------------------------------------------------------------------------------- /Spotiqueue/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/MainMenu.xib -------------------------------------------------------------------------------- /Spotiqueue/RBLoginWindow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/RBLoginWindow.swift -------------------------------------------------------------------------------- /Spotiqueue/RBLoginWindow.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/RBLoginWindow.xib -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Modules: -------------------------------------------------------------------------------- 1 | Versions/Current/Modules -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/PrivateHeaders: -------------------------------------------------------------------------------- 1 | Versions/Current/PrivateHeaders -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Sparkle: -------------------------------------------------------------------------------- 1 | Versions/Current/Sparkle -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Headers/SPUDownloadData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Headers/SPUDownloadData.h -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Headers/SPUDownloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Headers/SPUDownloader.h -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Headers/SPUDownloaderDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Headers/SPUDownloaderDelegate.h -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Headers/SPUDownloaderProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Headers/SPUDownloaderProtocol.h -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Headers/SPUDownloaderSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Headers/SPUDownloaderSession.h -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Headers/SPUURLRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Headers/SPUURLRequest.h -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Headers/SUAppcast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Headers/SUAppcast.h -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Headers/SUAppcastItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Headers/SUAppcastItem.h -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Headers/SUCodeSigningVerifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Headers/SUCodeSigningVerifier.h -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Headers/SUErrors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Headers/SUErrors.h -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Headers/SUExport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Headers/SUExport.h -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Headers/SUStandardVersionComparator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Headers/SUStandardVersionComparator.h -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Headers/SUUpdater.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Headers/SUUpdater.h -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Headers/SUUpdaterDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Headers/SUUpdaterDelegate.h -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Headers/SUVersionComparisonProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Headers/SUVersionComparisonProtocol.h -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Headers/SUVersionDisplayProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Headers/SUVersionDisplayProtocol.h -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Headers/Sparkle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Headers/Sparkle.h -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Modules/module.modulemap -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/PrivateHeaders/SUUnarchiver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/PrivateHeaders/SUUnarchiver.h -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Info.plist -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/MacOS/Autoupdate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/MacOS/Autoupdate -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/MacOS/fileop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/MacOS/fileop -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPL???? -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/AppIcon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/AppIcon.icns -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/Base.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/Base.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/SUStatus.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/SUStatus.nib -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/ar.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/ar.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/ca.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/ca.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/cs.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/cs.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/da.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/da.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/de.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/de.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/el.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/el.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/es.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/es.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/fi.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/fi.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/fr.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/fr.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/he.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/he.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/hr.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/hr.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/hu.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/hu.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/is.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/is.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/it.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/it.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/ja.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/ja.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/ko.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/ko.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/nb.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/nb.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/nl.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/nl.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/pl.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/pl.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/pt_BR.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/pt_BR.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/pt_PT.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/pt_PT.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/ro.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/ro.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/ru.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/ru.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/sk.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/sk.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/sl.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/sl.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/sv.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/sv.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/th.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/th.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/tr.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/tr.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/uk.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/uk.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/zh_CN.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/zh_CN.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/zh_TW.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/zh_TW.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/Base.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/Base.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/Base.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/Base.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/Base.lproj/SUUpdatePermissionPrompt.nib/keyedobjects-110000.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/Base.lproj/SUUpdatePermissionPrompt.nib/keyedobjects-110000.nib -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/Base.lproj/SUUpdatePermissionPrompt.nib/keyedobjects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/Base.lproj/SUUpdatePermissionPrompt.nib/keyedobjects.nib -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/Base.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/Base.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/Info.plist -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/ReleaseNotesColorStyle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/ReleaseNotesColorStyle.css -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/SUModelTranslation.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/SUModelTranslation.plist -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/SUStatus.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/SUStatus.nib -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/ar.lproj/SUAutomaticUpdateAlert.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/ar.lproj/SUAutomaticUpdateAlert.strings -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/ar.lproj/SUUpdateAlert.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/ar.lproj/SUUpdateAlert.strings -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/ar.lproj/SUUpdatePermissionPrompt.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/ar.lproj/SUUpdatePermissionPrompt.strings -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/ar.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/ar.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/ca.lproj/SUAutomaticUpdateAlert.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/ca.lproj/SUAutomaticUpdateAlert.strings -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/ca.lproj/SUUpdateAlert.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/ca.lproj/SUUpdateAlert.strings -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/ca.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/ca.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/cs.lproj/SUAutomaticUpdateAlert.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/cs.lproj/SUAutomaticUpdateAlert.strings -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/cs.lproj/SUUpdateAlert.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/cs.lproj/SUUpdateAlert.strings -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/cs.lproj/SUUpdatePermissionPrompt.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/cs.lproj/SUUpdatePermissionPrompt.strings -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/cs.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/cs.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/da.lproj/SUAutomaticUpdateAlert.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/da.lproj/SUAutomaticUpdateAlert.strings -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/da.lproj/SUUpdateAlert.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/da.lproj/SUUpdateAlert.strings -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/da.lproj/SUUpdatePermissionPrompt.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/da.lproj/SUUpdatePermissionPrompt.strings -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/da.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/da.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/de.lproj/SUAutomaticUpdateAlert.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/de.lproj/SUAutomaticUpdateAlert.strings -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/de.lproj/SUUpdateAlert.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/de.lproj/SUUpdateAlert.strings -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/de.lproj/SUUpdatePermissionPrompt.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/de.lproj/SUUpdatePermissionPrompt.strings -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/de.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/de.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/el.lproj/SUAutomaticUpdateAlert.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/el.lproj/SUAutomaticUpdateAlert.strings -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/el.lproj/SUUpdateAlert.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/el.lproj/SUUpdateAlert.strings -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/el.lproj/SUUpdatePermissionPrompt.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/el.lproj/SUUpdatePermissionPrompt.strings -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/el.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/el.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/en.lproj/SUAutomaticUpdateAlert.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/en.lproj/SUAutomaticUpdateAlert.strings -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/en.lproj/SUUpdateAlert.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/en.lproj/SUUpdateAlert.strings -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/en.lproj/SUUpdatePermissionPrompt.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/en.lproj/SUUpdatePermissionPrompt.strings -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/es.lproj/SUAutomaticUpdateAlert.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/es.lproj/SUAutomaticUpdateAlert.strings -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/es.lproj/SUUpdateAlert.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/es.lproj/SUUpdateAlert.strings -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/es.lproj/SUUpdatePermissionPrompt.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/es.lproj/SUUpdatePermissionPrompt.strings -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/es.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/es.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/fi.lproj/SUAutomaticUpdateAlert.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/fi.lproj/SUAutomaticUpdateAlert.strings -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/fi.lproj/SUUpdateAlert.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/fi.lproj/SUUpdateAlert.strings -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/fi.lproj/SUUpdatePermissionPrompt.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/fi.lproj/SUUpdatePermissionPrompt.strings -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/fi.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/fi.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/fr.lproj/SUAutomaticUpdateAlert.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/fr.lproj/SUAutomaticUpdateAlert.strings -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/fr.lproj/SUUpdateAlert.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/fr.lproj/SUUpdateAlert.strings -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/fr.lproj/SUUpdatePermissionPrompt.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/fr.lproj/SUUpdatePermissionPrompt.strings -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/fr.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/fr.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/he.lproj/SUAutomaticUpdateAlert.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/he.lproj/SUAutomaticUpdateAlert.strings -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/he.lproj/SUUpdateAlert.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/he.lproj/SUUpdateAlert.strings -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/he.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/he.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/hr.lproj/SUAutomaticUpdateAlert.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/hr.lproj/SUAutomaticUpdateAlert.strings -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/hr.lproj/SUUpdateAlert.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/hr.lproj/SUUpdateAlert.strings -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/hr.lproj/SUUpdatePermissionPrompt.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/hr.lproj/SUUpdatePermissionPrompt.strings -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/hr.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/hr.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/hu.lproj/SUAutomaticUpdateAlert.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/hu.lproj/SUAutomaticUpdateAlert.strings -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/hu.lproj/SUUpdateAlert.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/hu.lproj/SUUpdateAlert.strings -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/hu.lproj/SUUpdatePermissionPrompt.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/hu.lproj/SUUpdatePermissionPrompt.strings -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/hu.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/hu.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/is.lproj/SUAutomaticUpdateAlert.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/is.lproj/SUAutomaticUpdateAlert.strings -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/is.lproj/SUUpdateAlert.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/is.lproj/SUUpdateAlert.strings -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/is.lproj/SUUpdatePermissionPrompt.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/is.lproj/SUUpdatePermissionPrompt.strings -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/is.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/is.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/it.lproj/SUAutomaticUpdateAlert.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/it.lproj/SUAutomaticUpdateAlert.strings -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/it.lproj/SUUpdateAlert.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/it.lproj/SUUpdateAlert.strings -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/it.lproj/SUUpdatePermissionPrompt.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/it.lproj/SUUpdatePermissionPrompt.strings -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/it.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/it.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/ja.lproj/SUAutomaticUpdateAlert.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/ja.lproj/SUAutomaticUpdateAlert.strings -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/ja.lproj/SUUpdateAlert.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/ja.lproj/SUUpdateAlert.strings -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/ja.lproj/SUUpdatePermissionPrompt.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/ja.lproj/SUUpdatePermissionPrompt.strings -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/ja.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/ja.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/ko.lproj/SUAutomaticUpdateAlert.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/ko.lproj/SUAutomaticUpdateAlert.strings -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/ko.lproj/SUUpdateAlert.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/ko.lproj/SUUpdateAlert.strings -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/ko.lproj/SUUpdatePermissionPrompt.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/ko.lproj/SUUpdatePermissionPrompt.strings -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/ko.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/ko.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/nb.lproj/SUAutomaticUpdateAlert.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/nb.lproj/SUAutomaticUpdateAlert.strings -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/nb.lproj/SUUpdateAlert.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/nb.lproj/SUUpdateAlert.strings -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/nb.lproj/SUUpdatePermissionPrompt.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/nb.lproj/SUUpdatePermissionPrompt.strings -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/nb.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/nb.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/nl.lproj/SUAutomaticUpdateAlert.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/nl.lproj/SUAutomaticUpdateAlert.strings -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/nl.lproj/SUUpdateAlert.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/nl.lproj/SUUpdateAlert.strings -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/nl.lproj/SUUpdatePermissionPrompt.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/nl.lproj/SUUpdatePermissionPrompt.strings -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/nl.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/nl.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/pl.lproj/SUAutomaticUpdateAlert.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/pl.lproj/SUAutomaticUpdateAlert.strings -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/pl.lproj/SUUpdateAlert.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/pl.lproj/SUUpdateAlert.strings -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/pl.lproj/SUUpdatePermissionPrompt.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/pl.lproj/SUUpdatePermissionPrompt.strings -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/pl.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/pl.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/pt_BR.lproj/SUAutomaticUpdateAlert.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/pt_BR.lproj/SUAutomaticUpdateAlert.strings -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/pt_BR.lproj/SUUpdateAlert.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/pt_BR.lproj/SUUpdateAlert.strings -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/pt_BR.lproj/SUUpdatePermissionPrompt.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/pt_BR.lproj/SUUpdatePermissionPrompt.strings -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/pt_BR.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/pt_BR.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/pt_PT.lproj/SUAutomaticUpdateAlert.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/pt_PT.lproj/SUAutomaticUpdateAlert.strings -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/pt_PT.lproj/SUUpdatePermissionPrompt.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/pt_PT.lproj/SUUpdatePermissionPrompt.strings -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/pt_PT.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/pt_PT.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/ro.lproj/SUAutomaticUpdateAlert.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/ro.lproj/SUAutomaticUpdateAlert.strings -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/ro.lproj/SUUpdateAlert.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/ro.lproj/SUUpdateAlert.strings -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/ro.lproj/SUUpdatePermissionPrompt.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/ro.lproj/SUUpdatePermissionPrompt.strings -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/ro.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/ro.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/ru.lproj/SUAutomaticUpdateAlert.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/ru.lproj/SUAutomaticUpdateAlert.strings -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/ru.lproj/SUUpdateAlert.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/ru.lproj/SUUpdateAlert.strings -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/ru.lproj/SUUpdatePermissionPrompt.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/ru.lproj/SUUpdatePermissionPrompt.strings -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/ru.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/ru.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/sk.lproj/SUAutomaticUpdateAlert.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/sk.lproj/SUAutomaticUpdateAlert.strings -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/sk.lproj/SUUpdateAlert.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/sk.lproj/SUUpdateAlert.strings -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/sk.lproj/SUUpdatePermissionPrompt.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/sk.lproj/SUUpdatePermissionPrompt.strings -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/sk.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/sk.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/sl.lproj/SUAutomaticUpdateAlert.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/sl.lproj/SUAutomaticUpdateAlert.strings -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/sl.lproj/SUUpdateAlert.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/sl.lproj/SUUpdateAlert.strings -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/sl.lproj/SUUpdatePermissionPrompt.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/sl.lproj/SUUpdatePermissionPrompt.strings -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/sl.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/sl.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/sv.lproj/SUAutomaticUpdateAlert.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/sv.lproj/SUAutomaticUpdateAlert.strings -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/sv.lproj/SUUpdateAlert.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/sv.lproj/SUUpdateAlert.strings -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/sv.lproj/SUUpdatePermissionPrompt.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/sv.lproj/SUUpdatePermissionPrompt.strings -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/sv.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/sv.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/th.lproj/SUAutomaticUpdateAlert.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/th.lproj/SUAutomaticUpdateAlert.strings -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/th.lproj/SUUpdateAlert.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/th.lproj/SUUpdateAlert.strings -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/th.lproj/SUUpdatePermissionPrompt.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/th.lproj/SUUpdatePermissionPrompt.strings -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/th.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/th.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/tr.lproj/SUAutomaticUpdateAlert.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/tr.lproj/SUAutomaticUpdateAlert.strings -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/tr.lproj/SUUpdateAlert.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/tr.lproj/SUUpdateAlert.strings -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/tr.lproj/SUUpdatePermissionPrompt.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/tr.lproj/SUUpdatePermissionPrompt.strings -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/tr.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/tr.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/uk.lproj/SUUpdateAlert.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/uk.lproj/SUUpdateAlert.strings -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/uk.lproj/SUUpdatePermissionPrompt.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/uk.lproj/SUUpdatePermissionPrompt.strings -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/uk.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/uk.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/zh_CN.lproj/SUAutomaticUpdateAlert.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/zh_CN.lproj/SUAutomaticUpdateAlert.strings -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/zh_CN.lproj/SUUpdateAlert.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/zh_CN.lproj/SUUpdateAlert.strings -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/zh_CN.lproj/SUUpdatePermissionPrompt.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/zh_CN.lproj/SUUpdatePermissionPrompt.strings -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/zh_CN.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/zh_CN.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/zh_TW.lproj/SUAutomaticUpdateAlert.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/zh_TW.lproj/SUAutomaticUpdateAlert.strings -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/zh_TW.lproj/SUUpdateAlert.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/zh_TW.lproj/SUUpdateAlert.strings -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/zh_TW.lproj/SUUpdatePermissionPrompt.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/zh_TW.lproj/SUUpdatePermissionPrompt.strings -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Resources/zh_TW.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Resources/zh_TW.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/Sparkle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/Sparkle -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/A/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Sparkle.framework/Versions/A/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /Spotiqueue/Sparkle.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /Spotiqueue/Spotiqueue.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/Spotiqueue.entitlements -------------------------------------------------------------------------------- /Spotiqueue/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/Spotiqueue/main.m -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/TODO.md -------------------------------------------------------------------------------- /examples/paul-config.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/examples/paul-config.scm -------------------------------------------------------------------------------- /generate-keymaps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/generate-keymaps.sh -------------------------------------------------------------------------------- /guile/spotiqueue/base.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/guile/spotiqueue/base.scm -------------------------------------------------------------------------------- /guile/spotiqueue/exceptions.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/guile/spotiqueue/exceptions.scm -------------------------------------------------------------------------------- /guile/spotiqueue/key-constants.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/guile/spotiqueue/key-constants.scm -------------------------------------------------------------------------------- /guile/spotiqueue/keybindings.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/guile/spotiqueue/keybindings.scm -------------------------------------------------------------------------------- /guile/spotiqueue/records.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/guile/spotiqueue/records.scm -------------------------------------------------------------------------------- /img/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/img/screenshot.png -------------------------------------------------------------------------------- /mise.toml: -------------------------------------------------------------------------------- 1 | [tools] 2 | swiftformat = "latest" 3 | -------------------------------------------------------------------------------- /spotiqueue-icon-1024x1024.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/spotiqueue-icon-1024x1024.psd -------------------------------------------------------------------------------- /spotiqueue_worker/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/spotiqueue_worker/.gitignore -------------------------------------------------------------------------------- /spotiqueue_worker/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/spotiqueue_worker/Cargo.lock -------------------------------------------------------------------------------- /spotiqueue_worker/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/spotiqueue_worker/Cargo.toml -------------------------------------------------------------------------------- /spotiqueue_worker/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/spotiqueue_worker/build.rs -------------------------------------------------------------------------------- /spotiqueue_worker/spotiqueue_worker.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/spotiqueue_worker/spotiqueue_worker.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /spotiqueue_worker/spotiqueue_worker.xcodeproj/xcshareddata/xcschemes/spotiqueue_worker-staticlib.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/spotiqueue_worker/spotiqueue_worker.xcodeproj/xcshareddata/xcschemes/spotiqueue_worker-staticlib.xcscheme -------------------------------------------------------------------------------- /spotiqueue_worker/spotiqueue_worker_bindings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/spotiqueue_worker/spotiqueue_worker_bindings.h -------------------------------------------------------------------------------- /spotiqueue_worker/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/spotiqueue_worker/src/lib.rs -------------------------------------------------------------------------------- /updates/appcast.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/updates/appcast.xml -------------------------------------------------------------------------------- /vendor/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/vendor/.gitignore -------------------------------------------------------------------------------- /vendor/34a984164cd0c16b3b14639f9d6da15f06b2692e46b53e08c5af6fe929106f00--guile--3.0.7_2.arm64_big_sur.bottle.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/vendor/34a984164cd0c16b3b14639f9d6da15f06b2692e46b53e08c5af6fe929106f00--guile--3.0.7_2.arm64_big_sur.bottle.tar.gz -------------------------------------------------------------------------------- /vendor/3e74dcc39d8faf31f1e226060beea4bda63ec6888f7fe71d3513fd2b977df55e--gmp--6.2.1_1.arm64_big_sur.bottle.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/vendor/3e74dcc39d8faf31f1e226060beea4bda63ec6888f7fe71d3513fd2b977df55e--gmp--6.2.1_1.arm64_big_sur.bottle.tar.gz -------------------------------------------------------------------------------- /vendor/684cb343ba872ad91be4bbd4c48f3fb683f30df24d56c348dadd470fa1eee54d--libunistring--0.9.10.big_sur.bottle.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/vendor/684cb343ba872ad91be4bbd4c48f3fb683f30df24d56c348dadd470fa1eee54d--libunistring--0.9.10.big_sur.bottle.tar.gz -------------------------------------------------------------------------------- /vendor/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/vendor/Makefile -------------------------------------------------------------------------------- /vendor/a00f689ab39ab3049acd92301d96bb98bdc7b1860536e8e1eaf536be892b9780--bdw-gc--8.0.6.big_sur.bottle.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/vendor/a00f689ab39ab3049acd92301d96bb98bdc7b1860536e8e1eaf536be892b9780--bdw-gc--8.0.6.big_sur.bottle.tar.gz -------------------------------------------------------------------------------- /vendor/a297b225b0a05f699f6d9a1c41e33fc810aee6ee12c24cfef4ff14ae3cfdf73a--guile--3.0.7_2.big_sur.bottle.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/vendor/a297b225b0a05f699f6d9a1c41e33fc810aee6ee12c24cfef4ff14ae3cfdf73a--guile--3.0.7_2.big_sur.bottle.tar.gz -------------------------------------------------------------------------------- /vendor/aa890f249658cee1133694519fccd9e5d64397ca8f5932ffb3eb04b46c2d1abd--bdw-gc--8.0.6.arm64_big_sur.bottle.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/vendor/aa890f249658cee1133694519fccd9e5d64397ca8f5932ffb3eb04b46c2d1abd--bdw-gc--8.0.6.arm64_big_sur.bottle.tar.gz -------------------------------------------------------------------------------- /vendor/b35c301599402facd4fad83244926c99d9808808a7af196e9e6ec988346395fe--gmp--6.2.1_1.big_sur.bottle.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/vendor/b35c301599402facd4fad83244926c99d9808808a7af196e9e6ec988346395fe--gmp--6.2.1_1.big_sur.bottle.tar.gz -------------------------------------------------------------------------------- /vendor/b68429257038e80dad7f5e906f26422d73b1a124cafb3a4f6d4d8aad2a96419c--libunistring--0.9.10.arm64_big_sur.bottle.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/vendor/b68429257038e80dad7f5e906f26422d73b1a124cafb3a4f6d4d8aad2a96419c--libunistring--0.9.10.arm64_big_sur.bottle.tar.gz -------------------------------------------------------------------------------- /vendor/lib/libgc.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/vendor/lib/libgc.a -------------------------------------------------------------------------------- /vendor/lib/libgmp.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/vendor/lib/libgmp.a -------------------------------------------------------------------------------- /vendor/lib/libguile-3.0.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/vendor/lib/libguile-3.0.a -------------------------------------------------------------------------------- /vendor/lib/libunistring.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/vendor/lib/libunistring.a -------------------------------------------------------------------------------- /vendor/unzip.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/Spotiqueue/HEAD/vendor/unzip.sh --------------------------------------------------------------------------------