Skip to content

Commit cdbeba7

Browse files
authored
prepare v0.1.6 (#13) (#14)
1 parent d449454 commit cdbeba7

File tree

6 files changed

+23
-8
lines changed

6 files changed

+23
-8
lines changed

CHANGELOG.md

Lines changed: 18 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,28 @@
11
# Changelog
22

3-
## 0.1.5
3+
## 0.1.6
44

55
<!-- release:start -->
66

77
### Bug Fixes
88

9+
- Fixed **terminal height** — replaced `maxHeight` with deterministic `height` computed from `rows * rowHeight`, preventing layout drift caused by `getBoundingClientRect()` timing
10+
- Fixed **border rendering** — switched docs terminal borders from CSS `border` to `inset box-shadow` to avoid border-width interference with height calculations
11+
12+
### Improvements
13+
14+
- **Row height variable** — added `--term-row-height` CSS custom property so row and block heights are defined in one place
15+
16+
### Contributors
17+
18+
- @ctate
19+
20+
<!-- release:end -->
21+
22+
## 0.1.5
23+
24+
### Bug Fixes
25+
926
- Fixed **Shift key** producing input in the terminal when pressed alone
1027
- Fixed **focus scroll** — focusing the terminal no longer causes unwanted page scroll
1128
- Fixed **height lock**`maxHeight` calculation now accounts for `border-box` sizing and border widths
@@ -20,8 +37,6 @@
2037

2138
- @ctate
2239

23-
<!-- release:end -->
24-
2540
## 0.1.4
2641

2742
### Bug Fixes

packages/@wterm/core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@wterm/core",
3-
"version": "0.1.5",
3+
"version": "0.1.6",
44
"description": "Headless terminal emulator core for the web — WASM bridge and WebSocket transport",
55
"type": "module",
66
"main": "dist/index.js",

packages/@wterm/dom/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@wterm/dom",
3-
"version": "0.1.5",
3+
"version": "0.1.6",
44
"description": "DOM renderer, input handler, and orchestrator for wterm",
55
"type": "module",
66
"main": "dist/index.js",

packages/@wterm/just-bash/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@wterm/just-bash",
3-
"version": "0.1.5",
3+
"version": "0.1.6",
44
"description": "just-bash shell adapter for wterm — line editing, tab completion, history, prompt",
55
"type": "module",
66
"main": "dist/index.js",

packages/@wterm/markdown/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@wterm/markdown",
3-
"version": "0.1.5",
3+
"version": "0.1.6",
44
"description": "Streaming markdown-to-ANSI renderer for wterm terminals",
55
"type": "module",
66
"main": "dist/index.js",

packages/@wterm/react/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@wterm/react",
3-
"version": "0.1.5",
3+
"version": "0.1.6",
44
"description": "React component for wterm — a terminal emulator for the web",
55
"type": "module",
66
"main": "dist/index.js",

0 commit comments

Comments
 (0)