Skip to content

Commit

Permalink
1.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
aloneguid committed Nov 23, 2023
1 parent 6c7a793 commit 42e05f4
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: build

env:
v: '1.5.0'
v: '1.5.1'
av: '1.0.0'
swtv: '0.0.1'

Expand Down
6 changes: 5 additions & 1 deletion docs/release-history.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
## 1.5.0
## 1.5.1

Improvement: "Minio" factory method is missing region parameter by @zitmen in #20.

## 1.5.0

### New features

Expand Down
5 changes: 5 additions & 0 deletions src/Stowage.Terminal/FSView.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,11 @@ public FSView(IFileStorage fs, IOPath? startPath = null) {
_entryList.Y = 2;
_entryList.Width = Dim.Fill();
_entryList.Height = Dim.Fill() - 1;
//_entryList.AllowsMultipleSelection = true;
//_entryList.AllowsMarking = true;
// vim-style navigation
_entryList.AddKeyBinding(Key.j, Command.LineDown);
_entryList.AddKeyBinding(Key.k, Command.LineUp);
Ls();

Add(_pathLabel);
Expand Down

0 comments on commit 42e05f4

Please sign in to comment.