Skip to content

Commit 0bb01c8

Browse files
authored
Merge pull request #59 from GalaxyPay/dev
fix: reti.plist
2 parents da27d6d + 1d00635 commit 0bb01c8

File tree

8 files changed

+16
-9
lines changed

8 files changed

+16
-9
lines changed

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

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

FUNC/Templates/func.reti.plist

+9-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,15 @@
44
<dict>
55
<key>Label</key>
66
<string>func.reti</string>
7-
<key>Program</key>
8-
<string>/usr/local/share/func/reti/reti -n mainnet -e /usr/local/share/func/reti/.env d</string>
7+
<key>ProgramArguments</key>
8+
<array>
9+
<string>/usr/local/share/func/reti/reti</string>
10+
<string>-n</string>
11+
<string>mainnet</string>
12+
<string>-e</string>
13+
<string>/usr/local/share/func/reti/.env</string>
14+
<string>d</string>
15+
</array>
916
<key>RunAtLoad</key>
1017
<true/>
1118
</dict>

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.2.4_linux-$1
3+
PKG=Output/func_3.2.5_linux-$1
44

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

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

deb/amd64/control

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

deb/arm64/control

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

webui/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "func-webui",
3-
"version": "3.2.4",
3+
"version": "3.2.5",
44
"scripts": {
55
"dev": "vite",
66
"build": "vite build",

0 commit comments

Comments
 (0)