Skip to content

Commit

Permalink
Merge pull request #45 from GalaxyPay/dev
Browse files Browse the repository at this point in the history
refine status button menu
  • Loading branch information
acfunk authored Jan 8, 2025
2 parents fb19b17 + 60ebc32 commit a1fbfdb
Show file tree
Hide file tree
Showing 8 changed files with 31 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -266,5 +266,5 @@ jobs:
uses: ncipollo/release-action@v1
with:
allowUpdates: true
tag: v3.0.3
tag: v3.0.4
artifacts: "Output/*"
2 changes: 1 addition & 1 deletion FUNC.iss
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!

#define MyAppName "FUNC"
#define MyAppVersion "3.0.3"
#define MyAppVersion "3.0.4"
#define MyAppPublisher "Galaxy Pay, LLC"
#define MyAppPublisherURL "https://galaxy-pay.com"
#define MyPublishPath "publish"
Expand Down
2 changes: 1 addition & 1 deletion create-package-deb.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
rm -r Output

PKG=Output/func_3.0.3_linux-$1
PKG=Output/func_3.0.4_linux-$1

mkdir -p $PKG/lib/systemd/system
mkdir -p $PKG/opt/func
Expand Down
2 changes: 1 addition & 1 deletion create-package-pkg.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ pkgbuild --root publish \
--install-location /opt/func \
--scripts pkg/scripts \
--identifier func.app \
Output/func_3.0.3_darwin-$1.pkg
Output/func_3.0.4_darwin-$1.pkg
2 changes: 1 addition & 1 deletion deb/amd64/control
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Package: func
Version: 3.0.3
Version: 3.0.4
Section: base
Priority: optional
Architecture: amd64
Expand Down
2 changes: 1 addition & 1 deletion deb/arm64/control
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Package: func
Version: 3.0.3
Version: 3.0.4
Section: base
Priority: optional
Architecture: arm64
Expand Down
2 changes: 1 addition & 1 deletion webui/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "func-webui",
"version": "3.0.3",
"version": "3.0.4",
"scripts": {
"dev": "vite",
"build": "vite build",
Expand Down
28 changes: 24 additions & 4 deletions webui/src/components/Participation.vue
Original file line number Diff line number Diff line change
Expand Up @@ -26,15 +26,33 @@
<template #[`item.status`]="{ item }">
<v-btn variant="flat" size="small">
<span>
<v-badge floating dot :color="keyStatus(item).color" />
<v-icon :icon="mdiChevronDown" class="ml-2" size="large" />
<v-badge
floating
dot
:color="keyStatus(item).color"
class="mr-2"
/>
<v-icon
v-show="
activeAccount?.address === item.address || !isKeyActive(item)
"
:icon="mdiChevronDown"
size="large"
/>
</span>
<v-tooltip
activator="parent"
location="top"
:text="keyStatus(item).text"
/>
<v-menu activator="parent" bottom scrim>
<v-menu
activator="parent"
:disabled="
activeAccount?.address !== item.address && isKeyActive(item)
"
bottom
scrim
>
<v-list density="compact">
<v-list-item
:title="(isKeyActive(item) ? 'Re-' : '') + 'Register'"
Expand All @@ -47,7 +65,9 @@
<v-list-item
title="Go Offline"
@click="offline()"
v-show="isKeyActive(item)"
v-show="
activeAccount?.address === item.address && isKeyActive(item)
"
/>
<v-list-item
title="Delete Key"
Expand Down

0 comments on commit a1fbfdb

Please sign in to comment.