Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implement Parallel Asynchronous Queue #100

Open
wants to merge 7 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions QobuzDownloaderX.sln
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@


Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.5.33502.453
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "QobuzDownloaderX", "QobuzDownloaderX\QobuzDownloaderX.csproj", "{4CEB979A-035A-4D36-9607-D554BBECABE0}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "QobuzDownloaderX", "QobuzDownloaderX\QobuzDownloaderX.csproj", "{4CEB979A-035A-4D36-9607-D554BBECABE0}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Expand Down
37 changes: 0 additions & 37 deletions QobuzDownloaderX/Properties/AssemblyInfo.cs

This file was deleted.

343 changes: 74 additions & 269 deletions QobuzDownloaderX/QobuzDownloaderX.csproj
Original file line number Diff line number Diff line change
@@ -1,270 +1,75 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{4CEB979A-035A-4D36-9607-D554BBECABE0}</ProjectGuid>
<OutputType>WinExe</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>QobuzDownloaderX</RootNamespace>
<AssemblyName>QobuzDownloaderX</AssemblyName>
<TargetFrameworkVersion>v4.8.1</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
<TargetFrameworkProfile />
<IsWebBootstrapper>false</IsWebBootstrapper>
<NuGetPackageImportStamp>
</NuGetPackageImportStamp>
<PublishUrl>publish\</PublishUrl>
<Install>true</Install>
<InstallFrom>Disk</InstallFrom>
<UpdateEnabled>false</UpdateEnabled>
<UpdateMode>Foreground</UpdateMode>
<UpdateInterval>7</UpdateInterval>
<UpdateIntervalUnits>Days</UpdateIntervalUnits>
<UpdatePeriodically>false</UpdatePeriodically>
<UpdateRequired>false</UpdateRequired>
<MapFileExtensions>true</MapFileExtensions>
<ApplicationRevision>0</ApplicationRevision>
<ApplicationVersion>1.0.0.%2a</ApplicationVersion>
<UseApplicationTrust>false</UseApplicationTrust>
<BootstrapperEnabled>true</BootstrapperEnabled>
<PackageReadmeFile>..\README.md</PackageReadmeFile>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugSymbols>true</DebugSymbols>
<DebugType>embedded</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<GenerateSerializationAssemblies>Auto</GenerateSerializationAssemblies>
<DocumentationFile>
</DocumentationFile>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<DebugSymbols>true</DebugSymbols>
</PropertyGroup>
<PropertyGroup>
<ApplicationIcon>Resources\qbdlx_icon.ico</ApplicationIcon>
</PropertyGroup>
<PropertyGroup>
<StartupObject>QobuzDownloaderX.Program</StartupObject>
</PropertyGroup>
<PropertyGroup>
<ApplicationManifest>app.manifest</ApplicationManifest>
</PropertyGroup>
<PropertyGroup Condition=" '$(Platform)' == 'AnyCPU' ">
<ApplicationManifest>app.manifest</ApplicationManifest>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Web.Extensions" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Data" />
<Reference Include="System.Deployment" />
<Reference Include="System.Drawing" />
<Reference Include="System.Net.Http" />
<Reference Include="System.Windows.Forms" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="Models\Download\DownloadItemInfo.cs" />
<Compile Include="Models\Download\DownloadItemPaths.cs" />
<Compile Include="Models\Download\DownloadItem.cs" />
<Compile Include="Shared\DownloadLogger.cs" />
<Compile Include="Shared\DownloadManager.cs" />
<Compile Include="Shared\InvolvedPersonRoleType.cs" />
<Compile Include="Shared\Tools\InvolvedPersonRoleMapping.cs" />
<Compile Include="Shared\Tools\AudioFileTagger.cs" />
<Compile Include="Shared\TaggingOptions.cs" />
<Compile Include="Shared\GoodiesFileType.cs" />
<Compile Include="Models\UI\SearchResultRow.cs" />
<Compile Include="Shared\QobuzApiServiceManager.cs" />
<Compile Include="Shared\FontManager.cs" />
<Compile Include="Shared\Tools\FileTools.cs" />
<Compile Include="Shared\Tools\DownloadUrlParser.cs" />
<Compile Include="Shared\Tools\QualityStringMappings.cs" />
<Compile Include="Shared\Tools\ControlTools.cs" />
<Compile Include="Shared\Tools\PerformersParser.cs" />
<Compile Include="Shared\Tools\StringTools.cs" />
<Compile Include="Shared\Globals.cs" />
<Compile Include="View\FlexibleMessageBox.cs" />
<Compile Include="View\HeadlessForm.cs">
<SubType>Form</SubType>
</Compile>
<Compile Include="View\HeadlessForm.Designer.cs">
<DependentUpon>HeadlessForm.cs</DependentUpon>
</Compile>
<Compile Include="View\MainForm.cs">
<SubType>Form</SubType>
</Compile>
<Compile Include="View\MainForm.Designer.cs">
<DependentUpon>MainForm.cs</DependentUpon>
</Compile>
<Compile Include="View\AboutForm.cs">
<SubType>Form</SubType>
</Compile>
<Compile Include="View\AboutForm.Designer.cs">
<DependentUpon>AboutForm.cs</DependentUpon>
</Compile>
<Compile Include="View\LoginForm.cs">
<SubType>Form</SubType>
</Compile>
<Compile Include="View\LoginForm.Designer.cs">
<DependentUpon>LoginForm.cs</DependentUpon>
</Compile>
<Compile Include="Shared\Tools\MD5Tools.cs" />
<Compile Include="View\SearchForm.cs">
<SubType>Form</SubType>
</Compile>
<Compile Include="View\SearchForm.Designer.cs">
<DependentUpon>SearchForm.cs</DependentUpon>
</Compile>
<Compile Include="Program.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="Settings.cs" />
<Compile Include="View\SettingsForm.cs">
<SubType>Form</SubType>
</Compile>
<Compile Include="View\SettingsForm.Designer.cs">
<DependentUpon>SettingsForm.cs</DependentUpon>
</Compile>
<EmbeddedResource Include="View\MainForm.resx">
<DependentUpon>MainForm.cs</DependentUpon>
<SubType>Designer</SubType>
</EmbeddedResource>
<EmbeddedResource Include="View\AboutForm.resx">
<DependentUpon>AboutForm.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="View\LoginForm.resx">
<DependentUpon>LoginForm.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="View\SearchForm.resx">
<DependentUpon>SearchForm.cs</DependentUpon>
<SubType>Designer</SubType>
</EmbeddedResource>
<EmbeddedResource Include="Properties\Resources.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
<SubType>Designer</SubType>
</EmbeddedResource>
<Compile Include="Properties\Resources.Designer.cs">
<AutoGen>True</AutoGen>
<DependentUpon>Resources.resx</DependentUpon>
<DesignTime>True</DesignTime>
</Compile>
<EmbeddedResource Include="View\SettingsForm.resx">
<DependentUpon>SettingsForm.cs</DependentUpon>
</EmbeddedResource>
<None Include="app.manifest" />
<None Include="Properties\Settings.settings">
<Generator>SettingsSingleFileGenerator</Generator>
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
</None>
<Compile Include="Properties\Settings.Designer.cs">
<AutoGen>True</AutoGen>
<DependentUpon>Settings.settings</DependentUpon>
<DesignTimeSharedInput>True</DesignTimeSharedInput>
</Compile>
</ItemGroup>
<ItemGroup>
<None Include="App.config" />
</ItemGroup>
<ItemGroup>
<None Include="Resources\Fonts\HankenGrotesk-Italic-VariableFont_wght.ttf" />
<None Include="Resources\Fonts\HankenGrotesk-VariableFont_wght.ttf" />
<None Include="Resources\Fonts\HKGrotesk-Bold.ttf" />
<None Include="Resources\Fonts\HKGrotesk-BoldItalic.ttf" />
<None Include="Resources\Fonts\HKGrotesk-BoldLegacy.ttf" />
<None Include="Resources\Fonts\HKGrotesk-BoldLegacyItalic.ttf" />
<None Include="Resources\Fonts\HKGrotesk-Italic.ttf" />
<None Include="Resources\Fonts\HKGrotesk-LegacyItalic.ttf" />
<None Include="Resources\Fonts\HKGrotesk-Light.ttf" />
<None Include="Resources\Fonts\HKGrotesk-LightItalic.ttf" />
<None Include="Resources\Fonts\HKGrotesk-LightLegacy.ttf" />
<None Include="Resources\Fonts\HKGrotesk-LightLegacyItalic.ttf" />
<None Include="Resources\Fonts\HKGrotesk-Medium.ttf" />
<None Include="Resources\Fonts\HKGrotesk-MediumItalic.ttf" />
<None Include="Resources\Fonts\HKGrotesk-MediumLegacy.ttf" />
<None Include="Resources\Fonts\HKGrotesk-MediumLegacyItalic.ttf" />
<None Include="Resources\Fonts\HKGrotesk-Regular.ttf" />
<None Include="Resources\Fonts\HKGrotesk-RegularLegacy.ttf" />
<None Include="Resources\Fonts\HKGrotesk-SemiBold.ttf" />
<None Include="Resources\Fonts\HKGrotesk-SemiBoldItalic.ttf" />
<None Include="Resources\Fonts\HKGrotesk-SemiBoldLegacy.ttf" />
<None Include="Resources\Fonts\HKGrotesk-SemiBoldLegacyItalic.ttf" />
<None Include="Resources\qbdlx.png" />
</ItemGroup>
<ItemGroup>
<None Include="Resources\qbdlx_icon.ico" />
</ItemGroup>
<ItemGroup>
<None Include="Resources\qobuz_logo_dark.svg" />
<None Include="Resources\Untitled-1.png" />
</ItemGroup>
<ItemGroup>
<BootstrapperPackage Include=".NETFramework,Version=v4.8">
<Visible>False</Visible>
<ProductName>Microsoft .NET Framework 4.8 %28x86 and x64%29</ProductName>
<Install>true</Install>
</BootstrapperPackage>
</ItemGroup>
<ItemGroup>
<None Include="Resources\login-frame.png" />
</ItemGroup>
<ItemGroup>
<None Include="Resources\qbdlx-white.png" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Newtonsoft.Json">
<Version>13.0.3</Version>
</PackageReference>
<PackageReference Include="PlaylistsNET">
<Version>1.4.1</Version>
</PackageReference>
<PackageReference Include="PortableJsonSettingsProvider">
<Version>0.2.2</Version>
</PackageReference>
<PackageReference Include="QobuzApiSharp">
<Version>0.0.8</Version>
</PackageReference>
<PackageReference Include="TagLibSharp" Version="2.3.0" />
</ItemGroup>
<ItemGroup>
<None Include="Resources\smr-audio.png" />
</ItemGroup>
<ItemGroup>
<None Include="Resources\qobuz_logo_store.png" />
</ItemGroup>
<ItemGroup>
<None Include="..\README.md" Pack="true" PackagePath="\" />
</ItemGroup>
<ItemGroup>
<None Include="Resources\settings_icon.bmp" />
</ItemGroup>
<ItemGroup>
<Content Include="Resources\settings_icon.png" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0-windows</TargetFramework>
<OutputType>WinExe</OutputType>
<Version>1.2.7.0</Version>
<FileVersion>1.2.7.0</FileVersion>
<AssemblyVersion>1.2.7.0</AssemblyVersion>
<ApplicationVersion> 1.2.7.%0a</ApplicationVersion>
<UseWindowsForms>true</UseWindowsForms>
<ImportWindowsDesktopTargets>true</ImportWindowsDesktopTargets>
<ApplicationManifest>app.manifest</ApplicationManifest>
<ApplicationIcon>Resources\qbdlx_icon.ico</ApplicationIcon>
<StartupObject>QobuzDownloaderX.Program</StartupObject>
</PropertyGroup>

<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugType>embedded</DebugType>
<GenerateSerializationAssemblies>Auto</GenerateSerializationAssemblies>
<DocumentationFile></DocumentationFile>
</PropertyGroup>

<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
</PropertyGroup>

<ItemGroup>
<None Include="Resources\Fonts\HKGrotesk-Bold.ttf" />
<None Include="Resources\Fonts\HKGrotesk-BoldItalic.ttf" />
<None Include="Resources\Fonts\HKGrotesk-BoldLegacy.ttf" />
<None Include="Resources\Fonts\HKGrotesk-BoldLegacyItalic.ttf" />
<None Include="Resources\Fonts\HKGrotesk-Italic.ttf" />
<None Include="Resources\Fonts\HKGrotesk-LegacyItalic.ttf" />
<None Include="Resources\Fonts\HKGrotesk-Light.ttf" />
<None Include="Resources\Fonts\HKGrotesk-LightItalic.ttf" />
<None Include="Resources\Fonts\HKGrotesk-LightLegacy.ttf" />
<None Include="Resources\Fonts\HKGrotesk-LightLegacyItalic.ttf" />
<None Include="Resources\Fonts\HKGrotesk-Medium.ttf" />
<None Include="Resources\Fonts\HKGrotesk-MediumItalic.ttf" />
<None Include="Resources\Fonts\HKGrotesk-MediumLegacy.ttf" />
<None Include="Resources\Fonts\HKGrotesk-MediumLegacyItalic.ttf" />
<None Include="Resources\Fonts\HKGrotesk-Regular.ttf" />
<None Include="Resources\Fonts\HKGrotesk-RegularLegacy.ttf" />
<None Include="Resources\Fonts\HKGrotesk-SemiBold.ttf" />
<None Include="Resources\Fonts\HKGrotesk-SemiBoldItalic.ttf" />
<None Include="Resources\Fonts\HKGrotesk-SemiBoldLegacy.ttf" />
<None Include="Resources\Fonts\HKGrotesk-SemiBoldLegacyItalic.ttf" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.CSharp" Version="4.7.0" />
<PackageReference Include="PlaylistsNET">
<Version>1.4.1</Version>
</PackageReference>
<PackageReference Include="PortableJsonSettingsProvider">
<Version>0.2.2</Version>
</PackageReference>
<PackageReference Include="QobuzApiSharp" Version="0.0.8" />
<PackageReference Include="Shard.DownloadAssistant" Version="1.0.3" />
<PackageReference Include="Shard.Requests" Version="2.1.5" />
<PackageReference Include="System.Data.DataSetExtensions" Version="4.5.0" />
<PackageReference Include="TagLibSharp" Version="2.3.0" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
</ItemGroup>

<ItemGroup>
<None Include="..\README.md" Pack="true" PackagePath="\" />
</ItemGroup>

<ItemGroup>
<None Include="Resources\settings_icon.bmp" />
</ItemGroup>

<ItemGroup>
<Content Include="Resources\settings_icon.png" />
</ItemGroup>
</Project>
Loading