rtfm-filemanager 8.1.2 → 8.1.3
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/CHANGELOG.md +5 -0
- data/bin/rtfm +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e58685e75cad90ce6073efe92abe1fe018bf0371060e652dd86ccf6e7e41d252
|
|
4
|
+
data.tar.gz: 6fd3b54ac0729a9111aedad4c48b3e50c6b9467547d62e49c14bc22015c58d13
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 26cb3b44a3b43f90c326050c18c0809b4d689be8610a38c9c591c5bc0519cb197988fd6b63305d0620ab7dddd3f00ae848ed2f5716b166c31d2dd8eab0237719
|
|
7
|
+
data.tar.gz: 76a5d98f72158d0cad178cf5b7c0d71e5ea7bea5bc51d06d2e23c2cbe3342e81e22508681f614f80f247e26394d299bf87765539e35b31461c27131c92a587db
|
data/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,11 @@ All notable changes to RTFM will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [8.1.3] - 2026-03-13
|
|
9
|
+
|
|
10
|
+
### Fixed
|
|
11
|
+
- **Terminal state corruption after interactive programs** - Fixed input echoing to top bar after exiting programs like hyperlist. Re-added `self.update = true` in `say` override (now safe with rcurses 6.2.2 fix)
|
|
12
|
+
|
|
8
13
|
## [8.1.2] - 2026-03-13
|
|
9
14
|
|
|
10
15
|
### Fixed
|
data/bin/rtfm
CHANGED
|
@@ -3393,7 +3393,6 @@ def open_remote_shell # {{{3
|
|
|
3393
3393
|
system('stty raw -echo isig < /dev/tty')
|
|
3394
3394
|
$stdin.raw!
|
|
3395
3395
|
$stdin.echo = false
|
|
3396
|
-
Rcurses.init! # Reinitialize rcurses to fix input handling
|
|
3397
3396
|
Cursor.hide
|
|
3398
3397
|
Rcurses.clear_screen
|
|
3399
3398
|
|
|
@@ -6665,6 +6664,7 @@ def marks_info # SHOW MARKS IN RIGHT WINDOW {{{2
|
|
|
6665
6664
|
end
|
|
6666
6665
|
info << "\n" + "Press " + "'" + " + letter to jump".fg(240)
|
|
6667
6666
|
end
|
|
6667
|
+
@pR.update = true
|
|
6668
6668
|
@pR.say(info)
|
|
6669
6669
|
end
|
|
6670
6670
|
|