From 42e05f423c5d3982df180bbb0002b8a22ed9b933 Mon Sep 17 00:00:00 2001 From: IG Date: Thu, 23 Nov 2023 09:17:02 +0000 Subject: [PATCH] 1.5.1 --- .github/workflows/build.yml | 2 +- docs/release-history.md | 6 +++++- src/Stowage.Terminal/FSView.cs | 5 +++++ 3 files changed, 11 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 00a5faa..07813bb 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -1,7 +1,7 @@ name: build env: - v: '1.5.0' + v: '1.5.1' av: '1.0.0' swtv: '0.0.1' diff --git a/docs/release-history.md b/docs/release-history.md index eb9b89f..bf1227e 100644 --- a/docs/release-history.md +++ b/docs/release-history.md @@ -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 diff --git a/src/Stowage.Terminal/FSView.cs b/src/Stowage.Terminal/FSView.cs index 733a406..1c85dba 100644 --- a/src/Stowage.Terminal/FSView.cs +++ b/src/Stowage.Terminal/FSView.cs @@ -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);