Skip to content

Commit

Permalink
Publish v1.1.212
Browse files Browse the repository at this point in the history
  • Loading branch information
trudyhood committed Feb 18, 2021
1 parent 1e7ab7b commit a6f8d65
Show file tree
Hide file tree
Showing 12 changed files with 157 additions and 151 deletions.
9 changes: 6 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
#Upcoming
# v1.1.212
* New: Updater has completely changed

### Server
* New: Add stop command to stop all server instance
* New: Add win2linux that push VpnHoodServer to remove linux via SSH
* Update: Add /nowait command to allow autoupdate
* New: linux: Add installation script
* New: linux: Run server as service

# v1.1.202
### Client
Expand Down Expand Up @@ -117,3 +119,4 @@




2 changes: 1 addition & 1 deletion Pub/PublishToGitHub.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ $linuxScript | Out-File -FilePath "$packagesServerDir/install-linux.sh" -Encodi

# update CHANGELOG
$text = Get-Content "$solutionDir/CHANGELOG.md" -Raw;
if ( $text.IndexOf("# Upcoming") -eq -1) { throw "Could not find #Upcoming phrase in CHANGELOG" };
if ( $text.IndexOf("# Upcoming") -eq -1) { throw "Could not find # Upcoming phrase in CHANGELOG" };
$changeLog = $text -replace "# Upcoming", "# v$versionParam";
$changeLog | Out-File -FilePath "$solutionDir/CHANGELOG.md" -Encoding utf8 -Force;

Expand Down
Binary file modified Pub/Version.json
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -110,10 +110,10 @@
</ItemGroup>
<ItemGroup>
<PackageReference Include="VpnHood.Client">
<Version>1.1.186</Version>
<Version>1.1.202</Version>
</PackageReference>
<PackageReference Include="VpnHood.Client.Device.Android">
<Version>1.1.186</Version>
<Version>1.1.202</Version>
</PackageReference>
<PackageReference Include="Xamarin.Essentials" Version="1.6.1" />
</ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="VpnHood.Client" Version="1.1.186" />
<PackageReference Include="VpnHood.Client.Device.WinDivert" Version="1.1.186" />
<PackageReference Include="VpnHood.Client" Version="1.1.202" />
<PackageReference Include="VpnHood.Client.Device.WinDivert" Version="1.1.202" />
</ItemGroup>

</Project>
2 changes: 1 addition & 1 deletion VpnHood.Client.App.Android/Properties/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionCode="202" android:versionName="Beta" package="com.vpnhood.client.android" android:installLocation="auto">
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionCode="211" android:versionName="Beta" package="com.vpnhood.client.android" android:installLocation="auto">
<uses-sdk android:minSdkVersion="22" android:targetSdkVersion="30" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
Expand Down
263 changes: 133 additions & 130 deletions VpnHood.Client.App.Win.Setup/VpnHood.Client.App.Win.Setup.aip

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
<Version>5.0.0</Version>
</PackageReference>
<PackageReference Include="PacketDotNet">
<Version>1.1.2</Version>
<Version>1.2.0</Version>
</PackageReference>
</ItemGroup>
<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion VpnHood.Client.Device/VpnHood.Client.Device.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="PacketDotNet" Version="1.1.2" />
<PackageReference Include="PacketDotNet" Version="1.2.0" />
</ItemGroup>

</Project>
16 changes: 8 additions & 8 deletions VpnHood.Server.App.Net/_publish.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@ param([switch]$ftp)

$packageName = "VpnHoodServer";

#. "$PSScriptRoot/../Pub/PublishApp.ps1" `
# $PSScriptRoot `
# -withLauncher `
# -ftp:$ftp `
# -packagesDir $packagesServerDir `
# -packageName $packageName `
# -updateUrl "https://github.com/vpnhood/VpnHood/releases/latest/download/$packageName.json" `
# -packageDownloadUrl "https://github.com/vpnhood/VpnHood/releases/latest/download/$packageName.zip"
. "$PSScriptRoot/../Pub/PublishApp.ps1" `
$PSScriptRoot `
-withLauncher `
-ftp:$ftp `
-packagesDir $packagesServerDir `
-packageName $packageName `
-updateUrl "https://github.com/vpnhood/VpnHood/releases/latest/download/$packageName.json" `
-packageDownloadUrl "https://github.com/vpnhood/VpnHood/releases/latest/download/$packageName.zip"
2 changes: 1 addition & 1 deletion VpnHood.Server/VpnHood.Server.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="5.0.0" />
<PackageReference Include="PacketDotNet" Version="1.1.2" />
<PackageReference Include="PacketDotNet" Version="1.2.0" />
<PackageReference Include="System.Text.Json" Version="5.0.1" />
</ItemGroup>

Expand Down
2 changes: 1 addition & 1 deletion VpnHood.Tunneling/VpnHood.Tunneling.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<PackageReference Include="Microsoft.Extensions.Logging" Version="5.0.0" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="5.0.0" />
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="5.0.0" />
<PackageReference Include="PacketDotNet" Version="1.1.2" />
<PackageReference Include="PacketDotNet" Version="1.2.0" />
<PackageReference Include="System.Text.Json" Version="5.0.1" />
</ItemGroup>

Expand Down

0 comments on commit a6f8d65

Please sign in to comment.