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.
Files changed (5) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +8 -0
  3. data/hyperlist +6 -5
  4. data/hyperlist.gemspec +1 -1
  5. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b8d42e5386dc58dbdc20cd58047ccb03bbcb29d56980770a40a076a540a507cc
4
- data.tar.gz: 7afd2752e67c25575a5b3e76b7d567eab6d4520dfb322049b5b21f099e24d7ce
3
+ metadata.gz: 29de7b1cd2d218f83a202716aee22e7482faae29c441581a6c6f3ee6df3d0f76
4
+ data.tar.gz: c9f90af14cf2a878a27c5b65d5315ea38a6e97a4bf5846ea398fe5483e165d01
5
5
  SHA512:
6
- metadata.gz: 731e6c85e60c11b12e2d6b57769c49ca64c40a7250280548a43adcd82bab9a4e18d5cf3048c5e5a81955f16b919e287efb9e64b00c99925539326b578576bd60
7
- data.tar.gz: fd2ed40ca6aacf449f154c821774af8009b02cfbcbf0c387e27d547994274bfc490835973e01082c4ca3029171720fe4cd32d0105aa2b834964df7bf2a6c8051
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.10.0"
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 multi-line indicator at the beginning (+ with space)
1579
- # Based on hyperlist.vim: '^\(\t\|\*\)*+ '
1580
- if result =~ /^\+\s/
1581
- result = result.sub(/^(\+\s)/, "+".fg(colors["red"]) + " ") # Red for multi-line indicator
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
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |spec|
2
2
  spec.name = "hyperlist"
3
- spec.version = "1.10.0"
3
+ spec.version = "1.11.0"
4
4
  spec.authors = ["Geir Isene"]
5
5
  spec.email = ["g@isene.com"]
6
6
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hyperlist
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.10.0
4
+ version: 1.11.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Geir Isene