hyperlist 1.0.0 → 1.1.1
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 +28 -0
- data/README.md +77 -3
- data/hyperlist +1017 -337
- data/hyperlist.gemspec +2 -2
- data/hyperlist_logo.svg +77 -0
- data/test.hl +4 -19
- metadata +4 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 10f2b53172c39e8c3f02c88a6749d11080ae57e94be88b33799423659e9a296e
|
4
|
+
data.tar.gz: 828f3bf3b19cfcbba5b62d4646986436d4697aaf67c4acad9a0b9c377854ec2e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8559bf830b3a84d4da628b1a71c688dc1e709f5db318ea687f1cd965d248c99c80c42f1277659d33d5a5db6bbcc8a5cecd9c4df9c325feb789f2e99dbfe5dfc0
|
7
|
+
data.tar.gz: aae7369fcc3be669ab163c0c5c56aba720a043206211e49f2075faae5a1a994092c1dd9576e4454a168636a2f72a60e6a9c8bf8045852f9c2944c49e4bfaef38
|
data/CHANGELOG.md
CHANGED
@@ -2,6 +2,34 @@
|
|
2
2
|
|
3
3
|
All notable changes to the HyperList Ruby TUI will be documented in this file.
|
4
4
|
|
5
|
+
## [1.1.0] - 2025-08-13
|
6
|
+
|
7
|
+
### Added
|
8
|
+
- **Encryption Support**
|
9
|
+
- File-level encryption for sensitive files (automatic for dot files)
|
10
|
+
- Line-level encryption for individual items (Ctrl-E to toggle)
|
11
|
+
- Secure AES-256-CBC encryption with PBKDF2 key derivation
|
12
|
+
- Password caching for the session
|
13
|
+
- Visual indicators for encrypted content (lock icon)
|
14
|
+
|
15
|
+
- **Enhanced Presentation Mode**
|
16
|
+
- Auto-collapse everything outside the current context
|
17
|
+
- Smart focus showing only current item, ancestors, and immediate children
|
18
|
+
- Visual hierarchy with focused items in full color, others greyed out
|
19
|
+
- Proper cursor tracking when folding changes
|
20
|
+
|
21
|
+
### Changed
|
22
|
+
- **Improved Visual Experience**
|
23
|
+
- Current line highlighting now uses dark gray background instead of reverse video
|
24
|
+
- Preserves all syntax colors when items are selected
|
25
|
+
- Search highlighting no longer overrides text colors
|
26
|
+
- More subtle and professional appearance
|
27
|
+
|
28
|
+
### Fixed
|
29
|
+
- Cursor position tracking in presentation mode when folds change
|
30
|
+
- Cache invalidation issues in presentation mode
|
31
|
+
- Navigation responsiveness improvements
|
32
|
+
|
5
33
|
## [1.0.0] - 2025-08-12
|
6
34
|
|
7
35
|
### Initial Release
|
data/README.md
CHANGED
@@ -1,7 +1,17 @@
|
|
1
|
-
# HyperList
|
1
|
+
# HyperList TUI
|
2
|
+
|
3
|
+
[](https://badge.fury.io/rb/hyperlist)
|
4
|
+
[](https://unlicense.org/)
|
5
|
+
[](https://www.ruby-lang.org/)
|
6
|
+
[](https://github.com/isene/HyperList/stargazers)
|
7
|
+
[](https://isene.org)
|
8
|
+
|
9
|
+
<img src="hyperlist_logo.svg" align="left" width="150" height="150">
|
2
10
|
|
3
11
|
A powerful Terminal User Interface (TUI) application for creating, editing, and managing HyperLists - a methodology for describing anything in a hierarchical, structured format.
|
4
12
|
|
13
|
+
<br clear="left"/>
|
14
|
+
|
5
15
|
## What is HyperList?
|
6
16
|
|
7
17
|
HyperList is a universal methodology for describing anything - any state, item, pattern, action, process, transition, program, instruction set, etc. It can be used as an outliner, a todo list handler, a process design tool, a data modeler, or any other way you want to describe something.
|
@@ -10,6 +20,33 @@ Learn more about the HyperList methodology at: [https://isene.org/hyperlist/](ht
|
|
10
20
|
|
11
21
|
For historical context and the original VIM implementation, see: [hyperlist.vim](https://github.com/isene/hyperlist.vim)
|
12
22
|
|
23
|
+
## Screenshots
|
24
|
+
|
25
|
+
### Main Interface
|
26
|
+

|
27
|
+
|
28
|
+
### Help Screen
|
29
|
+

|
30
|
+
|
31
|
+
## What's New in v1.1.0
|
32
|
+
|
33
|
+
### 🔐 Encryption Support
|
34
|
+
- **File-level encryption** for sensitive files (dot files like `.passwords.hl`)
|
35
|
+
- **Line-level encryption** for individual items (Ctrl-E to toggle)
|
36
|
+
- Secure AES-256-CBC encryption with PBKDF2 key derivation
|
37
|
+
- Password caching for the session
|
38
|
+
|
39
|
+
### 🎯 Enhanced Presentation Mode
|
40
|
+
- **Auto-collapse** everything outside the current context
|
41
|
+
- **Smart focus**: Shows only current item, ancestors, and immediate children
|
42
|
+
- **Visual hierarchy**: Focused items in full color, others greyed out
|
43
|
+
- Improved navigation with proper cursor tracking
|
44
|
+
|
45
|
+
### 🎨 Better Visual Experience
|
46
|
+
- **Improved highlighting**: Dark gray background preserves syntax colors
|
47
|
+
- **Subtle selection**: No more harsh reverse video
|
48
|
+
- **Preserved colors**: All HyperList elements maintain their colors when selected
|
49
|
+
|
13
50
|
## Features
|
14
51
|
|
15
52
|
### Core Functionality
|
@@ -26,7 +63,13 @@ For historical context and the original VIM implementation, see: [hyperlist.vim]
|
|
26
63
|
- **Full Editing Capabilities**: Create, edit, delete, move, and reorganize items
|
27
64
|
- **Checkbox Support**: Multiple checkbox types with completion tracking
|
28
65
|
- **Template System**: Jump to and fill in template markers
|
29
|
-
- **Presentation Mode**: Focus on current item
|
66
|
+
- **Presentation Mode**: Focus on current item with auto-collapse
|
67
|
+
|
68
|
+
### Security Features
|
69
|
+
- **Encryption**: Protect sensitive data with AES-256 encryption
|
70
|
+
- **Automatic detection**: Dot files automatically prompt for encryption
|
71
|
+
- **Line-level security**: Encrypt individual sensitive items
|
72
|
+
- **Visual indicators**: Encrypted lines show lock icon
|
30
73
|
|
31
74
|
### Text Formatting
|
32
75
|
- **Bold**: `*text*`
|
@@ -47,6 +90,7 @@ For historical context and the original VIM implementation, see: [hyperlist.vim]
|
|
47
90
|
- Multiple file support with recent files list
|
48
91
|
- Autosave functionality with configurable intervals
|
49
92
|
- Split view for working with multiple lists
|
93
|
+
- Encryption support for sensitive files
|
50
94
|
|
51
95
|
## Installation
|
52
96
|
|
@@ -74,6 +118,7 @@ chmod +x hyperlist
|
|
74
118
|
```bash
|
75
119
|
hyperlist # Start with empty document
|
76
120
|
hyperlist file.hl # Open existing HyperList file
|
121
|
+
hyperlist .passwords.hl # Open encrypted file (will prompt for password)
|
77
122
|
hyperlist file.txt # Open any text file
|
78
123
|
```
|
79
124
|
|
@@ -109,9 +154,10 @@ hyperlist file.txt # Open any text file
|
|
109
154
|
#### Features
|
110
155
|
- `v` - Toggle checkbox
|
111
156
|
- `V` - Toggle checkbox with timestamp
|
157
|
+
- `C-E` - Encrypt/decrypt current line
|
112
158
|
- `R` - Go to reference
|
113
159
|
- `F` - Open file reference
|
114
|
-
- `P` - Presentation mode
|
160
|
+
- `P` - Presentation mode (with auto-collapse)
|
115
161
|
- `?` - Help screen
|
116
162
|
|
117
163
|
#### File Commands
|
@@ -138,6 +184,19 @@ Daily Tasks
|
|
138
184
|
[ ] Afternoon tasks
|
139
185
|
```
|
140
186
|
|
187
|
+
### Encrypted Password Manager
|
188
|
+
Save as `.passwords.hl` for automatic encryption:
|
189
|
+
```
|
190
|
+
Online Accounts
|
191
|
+
GitHub
|
192
|
+
Username: myuser
|
193
|
+
Password: [will be encrypted]
|
194
|
+
2FA: enabled
|
195
|
+
Banking
|
196
|
+
Account: 12345678
|
197
|
+
PIN: [will be encrypted]
|
198
|
+
```
|
199
|
+
|
141
200
|
### Project Structure
|
142
201
|
```
|
143
202
|
MyProject #project
|
@@ -195,6 +254,21 @@ Follow the instructions in the test file to verify all features are working corr
|
|
195
254
|
|
196
255
|
Contributions are welcome! Please feel free to submit issues and pull requests.
|
197
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
|
+
|
198
272
|
## License
|
199
273
|
|
200
274
|
This software is released into the **Public Domain**.
|