Skip to content

Commit

Permalink
Version 1.0.23
Browse files Browse the repository at this point in the history
  • Loading branch information
Zensey committed Nov 29, 2021
1 parent 3535a87 commit 2dbd0d2
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
git clone https://github.com/mysteriumnetwork/myst-launcher
pushd myst-launcher
git fetch --all --tags
git checkout tags/1.0.21
git checkout tags/1.0.23
popd
popd
Expand Down
6 changes: 3 additions & 3 deletions gobridge/gobridge.go
Original file line number Diff line number Diff line change
Expand Up @@ -97,9 +97,9 @@ func sendState() {
var st C.NSState

st.imageName = C.CString(mod.Config.GetFullImageName())
st.currentVersion = C.CString(mod.ImgVer.VersionCurrent)
st.latestVersion = C.CString(mod.ImgVer.VersionLatest)
st.hasUpdate = C.bool(mod.ImgVer.HasUpdate)
st.currentVersion = C.CString(mod.ImageInfo.VersionCurrent)
st.latestVersion = C.CString(mod.ImageInfo.VersionLatest)
st.hasUpdate = C.bool(mod.ImageInfo.HasUpdate)
st.dockerRunning = C.int(mod.StateDocker)
st.containerRunning = C.int(mod.StateContainer)
st.networkCaption = C.CString(mod.Config.GetNetworkCaption())
Expand Down
4 changes: 2 additions & 2 deletions launcher.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -578,7 +578,7 @@
"$(PROJECT_DIR)/gobridge",
"$(PROJECT_DIR)",
);
MARKETING_VERSION = 1.0.21;
MARKETING_VERSION = 1.0.23;
PRODUCT_BUNDLE_IDENTIFIER = com.mysterium.launcher;
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE_SPECIFIER = "";
Expand Down Expand Up @@ -606,7 +606,7 @@
"$(PROJECT_DIR)/gobridge",
"$(PROJECT_DIR)",
);
MARKETING_VERSION = 1.0.21;
MARKETING_VERSION = 1.0.23;
PRODUCT_BUNDLE_IDENTIFIER = com.mysterium.launcher;
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE_SPECIFIER = "";
Expand Down

0 comments on commit 2dbd0d2

Please sign in to comment.