diff --git a/changelog.md b/changelog.md index 8d1e9f03..fc044955 100644 --- a/changelog.md +++ b/changelog.md @@ -2,15 +2,17 @@ All notable changes to this project will be documented in this file. Dates are displayed in UTC(YYYY-MM-DD). -# [**v1.2.0**]() +# [**v1.1.6**](https://github.com/yorukot/superfile/releases/tag/v1.1.6) -> xxxx-xx-xx +> 2024-11-21 #### Update +- Add sort case toggle [`#469`](https://github.com/yorukot/superfile/issues/469) - Add Sort options [`#420`](https://github.com/yorukot/superfile/pull/420) - Fix flashing when switching between panels [`#122`](https://github.com/yorukot/superfile/issues/122) #### Bug fix +- Fix some hotkey broken - Fix the searchbar to automatically put the open key into the searchbar [`ec9e256`](https://github.com/yorukot/superfile/commit/b20bc70fe9d4e0ee96931092a6522e8604cc017b) # [**v1.1.5**](https://github.com/yorukot/superfile/releases/tag/v1.1.5) diff --git a/flake.nix b/flake.nix index 500c9ec0..4c34b301 100644 --- a/flake.nix +++ b/flake.nix @@ -27,7 +27,7 @@ packages = rec { superfile = pkgs.buildGoApplication { pname = "superfile"; - version = "1.1.5"; + version = "1.1.6"; src = ./.; modules = ./gomod2nix.toml; }; diff --git a/release/release.sh b/release/release.sh index 20ae02a1..97481c92 100644 --- a/release/release.sh +++ b/release/release.sh @@ -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 diff --git a/src/config/fixed_variable.go b/src/config/fixed_variable.go index 9b6c7a1e..08f19482 100644 --- a/src/config/fixed_variable.go +++ b/src/config/fixed_variable.go @@ -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" ) diff --git a/src/internal/config_type.go b/src/internal/config_type.go index dcd4623b..da447180 100644 --- a/src/internal/config_type.go +++ b/src/internal/config_type.go @@ -125,7 +125,7 @@ type ConfigType struct { FileSizeUseSI bool `toml:"file_size_use_si" comment:"\nDisplay file sizes using powers of 1000 (kB, MB, GB) instead of powers of 1024 (KiB, MiB, GiB)."` DefaultSortType int `toml:"default_sort_type" comment:"\nDefault sort type (0: Name, 1: Size, 2: Date Modified)."` SortOrderReversed bool `toml:"sort_order_reversed" comment:"\nDefault sort order (false: Ascending, true: Descending)."` - CaseSensitiveSort bool `toml:"case_sensitive_sort" comment:"\nCase sensitive sort by name (captal "B" comes before "a" if true)."` + CaseSensitiveSort bool `toml:"case_sensitive_sort" comment:"\nCase sensitive sort by name (captal \"B\" comes before \"a\" if true)."` Nerdfont bool `toml:"nerdfont" comment:"\n================ Style =================\n\n If you don't have or don't want Nerdfont installed you can turn this off"` TransparentBackground bool `toml:"transparent_background" comment:"\nSet transparent background or not (this only work when your terminal background is transparent)"` @@ -160,7 +160,7 @@ type HotkeysType struct { PreviousFilePanel []string `toml:"previous_file_panel"` ToggleFilePreviewPanel []string `toml:"toggle_file_preview_panel"` OpenSortOptionsMenu []string `toml:"open_sort_options_menu"` - ToggleReverseSort []string `toml:"toggle_reverse_sort"` + ToggleReverseSort []string `toml:"toggle_reverse_sort"` FocusOnProcessBar []string `toml:"focus_on_process_bar" comment:"change focus"` FocusOnSidebar []string `toml:"focus_on_sidebar"` diff --git a/website/public/install.ps1 b/website/public/install.ps1 index 9dae2dcf..4b0d210f 100644 --- a/website/public/install.ps1 +++ b/website/public/install.ps1 @@ -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. diff --git a/website/public/install.sh b/website/public/install.sh index 291d2e10..afaaec06 100755 --- a/website/public/install.sh +++ b/website/public/install.sh @@ -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) diff --git a/website/public/uninstall.ps1 b/website/public/uninstall.ps1 index 6663b09a..40b53e90 100644 --- a/website/public/uninstall.ps1 +++ b/website/public/uninstall.ps1 @@ -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. diff --git a/website/src/content/docs/changelog.md b/website/src/content/docs/changelog.md index aaa73c3a..08bae5ee 100644 --- a/website/src/content/docs/changelog.md +++ b/website/src/content/docs/changelog.md @@ -10,6 +10,19 @@ head: All notable changes to this project will be documented in this file. Dates are displayed in UTC(YYYY-MM-DD). +# [**v1.1.6**](https://github.com/yorukot/superfile/releases/tag/v1.1.6) + +> 2024-11-21 + +#### Update +- Add sort case toggle [`#469`](https://github.com/yorukot/superfile/issues/469) +- Add Sort options [`#420`](https://github.com/yorukot/superfile/pull/420) +- Fix flashing when switching between panels [`#122`](https://github.com/yorukot/superfile/issues/122) + +#### Bug fix +- Fix some hotkey broken +- Fix the searchbar to automatically put the open key into the searchbar [`ec9e256`](https://github.com/yorukot/superfile/commit/b20bc70fe9d4e0ee96931092a6522e8604cc017b) + # [**v1.1.5**](https://github.com/yorukot/superfile/releases/tag/v1.1.5) > 2024-10-03