Skip to content

Commit

Permalink
Merge pull request #61 from GalaxyPay/dev
Browse files Browse the repository at this point in the history
chore: release 3.3.1
  • Loading branch information
acfunk authored Feb 5, 2025
2 parents 116c071 + 0cb6f28 commit 5ffca5b
Show file tree
Hide file tree
Showing 9 changed files with 17 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -266,5 +266,5 @@ jobs:
uses: ncipollo/release-action@v1
with:
allowUpdates: true
tag: v3.3.0
tag: v3.3.1
artifacts: "Output/*"
2 changes: 1 addition & 1 deletion FUNC.iss
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!

#define MyAppName "FUNC"
#define MyAppVersion "3.3.0"
#define MyAppVersion "3.3.1"
#define MyAppPublisher "Galaxy Pay, LLC"
#define MyAppPublisherURL "https://galaxy-pay.com"
#define MyPublishPath "publish"
Expand Down
2 changes: 1 addition & 1 deletion FUNC/Controllers/RetiController.cs
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ private static async Task DownloadExtractReti()
if (IsWindows())
{
DirectoryInfo di = new(destDir);
foreach (FileInfo file in di.GetFiles()) file.Delete();
foreach (FileInfo file in di.GetFiles().Where(f => f.Name != ".env")) file.Delete();
ZipFile.ExtractToDirectory(filePath, destDir);
}
else
Expand Down
2 changes: 1 addition & 1 deletion create-package-deb.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
rm -r Output

PKG=Output/func_3.3.0_linux-$1
PKG=Output/func_3.3.1_linux-$1

mkdir -p $PKG/lib/systemd/system
mkdir -p $PKG/opt/func
Expand Down
2 changes: 1 addition & 1 deletion create-package-pkg.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ pkgbuild --root publish \
--install-location /opt/func \
--scripts pkg/scripts \
--identifier func.app \
Output/func_3.3.0_darwin-$1.pkg
Output/func_3.3.1_darwin-$1.pkg
2 changes: 1 addition & 1 deletion deb/amd64/control
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Package: func
Version: 3.3.0
Version: 3.3.1
Section: base
Priority: optional
Architecture: amd64
Expand Down
2 changes: 1 addition & 1 deletion deb/arm64/control
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Package: func
Version: 3.3.0
Version: 3.3.1
Section: base
Priority: optional
Architecture: arm64
Expand Down
2 changes: 1 addition & 1 deletion webui/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "func-webui",
"version": "3.3.0",
"version": "3.3.1",
"scripts": {
"dev": "vite",
"build": "vite build",
Expand Down
9 changes: 9 additions & 0 deletions webui/src/components/AppBar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -212,6 +212,15 @@ watch(
}
}
);
watch(
() => [store.showMachineName, store.machineName],
([val1, val2]) => {
if (val1 && val2) document.title = `FUNC (${val2})`;
else document.title = "FUNC";
},
{ immediate: true }
);
</script>

<style>
Expand Down

0 comments on commit 5ffca5b

Please sign in to comment.