Skip to content

Commit

Permalink
Publish v1.1.238
Browse files Browse the repository at this point in the history
  • Loading branch information
trudyhood committed May 1, 2021
1 parent 1dc6acc commit f1b7863
Show file tree
Hide file tree
Showing 7 changed files with 129 additions and 127 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# v1.1.237
# v1.1.238
### Client
* Feature: Set allowed or disallowed Apps that can use VPN
* Update: Windows & Linux: Check TargetFramework before update
Expand Down Expand Up @@ -170,5 +170,6 @@






3 changes: 2 additions & 1 deletion Pub/PublishApp.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ Write-Host "*** Building $packageName..." -BackgroundColor Yellow -ForegroundCol
$projectFile = (Get-ChildItem -path $projectDir -file -Filter "*.csproj").FullName;
$assemblyName = ([Xml] (Get-Content $projectFile)).Project.PropertyGroup.AssemblyName;
$targetFramework = ([Xml] (Get-Content $projectFile)).Project.PropertyGroup.TargetFramework;

$packageId = ([Xml] (Get-Content $projectFile)).Project.PropertyGroup.PackageId;
$packageId = "$packageId".Trim();
$publishDir = Join-Path $projectDir "bin/release/publish";
Expand Down Expand Up @@ -53,7 +54,7 @@ if ($withLauncher)
$json = @{
Version=$versionParam;
LaunchPath=$versionParam + "/$launchFileName";
TargetFramework=$targetFramework;
TargetFramework="$targetFramework".Trim();
UpdateUrl=$updateUrl;
PackageDownloadUrl=$packageDownloadUrl;
PackageFileName="$packageName.zip";
Expand Down
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>9.0</LangVersion>
<ApplicationIcon>Resources\VpnHood.ico</ApplicationIcon>
<Version>1.1.237</Version>
<AssemblyVersion>1.1.237</AssemblyVersion>
<FileVersion>1.1.237</FileVersion>
<Version>1.1.238</Version>
<AssemblyVersion>1.1.238</AssemblyVersion>
<FileVersion>1.1.238</FileVersion>
</PropertyGroup>

<ItemGroup>
Expand Down
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="237" android:versionName="Beta" package="com.vpnhood.client.android" android:installLocation="auto">
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionCode="238" 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
236 changes: 118 additions & 118 deletions VpnHood.Client.App.Win.Setup/VpnHood.Client.App.Win.Setup.aip

Large diffs are not rendered by default.

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.237</Version>
<AssemblyVersion>1.1.237</AssemblyVersion>
<FileVersion>1.1.237</FileVersion>
<Version>1.1.238</Version>
<AssemblyVersion>1.1.238</AssemblyVersion>
<FileVersion>1.1.238</FileVersion>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
Expand Down

0 comments on commit f1b7863

Please sign in to comment.