Skip to content

Commit

Permalink
Publish v1.1.176
Browse files Browse the repository at this point in the history
  • Loading branch information
trudyhood committed Dec 31, 2020
1 parent 8dd9261 commit 8b692cd
Show file tree
Hide file tree
Showing 5 changed files with 101 additions and 104 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
# v1.1.175
# v1.1.176
### Developer
* Feature: Client can detect its expired session
* Change: Update TcpDatagramHeader from binary to TcpDatagramChannelRequest json
* Change: Move IDevice and IPacketCapture to VpnHood.Client.Device module
* Developer: Add Simple Sample for Windows Client usage
* Developer: Fix PublishApps.ps1 scripts to create publish folder when it does not exist

### Client
* Change: Alwasy Open the main window at start if App is already running
Expand Down Expand Up @@ -36,3 +37,4 @@




6 changes: 6 additions & 0 deletions Pub/PublishApp.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,11 @@ param(
[Switch]$withLauncher=$false,
[Switch]$withVbsLauncher=$false)

# Info
Write-Host;
Write-Host "*** Building $packageName..." -BackgroundColor Yellow -ForegroundColor Black;

# Common
. "$PSScriptRoot\Common.ps1"

# paths
Expand All @@ -20,6 +25,7 @@ $publishPackDir = Join-Path $projectDir "bin\release\publish-pack";
if ($withVbsLauncher) {$withLauncher=$true}

#clean publish directory
New-Item -ItemType Directory -Force -Path $publishDir;
Remove-Item "$publishDir\*" -ErrorAction Ignore -Recurse;

# Prepate AppHotUpdate
Expand Down
Binary file modified Pub/Version.json
Binary file not shown.
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="138" android:versionName="Beta" package="com.vpnhood.client.android" android:installLocation="auto">
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionCode="176" 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
Loading

0 comments on commit 8b692cd

Please sign in to comment.