Skip to content

Commit 5ffca5b

Browse files
authored
Merge pull request #61 from GalaxyPay/dev
chore: release 3.3.1
2 parents 116c071 + 0cb6f28 commit 5ffca5b

File tree

9 files changed

+17
-8
lines changed

9 files changed

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

Diff for: FUNC/Controllers/RetiController.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ private static async Task DownloadExtractReti()
198198
if (IsWindows())
199199
{
200200
DirectoryInfo di = new(destDir);
201-
foreach (FileInfo file in di.GetFiles()) file.Delete();
201+
foreach (FileInfo file in di.GetFiles().Where(f => f.Name != ".env")) file.Delete();
202202
ZipFile.ExtractToDirectory(filePath, destDir);
203203
}
204204
else

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

Diff for: 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.3.0",
3+
"version": "3.3.1",
44
"scripts": {
55
"dev": "vite",
66
"build": "vite build",

Diff for: webui/src/components/AppBar.vue

+9
Original file line numberDiff line numberDiff line change
@@ -212,6 +212,15 @@ watch(
212212
}
213213
}
214214
);
215+
216+
watch(
217+
() => [store.showMachineName, store.machineName],
218+
([val1, val2]) => {
219+
if (val1 && val2) document.title = `FUNC (${val2})`;
220+
else document.title = "FUNC";
221+
},
222+
{ immediate: true }
223+
);
215224
</script>
216225

217226
<style>

0 commit comments

Comments
 (0)