Skip to content

Commit 4353d5a

Browse files
authored
Merge pull request #77 from GalaxyPay/dev
fix: manage button status
2 parents 59c6b7e + d595570 commit 4353d5a

File tree

13 files changed

+389
-489
lines changed

13 files changed

+389
-489
lines changed

.github/workflows/go.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -266,5 +266,5 @@ jobs:
266266
uses: ncipollo/release-action@v1
267267
with:
268268
allowUpdates: true
269-
tag: v3.5.0
269+
tag: v3.5.1
270270
artifacts: "Output/*"

.gitignore

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -367,7 +367,3 @@ Output/
367367

368368
# MacOS
369369
.DS_Store
370-
371-
# Vue auto-generated
372-
webui/src/auto-imports.d.ts
373-
webui/src/components.d.ts

FUNC.iss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!
33

44
#define MyAppName "FUNC"
5-
#define MyAppVersion "3.5.0"
5+
#define MyAppVersion "3.5.1"
66
#define MyAppPublisher "Galaxy Pay, LLC"
77
#define MyAppPublisherURL "https://galaxy-pay.com"
88
#define MyPublishPath "publish"

create-package-deb.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
rm -r Output
22

3-
PKG=Output/func_3.5.0_linux-$1
3+
PKG=Output/func_3.5.1_linux-$1
44

55
mkdir -p $PKG/lib/systemd/system
66
mkdir -p $PKG/opt/func

create-package-pkg.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ pkgbuild --root publish \
55
--install-location /opt/func \
66
--scripts pkg/scripts \
77
--identifier func.app \
8-
Output/func_3.5.0_darwin-$1.pkg
8+
Output/func_3.5.1_darwin-$1.pkg

deb/amd64/control

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Package: func
2-
Version: 3.5.0
2+
Version: 3.5.1
33
Section: base
44
Priority: optional
55
Architecture: amd64

deb/arm64/control

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Package: func
2-
Version: 3.5.0
2+
Version: 3.5.1
33
Section: base
44
Priority: optional
55
Architecture: arm64

webui/.eslintrc-auto-import.json

Lines changed: 0 additions & 76 deletions
This file was deleted.

webui/.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,3 +20,8 @@ pnpm-debug.log*
2020
*.njsproj
2121
*.sln
2222
*.sw?
23+
24+
# Vue auto-generated
25+
src/auto-imports.d.ts
26+
src/components.d.ts
27+
.eslintrc-auto-import.json

webui/package.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "func-webui",
3-
"version": "3.5.0",
3+
"version": "3.5.1",
44
"scripts": {
55
"dev": "vite",
66
"build": "vite build",
@@ -10,22 +10,22 @@
1010
"@blockshake/defly-connect": "^1.2.1",
1111
"@mdi/js": "^7.4.47",
1212
"@perawallet/connect": "^1.4.2",
13-
"@txnlab/use-wallet-vue": "^4.0.1",
13+
"@txnlab/use-wallet-vue": "^4.1.0",
1414
"algosdk": "3.2.0",
1515
"axios": "^1.9.0",
1616
"lute-connect": "^1.6.1",
17-
"pinia": "^2.3.1",
17+
"pinia": "^3.0.2",
1818
"roboto-fontface": "^0.10.0",
1919
"vite-plugin-node-polyfills": "^0.23.0",
20-
"vue": "^3.5.13",
21-
"vuetify": "^3.8.3"
20+
"vue": "^3.5.14",
21+
"vuetify": "^3.8.5"
2222
},
2323
"devDependencies": {
24-
"@types/node": "^22.15.12",
25-
"@vitejs/plugin-vue": "^5.2.3",
24+
"@types/node": "^22.15.18",
25+
"@vitejs/plugin-vue": "^5.2.4",
2626
"typescript": "^5.8.3",
27-
"unplugin-auto-import": "^0.18.6",
28-
"unplugin-vue-components": "^0.27.5",
27+
"unplugin-auto-import": "^19.2.0",
28+
"unplugin-vue-components": "^28.5.0",
2929
"vite": "^6.3.5",
3030
"vite-plugin-vuetify": "^2.1.1",
3131
"vue-tsc": "^2.2.10"

0 commit comments

Comments
 (0)