hyperlist 1.10.0 → 1.11.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/CHANGELOG.md +8 -0
- data/hyperlist +6 -5
- data/hyperlist.gemspec +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: 29de7b1cd2d218f83a202716aee22e7482faae29c441581a6c6f3ee6df3d0f76
|
|
4
|
+
data.tar.gz: c9f90af14cf2a878a27c5b65d5315ea38a6e97a4bf5846ea398fe5483e165d01
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4e4ac0f6c1ea821bed75348a1a700fc7717217c897c4a7f45ed092d419f4d9f91e99996f873b8205f4bf138aebe35353d46868298e25fa884886bdfedee8abc8
|
|
7
|
+
data.tar.gz: 3b46de1faf666012364789efee80fadd5b7bd489686487389895f056905db53fffd1160b30a6d46217433bbc2e1dca5d428b41fce72438496c835c89091029cb
|
data/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,14 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to the HyperList Ruby TUI will be documented in this file.
|
|
4
4
|
|
|
5
|
+
## [1.11.0] - 2026-08-13
|
|
6
|
+
|
|
7
|
+
### Changed
|
|
8
|
+
- Starters are magenta rather than red. `+` and `-` are line-leading
|
|
9
|
+
structure markers, the same role a numbering Identifier plays, so they
|
|
10
|
+
share its colour instead of sitting with Properties and dates.
|
|
11
|
+
- The `-` Starter is now coloured as well, not only `+`.
|
|
12
|
+
|
|
5
13
|
## [1.10.0] - 2026-08-11
|
|
6
14
|
|
|
7
15
|
### Changed
|
data/hyperlist
CHANGED
|
@@ -73,7 +73,7 @@ class HyperListApp
|
|
|
73
73
|
include Rcurses::Input
|
|
74
74
|
include Rcurses::Cursor
|
|
75
75
|
|
|
76
|
-
VERSION = "1.
|
|
76
|
+
VERSION = "1.11.0"
|
|
77
77
|
|
|
78
78
|
def initialize(filename = nil)
|
|
79
79
|
@filename = filename ? File.expand_path(filename) : nil
|
|
@@ -1575,10 +1575,11 @@ class HyperListApp
|
|
|
1575
1575
|
result = result.sub(/^[0-9][0-9A-Z.]*\s/, identifier.fg(colors["magenta"])) # Magenta for identifiers
|
|
1576
1576
|
end
|
|
1577
1577
|
|
|
1578
|
-
# Handle
|
|
1579
|
-
# Based on hyperlist.vim: '^\(\t\|\*\)
|
|
1580
|
-
|
|
1581
|
-
|
|
1578
|
+
# Handle the Starter at the beginning (+ or - with space)
|
|
1579
|
+
# Based on hyperlist.vim: '^\(\t\|\*\)*[+-] '. Magenta, the same as a
|
|
1580
|
+
# numbering Identifier: both are line-leading structure markers.
|
|
1581
|
+
if result =~ /^[+-]\s/
|
|
1582
|
+
result = result.sub(/^([+-])\s/) { "#{$1}".fg(colors["magenta"]) + " " }
|
|
1582
1583
|
end
|
|
1583
1584
|
|
|
1584
1585
|
# Handle continuation markers (+ at start of indented lines in References section)
|
data/hyperlist.gemspec
CHANGED