hyperlist 1.4.5 → 1.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/hyperlist +20 -1
- data/hyperlist.gemspec +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4e9aaa16290fdb66f194d55acfd1120e20b7b5c4f8b49203c20967580738cc4d
|
4
|
+
data.tar.gz: 8155928a2850fff84d471b287f45f38e490d907cb172dba0e18fbd8da06e18ea
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1df02a40d21b232190692f1bc7a2e08b516fa66e0a8a35743efd8743bceabe1548ea3b20bc3ab5a8f277558467af98c8bc8c8bece6322154471e40ba0dd2ab18
|
7
|
+
data.tar.gz: 8cbfa174bec6a8f3043942bd212f8b3b24548fe1ec1e42b4ef183f9db37bdd6dc0c934945bf99a29c85638b4a5d098c917d0e150c53feda7637e3e18f752075e
|
data/hyperlist
CHANGED
@@ -72,7 +72,7 @@ class HyperListApp
|
|
72
72
|
include Rcurses::Input
|
73
73
|
include Rcurses::Cursor
|
74
74
|
|
75
|
-
VERSION = "1.
|
75
|
+
VERSION = "1.5.0"
|
76
76
|
|
77
77
|
def initialize(filename = nil)
|
78
78
|
@filename = filename ? File.expand_path(filename) : nil
|
@@ -1477,6 +1477,11 @@ class HyperListApp
|
|
1477
1477
|
end
|
1478
1478
|
|
1479
1479
|
def render_footer
|
1480
|
+
# Don't overwrite footer if showing password prompt
|
1481
|
+
if @footer && @footer.text && @footer.text.include?("password")
|
1482
|
+
return
|
1483
|
+
end
|
1484
|
+
|
1480
1485
|
version_text = "v#{VERSION}"
|
1481
1486
|
|
1482
1487
|
if @mode == :command
|
@@ -3979,6 +3984,20 @@ class HyperListApp
|
|
3979
3984
|
@footer.text = prompt
|
3980
3985
|
@footer.refresh
|
3981
3986
|
|
3987
|
+
# Force terminal to flush output - needed when launched from urxvt
|
3988
|
+
STDOUT.flush
|
3989
|
+
|
3990
|
+
# When launched through urxvt, force a complete redraw
|
3991
|
+
if ENV['TERM'] =~ /rxvt/
|
3992
|
+
sleep 0.1
|
3993
|
+
# Force complete screen refresh
|
3994
|
+
Rcurses.clear_screen
|
3995
|
+
setup_ui
|
3996
|
+
@footer.text = prompt
|
3997
|
+
@footer.refresh
|
3998
|
+
STDOUT.flush
|
3999
|
+
end
|
4000
|
+
|
3982
4001
|
password = ""
|
3983
4002
|
loop do
|
3984
4003
|
begin
|
data/hyperlist.gemspec
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: hyperlist
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.5.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Geir Isene
|
8
8
|
autorequire:
|
9
9
|
bindir: "."
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-09-
|
11
|
+
date: 2025-09-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rcurses
|