1
0
mirror of https://github.com/yorukot/superfile.git synced 2025-02-06 09:44:40 +00:00

chore(release): v1.1.7.1
All checks were successful
Go / build (push) Successful in 28s

This commit is contained in:
Yorukot 2025-01-06 15:45:29 +08:00
parent 30adc0c22c
commit 820140a9cb
7 changed files with 15 additions and 6 deletions

View File

@ -27,7 +27,7 @@
packages = rec {
superfile = pkgs.buildGoApplication {
pname = "superfile";
version = "1.1.7";
version = "1.1.7.1";
src = ./.;
modules = ./gomod2nix.toml;
};

View File

@ -1,7 +1,7 @@
#!/usr/bin/env -S bash -euo pipefail
projectName="superfile"
version="v1.1.7"
version="v1.1.7.1"
osList=("darwin" "linux" "windows")
archList=("amd64" "arm64")
mkdir dist

View File

@ -9,7 +9,7 @@ var SuperFileDataDir = xdg.DataHome + "/superfile"
var SuperFileStateDir = xdg.StateHome + "/superfile"
const (
CurrentVersion string = "v1.1.7"
CurrentVersion string = "v1.1.7.1"
LatestVersionURL string = "https://api.github.com/repos/yorukot/superfile/releases/latest"
LatestVersionGithub string = "github.com/yorukot/superfile/releases/latest"
)

View File

@ -22,7 +22,7 @@ Write-Host -ForegroundColor Red " `$`$/
Write-Host ""
$package = "superfile"
$version = "1.1.7"
$version = "1.1.7.1"
$installInstructions = @'
This installer is only available for Windows.

View File

@ -39,7 +39,7 @@ if [ $? -ne 0 ]; then
fi
package=superfile
version=1.1.7
version=1.1.7.1
arch=$(uname -m)
os=$(uname -s)

View File

@ -22,7 +22,7 @@ Write-Host -ForegroundColor Red " `$`$/
Write-Host ""
$package = "superfile"
$version = "1.1.7"
$version = "1.1.7.1"
$installInstructions = @'
This uninstaller is only available for Windows.

View File

@ -10,6 +10,15 @@ head:
All notable changes to this project will be documented in this file. Dates are displayed in UTC(YYYY-MM-DD).
# [**v1.1.7.1**](https://github.com/yorukot/superfile/releases/tag/v1.1.7)
> 2024-01-06
NOTE: This release is a hotfix to resolve an unusual issue on Windows.
#### Bug fix
- Fix can't run on windows [`#534`](https://github.com/yorukot/superfile/issues/534)
# [**v1.1.7**](https://github.com/yorukot/superfile/releases/tag/v1.1.7)
> 2024-01-05