@gajae-code/tui 0.14.2 → 0.15.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 (2) hide show
  1. package/CHANGELOG.md +5 -0
  2. package/package.json +4 -4
package/CHANGELOG.md CHANGED
@@ -2,6 +2,11 @@
2
2
 
3
3
  ## [Unreleased]
4
4
 
5
+ ## [0.15.0] - 2026-08-22
6
+
7
+ ### Fixed
8
+ - OSC 8 hyperlinks now survive soft wrapping: a rendered URL longer than the terminal width keeps the identical clickable target on every visual row across narrow↔wide resize reflow, instead of rendering continuation rows as plain text; links no longer bleed over adjacent punctuation or hard-newline-adjacent text, and copy/select of a wrapped link returns the original URL with no injected control bytes (#4711).
9
+
5
10
  ## [0.14.2] - 2026-08-20
6
11
 
7
12
  ## [0.14.1] - 2026-08-18
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "type": "module",
3
3
  "name": "@gajae-code/tui",
4
- "version": "0.14.2",
4
+ "version": "0.15.0",
5
5
  "description": "Terminal User Interface library with differential rendering for efficient text-based applications",
6
6
  "homepage": "https://gajae-code.com",
7
7
  "author": "Yeachan-Heo and Gajae Code Contributors",
@@ -36,8 +36,8 @@
36
36
  "fmt": "biome format --write ."
37
37
  },
38
38
  "dependencies": {
39
- "@gajae-code/natives": "0.14.2",
40
- "@gajae-code/utils": "0.14.2",
39
+ "@gajae-code/natives": "0.15.0",
40
+ "@gajae-code/utils": "0.15.0",
41
41
  "lru-cache": "11.3.6",
42
42
  "marked": "18.0.6"
43
43
  },
@@ -47,7 +47,7 @@
47
47
  "node-pty": "^1.0.0"
48
48
  },
49
49
  "engines": {
50
- "bun": ">=1.3.14"
50
+ "bun": ">=1.4.0"
51
51
  },
52
52
  "files": [
53
53
  "src",