├── .editorconfig ├── .gitattributes ├── .gitignore ├── FUNDING.yml ├── LICENSE ├── Last.fm-Scrubbler-WPF-Test ├── App.config ├── ConfigurationTest │ ├── GeneralSettingsViewModelTest.cs │ └── NewVersionViewModelTest.cs ├── ExtraFunctionsTests │ └── PasteYourTasteTest.cs ├── Last.fm-Scrubbler-WPF-Test.csproj ├── LoginTests │ ├── LoginViewModelTest.cs │ ├── UserTest.cs │ └── UserViewModelTest.cs ├── MockData │ ├── ReleaseAssetMock.cs │ └── ReleaseMock.cs ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── ScrobblingTests │ ├── CSVScrobbleTest.cs │ ├── CacheScrobblerTest.cs │ ├── DatabaseScrobblerTest.cs │ ├── FileScrobblerTest.cs │ ├── FriendScrobbleTest.cs │ ├── ManualScrobblerTest.cs │ └── UserScrobblerTest.cs └── TestHelper.cs ├── Last.fm-Scrubbler-WPF.sln ├── Last.fm-Scrubbler-WPF ├── App.config ├── App.xaml ├── App.xaml.cs ├── AppBootstrapper.cs ├── Configuration │ ├── GeneralSettingsView.xaml │ ├── GeneralSettingsView.xaml.cs │ ├── GeneralSettingsViewModel.cs │ ├── NewVersionView.xaml │ ├── NewVersionView.xaml.cs │ └── NewVersionViewModel.cs ├── Converters │ ├── DataTypeConverter.cs │ └── EnumDescriptionConverter.cs ├── DelegateCommand.cs ├── Extensions.cs ├── ExtraFunctions │ ├── CSVDownloaderView.xaml │ ├── CSVDownloaderView.xaml.cs │ ├── CSVDownloaderViewModel.cs │ ├── CSVSplitterView.xaml │ ├── CSVSplitterView.xaml.cs │ ├── CSVSplitterViewModel.cs │ ├── CollageCreatorView.xaml │ ├── CollageCreatorView.xaml.cs │ ├── CollageCreatorViewModel.cs │ ├── ExtraFunctionsView.xaml │ ├── ExtraFunctionsView.xaml.cs │ ├── ExtraFunctionsViewModel.cs │ ├── FileSplitterViewModel.cs │ ├── JSONSplitterView.xaml │ ├── JSONSplitterView.xaml.cs │ ├── JSONSplitterViewModel.cs │ ├── MilestoneCheckerView.xaml │ ├── MilestoneCheckerView.xaml.cs │ ├── MilestoneCheckerViewModel.cs │ ├── MilestoneViewModel.cs │ ├── PasteYourTasteView.xaml │ ├── PasteYourTasteView.xaml.cs │ └── PasteYourTasteViewModel.cs ├── GlobalSuppressions.cs ├── GridViewSort.cs ├── Helper │ ├── DirectoryOperator.cs │ ├── ExtendedWindowManager.cs │ ├── FileOperator.cs │ ├── FileParser │ │ ├── CSVFileParserViewModel.cs │ │ ├── ConfigureCSVParserView.xaml │ │ ├── ConfigureCSVParserView.xaml.cs │ │ ├── ConfigureCSVParserViewModel.cs │ │ ├── ConfigureJSONParserView.xaml │ │ ├── ConfigureJSONParserView.xaml.cs │ │ ├── ConfigureJSONParserViewModel.cs │ │ ├── IFileParserViewModel.cs │ │ └── JSONParserViewModel.cs │ ├── IDirectoryOperator.cs │ ├── IExtendedWindowManager.cs │ ├── IFileDialog.cs │ ├── IFileOperator.cs │ ├── IHaveSettings.cs │ ├── ILogger.cs │ ├── IMessageBoxService.cs │ ├── IOpenFileDialog.cs │ ├── Logger.cs │ ├── MessageBoxService.cs │ ├── OpenFileDialogService.cs │ └── SaveFileDialogService.cs ├── Last.fm-Scrubbler-WPF.GeneratedMSBuildEditorConfig.editorconfig ├── Last.fm-Scrubbler-WPF.csproj ├── Libs │ ├── Hqub.MusicBrainz.API.dll │ ├── Interop.WMPLib.dll │ ├── Interop.iTunesLib.dll │ ├── SetlistFmApi.dll │ └── System.Windows.Interactivity.dll ├── Login │ ├── LoginView.xaml │ ├── LoginView.xaml.cs │ ├── LoginViewModel.cs │ ├── UserView.xaml │ ├── UserView.xaml.cs │ └── UserViewModel.cs ├── MainView.xaml ├── MainView.xaml.cs ├── MainViewModel.cs ├── NativeMethods.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Resources │ ├── copy.png │ ├── minus.png │ ├── noalbumimage.png │ ├── noalbumimage_small.png │ ├── noartistimage.png │ ├── plus.png │ ├── repeat-1.png │ └── scrubbler_256.ico ├── Scrobbling │ ├── Data │ │ ├── ArtistResultView.xaml │ │ ├── ArtistResultView.xaml.cs │ │ ├── ArtistResultViewModel.cs │ │ ├── DatedScrobbleViewModel.cs │ │ ├── FetchedArtistView.xaml │ │ ├── FetchedArtistView.xaml.cs │ │ ├── FetchedArtistViewModel.cs │ │ ├── FetchedFriendTrackViewModel.cs │ │ ├── FetchedReleaseView.xaml │ │ ├── FetchedReleaseView.xaml.cs │ │ ├── FetchedReleaseViewModel.cs │ │ ├── FetchedSetlistViewModel.cs │ │ ├── FetchedTrackViewModel.cs │ │ ├── IScrobbableObjectViewModel.cs │ │ ├── LoadedFileViewModel.cs │ │ ├── MediaDBScrobbleViewModel.cs │ │ ├── ParsedCSVScrobbleViewModel.cs │ │ ├── ReleaseResultView.xaml │ │ ├── ReleaseResultView.xaml.cs │ │ ├── ReleaseResultViewModel.cs │ │ ├── ScrobbableObjectListView.cs │ │ ├── ScrobbableObjectViewModelBase.cs │ │ ├── ScrobbleViewModel.cs │ │ ├── SetlistResultView.xaml │ │ ├── SetlistResultView.xaml.cs │ │ ├── SetlistResultViewModel.cs │ │ ├── TagViewModel.cs │ │ ├── TrackResultView.xaml │ │ └── TrackResultView.xaml.cs │ ├── ScrobbleButtonControl.xaml │ ├── ScrobbleButtonControl.xaml.cs │ ├── ScrobblePreviewView.xaml │ ├── ScrobblePreviewView.xaml.cs │ ├── ScrobblePreviewViewModel.cs │ ├── Scrobbler │ │ ├── AppleMusicScrobbleView.xaml │ │ ├── AppleMusicScrobbleView.xaml.cs │ │ ├── AppleMusicScrobbleViewModel.cs │ │ ├── CacheScrobblerView.xaml │ │ ├── CacheScrobblerView.xaml.cs │ │ ├── CacheScrobblerViewModel.cs │ │ ├── DatabaseScrobbleView.xaml │ │ ├── DatabaseScrobbleView.xaml.cs │ │ ├── DatabaseScrobbleViewModel.cs │ │ ├── FileParseScrobbleView.xaml │ │ ├── FileParseScrobbleView.xaml.cs │ │ ├── FileParseScrobbleViewModel.cs │ │ ├── FileScrobbleView.xaml │ │ ├── FileScrobbleView.xaml.cs │ │ ├── FileScrobbleViewModel.cs │ │ ├── FriendScrobbleView.xaml │ │ ├── FriendScrobbleView.xaml.cs │ │ ├── FriendScrobbleViewModel.cs │ │ ├── ICanSelectScrobbles.cs │ │ ├── ITunesScrobbleView.xaml │ │ ├── ITunesScrobbleView.xaml.cs │ │ ├── ITunesScrobbleViewModel.cs │ │ ├── ManualScrobbleView.xaml │ │ ├── ManualScrobbleView.xaml.cs │ │ ├── ManualScrobbleViewModel.cs │ │ ├── MediaPlayerDatabaseScrobbleView.xaml │ │ ├── MediaPlayerDatabaseScrobbleView.xaml.cs │ │ ├── MediaPlayerDatabaseScrobbleViewModel.cs │ │ ├── MediaPlayerScrobbleControl.xaml │ │ ├── MediaPlayerScrobbleControl.xaml.cs │ │ ├── MediaPlayerScrobbleViewModelBase.cs │ │ ├── ScrobbleMultipleTimeViewModelBase.cs │ │ ├── ScrobbleMultipleViewModelBase.cs │ │ ├── ScrobbleQueueViewModel.cs │ │ ├── ScrobbleTimeViewModel.cs │ │ ├── ScrobbleViewModelBase.cs │ │ ├── SetlistFMScrobbleView.xaml │ │ ├── SetlistFMScrobbleView.xaml.cs │ │ ├── SetlistFMScrobbleViewModel.cs │ │ ├── SpotifyScrobbleView.xaml │ │ ├── SpotifyScrobbleView.xaml.cs │ │ └── SpotifyScrobbleViewModel.cs │ ├── ScrobblerView.xaml │ ├── ScrobblerView.xaml.cs │ ├── ScrobblerViewModel.cs │ ├── SelectScrobbleTimeControl.xaml │ ├── SelectScrobbleTimeControl.xaml.cs │ ├── SelectScrobblesControl.xaml │ └── SelectScrobblesControl.xaml.cs ├── SystemTrayView.xaml ├── SystemTrayView.xaml.cs ├── SystemTrayViewModel.cs ├── TabViewModel.cs ├── UpdateStatusEventArgs.cs └── ViewModelBase.cs ├── NuGet.config ├── README.md ├── ScrubblerCLI ├── Program.cs └── ScrubblerCLI.csproj └── ScrubblerLib ├── AuthScrobbler.cs ├── Data ├── AppleMusicInfo.cs ├── Artist.cs ├── DatedScrobble.cs ├── ILocalFile.cs ├── LocalFile.cs ├── MediaDBScrobble.cs ├── PlayLengthDatedScrobble.cs ├── Release.cs ├── RhythmDBParser.cs ├── ScrobbleBase.cs ├── Track.cs └── WMP.cs ├── Helper ├── DCSerializer.cs ├── FileParser │ ├── CSVFileParser.cs │ ├── CSVFileParserConfiguration.cs │ ├── CustomJSONContractResolver.cs │ ├── FileParseResult.cs │ ├── FileParserBase.cs │ ├── FileParserFactory.cs │ ├── IFileParser.cs │ ├── IFileParserConfiguration.cs │ ├── IFileParserFactory.cs │ ├── JSONFileParser.cs │ └── JSONFileParserConfiguration.cs ├── ILocalFileFactory.cs ├── IProcessManager.cs ├── ISerializer.cs ├── LocalFileFactory.cs └── ProcessManager.cs ├── IAuthScrobbler.cs ├── ILastFMApiBase.cs ├── ILastFMClient.cs ├── IScrobblerFactory.cs ├── IUserScrobbler.cs ├── LastFMClient.cs ├── Login └── User.cs ├── Properties └── AssemblyInfo.cs ├── Scrobbler ├── FileParseScrobbleFeature.cs ├── IScrobbleFeature.cs └── ManualScrobbleFeature.cs ├── ScrobblerFactory.cs ├── ScrubblerLib.csproj ├── UserScrobbler.cs ├── app.config └── packages.config /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/.gitignore -------------------------------------------------------------------------------- /FUNDING.yml: -------------------------------------------------------------------------------- 1 | ko_fi: timstadler -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/LICENSE -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF-Test/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF-Test/App.config -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF-Test/ConfigurationTest/GeneralSettingsViewModelTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF-Test/ConfigurationTest/GeneralSettingsViewModelTest.cs -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF-Test/ConfigurationTest/NewVersionViewModelTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF-Test/ConfigurationTest/NewVersionViewModelTest.cs -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF-Test/ExtraFunctionsTests/PasteYourTasteTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF-Test/ExtraFunctionsTests/PasteYourTasteTest.cs -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF-Test/Last.fm-Scrubbler-WPF-Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF-Test/Last.fm-Scrubbler-WPF-Test.csproj -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF-Test/LoginTests/LoginViewModelTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF-Test/LoginTests/LoginViewModelTest.cs -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF-Test/LoginTests/UserTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF-Test/LoginTests/UserTest.cs -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF-Test/LoginTests/UserViewModelTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF-Test/LoginTests/UserViewModelTest.cs -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF-Test/MockData/ReleaseAssetMock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF-Test/MockData/ReleaseAssetMock.cs -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF-Test/MockData/ReleaseMock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF-Test/MockData/ReleaseMock.cs -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF-Test/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF-Test/Program.cs -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF-Test/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF-Test/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF-Test/ScrobblingTests/CSVScrobbleTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF-Test/ScrobblingTests/CSVScrobbleTest.cs -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF-Test/ScrobblingTests/CacheScrobblerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF-Test/ScrobblingTests/CacheScrobblerTest.cs -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF-Test/ScrobblingTests/DatabaseScrobblerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF-Test/ScrobblingTests/DatabaseScrobblerTest.cs -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF-Test/ScrobblingTests/FileScrobblerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF-Test/ScrobblingTests/FileScrobblerTest.cs -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF-Test/ScrobblingTests/FriendScrobbleTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF-Test/ScrobblingTests/FriendScrobbleTest.cs -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF-Test/ScrobblingTests/ManualScrobblerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF-Test/ScrobblingTests/ManualScrobblerTest.cs -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF-Test/ScrobblingTests/UserScrobblerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF-Test/ScrobblingTests/UserScrobblerTest.cs -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF-Test/TestHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF-Test/TestHelper.cs -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF.sln -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/App.config -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/App.xaml -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/App.xaml.cs -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/AppBootstrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/AppBootstrapper.cs -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/Configuration/GeneralSettingsView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/Configuration/GeneralSettingsView.xaml -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/Configuration/GeneralSettingsView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/Configuration/GeneralSettingsView.xaml.cs -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/Configuration/GeneralSettingsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/Configuration/GeneralSettingsViewModel.cs -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/Configuration/NewVersionView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/Configuration/NewVersionView.xaml -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/Configuration/NewVersionView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/Configuration/NewVersionView.xaml.cs -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/Configuration/NewVersionViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/Configuration/NewVersionViewModel.cs -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/Converters/DataTypeConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/Converters/DataTypeConverter.cs -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/Converters/EnumDescriptionConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/Converters/EnumDescriptionConverter.cs -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/DelegateCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/DelegateCommand.cs -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/Extensions.cs -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/ExtraFunctions/CSVDownloaderView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/ExtraFunctions/CSVDownloaderView.xaml -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/ExtraFunctions/CSVDownloaderView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/ExtraFunctions/CSVDownloaderView.xaml.cs -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/ExtraFunctions/CSVDownloaderViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/ExtraFunctions/CSVDownloaderViewModel.cs -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/ExtraFunctions/CSVSplitterView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/ExtraFunctions/CSVSplitterView.xaml -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/ExtraFunctions/CSVSplitterView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/ExtraFunctions/CSVSplitterView.xaml.cs -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/ExtraFunctions/CSVSplitterViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/ExtraFunctions/CSVSplitterViewModel.cs -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/ExtraFunctions/CollageCreatorView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/ExtraFunctions/CollageCreatorView.xaml -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/ExtraFunctions/CollageCreatorView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/ExtraFunctions/CollageCreatorView.xaml.cs -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/ExtraFunctions/CollageCreatorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/ExtraFunctions/CollageCreatorViewModel.cs -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/ExtraFunctions/ExtraFunctionsView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/ExtraFunctions/ExtraFunctionsView.xaml -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/ExtraFunctions/ExtraFunctionsView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/ExtraFunctions/ExtraFunctionsView.xaml.cs -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/ExtraFunctions/ExtraFunctionsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/ExtraFunctions/ExtraFunctionsViewModel.cs -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/ExtraFunctions/FileSplitterViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/ExtraFunctions/FileSplitterViewModel.cs -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/ExtraFunctions/JSONSplitterView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/ExtraFunctions/JSONSplitterView.xaml -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/ExtraFunctions/JSONSplitterView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/ExtraFunctions/JSONSplitterView.xaml.cs -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/ExtraFunctions/JSONSplitterViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/ExtraFunctions/JSONSplitterViewModel.cs -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/ExtraFunctions/MilestoneCheckerView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/ExtraFunctions/MilestoneCheckerView.xaml -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/ExtraFunctions/MilestoneCheckerView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/ExtraFunctions/MilestoneCheckerView.xaml.cs -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/ExtraFunctions/MilestoneCheckerViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/ExtraFunctions/MilestoneCheckerViewModel.cs -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/ExtraFunctions/MilestoneViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/ExtraFunctions/MilestoneViewModel.cs -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/ExtraFunctions/PasteYourTasteView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/ExtraFunctions/PasteYourTasteView.xaml -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/ExtraFunctions/PasteYourTasteView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/ExtraFunctions/PasteYourTasteView.xaml.cs -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/ExtraFunctions/PasteYourTasteViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/ExtraFunctions/PasteYourTasteViewModel.cs -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/GlobalSuppressions.cs -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/GridViewSort.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/GridViewSort.cs -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/Helper/DirectoryOperator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/Helper/DirectoryOperator.cs -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/Helper/ExtendedWindowManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/Helper/ExtendedWindowManager.cs -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/Helper/FileOperator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/Helper/FileOperator.cs -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/Helper/FileParser/CSVFileParserViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/Helper/FileParser/CSVFileParserViewModel.cs -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/Helper/FileParser/ConfigureCSVParserView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/Helper/FileParser/ConfigureCSVParserView.xaml -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/Helper/FileParser/ConfigureCSVParserView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/Helper/FileParser/ConfigureCSVParserView.xaml.cs -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/Helper/FileParser/ConfigureCSVParserViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/Helper/FileParser/ConfigureCSVParserViewModel.cs -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/Helper/FileParser/ConfigureJSONParserView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/Helper/FileParser/ConfigureJSONParserView.xaml -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/Helper/FileParser/ConfigureJSONParserView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/Helper/FileParser/ConfigureJSONParserView.xaml.cs -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/Helper/FileParser/ConfigureJSONParserViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/Helper/FileParser/ConfigureJSONParserViewModel.cs -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/Helper/FileParser/IFileParserViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/Helper/FileParser/IFileParserViewModel.cs -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/Helper/FileParser/JSONParserViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/Helper/FileParser/JSONParserViewModel.cs -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/Helper/IDirectoryOperator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/Helper/IDirectoryOperator.cs -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/Helper/IExtendedWindowManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/Helper/IExtendedWindowManager.cs -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/Helper/IFileDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/Helper/IFileDialog.cs -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/Helper/IFileOperator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/Helper/IFileOperator.cs -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/Helper/IHaveSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/Helper/IHaveSettings.cs -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/Helper/ILogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/Helper/ILogger.cs -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/Helper/IMessageBoxService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/Helper/IMessageBoxService.cs -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/Helper/IOpenFileDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/Helper/IOpenFileDialog.cs -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/Helper/Logger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/Helper/Logger.cs -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/Helper/MessageBoxService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/Helper/MessageBoxService.cs -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/Helper/OpenFileDialogService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/Helper/OpenFileDialogService.cs -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/Helper/SaveFileDialogService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/Helper/SaveFileDialogService.cs -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/Last.fm-Scrubbler-WPF.GeneratedMSBuildEditorConfig.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/Last.fm-Scrubbler-WPF.GeneratedMSBuildEditorConfig.editorconfig -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/Last.fm-Scrubbler-WPF.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/Last.fm-Scrubbler-WPF.csproj -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/Libs/Hqub.MusicBrainz.API.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/Libs/Hqub.MusicBrainz.API.dll -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/Libs/Interop.WMPLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/Libs/Interop.WMPLib.dll -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/Libs/Interop.iTunesLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/Libs/Interop.iTunesLib.dll -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/Libs/SetlistFmApi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/Libs/SetlistFmApi.dll -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/Libs/System.Windows.Interactivity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/Libs/System.Windows.Interactivity.dll -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/Login/LoginView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/Login/LoginView.xaml -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/Login/LoginView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/Login/LoginView.xaml.cs -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/Login/LoginViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/Login/LoginViewModel.cs -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/Login/UserView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/Login/UserView.xaml -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/Login/UserView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/Login/UserView.xaml.cs -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/Login/UserViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/Login/UserViewModel.cs -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/MainView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/MainView.xaml -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/MainView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/MainView.xaml.cs -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/MainViewModel.cs -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/NativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/NativeMethods.cs -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/Properties/Resources.resx -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/Properties/Settings.settings -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/Resources/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/Resources/copy.png -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/Resources/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/Resources/minus.png -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/Resources/noalbumimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/Resources/noalbumimage.png -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/Resources/noalbumimage_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/Resources/noalbumimage_small.png -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/Resources/noartistimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/Resources/noartistimage.png -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/Resources/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/Resources/plus.png -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/Resources/repeat-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/Resources/repeat-1.png -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/Resources/scrubbler_256.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/Resources/scrubbler_256.ico -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/Scrobbling/Data/ArtistResultView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/Scrobbling/Data/ArtistResultView.xaml -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/Scrobbling/Data/ArtistResultView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/Scrobbling/Data/ArtistResultView.xaml.cs -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/Scrobbling/Data/ArtistResultViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/Scrobbling/Data/ArtistResultViewModel.cs -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/Scrobbling/Data/DatedScrobbleViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/Scrobbling/Data/DatedScrobbleViewModel.cs -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/Scrobbling/Data/FetchedArtistView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/Scrobbling/Data/FetchedArtistView.xaml -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/Scrobbling/Data/FetchedArtistView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/Scrobbling/Data/FetchedArtistView.xaml.cs -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/Scrobbling/Data/FetchedArtistViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/Scrobbling/Data/FetchedArtistViewModel.cs -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/Scrobbling/Data/FetchedFriendTrackViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/Scrobbling/Data/FetchedFriendTrackViewModel.cs -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/Scrobbling/Data/FetchedReleaseView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/Scrobbling/Data/FetchedReleaseView.xaml -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/Scrobbling/Data/FetchedReleaseView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/Scrobbling/Data/FetchedReleaseView.xaml.cs -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/Scrobbling/Data/FetchedReleaseViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/Scrobbling/Data/FetchedReleaseViewModel.cs -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/Scrobbling/Data/FetchedSetlistViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/Scrobbling/Data/FetchedSetlistViewModel.cs -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/Scrobbling/Data/FetchedTrackViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/Scrobbling/Data/FetchedTrackViewModel.cs -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/Scrobbling/Data/IScrobbableObjectViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/Scrobbling/Data/IScrobbableObjectViewModel.cs -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/Scrobbling/Data/LoadedFileViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/Scrobbling/Data/LoadedFileViewModel.cs -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/Scrobbling/Data/MediaDBScrobbleViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/Scrobbling/Data/MediaDBScrobbleViewModel.cs -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/Scrobbling/Data/ParsedCSVScrobbleViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/Scrobbling/Data/ParsedCSVScrobbleViewModel.cs -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/Scrobbling/Data/ReleaseResultView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/Scrobbling/Data/ReleaseResultView.xaml -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/Scrobbling/Data/ReleaseResultView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/Scrobbling/Data/ReleaseResultView.xaml.cs -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/Scrobbling/Data/ReleaseResultViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/Scrobbling/Data/ReleaseResultViewModel.cs -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/Scrobbling/Data/ScrobbableObjectListView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/Scrobbling/Data/ScrobbableObjectListView.cs -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/Scrobbling/Data/ScrobbableObjectViewModelBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/Scrobbling/Data/ScrobbableObjectViewModelBase.cs -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/Scrobbling/Data/ScrobbleViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/Scrobbling/Data/ScrobbleViewModel.cs -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/Scrobbling/Data/SetlistResultView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/Scrobbling/Data/SetlistResultView.xaml -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/Scrobbling/Data/SetlistResultView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/Scrobbling/Data/SetlistResultView.xaml.cs -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/Scrobbling/Data/SetlistResultViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/Scrobbling/Data/SetlistResultViewModel.cs -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/Scrobbling/Data/TagViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/Scrobbling/Data/TagViewModel.cs -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/Scrobbling/Data/TrackResultView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/Scrobbling/Data/TrackResultView.xaml -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/Scrobbling/Data/TrackResultView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/Scrobbling/Data/TrackResultView.xaml.cs -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/Scrobbling/ScrobbleButtonControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/Scrobbling/ScrobbleButtonControl.xaml -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/Scrobbling/ScrobbleButtonControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/Scrobbling/ScrobbleButtonControl.xaml.cs -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/Scrobbling/ScrobblePreviewView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/Scrobbling/ScrobblePreviewView.xaml -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/Scrobbling/ScrobblePreviewView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/Scrobbling/ScrobblePreviewView.xaml.cs -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/Scrobbling/ScrobblePreviewViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/Scrobbling/ScrobblePreviewViewModel.cs -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/Scrobbling/Scrobbler/AppleMusicScrobbleView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/Scrobbling/Scrobbler/AppleMusicScrobbleView.xaml -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/Scrobbling/Scrobbler/AppleMusicScrobbleView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/Scrobbling/Scrobbler/AppleMusicScrobbleView.xaml.cs -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/Scrobbling/Scrobbler/AppleMusicScrobbleViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/Scrobbling/Scrobbler/AppleMusicScrobbleViewModel.cs -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/Scrobbling/Scrobbler/CacheScrobblerView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/Scrobbling/Scrobbler/CacheScrobblerView.xaml -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/Scrobbling/Scrobbler/CacheScrobblerView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/Scrobbling/Scrobbler/CacheScrobblerView.xaml.cs -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/Scrobbling/Scrobbler/CacheScrobblerViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/Scrobbling/Scrobbler/CacheScrobblerViewModel.cs -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/Scrobbling/Scrobbler/DatabaseScrobbleView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/Scrobbling/Scrobbler/DatabaseScrobbleView.xaml -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/Scrobbling/Scrobbler/DatabaseScrobbleView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/Scrobbling/Scrobbler/DatabaseScrobbleView.xaml.cs -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/Scrobbling/Scrobbler/DatabaseScrobbleViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/Scrobbling/Scrobbler/DatabaseScrobbleViewModel.cs -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/Scrobbling/Scrobbler/FileParseScrobbleView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/Scrobbling/Scrobbler/FileParseScrobbleView.xaml -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/Scrobbling/Scrobbler/FileParseScrobbleView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/Scrobbling/Scrobbler/FileParseScrobbleView.xaml.cs -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/Scrobbling/Scrobbler/FileParseScrobbleViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/Scrobbling/Scrobbler/FileParseScrobbleViewModel.cs -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/Scrobbling/Scrobbler/FileScrobbleView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/Scrobbling/Scrobbler/FileScrobbleView.xaml -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/Scrobbling/Scrobbler/FileScrobbleView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/Scrobbling/Scrobbler/FileScrobbleView.xaml.cs -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/Scrobbling/Scrobbler/FileScrobbleViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/Scrobbling/Scrobbler/FileScrobbleViewModel.cs -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/Scrobbling/Scrobbler/FriendScrobbleView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/Scrobbling/Scrobbler/FriendScrobbleView.xaml -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/Scrobbling/Scrobbler/FriendScrobbleView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/Scrobbling/Scrobbler/FriendScrobbleView.xaml.cs -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/Scrobbling/Scrobbler/FriendScrobbleViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/Scrobbling/Scrobbler/FriendScrobbleViewModel.cs -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/Scrobbling/Scrobbler/ICanSelectScrobbles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/Scrobbling/Scrobbler/ICanSelectScrobbles.cs -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/Scrobbling/Scrobbler/ITunesScrobbleView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/Scrobbling/Scrobbler/ITunesScrobbleView.xaml -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/Scrobbling/Scrobbler/ITunesScrobbleView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/Scrobbling/Scrobbler/ITunesScrobbleView.xaml.cs -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/Scrobbling/Scrobbler/ITunesScrobbleViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/Scrobbling/Scrobbler/ITunesScrobbleViewModel.cs -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/Scrobbling/Scrobbler/ManualScrobbleView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/Scrobbling/Scrobbler/ManualScrobbleView.xaml -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/Scrobbling/Scrobbler/ManualScrobbleView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/Scrobbling/Scrobbler/ManualScrobbleView.xaml.cs -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/Scrobbling/Scrobbler/ManualScrobbleViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/Scrobbling/Scrobbler/ManualScrobbleViewModel.cs -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/Scrobbling/Scrobbler/MediaPlayerDatabaseScrobbleView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/Scrobbling/Scrobbler/MediaPlayerDatabaseScrobbleView.xaml -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/Scrobbling/Scrobbler/MediaPlayerDatabaseScrobbleView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/Scrobbling/Scrobbler/MediaPlayerDatabaseScrobbleView.xaml.cs -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/Scrobbling/Scrobbler/MediaPlayerDatabaseScrobbleViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/Scrobbling/Scrobbler/MediaPlayerDatabaseScrobbleViewModel.cs -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/Scrobbling/Scrobbler/MediaPlayerScrobbleControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/Scrobbling/Scrobbler/MediaPlayerScrobbleControl.xaml -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/Scrobbling/Scrobbler/MediaPlayerScrobbleControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/Scrobbling/Scrobbler/MediaPlayerScrobbleControl.xaml.cs -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/Scrobbling/Scrobbler/MediaPlayerScrobbleViewModelBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/Scrobbling/Scrobbler/MediaPlayerScrobbleViewModelBase.cs -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/Scrobbling/Scrobbler/ScrobbleMultipleTimeViewModelBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/Scrobbling/Scrobbler/ScrobbleMultipleTimeViewModelBase.cs -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/Scrobbling/Scrobbler/ScrobbleMultipleViewModelBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/Scrobbling/Scrobbler/ScrobbleMultipleViewModelBase.cs -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/Scrobbling/Scrobbler/ScrobbleQueueViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/Scrobbling/Scrobbler/ScrobbleQueueViewModel.cs -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/Scrobbling/Scrobbler/ScrobbleTimeViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/Scrobbling/Scrobbler/ScrobbleTimeViewModel.cs -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/Scrobbling/Scrobbler/ScrobbleViewModelBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/Scrobbling/Scrobbler/ScrobbleViewModelBase.cs -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/Scrobbling/Scrobbler/SetlistFMScrobbleView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/Scrobbling/Scrobbler/SetlistFMScrobbleView.xaml -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/Scrobbling/Scrobbler/SetlistFMScrobbleView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/Scrobbling/Scrobbler/SetlistFMScrobbleView.xaml.cs -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/Scrobbling/Scrobbler/SetlistFMScrobbleViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/Scrobbling/Scrobbler/SetlistFMScrobbleViewModel.cs -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/Scrobbling/Scrobbler/SpotifyScrobbleView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/Scrobbling/Scrobbler/SpotifyScrobbleView.xaml -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/Scrobbling/Scrobbler/SpotifyScrobbleView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/Scrobbling/Scrobbler/SpotifyScrobbleView.xaml.cs -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/Scrobbling/Scrobbler/SpotifyScrobbleViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/Scrobbling/Scrobbler/SpotifyScrobbleViewModel.cs -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/Scrobbling/ScrobblerView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/Scrobbling/ScrobblerView.xaml -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/Scrobbling/ScrobblerView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/Scrobbling/ScrobblerView.xaml.cs -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/Scrobbling/ScrobblerViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/Scrobbling/ScrobblerViewModel.cs -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/Scrobbling/SelectScrobbleTimeControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/Scrobbling/SelectScrobbleTimeControl.xaml -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/Scrobbling/SelectScrobbleTimeControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/Scrobbling/SelectScrobbleTimeControl.xaml.cs -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/Scrobbling/SelectScrobblesControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/Scrobbling/SelectScrobblesControl.xaml -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/Scrobbling/SelectScrobblesControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/Scrobbling/SelectScrobblesControl.xaml.cs -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/SystemTrayView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/SystemTrayView.xaml -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/SystemTrayView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/SystemTrayView.xaml.cs -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/SystemTrayViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/SystemTrayViewModel.cs -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/TabViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/TabViewModel.cs -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/UpdateStatusEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/UpdateStatusEventArgs.cs -------------------------------------------------------------------------------- /Last.fm-Scrubbler-WPF/ViewModelBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/Last.fm-Scrubbler-WPF/ViewModelBase.cs -------------------------------------------------------------------------------- /NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/NuGet.config -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/README.md -------------------------------------------------------------------------------- /ScrubblerCLI/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/ScrubblerCLI/Program.cs -------------------------------------------------------------------------------- /ScrubblerCLI/ScrubblerCLI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/ScrubblerCLI/ScrubblerCLI.csproj -------------------------------------------------------------------------------- /ScrubblerLib/AuthScrobbler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/ScrubblerLib/AuthScrobbler.cs -------------------------------------------------------------------------------- /ScrubblerLib/Data/AppleMusicInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/ScrubblerLib/Data/AppleMusicInfo.cs -------------------------------------------------------------------------------- /ScrubblerLib/Data/Artist.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/ScrubblerLib/Data/Artist.cs -------------------------------------------------------------------------------- /ScrubblerLib/Data/DatedScrobble.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/ScrubblerLib/Data/DatedScrobble.cs -------------------------------------------------------------------------------- /ScrubblerLib/Data/ILocalFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/ScrubblerLib/Data/ILocalFile.cs -------------------------------------------------------------------------------- /ScrubblerLib/Data/LocalFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/ScrubblerLib/Data/LocalFile.cs -------------------------------------------------------------------------------- /ScrubblerLib/Data/MediaDBScrobble.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/ScrubblerLib/Data/MediaDBScrobble.cs -------------------------------------------------------------------------------- /ScrubblerLib/Data/PlayLengthDatedScrobble.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/ScrubblerLib/Data/PlayLengthDatedScrobble.cs -------------------------------------------------------------------------------- /ScrubblerLib/Data/Release.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/ScrubblerLib/Data/Release.cs -------------------------------------------------------------------------------- /ScrubblerLib/Data/RhythmDBParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/ScrubblerLib/Data/RhythmDBParser.cs -------------------------------------------------------------------------------- /ScrubblerLib/Data/ScrobbleBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/ScrubblerLib/Data/ScrobbleBase.cs -------------------------------------------------------------------------------- /ScrubblerLib/Data/Track.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/ScrubblerLib/Data/Track.cs -------------------------------------------------------------------------------- /ScrubblerLib/Data/WMP.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/ScrubblerLib/Data/WMP.cs -------------------------------------------------------------------------------- /ScrubblerLib/Helper/DCSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/ScrubblerLib/Helper/DCSerializer.cs -------------------------------------------------------------------------------- /ScrubblerLib/Helper/FileParser/CSVFileParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/ScrubblerLib/Helper/FileParser/CSVFileParser.cs -------------------------------------------------------------------------------- /ScrubblerLib/Helper/FileParser/CSVFileParserConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/ScrubblerLib/Helper/FileParser/CSVFileParserConfiguration.cs -------------------------------------------------------------------------------- /ScrubblerLib/Helper/FileParser/CustomJSONContractResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/ScrubblerLib/Helper/FileParser/CustomJSONContractResolver.cs -------------------------------------------------------------------------------- /ScrubblerLib/Helper/FileParser/FileParseResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/ScrubblerLib/Helper/FileParser/FileParseResult.cs -------------------------------------------------------------------------------- /ScrubblerLib/Helper/FileParser/FileParserBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/ScrubblerLib/Helper/FileParser/FileParserBase.cs -------------------------------------------------------------------------------- /ScrubblerLib/Helper/FileParser/FileParserFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/ScrubblerLib/Helper/FileParser/FileParserFactory.cs -------------------------------------------------------------------------------- /ScrubblerLib/Helper/FileParser/IFileParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/ScrubblerLib/Helper/FileParser/IFileParser.cs -------------------------------------------------------------------------------- /ScrubblerLib/Helper/FileParser/IFileParserConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/ScrubblerLib/Helper/FileParser/IFileParserConfiguration.cs -------------------------------------------------------------------------------- /ScrubblerLib/Helper/FileParser/IFileParserFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/ScrubblerLib/Helper/FileParser/IFileParserFactory.cs -------------------------------------------------------------------------------- /ScrubblerLib/Helper/FileParser/JSONFileParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/ScrubblerLib/Helper/FileParser/JSONFileParser.cs -------------------------------------------------------------------------------- /ScrubblerLib/Helper/FileParser/JSONFileParserConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/ScrubblerLib/Helper/FileParser/JSONFileParserConfiguration.cs -------------------------------------------------------------------------------- /ScrubblerLib/Helper/ILocalFileFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/ScrubblerLib/Helper/ILocalFileFactory.cs -------------------------------------------------------------------------------- /ScrubblerLib/Helper/IProcessManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/ScrubblerLib/Helper/IProcessManager.cs -------------------------------------------------------------------------------- /ScrubblerLib/Helper/ISerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/ScrubblerLib/Helper/ISerializer.cs -------------------------------------------------------------------------------- /ScrubblerLib/Helper/LocalFileFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/ScrubblerLib/Helper/LocalFileFactory.cs -------------------------------------------------------------------------------- /ScrubblerLib/Helper/ProcessManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/ScrubblerLib/Helper/ProcessManager.cs -------------------------------------------------------------------------------- /ScrubblerLib/IAuthScrobbler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/ScrubblerLib/IAuthScrobbler.cs -------------------------------------------------------------------------------- /ScrubblerLib/ILastFMApiBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/ScrubblerLib/ILastFMApiBase.cs -------------------------------------------------------------------------------- /ScrubblerLib/ILastFMClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/ScrubblerLib/ILastFMClient.cs -------------------------------------------------------------------------------- /ScrubblerLib/IScrobblerFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/ScrubblerLib/IScrobblerFactory.cs -------------------------------------------------------------------------------- /ScrubblerLib/IUserScrobbler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/ScrubblerLib/IUserScrobbler.cs -------------------------------------------------------------------------------- /ScrubblerLib/LastFMClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/ScrubblerLib/LastFMClient.cs -------------------------------------------------------------------------------- /ScrubblerLib/Login/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/ScrubblerLib/Login/User.cs -------------------------------------------------------------------------------- /ScrubblerLib/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/ScrubblerLib/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ScrubblerLib/Scrobbler/FileParseScrobbleFeature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/ScrubblerLib/Scrobbler/FileParseScrobbleFeature.cs -------------------------------------------------------------------------------- /ScrubblerLib/Scrobbler/IScrobbleFeature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/ScrubblerLib/Scrobbler/IScrobbleFeature.cs -------------------------------------------------------------------------------- /ScrubblerLib/Scrobbler/ManualScrobbleFeature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/ScrubblerLib/Scrobbler/ManualScrobbleFeature.cs -------------------------------------------------------------------------------- /ScrubblerLib/ScrobblerFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/ScrubblerLib/ScrobblerFactory.cs -------------------------------------------------------------------------------- /ScrubblerLib/ScrubblerLib.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/ScrubblerLib/ScrubblerLib.csproj -------------------------------------------------------------------------------- /ScrubblerLib/UserScrobbler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/ScrubblerLib/UserScrobbler.cs -------------------------------------------------------------------------------- /ScrubblerLib/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/ScrubblerLib/app.config -------------------------------------------------------------------------------- /ScrubblerLib/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHOEGAZEssb/Last.fm-Scrubbler-WPF/HEAD/ScrubblerLib/packages.config --------------------------------------------------------------------------------