Skip to content

Commit

Permalink
Publish v1.1.236
Browse files Browse the repository at this point in the history
  • Loading branch information
trudyhood committed Apr 7, 2021
1 parent a0ec977 commit 6c605f2
Show file tree
Hide file tree
Showing 19 changed files with 2,592 additions and 5,885 deletions.
6 changes: 4 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
# upcoming
# v1.1.236
### Client
* Fix: Android: Crash when sending feedback on Android 11
* Fix: Connection already in progress error when changing server
* Update: Show traffic speed

### Server
* Update: Auto restart if VpnHoodServer stops unexpectedly
* Fix: Type error in default.pfx filename for FileAccessServer
* Fix: Typo error in default.pfx filename for FileAccessServer
* Fix: linux: Stop working after server update

# v1.1.235
Expand Down Expand Up @@ -161,5 +162,6 @@






Binary file modified Pub/Version.json
Binary file not shown.
6 changes: 3 additions & 3 deletions VpnHood.App.Launcher/VpnHood.App.Launcher.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@
<Product>VpnHood.App.Launcher</Product>
<LangVersion>default</LangVersion>
<ApplicationIcon>Resources\VpnHood.ico</ApplicationIcon>
<Version>1.1.235</Version>
<AssemblyVersion>1.1.235</AssemblyVersion>
<FileVersion>1.1.235</FileVersion>
<Version>1.1.236</Version>
<AssemblyVersion>1.1.236</AssemblyVersion>
<FileVersion>1.1.236</FileVersion>
</PropertyGroup>

<ItemGroup>
Expand Down
Binary file modified VpnHood.Client.App.Android/Assets/SPA.zip
Binary file not shown.
6 changes: 3 additions & 3 deletions 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="235" android:versionName="Beta" package="com.vpnhood.client.android" android:installLocation="auto">
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionCode="236" 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 All @@ -8,11 +8,11 @@
<queries>
<intent>
<action android:name="android.intent.action.VIEW" />
<data android:scheme="http"/>
<data android:scheme="http" />
</intent>
<intent>
<action android:name="android.intent.action.VIEW" />
<data android:scheme="https"/>
<data android:scheme="https" />
</intent>
</queries>
</manifest>
8,177 changes: 2,435 additions & 5,742 deletions VpnHood.Client.App.UI.Html/package-lock.json

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions VpnHood.Client.App.UI.Html/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vpnhood-spa",
"version": "1.0.89",
"version": "1.0.92",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
Expand All @@ -16,7 +16,7 @@
"js-base64": "^3.6.0",
"latest": "^0.2.0",
"material-design-icons-iconfont": "^6.1.0",
"npm": "^6.14.9",
"npm": "^7.8.0",
"sass-loader": "^10.1.0",
"vue": "^2.6.11",
"vue-i18n": "^8.22.2",
Expand All @@ -39,4 +39,4 @@
"last 2 versions",
"not dead"
]
}
}
12 changes: 12 additions & 0 deletions VpnHood.Client.App.UI.Html/src/assets/styles/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -219,6 +219,18 @@ h1, h2, h3 {
border-radius: 10px;
}

#speedSection
{
opacity: 0;
transition: opacity 1.4s ease;
}

.state-connected #speedSection
{
opacity: 1;

}

.speedLabel {
color: var(--sky-blue);
margin-right: 5px;
Expand Down
4 changes: 2 additions & 2 deletions VpnHood.Client.App.UI.Html/src/pages/Home.vue
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
id="sectionWrapper"
fill-height
fluid
class="px-4 pt-4 px-sm-8 pt-sm-5"
:class="`px-4 pt-4 px-sm-8 pt-sm-5 state-${connectionState.toLowerCase()}`"
>
<v-row class="align-self-start">
<!-- top bar -->
Expand All @@ -30,7 +30,7 @@
</v-row>

<!-- Speed -->
<v-row class="py-0 mt-5" :style="connectionState == 'Connected' ? 'visibility:visible' : 'visibility:hidden'">
<v-row id="speedSection" class="py-0 mt-5">
<v-col cols="6" class="py-0 my-0 text-right">
<span class="speedLabel">{{$t('downloadSpeed')}}:</span>
<span class="speedValue">{{this.formatSpeed(this.store.state.receiveSpeed)}}</span>
Expand Down
236 changes: 118 additions & 118 deletions VpnHood.Client.App.Win.Setup/VpnHood.Client.App.Win.Setup.aip

Large diffs are not rendered by default.

Binary file modified VpnHood.Client.App.Win/Resources/SPA.zip
Binary file not shown.
6 changes: 3 additions & 3 deletions VpnHood.Client.App.Win/VpnHood.Client.App.Win.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@
<ApplicationManifest>app.manifest</ApplicationManifest>
<PackageId>VpnHood.Client.App.Win</PackageId>
<StartupObject></StartupObject>
<Version>1.1.235</Version>
<AssemblyVersion>1.1.235</AssemblyVersion>
<FileVersion>1.1.235</FileVersion>
<Version>1.1.236</Version>
<AssemblyVersion>1.1.236</AssemblyVersion>
<FileVersion>1.1.236</FileVersion>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
Expand Down
2 changes: 1 addition & 1 deletion VpnHood.Client/VpnHood.Client.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

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

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion VpnHood.Common/VpnHood.Common.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="5.0.0" />
<PackageReference Include="System.Text.Json" Version="5.0.1" />
<PackageReference Include="System.Text.Json" Version="5.0.2" />
</ItemGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion VpnHood.Server.Access/VpnHood.Server.Access.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="System.Text.Json" Version="5.0.1" />
<PackageReference Include="System.Text.Json" Version="5.0.2" />
</ItemGroup>

<ItemGroup>
Expand Down
6 changes: 3 additions & 3 deletions VpnHood.Server.App.Net/VpnHood.Server.App.Net.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@
<PackageLicenseExpression>LGPL-2.1-only</PackageLicenseExpression>
<PackageIcon>VpnHood.png</PackageIcon>
<LangVersion>default</LangVersion>
<Version>1.1.235</Version>
<AssemblyVersion>1.1.235</AssemblyVersion>
<FileVersion>1.1.235</FileVersion>
<Version>1.1.236</Version>
<AssemblyVersion>1.1.236</AssemblyVersion>
<FileVersion>1.1.236</FileVersion>
</PropertyGroup>

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

<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 @@ -26,7 +26,7 @@
<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.2.0" />
<PackageReference Include="System.Text.Json" Version="5.0.1" />
<PackageReference Include="System.Text.Json" Version="5.0.2" />
</ItemGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion VpnHood.ZTest/VpnHood.ZTest.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<ItemGroup>
<PackageReference Include="EmbedIO" Version="3.4.3" />
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="5.0.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.9.1" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.9.4" />
<PackageReference Include="MSTest.TestAdapter" Version="2.2.3" />
<PackageReference Include="MSTest.TestFramework" Version="2.2.3" />
<PackageReference Include="coverlet.collector" Version="3.0.3">
Expand Down

0 comments on commit 6c605f2

Please sign in to comment.