rcurses 5.1.1 → 5.1.3
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 +10 -1
- data/lib/rcurses/pane.rb +28 -5
- data/lib/rcurses.rb +1 -1
- 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: c4d7bebb69ba43f7cc3d5bcb19898b554d06ca7d238c826f2222822ab699e5a0
|
4
|
+
data.tar.gz: 2e96402c39a1005574b32014a42e20088d900ca79734938b45586bc45826b299
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: de02f1b55081905e4a34ac88ee15e39f3ca7c0d08e57e01f7513cd5100647c38f8db25ddfcb56797bf31311d5e0e51c26bede41a0c74a1d72811b678c7492396
|
7
|
+
data.tar.gz: 66f9f70ac65f4e481dafa257cb7bea926e22f7fbc4a107abacfd0c21cf9fc2bed8d63bac413ac395be68855a00deb1bf5dc39f2a4658ca3f501a08d46b8c2e8c
|
data/README.md
CHANGED
@@ -248,7 +248,7 @@ Try this in `irb`:
|
|
248
248
|
```
|
249
249
|
require 'rcurses'
|
250
250
|
@max_h, @max_w = IO.console.winsize
|
251
|
-
mypane = Pane.new(@max_w/2, 30, 30, 10, 19, 229)
|
251
|
+
mypane = Rcurses::Pane.new(@max_w/2, 30, 30, 10, 19, 229)
|
252
252
|
mypane.border = true
|
253
253
|
mypane.text = "Hello".i + " World!".b.i + "\n \n" + "rcurses".r + " " + "is cool".c("16,212")
|
254
254
|
mypane.refresh
|
@@ -258,6 +258,15 @@ mypane.edit
|
|
258
258
|
|
259
259
|
And - try running the example file `rcurses_example.rb`.
|
260
260
|
|
261
|
+
# Version History
|
262
|
+
|
263
|
+
## v5.1.2 (2025-08-13)
|
264
|
+
- Added comprehensive scrolling best practices documentation (SCROLLING_BEST_PRACTICES.md)
|
265
|
+
- Documentation improvements for developers implementing scrollable panes
|
266
|
+
|
267
|
+
## v5.1.1
|
268
|
+
- Bug fixes and stability improvements
|
269
|
+
|
261
270
|
# Not yet implemented
|
262
271
|
Let me know what other features you like to see.
|
263
272
|
|
data/lib/rcurses/pane.rb
CHANGED
@@ -255,9 +255,12 @@ module Rcurses
|
|
255
255
|
pl = @w - Rcurses.display_width(@txt[l].pure)
|
256
256
|
pl = 0 if pl < 0
|
257
257
|
hl = pl / 2
|
258
|
-
|
259
|
-
if
|
260
|
-
|
258
|
+
|
259
|
+
# Check if text has ANSI background colors (48 or 4x codes)
|
260
|
+
has_bg_color = @txt[l] =~ /\e\[(?:\d+;)*4[0-9](?:;\d+)*m/ || @txt[l] =~ /\e\[(?:\d+;)*48(?:;\d+)*m/
|
261
|
+
|
262
|
+
if @skip_colors || (@txt[l].include?("\e[") && !@bg)
|
263
|
+
# No pane colors to apply, or text has ANSI but pane has no bg
|
261
264
|
case @align
|
262
265
|
when "l"
|
263
266
|
line_str = @txt[l] + " " * pl
|
@@ -266,8 +269,28 @@ module Rcurses
|
|
266
269
|
when "c"
|
267
270
|
line_str = " " * hl + @txt[l] + " " * (pl - hl)
|
268
271
|
end
|
272
|
+
elsif @txt[l].include?("\e[") && @bg && !has_bg_color
|
273
|
+
# Text has ANSI codes but no bg color - apply pane fg and bg to text and padding
|
274
|
+
case @align
|
275
|
+
when "l"
|
276
|
+
line_str = @txt[l].c(fmt) + " ".c(fmt) * pl
|
277
|
+
when "r"
|
278
|
+
line_str = " ".c(fmt) * pl + @txt[l].c(fmt)
|
279
|
+
when "c"
|
280
|
+
line_str = " ".c(fmt) * hl + @txt[l].c(fmt) + " ".c(fmt) * (pl - hl)
|
281
|
+
end
|
282
|
+
elsif @txt[l].include?("\e[") && has_bg_color
|
283
|
+
# Text has its own bg color - preserve it, only apply pane bg to padding
|
284
|
+
case @align
|
285
|
+
when "l"
|
286
|
+
line_str = @txt[l] + " ".c(fmt) * pl
|
287
|
+
when "r"
|
288
|
+
line_str = " ".c(fmt) * pl + @txt[l]
|
289
|
+
when "c"
|
290
|
+
line_str = " ".c(fmt) * hl + @txt[l] + " ".c(fmt) * (pl - hl)
|
291
|
+
end
|
269
292
|
else
|
270
|
-
#
|
293
|
+
# No ANSI codes - apply pane colors normally
|
271
294
|
case @align
|
272
295
|
when "l"
|
273
296
|
line_str = @txt[l].c(fmt) + " ".c(fmt) * pl
|
@@ -278,7 +301,7 @@ module Rcurses
|
|
278
301
|
end
|
279
302
|
end
|
280
303
|
else
|
281
|
-
# Empty line
|
304
|
+
# Empty line
|
282
305
|
line_str = @skip_colors ? " " * @w : " ".c(fmt) * @w
|
283
306
|
end
|
284
307
|
|
data/lib/rcurses.rb
CHANGED
@@ -5,7 +5,7 @@
|
|
5
5
|
# Web_site: http://isene.com/
|
6
6
|
# Github: https://github.com/isene/rcurses
|
7
7
|
# License: Public domain
|
8
|
-
# Version: 4.9.
|
8
|
+
# Version: 4.9.4: Added scrolling best practices documentation
|
9
9
|
|
10
10
|
require 'io/console' # Basic gem for rcurses
|
11
11
|
require 'io/wait' # stdin handling
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rcurses
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 5.1.
|
4
|
+
version: 5.1.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Geir Isene
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-08-
|
11
|
+
date: 2025-08-14 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: clipboard
|