diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index b9e137e..1cc508d 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -266,5 +266,5 @@ jobs: uses: ncipollo/release-action@v1 with: allowUpdates: true - tag: v3.0.2 + tag: v3.0.3 artifacts: "Output/*" diff --git a/FUNC.iss b/FUNC.iss index e544442..3e00c9c 100644 --- a/FUNC.iss +++ b/FUNC.iss @@ -2,7 +2,7 @@ ; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES! #define MyAppName "FUNC" -#define MyAppVersion "3.0.2" +#define MyAppVersion "3.0.3" #define MyAppPublisher "Galaxy Pay, LLC" #define MyAppPublisherURL "https://galaxy-pay.com" #define MyPublishPath "publish" diff --git a/create-package-deb.sh b/create-package-deb.sh index 82f487e..722d225 100755 --- a/create-package-deb.sh +++ b/create-package-deb.sh @@ -1,6 +1,6 @@ rm -r Output -PKG=Output/func_3.0.2_linux-$1 +PKG=Output/func_3.0.3_linux-$1 mkdir -p $PKG/lib/systemd/system mkdir -p $PKG/opt/func diff --git a/create-package-pkg.sh b/create-package-pkg.sh index edf637b..26d24fa 100755 --- a/create-package-pkg.sh +++ b/create-package-pkg.sh @@ -5,4 +5,4 @@ pkgbuild --root publish \ --install-location /opt/func \ --scripts pkg/scripts \ --identifier func.app \ - Output/func_3.0.2_darwin-$1.pkg + Output/func_3.0.3_darwin-$1.pkg diff --git a/deb/amd64/control b/deb/amd64/control index e90dd90..9c3722f 100644 --- a/deb/amd64/control +++ b/deb/amd64/control @@ -1,5 +1,5 @@ Package: func -Version: 3.0.2 +Version: 3.0.3 Section: base Priority: optional Architecture: amd64 diff --git a/deb/arm64/control b/deb/arm64/control index ae64cf5..3b5fac2 100644 --- a/deb/arm64/control +++ b/deb/arm64/control @@ -1,5 +1,5 @@ Package: func -Version: 3.0.2 +Version: 3.0.3 Section: base Priority: optional Architecture: arm64 diff --git a/webui/package.json b/webui/package.json index 56dfdd0..bd67f6c 100644 --- a/webui/package.json +++ b/webui/package.json @@ -1,6 +1,6 @@ { "name": "func-webui", - "version": "3.0.2", + "version": "3.0.3", "scripts": { "dev": "vite", "build": "vite build", diff --git a/webui/src/components/NodeTabs.vue b/webui/src/components/NodeTabs.vue index a80f12a..9c693da 100644 --- a/webui/src/components/NodeTabs.vue +++ b/webui/src/components/NodeTabs.vue @@ -6,6 +6,7 @@ > - Blocks Proposed: + Blocks Created: {{ partStats[item.address]?.proposals.toLocaleString() }} - Blocks Voted: + Blocks Certified: {{ partStats[item.address]?.votes.toLocaleString() }} diff --git a/webui/src/components/Settings.vue b/webui/src/components/Settings.vue index 4a49e42..e716626 100644 --- a/webui/src/components/Settings.vue +++ b/webui/src/components/Settings.vue @@ -31,6 +31,20 @@ + + +
Show Alternative Networks
+
+ + + +
@@ -39,11 +53,13 @@ diff --git a/webui/src/stores/app.ts b/webui/src/stores/app.ts index c3293ec..6572784 100644 --- a/webui/src/stores/app.ts +++ b/webui/src/stores/app.ts @@ -19,6 +19,7 @@ export const useAppStore = defineStore("app", { downloading: false, stoppingReti: false, goalVersion: undefined as GoalVersion | undefined, + showNetworks: localStorage.getItem("showNetworks") === "true", }), getters: { isIncentiveReady(state) {