hyperlist 1.1.7 → 1.2.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/CHANGELOG.md +33 -0
- data/README.md +22 -5
- data/hyperlist +371 -31
- data/hyperlist.gemspec +1 -1
- metadata +5 -13
- data/debug_instructions.md +0 -112
- data/diagnose.rb +0 -115
- data/diagnose_ruby34.rb +0 -145
- data/diagnose_ruby34_detailed.rb +0 -156
- data/diagnose_safe.rb +0 -198
- data/fix_terminal.sh +0 -33
- data/hyperlist_ruby34_wrapper.rb +0 -57
- data/rcurses_ruby34_patch.rb +0 -149
- /data/{hyperlist_logo.svg → img/hyperlist_logo.svg} +0 -0
- /data/{screenshot_help.png → img/screenshot_help.png} +0 -0
- /data/{screenshot_sample.png → img/screenshot_sample.png} +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e1c9c82471f26ff3363e0d2f801b674798a0ed546f2677c78cb7a72c16e204ba
|
4
|
+
data.tar.gz: e92235369181f6a47ceeba5b01feb6815d4a747df38726a8dc3dcd9f3079b009
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b8c282ad98e05174eb963429a36eca1a430b75f2be77d04bd07bb0ed7abf5b68a372c4b84697ae69bcc7f25f4236763ed72909983b9bb8819ec331d3518050bf
|
7
|
+
data.tar.gz: e8ad2e4f881b4082dfe593df2cd23c4ee7a54a9f277b143d013112b0f5c79386a8581812453ce700959a642c689fd2c057e9739f5f3e9578b95ff743a0bb058e
|
data/CHANGELOG.md
CHANGED
@@ -2,6 +2,39 @@
|
|
2
2
|
|
3
3
|
All notable changes to the HyperList Ruby TUI will be documented in this file.
|
4
4
|
|
5
|
+
## [1.2.2] - 2025-08-20
|
6
|
+
|
7
|
+
### Fixed
|
8
|
+
- Fixed encoding compatibility error when decrypting files (UTF-8 vs ASCII-8BIT)
|
9
|
+
- Force UTF-8 encoding on decrypted content and text processing
|
10
|
+
|
11
|
+
### Added
|
12
|
+
- Auto-fold encrypted files on open for privacy (fold level 0)
|
13
|
+
- Display "folded for privacy" message when opening encrypted files
|
14
|
+
|
15
|
+
## [1.2.1] - 2025-08-20
|
16
|
+
|
17
|
+
### Fixed
|
18
|
+
- Fixed crash when opening encrypted dot files (footer not initialized)
|
19
|
+
- Added password confirmation when encrypting files for the first time
|
20
|
+
- Improved initialization order to ensure UI components are ready before file loading
|
21
|
+
|
22
|
+
## [1.2.0] - 2025-08-20
|
23
|
+
|
24
|
+
### Added
|
25
|
+
- **User-Defined Templates**
|
26
|
+
- Save any HyperList document as a reusable template (`:st` or `:save-template`)
|
27
|
+
- Template manager for listing and deleting custom templates (`:lt`, `:dt`)
|
28
|
+
- Enhanced template browser showing both built-in and user templates
|
29
|
+
- Template metadata including description and creation date
|
30
|
+
- Templates stored in `~/.hyperlist/templates/` for easy backup and sharing
|
31
|
+
- JSON format for template storage with full hierarchy preservation
|
32
|
+
|
33
|
+
### Changed
|
34
|
+
- Template system now supports both built-in and user-created templates
|
35
|
+
- Template browser UI improved with separate sections for built-in vs user templates
|
36
|
+
- Help documentation updated with new template commands
|
37
|
+
|
5
38
|
## [1.1.7] - 2025-08-15
|
6
39
|
|
7
40
|
### Fixed
|
data/README.md
CHANGED
@@ -6,7 +6,8 @@
|
|
6
6
|
[](https://github.com/isene/HyperList/stargazers)
|
7
7
|
[](https://isene.org)
|
8
8
|
|
9
|
-
<img src="hyperlist_logo.svg" align="left" width="150" height="150">
|
9
|
+
<img src="img/hyperlist_logo.svg" align="left" width="150" height="150">
|
10
|
+
<br clear="left"/>
|
10
11
|
|
11
12
|
A powerful Terminal User Interface (TUI) application for creating, editing, and managing HyperLists - a methodology for describing anything in a hierarchical, structured format.
|
12
13
|
|
@@ -23,12 +24,21 @@ For historical context and the original VIM implementation, see: [hyperlist.vim]
|
|
23
24
|
## Screenshots
|
24
25
|
|
25
26
|
### Main Interface
|
26
|
-

|
27
|
+

|
27
28
|
|
28
29
|
### Help Screen
|
29
|
-

|
30
|
+

|
31
|
+
|
32
|
+
## What's New in v1.2.0
|
30
33
|
|
31
|
-
|
34
|
+
### 📝 User-Defined Templates
|
35
|
+
- **Save as Template**: Save any HyperList document as a reusable template (`:st`)
|
36
|
+
- **Template Manager**: List and delete your custom templates (`:lt`, `:dt`)
|
37
|
+
- **Enhanced Template Browser**: Shows both built-in and user templates
|
38
|
+
- **Template Metadata**: Includes description and creation date
|
39
|
+
- Templates stored in `~/.hyperlist/templates/` for easy backup and sharing
|
40
|
+
|
41
|
+
## Previous Updates (v1.1.0)
|
32
42
|
|
33
43
|
### 🔐 Encryption Support
|
34
44
|
- **File-level encryption** for sensitive files (dot files like `.passwords.hl`)
|
@@ -62,7 +72,7 @@ For historical context and the original VIM implementation, see: [hyperlist.vim]
|
|
62
72
|
- **Powerful Navigation**: Jump between items, references, and markers
|
63
73
|
- **Full Editing Capabilities**: Create, edit, delete, move, and reorganize items
|
64
74
|
- **Checkbox Support**: Multiple checkbox types with completion tracking
|
65
|
-
- **Template System**:
|
75
|
+
- **Template System**: Built-in templates plus save/load custom templates
|
66
76
|
- **Presentation Mode**: Focus on current item with auto-collapse
|
67
77
|
|
68
78
|
### Security Features
|
@@ -158,6 +168,7 @@ hyperlist file.txt # Open any text file
|
|
158
168
|
- `R` - Go to reference
|
159
169
|
- `F` - Open file reference
|
160
170
|
- `P` - Presentation mode (with auto-collapse)
|
171
|
+
- `t` - Insert template (built-in or custom)
|
161
172
|
- `?` - Help screen
|
162
173
|
|
163
174
|
#### File Commands
|
@@ -169,6 +180,12 @@ hyperlist file.txt # Open any text file
|
|
169
180
|
- `:export md` - Export to Markdown
|
170
181
|
- `:graph` - Export to PNG
|
171
182
|
|
183
|
+
#### Template Commands
|
184
|
+
- `:st` - Save current document as template
|
185
|
+
- `:dt` - Delete a user template
|
186
|
+
- `:lt` - List all user templates
|
187
|
+
- `t` - Browse and insert templates
|
188
|
+
|
172
189
|
## Examples
|
173
190
|
|
174
191
|
### Simple Todo List
|