Skip to content

Commit

Permalink
Changed Theme Directory
Browse files Browse the repository at this point in the history
  • Loading branch information
CommandJoo committed Nov 21, 2024
2 parents 7469053 + 961c634 commit f105e25
Show file tree
Hide file tree
Showing 9 changed files with 25 additions and 10 deletions.
6 changes: 4 additions & 2 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
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
4 changes: 2 additions & 2 deletions src/internal/config_type.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)"`
Expand Down Expand Up @@ -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"`
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
13 changes: 13 additions & 0 deletions website/src/content/docs/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit f105e25

Please sign in to comment.