hyperlist 1.1.0 → 1.1.2
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/README.md +15 -0
- data/hyperlist +754 -373
- data/hyperlist.gemspec +1 -1
- data/test.hl +4 -19
- 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: 4833d00af59c0e670c52789600b5c211056882bf24712925055307a6a19ad450
|
4
|
+
data.tar.gz: f9079f324d678fde34ed9e7e004c6ad1515903506919764b1007fad386f8f88f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3260f77e28209f0ed869f970442747ecaeec99107697992fc726a321b2fa5c88ab75a1fd66c71678ed40bdf16e089ad8beb4ba0060f2ebd947da158e95b6a14e
|
7
|
+
data.tar.gz: 56ea68f58fe5bd03837fce80b62b5a8b3477d8d5f62b0faca3cc8ee2db48fb5b91fe4ac502b049f076f094cace07a0814ebaa8fd2172c4a23dd5c35c91f3b043
|
data/README.md
CHANGED
@@ -254,6 +254,21 @@ Follow the instructions in the test file to verify all features are working corr
|
|
254
254
|
|
255
255
|
Contributions are welcome! Please feel free to submit issues and pull requests.
|
256
256
|
|
257
|
+
## Changelog
|
258
|
+
|
259
|
+
### v1.1.1 (2025-08-13)
|
260
|
+
- **Fixed**: Critical navigation bug where the last item (line 154 in test.hl) was not reachable when pressing 'G'
|
261
|
+
- **Fixed**: Improved scrolling behavior to properly handle wrapped lines using rcurses built-in capabilities
|
262
|
+
- **Fixed**: Split view navigation - g/G/Home/End/PgUp/PgDown now correctly affect the active pane
|
263
|
+
- **Added**: Wrap-around navigation in split view right pane (UP from first goes to last, DOWN from last goes to first)
|
264
|
+
- **Added**: Visual end-of-document indicator (blank line at bottom) for better UX
|
265
|
+
- **Improved**: Scroll calculations now dynamically account for line wrapping
|
266
|
+
|
267
|
+
### v1.1.0 (2025-08-12)
|
268
|
+
- Added encryption support for sensitive documents
|
269
|
+
- Enhanced presentation mode
|
270
|
+
- Various bug fixes and improvements
|
271
|
+
|
257
272
|
## License
|
258
273
|
|
259
274
|
This software is released into the **Public Domain**.
|