Skip to content

Commit

Permalink
v3.12.0
Browse files Browse the repository at this point in the history
  • Loading branch information
stenya committed Aug 18, 2023
1 parent dfe670b commit 136b147
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 13 deletions.
2 changes: 1 addition & 1 deletion daemon/.vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"env": {},
"args": ["-debug_install_dir=${workspaceRoot}", "-logging"],
//"buildFlags": "-tags debug",
"buildFlags": "-buildvcs=false -tags debug -ldflags '-X github.com/ivpn/desktop-app/daemon/version._version=3.11.18'"
"buildFlags": "-buildvcs=false -tags debug -ldflags '-X github.com/ivpn/desktop-app/daemon/version._version=3.12.0'"
//"buildFlags": ""
//"buildFlags": "-tags nowifi"
}
Expand Down
10 changes: 9 additions & 1 deletion daemon/References/Linux/scripts/build-all.sh
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,15 @@ then
echo "========== Compiling v2ray ==========================="
echo "======================================================"
cd $SCRIPT_DIR
./build-v2ray.sh

if [ ! -z "$GITHUB_ACTIONS" ];
then
echo "! GITHUB_ACTIONS detected ! It is just a build test."
echo "! Skipped compilation of V2Ray !"
else
./build-v2ray.sh
fi

else
echo "v2ray already compiled. Skipping build."
fi
Expand Down
2 changes: 1 addition & 1 deletion snap/snapcraft.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
name: ivpn # you probably want to 'snapcraft register <name>'
base: core20 # the base snap is the execution environment for this snap
# TODO: Set 'version:' to the same value as in 'ui/package.json'. This value will be used to stamp version for CLI and daemon
version: "3.11.18"
version: "3.12.0"

title: IVPN
summary: IVPN - Secure VPN for Privacy # 79 char long summary
Expand Down
16 changes: 8 additions & 8 deletions ui/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion ui/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ivpn-ui",
"version": "3.11.18",
"version": "3.12.0",
"productName": "IVPN",
"description": "IVPN Client",
"author": "IVPN Limited",
Expand Down
2 changes: 1 addition & 1 deletion ui/src/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ function GetResourcesPath() {
}

export default {
MinRequiredDaemonVer: "3.11.18",
MinRequiredDaemonVer: "3.12.0",

MinimizedUIWidth: 320,
MaximizedUIWidth: 800,
Expand Down

0 comments on commit 136b147

Please sign in to comment.