Skip to content

Commit 9c9eccb

Browse files
authored
Merge pull request #48 from GalaxyPay/dev
fix: 1060 pattern; default BaseLoggerDebugLevel
2 parents edea835 + fa8c298 commit 9c9eccb

File tree

10 files changed

+8
-8
lines changed

10 files changed

+8
-8
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.1.1
269+
tag: v3.1.2
270270
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 "3.1.1"
5+
#define MyAppVersion "3.1.2"
66
#define MyAppPublisher "Galaxy Pay, LLC"
77
#define MyAppPublisherURL "https://galaxy-pay.com"
88
#define MyPublishPath "publish"

FUNC/Templates/algorand.tar

0 Bytes
Binary file not shown.

FUNC/Templates/voi.tar

0 Bytes
Binary file not shown.

FUNC/Utils.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ public static string ParseServiceStatus(string sc)
4848
string status = "Unknown";
4949
if (IsWindows())
5050
{
51-
if (sc.Contains("1060:")) { status = "Not Found"; }
51+
if (sc.Contains("1060")) { status = "Not Found"; }
5252
else if (sc.Contains("1 STOPPED")) { status = "Stopped"; }
5353
else if (sc.Contains("4 RUNNING")) { status = "Running"; }
5454
}

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.1.1_linux-$1
3+
PKG=Output/func_3.1.2_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.1.1_darwin-$1.pkg
8+
Output/func_3.1.2_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.1.1
2+
Version: 3.1.2
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.1.1
2+
Version: 3.1.2
33
Section: base
44
Priority: optional
55
Architecture: arm64

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": "3.1.1",
3+
"version": "3.1.2",
44
"scripts": {
55
"dev": "vite",
66
"build": "vite build",

0 commit comments

Comments
 (0)