├── .all-contributorsrc ├── .editorconfig ├── .gitattributes ├── .github ├── dependabot.yml └── workflows │ ├── build.yml │ ├── dependency-review.yml │ ├── prepare.yml │ ├── release.yml │ ├── scorecards.yml │ └── security.yml ├── .gitignore ├── .pre-commit-config.yaml ├── AccountDownloader.Generators ├── AccountDownloader.Generators.csproj ├── StaticViewLocatorGenerator.cs └── packages.lock.json ├── AccountDownloader.sln ├── AccountDownloader ├── AccountDownloader.csproj ├── App.axaml ├── App.axaml.cs ├── AppViewLocator.cs ├── Assets │ ├── AnonymousHeadset.png │ ├── AppIcon.ico │ ├── Attributions.md │ ├── Error.png │ ├── Information.png │ └── Question.png ├── Boostrapper.cs ├── Converters │ ├── BytesConverter.cs │ └── ZeroConveter.cs ├── Extensions │ └── UriExtensions.cs ├── FodyWeavers.xml ├── Models │ └── ContributorInformation.cs ├── Program.cs ├── Properties │ ├── Resources.Designer.cs │ ├── Resources.cs.resx │ ├── Resources.de.resx │ ├── Resources.es.resx │ ├── Resources.fr.resx │ ├── Resources.ja.resx │ ├── Resources.ko.resx │ ├── Resources.pl.resx │ ├── Resources.resx │ └── Resources.ru.resx ├── Roots.xml ├── Services │ ├── AccountDownloadManager.cs │ ├── AppCloudService.cs │ ├── AppCloudUserProfile.cs │ ├── AssemblyInfoService.cs │ ├── CloudStorageService.cs │ ├── ContributionsService.cs │ ├── GroupsService.cs │ ├── IOService.cs │ ├── Interfaces │ │ └── IAppCloudService.cs │ └── LocaleService.cs ├── Utilities │ ├── AssetHelper.cs │ ├── DesignData.cs │ ├── GlobalInteractions.cs │ ├── GlobalUsing.cs │ ├── InteractionResult.cs │ └── SourceGenerationContext.cs ├── ViewModels │ ├── Authentication │ │ ├── LoginViewModel.cs │ │ └── MultiFactorAuthViewModel.cs │ ├── CompleteViewModel.cs │ ├── Controls │ │ ├── FailedRecordsViewModel.cs │ │ ├── GroupsListViewModel.cs │ │ ├── ProgressStatisticsViewModel.cs │ │ └── UserProfileViewModel.cs │ ├── DownloadSelectionViewModel.cs │ ├── GettingStartedViewModel.cs │ ├── ProgressViewModel.cs │ ├── Utilities │ │ └── MenuItemViewModel.cs │ ├── ViewModelBase.cs │ └── Windows │ │ ├── AboutWindowViewModel.cs │ │ └── MainWindowViewModel.cs ├── Views │ ├── Authentication │ │ ├── LoginView.axaml │ │ ├── LoginView.axaml.cs │ │ ├── MultiFactorAuthView.axaml │ │ └── MultiFactorAuthView.axaml.cs │ ├── CompleteView.axaml │ ├── CompleteView.axaml.cs │ ├── Controls │ │ ├── ContributorProfileView.axaml │ │ ├── ContributorProfileView.axaml.cs │ │ ├── FailedRecordsView.axaml │ │ ├── FailedRecordsView.axaml.cs │ │ ├── GroupsListView.axaml │ │ ├── GroupsListView.axaml.cs │ │ ├── ProgressStatisticsView.axaml │ │ ├── ProgressStatisticsView.axaml.cs │ │ ├── UserProfileView.axaml │ │ └── UserProfileView.axaml.cs │ ├── DownloadSelectionView.axaml │ ├── DownloadSelectionView.axaml.cs │ ├── GettingStartedView.axaml │ ├── GettingStartedView.axaml.cs │ ├── ProgressView.axaml │ ├── ProgressView.axaml.cs │ └── Windows │ │ ├── AboutWindowView.axaml │ │ ├── AboutWindowView.axaml.cs │ │ ├── MainWindowView.axaml │ │ └── MainWindowView.axaml.cs └── app.manifest ├── AccountDownloaderLibrary ├── AccountDownloadController.cs ├── AccountDownloaderLibrary.csproj ├── Extensions │ ├── CloudXInterfaceExtensions.cs │ └── MessageExtensions.cs ├── FodyWeavers.xml ├── Implementations │ ├── CloudAccountDataStore.cs │ ├── DataStoreInUseException.cs │ ├── DownloadResult.cs │ ├── LocalAccountDataStore.cs │ └── PaginatedRecordSearch.cs ├── Interfaces │ ├── IAccountDataStore.cs │ └── IDownloadResult.cs ├── Mime │ ├── CustomTypes.cs │ ├── MimeDetector.cs │ └── StrangeTypes.cs └── Models │ ├── AccountDownloadConfig.cs │ ├── AccountDownloadStatus.cs │ ├── AccountDownloaderSearchParameters.cs │ ├── AssetData.cs │ ├── GroupDownloadStatus.cs │ ├── RecordDownloadStatus.cs │ ├── Storage.cs │ └── VariableDownloadStatus.cs ├── AcountDownloaderLibrary.Tests ├── AcountDownloaderLibrary.Tests.csproj ├── MimeTest.cs ├── SearchParameterTests.cs └── Usings.cs ├── CODE_OF_CONDUCT.md ├── ExternalLibraries ├── Get.ps1 └── README.md ├── LICENSE.md ├── README.md ├── SECURITY.md └── docs └── AssetsVsNonAssets.png /.all-contributorsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuVAnj8Gv3RJ/NeosAccountDownloader/HEAD/.all-contributorsrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuVAnj8Gv3RJ/NeosAccountDownloader/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuVAnj8Gv3RJ/NeosAccountDownloader/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuVAnj8Gv3RJ/NeosAccountDownloader/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuVAnj8Gv3RJ/NeosAccountDownloader/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/dependency-review.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuVAnj8Gv3RJ/NeosAccountDownloader/HEAD/.github/workflows/dependency-review.yml -------------------------------------------------------------------------------- /.github/workflows/prepare.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuVAnj8Gv3RJ/NeosAccountDownloader/HEAD/.github/workflows/prepare.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuVAnj8Gv3RJ/NeosAccountDownloader/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/scorecards.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuVAnj8Gv3RJ/NeosAccountDownloader/HEAD/.github/workflows/scorecards.yml -------------------------------------------------------------------------------- /.github/workflows/security.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuVAnj8Gv3RJ/NeosAccountDownloader/HEAD/.github/workflows/security.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuVAnj8Gv3RJ/NeosAccountDownloader/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuVAnj8Gv3RJ/NeosAccountDownloader/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /AccountDownloader.Generators/AccountDownloader.Generators.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuVAnj8Gv3RJ/NeosAccountDownloader/HEAD/AccountDownloader.Generators/AccountDownloader.Generators.csproj -------------------------------------------------------------------------------- /AccountDownloader.Generators/StaticViewLocatorGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuVAnj8Gv3RJ/NeosAccountDownloader/HEAD/AccountDownloader.Generators/StaticViewLocatorGenerator.cs -------------------------------------------------------------------------------- /AccountDownloader.Generators/packages.lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuVAnj8Gv3RJ/NeosAccountDownloader/HEAD/AccountDownloader.Generators/packages.lock.json -------------------------------------------------------------------------------- /AccountDownloader.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuVAnj8Gv3RJ/NeosAccountDownloader/HEAD/AccountDownloader.sln -------------------------------------------------------------------------------- /AccountDownloader/AccountDownloader.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuVAnj8Gv3RJ/NeosAccountDownloader/HEAD/AccountDownloader/AccountDownloader.csproj -------------------------------------------------------------------------------- /AccountDownloader/App.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuVAnj8Gv3RJ/NeosAccountDownloader/HEAD/AccountDownloader/App.axaml -------------------------------------------------------------------------------- /AccountDownloader/App.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuVAnj8Gv3RJ/NeosAccountDownloader/HEAD/AccountDownloader/App.axaml.cs -------------------------------------------------------------------------------- /AccountDownloader/AppViewLocator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuVAnj8Gv3RJ/NeosAccountDownloader/HEAD/AccountDownloader/AppViewLocator.cs -------------------------------------------------------------------------------- /AccountDownloader/Assets/AnonymousHeadset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuVAnj8Gv3RJ/NeosAccountDownloader/HEAD/AccountDownloader/Assets/AnonymousHeadset.png -------------------------------------------------------------------------------- /AccountDownloader/Assets/AppIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuVAnj8Gv3RJ/NeosAccountDownloader/HEAD/AccountDownloader/Assets/AppIcon.ico -------------------------------------------------------------------------------- /AccountDownloader/Assets/Attributions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuVAnj8Gv3RJ/NeosAccountDownloader/HEAD/AccountDownloader/Assets/Attributions.md -------------------------------------------------------------------------------- /AccountDownloader/Assets/Error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuVAnj8Gv3RJ/NeosAccountDownloader/HEAD/AccountDownloader/Assets/Error.png -------------------------------------------------------------------------------- /AccountDownloader/Assets/Information.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuVAnj8Gv3RJ/NeosAccountDownloader/HEAD/AccountDownloader/Assets/Information.png -------------------------------------------------------------------------------- /AccountDownloader/Assets/Question.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuVAnj8Gv3RJ/NeosAccountDownloader/HEAD/AccountDownloader/Assets/Question.png -------------------------------------------------------------------------------- /AccountDownloader/Boostrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuVAnj8Gv3RJ/NeosAccountDownloader/HEAD/AccountDownloader/Boostrapper.cs -------------------------------------------------------------------------------- /AccountDownloader/Converters/BytesConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuVAnj8Gv3RJ/NeosAccountDownloader/HEAD/AccountDownloader/Converters/BytesConverter.cs -------------------------------------------------------------------------------- /AccountDownloader/Converters/ZeroConveter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuVAnj8Gv3RJ/NeosAccountDownloader/HEAD/AccountDownloader/Converters/ZeroConveter.cs -------------------------------------------------------------------------------- /AccountDownloader/Extensions/UriExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuVAnj8Gv3RJ/NeosAccountDownloader/HEAD/AccountDownloader/Extensions/UriExtensions.cs -------------------------------------------------------------------------------- /AccountDownloader/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuVAnj8Gv3RJ/NeosAccountDownloader/HEAD/AccountDownloader/FodyWeavers.xml -------------------------------------------------------------------------------- /AccountDownloader/Models/ContributorInformation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuVAnj8Gv3RJ/NeosAccountDownloader/HEAD/AccountDownloader/Models/ContributorInformation.cs -------------------------------------------------------------------------------- /AccountDownloader/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuVAnj8Gv3RJ/NeosAccountDownloader/HEAD/AccountDownloader/Program.cs -------------------------------------------------------------------------------- /AccountDownloader/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuVAnj8Gv3RJ/NeosAccountDownloader/HEAD/AccountDownloader/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /AccountDownloader/Properties/Resources.cs.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuVAnj8Gv3RJ/NeosAccountDownloader/HEAD/AccountDownloader/Properties/Resources.cs.resx -------------------------------------------------------------------------------- /AccountDownloader/Properties/Resources.de.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuVAnj8Gv3RJ/NeosAccountDownloader/HEAD/AccountDownloader/Properties/Resources.de.resx -------------------------------------------------------------------------------- /AccountDownloader/Properties/Resources.es.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuVAnj8Gv3RJ/NeosAccountDownloader/HEAD/AccountDownloader/Properties/Resources.es.resx -------------------------------------------------------------------------------- /AccountDownloader/Properties/Resources.fr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuVAnj8Gv3RJ/NeosAccountDownloader/HEAD/AccountDownloader/Properties/Resources.fr.resx -------------------------------------------------------------------------------- /AccountDownloader/Properties/Resources.ja.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuVAnj8Gv3RJ/NeosAccountDownloader/HEAD/AccountDownloader/Properties/Resources.ja.resx -------------------------------------------------------------------------------- /AccountDownloader/Properties/Resources.ko.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuVAnj8Gv3RJ/NeosAccountDownloader/HEAD/AccountDownloader/Properties/Resources.ko.resx -------------------------------------------------------------------------------- /AccountDownloader/Properties/Resources.pl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuVAnj8Gv3RJ/NeosAccountDownloader/HEAD/AccountDownloader/Properties/Resources.pl.resx -------------------------------------------------------------------------------- /AccountDownloader/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuVAnj8Gv3RJ/NeosAccountDownloader/HEAD/AccountDownloader/Properties/Resources.resx -------------------------------------------------------------------------------- /AccountDownloader/Properties/Resources.ru.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuVAnj8Gv3RJ/NeosAccountDownloader/HEAD/AccountDownloader/Properties/Resources.ru.resx -------------------------------------------------------------------------------- /AccountDownloader/Roots.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuVAnj8Gv3RJ/NeosAccountDownloader/HEAD/AccountDownloader/Roots.xml -------------------------------------------------------------------------------- /AccountDownloader/Services/AccountDownloadManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuVAnj8Gv3RJ/NeosAccountDownloader/HEAD/AccountDownloader/Services/AccountDownloadManager.cs -------------------------------------------------------------------------------- /AccountDownloader/Services/AppCloudService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuVAnj8Gv3RJ/NeosAccountDownloader/HEAD/AccountDownloader/Services/AppCloudService.cs -------------------------------------------------------------------------------- /AccountDownloader/Services/AppCloudUserProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuVAnj8Gv3RJ/NeosAccountDownloader/HEAD/AccountDownloader/Services/AppCloudUserProfile.cs -------------------------------------------------------------------------------- /AccountDownloader/Services/AssemblyInfoService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuVAnj8Gv3RJ/NeosAccountDownloader/HEAD/AccountDownloader/Services/AssemblyInfoService.cs -------------------------------------------------------------------------------- /AccountDownloader/Services/CloudStorageService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuVAnj8Gv3RJ/NeosAccountDownloader/HEAD/AccountDownloader/Services/CloudStorageService.cs -------------------------------------------------------------------------------- /AccountDownloader/Services/ContributionsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuVAnj8Gv3RJ/NeosAccountDownloader/HEAD/AccountDownloader/Services/ContributionsService.cs -------------------------------------------------------------------------------- /AccountDownloader/Services/GroupsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuVAnj8Gv3RJ/NeosAccountDownloader/HEAD/AccountDownloader/Services/GroupsService.cs -------------------------------------------------------------------------------- /AccountDownloader/Services/IOService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuVAnj8Gv3RJ/NeosAccountDownloader/HEAD/AccountDownloader/Services/IOService.cs -------------------------------------------------------------------------------- /AccountDownloader/Services/Interfaces/IAppCloudService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuVAnj8Gv3RJ/NeosAccountDownloader/HEAD/AccountDownloader/Services/Interfaces/IAppCloudService.cs -------------------------------------------------------------------------------- /AccountDownloader/Services/LocaleService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuVAnj8Gv3RJ/NeosAccountDownloader/HEAD/AccountDownloader/Services/LocaleService.cs -------------------------------------------------------------------------------- /AccountDownloader/Utilities/AssetHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuVAnj8Gv3RJ/NeosAccountDownloader/HEAD/AccountDownloader/Utilities/AssetHelper.cs -------------------------------------------------------------------------------- /AccountDownloader/Utilities/DesignData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuVAnj8Gv3RJ/NeosAccountDownloader/HEAD/AccountDownloader/Utilities/DesignData.cs -------------------------------------------------------------------------------- /AccountDownloader/Utilities/GlobalInteractions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuVAnj8Gv3RJ/NeosAccountDownloader/HEAD/AccountDownloader/Utilities/GlobalInteractions.cs -------------------------------------------------------------------------------- /AccountDownloader/Utilities/GlobalUsing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuVAnj8Gv3RJ/NeosAccountDownloader/HEAD/AccountDownloader/Utilities/GlobalUsing.cs -------------------------------------------------------------------------------- /AccountDownloader/Utilities/InteractionResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuVAnj8Gv3RJ/NeosAccountDownloader/HEAD/AccountDownloader/Utilities/InteractionResult.cs -------------------------------------------------------------------------------- /AccountDownloader/Utilities/SourceGenerationContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuVAnj8Gv3RJ/NeosAccountDownloader/HEAD/AccountDownloader/Utilities/SourceGenerationContext.cs -------------------------------------------------------------------------------- /AccountDownloader/ViewModels/Authentication/LoginViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuVAnj8Gv3RJ/NeosAccountDownloader/HEAD/AccountDownloader/ViewModels/Authentication/LoginViewModel.cs -------------------------------------------------------------------------------- /AccountDownloader/ViewModels/Authentication/MultiFactorAuthViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuVAnj8Gv3RJ/NeosAccountDownloader/HEAD/AccountDownloader/ViewModels/Authentication/MultiFactorAuthViewModel.cs -------------------------------------------------------------------------------- /AccountDownloader/ViewModels/CompleteViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuVAnj8Gv3RJ/NeosAccountDownloader/HEAD/AccountDownloader/ViewModels/CompleteViewModel.cs -------------------------------------------------------------------------------- /AccountDownloader/ViewModels/Controls/FailedRecordsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuVAnj8Gv3RJ/NeosAccountDownloader/HEAD/AccountDownloader/ViewModels/Controls/FailedRecordsViewModel.cs -------------------------------------------------------------------------------- /AccountDownloader/ViewModels/Controls/GroupsListViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuVAnj8Gv3RJ/NeosAccountDownloader/HEAD/AccountDownloader/ViewModels/Controls/GroupsListViewModel.cs -------------------------------------------------------------------------------- /AccountDownloader/ViewModels/Controls/ProgressStatisticsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuVAnj8Gv3RJ/NeosAccountDownloader/HEAD/AccountDownloader/ViewModels/Controls/ProgressStatisticsViewModel.cs -------------------------------------------------------------------------------- /AccountDownloader/ViewModels/Controls/UserProfileViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuVAnj8Gv3RJ/NeosAccountDownloader/HEAD/AccountDownloader/ViewModels/Controls/UserProfileViewModel.cs -------------------------------------------------------------------------------- /AccountDownloader/ViewModels/DownloadSelectionViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuVAnj8Gv3RJ/NeosAccountDownloader/HEAD/AccountDownloader/ViewModels/DownloadSelectionViewModel.cs -------------------------------------------------------------------------------- /AccountDownloader/ViewModels/GettingStartedViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuVAnj8Gv3RJ/NeosAccountDownloader/HEAD/AccountDownloader/ViewModels/GettingStartedViewModel.cs -------------------------------------------------------------------------------- /AccountDownloader/ViewModels/ProgressViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuVAnj8Gv3RJ/NeosAccountDownloader/HEAD/AccountDownloader/ViewModels/ProgressViewModel.cs -------------------------------------------------------------------------------- /AccountDownloader/ViewModels/Utilities/MenuItemViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuVAnj8Gv3RJ/NeosAccountDownloader/HEAD/AccountDownloader/ViewModels/Utilities/MenuItemViewModel.cs -------------------------------------------------------------------------------- /AccountDownloader/ViewModels/ViewModelBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuVAnj8Gv3RJ/NeosAccountDownloader/HEAD/AccountDownloader/ViewModels/ViewModelBase.cs -------------------------------------------------------------------------------- /AccountDownloader/ViewModels/Windows/AboutWindowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuVAnj8Gv3RJ/NeosAccountDownloader/HEAD/AccountDownloader/ViewModels/Windows/AboutWindowViewModel.cs -------------------------------------------------------------------------------- /AccountDownloader/ViewModels/Windows/MainWindowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuVAnj8Gv3RJ/NeosAccountDownloader/HEAD/AccountDownloader/ViewModels/Windows/MainWindowViewModel.cs -------------------------------------------------------------------------------- /AccountDownloader/Views/Authentication/LoginView.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuVAnj8Gv3RJ/NeosAccountDownloader/HEAD/AccountDownloader/Views/Authentication/LoginView.axaml -------------------------------------------------------------------------------- /AccountDownloader/Views/Authentication/LoginView.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuVAnj8Gv3RJ/NeosAccountDownloader/HEAD/AccountDownloader/Views/Authentication/LoginView.axaml.cs -------------------------------------------------------------------------------- /AccountDownloader/Views/Authentication/MultiFactorAuthView.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuVAnj8Gv3RJ/NeosAccountDownloader/HEAD/AccountDownloader/Views/Authentication/MultiFactorAuthView.axaml -------------------------------------------------------------------------------- /AccountDownloader/Views/Authentication/MultiFactorAuthView.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuVAnj8Gv3RJ/NeosAccountDownloader/HEAD/AccountDownloader/Views/Authentication/MultiFactorAuthView.axaml.cs -------------------------------------------------------------------------------- /AccountDownloader/Views/CompleteView.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuVAnj8Gv3RJ/NeosAccountDownloader/HEAD/AccountDownloader/Views/CompleteView.axaml -------------------------------------------------------------------------------- /AccountDownloader/Views/CompleteView.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuVAnj8Gv3RJ/NeosAccountDownloader/HEAD/AccountDownloader/Views/CompleteView.axaml.cs -------------------------------------------------------------------------------- /AccountDownloader/Views/Controls/ContributorProfileView.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuVAnj8Gv3RJ/NeosAccountDownloader/HEAD/AccountDownloader/Views/Controls/ContributorProfileView.axaml -------------------------------------------------------------------------------- /AccountDownloader/Views/Controls/ContributorProfileView.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuVAnj8Gv3RJ/NeosAccountDownloader/HEAD/AccountDownloader/Views/Controls/ContributorProfileView.axaml.cs -------------------------------------------------------------------------------- /AccountDownloader/Views/Controls/FailedRecordsView.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuVAnj8Gv3RJ/NeosAccountDownloader/HEAD/AccountDownloader/Views/Controls/FailedRecordsView.axaml -------------------------------------------------------------------------------- /AccountDownloader/Views/Controls/FailedRecordsView.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuVAnj8Gv3RJ/NeosAccountDownloader/HEAD/AccountDownloader/Views/Controls/FailedRecordsView.axaml.cs -------------------------------------------------------------------------------- /AccountDownloader/Views/Controls/GroupsListView.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuVAnj8Gv3RJ/NeosAccountDownloader/HEAD/AccountDownloader/Views/Controls/GroupsListView.axaml -------------------------------------------------------------------------------- /AccountDownloader/Views/Controls/GroupsListView.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuVAnj8Gv3RJ/NeosAccountDownloader/HEAD/AccountDownloader/Views/Controls/GroupsListView.axaml.cs -------------------------------------------------------------------------------- /AccountDownloader/Views/Controls/ProgressStatisticsView.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuVAnj8Gv3RJ/NeosAccountDownloader/HEAD/AccountDownloader/Views/Controls/ProgressStatisticsView.axaml -------------------------------------------------------------------------------- /AccountDownloader/Views/Controls/ProgressStatisticsView.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuVAnj8Gv3RJ/NeosAccountDownloader/HEAD/AccountDownloader/Views/Controls/ProgressStatisticsView.axaml.cs -------------------------------------------------------------------------------- /AccountDownloader/Views/Controls/UserProfileView.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuVAnj8Gv3RJ/NeosAccountDownloader/HEAD/AccountDownloader/Views/Controls/UserProfileView.axaml -------------------------------------------------------------------------------- /AccountDownloader/Views/Controls/UserProfileView.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuVAnj8Gv3RJ/NeosAccountDownloader/HEAD/AccountDownloader/Views/Controls/UserProfileView.axaml.cs -------------------------------------------------------------------------------- /AccountDownloader/Views/DownloadSelectionView.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuVAnj8Gv3RJ/NeosAccountDownloader/HEAD/AccountDownloader/Views/DownloadSelectionView.axaml -------------------------------------------------------------------------------- /AccountDownloader/Views/DownloadSelectionView.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuVAnj8Gv3RJ/NeosAccountDownloader/HEAD/AccountDownloader/Views/DownloadSelectionView.axaml.cs -------------------------------------------------------------------------------- /AccountDownloader/Views/GettingStartedView.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuVAnj8Gv3RJ/NeosAccountDownloader/HEAD/AccountDownloader/Views/GettingStartedView.axaml -------------------------------------------------------------------------------- /AccountDownloader/Views/GettingStartedView.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuVAnj8Gv3RJ/NeosAccountDownloader/HEAD/AccountDownloader/Views/GettingStartedView.axaml.cs -------------------------------------------------------------------------------- /AccountDownloader/Views/ProgressView.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuVAnj8Gv3RJ/NeosAccountDownloader/HEAD/AccountDownloader/Views/ProgressView.axaml -------------------------------------------------------------------------------- /AccountDownloader/Views/ProgressView.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuVAnj8Gv3RJ/NeosAccountDownloader/HEAD/AccountDownloader/Views/ProgressView.axaml.cs -------------------------------------------------------------------------------- /AccountDownloader/Views/Windows/AboutWindowView.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuVAnj8Gv3RJ/NeosAccountDownloader/HEAD/AccountDownloader/Views/Windows/AboutWindowView.axaml -------------------------------------------------------------------------------- /AccountDownloader/Views/Windows/AboutWindowView.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuVAnj8Gv3RJ/NeosAccountDownloader/HEAD/AccountDownloader/Views/Windows/AboutWindowView.axaml.cs -------------------------------------------------------------------------------- /AccountDownloader/Views/Windows/MainWindowView.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuVAnj8Gv3RJ/NeosAccountDownloader/HEAD/AccountDownloader/Views/Windows/MainWindowView.axaml -------------------------------------------------------------------------------- /AccountDownloader/Views/Windows/MainWindowView.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuVAnj8Gv3RJ/NeosAccountDownloader/HEAD/AccountDownloader/Views/Windows/MainWindowView.axaml.cs -------------------------------------------------------------------------------- /AccountDownloader/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuVAnj8Gv3RJ/NeosAccountDownloader/HEAD/AccountDownloader/app.manifest -------------------------------------------------------------------------------- /AccountDownloaderLibrary/AccountDownloadController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuVAnj8Gv3RJ/NeosAccountDownloader/HEAD/AccountDownloaderLibrary/AccountDownloadController.cs -------------------------------------------------------------------------------- /AccountDownloaderLibrary/AccountDownloaderLibrary.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuVAnj8Gv3RJ/NeosAccountDownloader/HEAD/AccountDownloaderLibrary/AccountDownloaderLibrary.csproj -------------------------------------------------------------------------------- /AccountDownloaderLibrary/Extensions/CloudXInterfaceExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuVAnj8Gv3RJ/NeosAccountDownloader/HEAD/AccountDownloaderLibrary/Extensions/CloudXInterfaceExtensions.cs -------------------------------------------------------------------------------- /AccountDownloaderLibrary/Extensions/MessageExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuVAnj8Gv3RJ/NeosAccountDownloader/HEAD/AccountDownloaderLibrary/Extensions/MessageExtensions.cs -------------------------------------------------------------------------------- /AccountDownloaderLibrary/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuVAnj8Gv3RJ/NeosAccountDownloader/HEAD/AccountDownloaderLibrary/FodyWeavers.xml -------------------------------------------------------------------------------- /AccountDownloaderLibrary/Implementations/CloudAccountDataStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuVAnj8Gv3RJ/NeosAccountDownloader/HEAD/AccountDownloaderLibrary/Implementations/CloudAccountDataStore.cs -------------------------------------------------------------------------------- /AccountDownloaderLibrary/Implementations/DataStoreInUseException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuVAnj8Gv3RJ/NeosAccountDownloader/HEAD/AccountDownloaderLibrary/Implementations/DataStoreInUseException.cs -------------------------------------------------------------------------------- /AccountDownloaderLibrary/Implementations/DownloadResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuVAnj8Gv3RJ/NeosAccountDownloader/HEAD/AccountDownloaderLibrary/Implementations/DownloadResult.cs -------------------------------------------------------------------------------- /AccountDownloaderLibrary/Implementations/LocalAccountDataStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuVAnj8Gv3RJ/NeosAccountDownloader/HEAD/AccountDownloaderLibrary/Implementations/LocalAccountDataStore.cs -------------------------------------------------------------------------------- /AccountDownloaderLibrary/Implementations/PaginatedRecordSearch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuVAnj8Gv3RJ/NeosAccountDownloader/HEAD/AccountDownloaderLibrary/Implementations/PaginatedRecordSearch.cs -------------------------------------------------------------------------------- /AccountDownloaderLibrary/Interfaces/IAccountDataStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuVAnj8Gv3RJ/NeosAccountDownloader/HEAD/AccountDownloaderLibrary/Interfaces/IAccountDataStore.cs -------------------------------------------------------------------------------- /AccountDownloaderLibrary/Interfaces/IDownloadResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuVAnj8Gv3RJ/NeosAccountDownloader/HEAD/AccountDownloaderLibrary/Interfaces/IDownloadResult.cs -------------------------------------------------------------------------------- /AccountDownloaderLibrary/Mime/CustomTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuVAnj8Gv3RJ/NeosAccountDownloader/HEAD/AccountDownloaderLibrary/Mime/CustomTypes.cs -------------------------------------------------------------------------------- /AccountDownloaderLibrary/Mime/MimeDetector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuVAnj8Gv3RJ/NeosAccountDownloader/HEAD/AccountDownloaderLibrary/Mime/MimeDetector.cs -------------------------------------------------------------------------------- /AccountDownloaderLibrary/Mime/StrangeTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuVAnj8Gv3RJ/NeosAccountDownloader/HEAD/AccountDownloaderLibrary/Mime/StrangeTypes.cs -------------------------------------------------------------------------------- /AccountDownloaderLibrary/Models/AccountDownloadConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuVAnj8Gv3RJ/NeosAccountDownloader/HEAD/AccountDownloaderLibrary/Models/AccountDownloadConfig.cs -------------------------------------------------------------------------------- /AccountDownloaderLibrary/Models/AccountDownloadStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuVAnj8Gv3RJ/NeosAccountDownloader/HEAD/AccountDownloaderLibrary/Models/AccountDownloadStatus.cs -------------------------------------------------------------------------------- /AccountDownloaderLibrary/Models/AccountDownloaderSearchParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuVAnj8Gv3RJ/NeosAccountDownloader/HEAD/AccountDownloaderLibrary/Models/AccountDownloaderSearchParameters.cs -------------------------------------------------------------------------------- /AccountDownloaderLibrary/Models/AssetData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuVAnj8Gv3RJ/NeosAccountDownloader/HEAD/AccountDownloaderLibrary/Models/AssetData.cs -------------------------------------------------------------------------------- /AccountDownloaderLibrary/Models/GroupDownloadStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuVAnj8Gv3RJ/NeosAccountDownloader/HEAD/AccountDownloaderLibrary/Models/GroupDownloadStatus.cs -------------------------------------------------------------------------------- /AccountDownloaderLibrary/Models/RecordDownloadStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuVAnj8Gv3RJ/NeosAccountDownloader/HEAD/AccountDownloaderLibrary/Models/RecordDownloadStatus.cs -------------------------------------------------------------------------------- /AccountDownloaderLibrary/Models/Storage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuVAnj8Gv3RJ/NeosAccountDownloader/HEAD/AccountDownloaderLibrary/Models/Storage.cs -------------------------------------------------------------------------------- /AccountDownloaderLibrary/Models/VariableDownloadStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuVAnj8Gv3RJ/NeosAccountDownloader/HEAD/AccountDownloaderLibrary/Models/VariableDownloadStatus.cs -------------------------------------------------------------------------------- /AcountDownloaderLibrary.Tests/AcountDownloaderLibrary.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuVAnj8Gv3RJ/NeosAccountDownloader/HEAD/AcountDownloaderLibrary.Tests/AcountDownloaderLibrary.Tests.csproj -------------------------------------------------------------------------------- /AcountDownloaderLibrary.Tests/MimeTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuVAnj8Gv3RJ/NeosAccountDownloader/HEAD/AcountDownloaderLibrary.Tests/MimeTest.cs -------------------------------------------------------------------------------- /AcountDownloaderLibrary.Tests/SearchParameterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuVAnj8Gv3RJ/NeosAccountDownloader/HEAD/AcountDownloaderLibrary.Tests/SearchParameterTests.cs -------------------------------------------------------------------------------- /AcountDownloaderLibrary.Tests/Usings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuVAnj8Gv3RJ/NeosAccountDownloader/HEAD/AcountDownloaderLibrary.Tests/Usings.cs -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuVAnj8Gv3RJ/NeosAccountDownloader/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /ExternalLibraries/Get.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuVAnj8Gv3RJ/NeosAccountDownloader/HEAD/ExternalLibraries/Get.ps1 -------------------------------------------------------------------------------- /ExternalLibraries/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuVAnj8Gv3RJ/NeosAccountDownloader/HEAD/ExternalLibraries/README.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuVAnj8Gv3RJ/NeosAccountDownloader/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuVAnj8Gv3RJ/NeosAccountDownloader/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuVAnj8Gv3RJ/NeosAccountDownloader/HEAD/SECURITY.md -------------------------------------------------------------------------------- /docs/AssetsVsNonAssets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuVAnj8Gv3RJ/NeosAccountDownloader/HEAD/docs/AssetsVsNonAssets.png --------------------------------------------------------------------------------