File tree Expand file tree Collapse file tree 6 files changed +24
-5
lines changed Expand file tree Collapse file tree 6 files changed +24
-5
lines changed Original file line number Diff line number Diff line change 27
27
packages = rec {
28
28
superfile = pkgs . buildGoApplication {
29
29
pname = "superfile" ;
30
- version = "1.3.0 " ;
30
+ version = "1.3.1 " ;
31
31
src = ./. ;
32
32
modules = ./gomod2nix.toml ;
33
33
} ;
Original file line number Diff line number Diff line change 1
1
#! /usr/bin/env -S bash -euo pipefail
2
2
3
3
projectName=" superfile"
4
- version=" v1.3.0 "
4
+ version=" v1.3.1 "
5
5
osList=(" darwin" " linux" " windows" )
6
6
archList=(" amd64" " arm64" )
7
7
mkdir dist
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ import (
11
11
)
12
12
13
13
const (
14
- CurrentVersion = "v1.3.0 "
14
+ CurrentVersion = "v1.3.1 "
15
15
LatestVersionURL = "https://api.github.com/repos/yorukot/superfile/releases/latest"
16
16
LatestVersionGithub = "github.com/yorukot/superfile/releases/latest"
17
17
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ Write-Host -ForegroundColor Red " `$`$/
22
22
Write-Host " "
23
23
24
24
$package = " superfile"
25
- $version = if ($env: SPF_INSTALL_VERSION ) { $env: SPF_INSTALL_VERSION } else { " 1.3.0 " }
25
+ $version = if ($env: SPF_INSTALL_VERSION ) { $env: SPF_INSTALL_VERSION } else { " 1.3.1 " }
26
26
27
27
$installInstructions = @'
28
28
This installer is only available for Windows.
Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ if [ $? -ne 0 ]; then
39
39
fi
40
40
41
41
package=superfile
42
- version=${SPF_INSTALL_VERSION:- 1.3.0 }
42
+ version=${SPF_INSTALL_VERSION:- 1.3.1 }
43
43
arch=$( uname -m)
44
44
os=$( uname -s)
45
45
Original file line number Diff line number Diff line change 10
10
11
11
All notable changes to this project will be documented in this file. Dates are displayed in UTC(YYYY-MM-DD).
12
12
13
+ # [ ** v1.3.1** ] ( https://github.com/yorukot/superfile/releases/tag/v1.3.1 )
14
+
15
+ > 2025-05-27
16
+
17
+ #### Update
18
+
19
+ - Replace custom giscus implementation with official starlight-giscus plugin [ ` #843 ` ] ( https://github.com/yorukot/superfile/pull/843 )
20
+ - Add 'Type' option for sorting by file extension with fallback [ ` #829 ` ] ( https://github.com/yorukot/superfile/pull/829 )
21
+
22
+ #### Bug Fixes
23
+
24
+ - Correct icons for clipboard files [ ` #845 ` ] ( https://github.com/yorukot/superfile/pull/845 )
25
+ - Replace mattn/rundwidth with ansi package for more robust StringWidth [ ` #848 ` ] ( https://github.com/yorukot/superfile/pull/848 )
26
+ - Purego package update [ ` #837 ` ] ( https://github.com/yorukot/superfile/pull/837 )
27
+
28
+ #### Optimization
29
+
30
+ - Update main.go [ ` #839 ` ] ( https://github.com/yorukot/superfile/pull/839 )
31
+
13
32
# [ ** v1.3.0** ] ( https://github.com/yorukot/superfile/releases/tag/v1.3.0 )
14
33
15
34
> 2025-05-22
You can’t perform that action at this time.
0 commit comments