Skip to content

Commit

Permalink
Switched Downloader from sourcecode to the nuget package.
Browse files Browse the repository at this point in the history
  • Loading branch information
rogerfar committed Jan 25, 2021
1 parent 2652895 commit 8bd26b7
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 17 deletions.
1 change: 0 additions & 1 deletion client/src/app/navbar/settings/settings.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@
<select [(ngModel)]="settingDownloadClient">
<option value="Simple">Simple Downloader</option>
<option value="MultiPart">Multi Part Downloader</option>
<!--<option value="Aria2c">Aria2c Downloader</option>-->
</select>
</div>
<p class="help">
Expand Down
11 changes: 2 additions & 9 deletions docker-publish.bat
Original file line number Diff line number Diff line change
@@ -1,9 +1,2 @@
docker build --tag rogerfar/rdtclient:amd64 --build-arg ARCH=amd64 .
docker push rogerfar/rdtclient:amd64

docker build -t rogerfar/rdtclient:arm64v8 --build-arg ARCH=arm64v8 .
docker push rogerfar/rdtclient:arm64v8

docker manifest create rogerfar/rdtclient:latest --amend rogerfar/rdtclient:amd64 --amend rogerfar/rdtclient:arm64v8

docker manifest push rogerfar/rdtclient:latest
docker build --tag rogerfar/rdtclient:latest --build-arg ARCH=amd64 .
docker push rogerfar/rdtclient:latest
2 changes: 1 addition & 1 deletion server/RdtClient.Service/RdtClient.Service.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Downloader" Version="2.0.7" />
<PackageReference Include="MonoTorrent" Version="1.0.28" />
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
<PackageReference Include="RD.NET" Version="1.0.0" />
Expand All @@ -16,7 +17,6 @@
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\Downloader\Downloader.csproj" />
<ProjectReference Include="..\RdtClient.Data\RdtClient.Data.csproj" />
</ItemGroup>

Expand Down
6 changes: 0 additions & 6 deletions server/RdtClient.sln
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,6 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "RdtClient.Service", "RdtCli
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "RdtClient.Data", "RdtClient.Data\RdtClient.Data.csproj", "{92EF8817-AD73-4301-93BD-745D7D61DD74}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Downloader", "Downloader\Downloader.csproj", "{48FF995D-AD14-4E41-BC69-7A144C84E3B6}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Expand All @@ -29,10 +27,6 @@ Global
{92EF8817-AD73-4301-93BD-745D7D61DD74}.Debug|Any CPU.Build.0 = Debug|Any CPU
{92EF8817-AD73-4301-93BD-745D7D61DD74}.Release|Any CPU.ActiveCfg = Release|Any CPU
{92EF8817-AD73-4301-93BD-745D7D61DD74}.Release|Any CPU.Build.0 = Release|Any CPU
{48FF995D-AD14-4E41-BC69-7A144C84E3B6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{48FF995D-AD14-4E41-BC69-7A144C84E3B6}.Debug|Any CPU.Build.0 = Debug|Any CPU
{48FF995D-AD14-4E41-BC69-7A144C84E3B6}.Release|Any CPU.ActiveCfg = Release|Any CPU
{48FF995D-AD14-4E41-BC69-7A144C84E3B6}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand Down

0 comments on commit 8bd26b7

Please sign in to comment.