From aedce5c63bfb44044bf61c0ea96961789bab42d9 Mon Sep 17 00:00:00 2001 From: Jared Goodwin Date: Wed, 22 May 2019 07:30:02 -0700 Subject: [PATCH] Revert zipped desktop app changes. --- .../Remotely_Desktop.Win.csproj | 27 ------------------- Remotely_Server/Pages/Clients.cshtml | 8 ++++-- Utilities/Publish.ps1 | 4 +-- 3 files changed, 8 insertions(+), 31 deletions(-) diff --git a/Remotely_Desktop.Win/Remotely_Desktop.Win.csproj b/Remotely_Desktop.Win/Remotely_Desktop.Win.csproj index be92872e..c864b330 100644 --- a/Remotely_Desktop.Win/Remotely_Desktop.Win.csproj +++ b/Remotely_Desktop.Win/Remotely_Desktop.Win.csproj @@ -18,21 +18,6 @@ true - publish\ - true - Disk - false - Foreground - 7 - Days - false - false - true - 0 - 1.0.0.%2a - false - false - true AnyCPU @@ -162,18 +147,6 @@ Remotely_Shared - - - False - Microsoft .NET Framework 4.7.2 %28x86 and x64%29 - true - - - False - .NET Framework 3.5 SP1 - false - - diff --git a/Remotely_Server/Pages/Clients.cshtml b/Remotely_Server/Pages/Clients.cshtml index 88186e76..0d238fcd 100644 --- a/Remotely_Server/Pages/Clients.cshtml +++ b/Remotely_Server/Pages/Clients.cshtml @@ -38,13 +38,17 @@
Windows (32/64-Bit)

- Download + Download: +
+ Windows Portable EXE

Linux 64-Bit

- Download + Download: +
+ Linux Zipped

diff --git a/Utilities/Publish.ps1 b/Utilities/Publish.ps1 index d27feb34..0273e45d 100644 --- a/Utilities/Publish.ps1 +++ b/Utilities/Publish.ps1 @@ -112,10 +112,10 @@ Move-Item -Path "$PublishDir\Remotely-Linux.zip" -Destination "$Root\Remotely_Se # Copy desktop app to Downloads folder. if ((Test-Path -Path ".\Remotely_Desktop.Win\bin\Release\Remotely_Desktop.exe") -eq $true) { - Compress-Archive -Path ".\Remotely_Desktop.Win\bin\Release\Remotely_Desktop.exe" -DestinationPath ".\Remotely_Server\wwwroot\Downloads\Remotely_Desktop.zip" -Force + Copy-Item -Path ".\Remotely_Desktop.Win\bin\Release\Remotely_Desktop.exe" -Destination ".\Remotely_Server\wwwroot\Downloads\Remotely_Desktop.exe" -Force } elseif ((Test-Path -Path ".\Remotely_Desktop.Win\bin\Debug\Remotely_Desktop.exe") -eq $true) { - Compress-Archive -Path ".\Remotely_Desktop.Win\bin\Debug\Remotely_Desktop.exe" -Destination ".\Remotely_Server\wwwroot\Downloads\Remotely_Desktop.zip" -Force + Copy-Item -Path ".\Remotely_Desktop.Win\bin\Debug\Remotely_Desktop.exe" -Destination ".\Remotely_Server\wwwroot\Downloads\Remotely_Desktop.exe" -Force } if ($RID.Length -gt 0 -and $OutDir.Length -gt 0) {