Skip to content

Commit

Permalink
Update superfile version
Browse files Browse the repository at this point in the history
  • Loading branch information
yorukot committed Nov 21, 2024
1 parent 9b44af8 commit aaba9d4
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
packages = rec {
superfile = pkgs.buildGoApplication {
pname = "superfile";
version = "1.1.5";
version = "1.1.6";
src = ./.;
modules = ./gomod2nix.toml;
};
Expand Down
2 changes: 1 addition & 1 deletion release/release.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env -S bash -euo pipefail

projectName="superfile"
version="v1.1.5"
version="v1.1.6"
osList=("darwin" "linux" "windows")
archList=("amd64" "arm64")
mkdir dist
Expand Down
2 changes: 1 addition & 1 deletion src/config/fixed_variable.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ var SuperFileDataDir = xdg.DataHome + "/superfile"
var SuperFileStateDir = xdg.StateHome + "/superfile"

const (
CurrentVersion string = "v1.1.5"
CurrentVersion string = "v1.1.6"
LatestVersionURL string = "https://api.github.com/repos/yorukot/superfile/releases/latest"
LatestVersionGithub string = "github.com/yorukot/superfile/releases/latest"
)
Expand Down
2 changes: 1 addition & 1 deletion website/public/install.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Write-Host -ForegroundColor Red " `$`$/
Write-Host ""

$package = "superfile"
$version = "1.1.5"
$version = "1.1.6"

$installInstructions = @'
This installer is only available for Windows.
Expand Down
2 changes: 1 addition & 1 deletion website/public/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ if [ $? -ne 0 ]; then
fi

package=superfile
version=1.1.5
version=1.1.6
arch=$(uname -m)
os=$(uname -s)

Expand Down
2 changes: 1 addition & 1 deletion website/public/uninstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Write-Host -ForegroundColor Red " `$`$/
Write-Host ""

$package = "superfile"
$version = "1.1.5"
$version = "1.1.6"

$installInstructions = @'
This uninstaller is only available for Windows.
Expand Down

0 comments on commit aaba9d4

Please sign in to comment.