Skip to content

Commit ad91771

Browse files
authored
Merge pull request #69 from GalaxyPay/dev
feat: algonoderewards
2 parents 75c6e3f + 1464037 commit ad91771

File tree

9 files changed

+316
-280
lines changed

9 files changed

+316
-280
lines changed

Diff for: .github/workflows/go.yml

+1-1
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.3.4
269+
tag: v3.4.0
270270
artifacts: "Output/*"

Diff for: FUNC.iss

+1-1
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.3.4"
5+
#define MyAppVersion "3.4.0"
66
#define MyAppPublisher "Galaxy Pay, LLC"
77
#define MyAppPublisherURL "https://galaxy-pay.com"
88
#define MyPublishPath "publish"

Diff for: create-package-deb.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
rm -r Output
22

3-
PKG=Output/func_3.3.4_linux-$1
3+
PKG=Output/func_3.4.0_linux-$1
44

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

Diff for: create-package-pkg.sh

+1-1
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.3.4_darwin-$1.pkg
8+
Output/func_3.4.0_darwin-$1.pkg

Diff for: deb/amd64/control

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Package: func
2-
Version: 3.3.4
2+
Version: 3.4.0
33
Section: base
44
Priority: optional
55
Architecture: amd64

Diff for: deb/arm64/control

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Package: func
2-
Version: 3.3.4
2+
Version: 3.4.0
33
Section: base
44
Priority: optional
55
Architecture: arm64

Diff for: webui/package.json

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "func-webui",
3-
"version": "3.3.4",
3+
"version": "3.4.0",
44
"scripts": {
55
"dev": "vite",
66
"build": "vite build",
@@ -9,26 +9,26 @@
99
"dependencies": {
1010
"@blockshake/defly-connect": "^1.2.1",
1111
"@mdi/js": "^7.4.47",
12-
"@perawallet/connect": "^1.4.1",
12+
"@perawallet/connect": "^1.4.2",
1313
"@txnlab/use-wallet-vue": "^4.0.0",
1414
"algosdk": "3.2.0",
15-
"axios": "^1.7.9",
15+
"axios": "^1.8.2",
1616
"lute-connect": "^1.4.1",
1717
"roboto-fontface": "^0.10.0",
1818
"vite-plugin-node-polyfills": "^0.23.0",
1919
"vue": "^3.5.13",
20-
"vuetify": "^3.7.12"
20+
"vuetify": "^3.7.15"
2121
},
2222
"devDependencies": {
2323
"@babel/types": "^7.26.9",
24-
"@types/node": "^20.17.19",
24+
"@types/node": "^22.13.9",
2525
"@vitejs/plugin-vue": "^5.2.1",
2626
"pinia": "^2.3.1",
27-
"typescript": "^5.7.3",
27+
"typescript": "^5.8.2",
2828
"unplugin-auto-import": "^0.18.6",
2929
"unplugin-vue-components": "^0.27.5",
3030
"vite": "^5.4.14",
3131
"vite-plugin-vuetify": "^2.1.0",
32-
"vue-tsc": "^2.2.2"
32+
"vue-tsc": "^2.2.8"
3333
}
3434
}

0 commit comments

Comments
 (0)