Skip to content

Commit 7afaf7f

Browse files
authored
Merge pull request #27 from GalaxyPay/dev
chore: release v2.0.3
2 parents 82938b9 + 8a421d0 commit 7afaf7f

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
lines changed

.github/workflows/go.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,5 +139,5 @@ jobs:
139139
uses: ncipollo/release-action@v1
140140
with:
141141
allowUpdates: true
142-
tag: v2.0.2
142+
tag: v2.0.3
143143
artifacts: "Output/*"

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

FUNC/Controllers/GoalController.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ public async Task<ActionResult<string>> GoalUpdate(Models.Release model)
9494
url = latestInfo.Assets.FirstOrDefault(a => a.Name.Contains("node_stable_linux-amd64")
9595
&& a.Name.EndsWith("tar.gz"))?.BrowserDownloadUrl;
9696
if (url == null) return BadRequest();
97-
await Utils.ExecCmd($"wget -L -o {Utils.dataPath}/node.tar.gz {url}");
97+
await Utils.ExecCmd($"wget -L -O {Utils.dataPath}/node.tar.gz {url}");
9898
}
9999

100100
await Utils.ExecCmd($"tar -zxf {Utils.dataPath}/node.tar.gz -C {Utils.dataPath} bin");

FUNC/Controllers/RetiController.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ public async Task<ActionResult> CreateRetiService(RetiCreate model)
4040
{
4141
var url = latest.Assets.FirstOrDefault(a => a.Name.Contains("linux-amd64.tar.gz"))?.BrowserDownloadUrl;
4242
if (url == null) return BadRequest();
43-
await Utils.ExecCmd($"wget -L -o {Utils.dataPath}/reti.tar.gz {url}");
43+
await Utils.ExecCmd($"wget -L -O {Utils.dataPath}/reti.tar.gz {url}");
4444
await Utils.ExecCmd($"tar -zxf {Utils.dataPath}/reti.tar.gz -C {Path.Combine(Utils.dataPath, "reti")}");
4545
}
4646
}
@@ -108,7 +108,7 @@ public async Task<ActionResult> UpdateReti()
108108
{
109109
var url = latest.Assets.FirstOrDefault(a => a.Name.Contains("linux-amd64.tar.gz"))?.BrowserDownloadUrl;
110110
if (url == null) return BadRequest();
111-
await Utils.ExecCmd($"wget -L -o {Utils.dataPath}/reti.tar.gz {url}");
111+
await Utils.ExecCmd($"wget -L -O {Utils.dataPath}/reti.tar.gz {url}");
112112
await Utils.ExecCmd($"tar -zxf {Utils.dataPath}/reti.tar.gz -C {Utils.dataPath} reti");
113113
}
114114

create-package.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_2.0.2_amd64
3+
PKG=Output/func_2.0.3_amd64
44

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

deb/control

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

webui/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "func-webui",
3-
"version": "2.0.2",
3+
"version": "2.0.3",
44
"scripts": {
55
"dev": "vite",
66
"build": "vue-tsc --noEmit && vite build",

0 commit comments

Comments
 (0)