Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
9cc84b0
wip: fix missalignement and glitch with fullwidth char for DOM back
benoitlx Nov 20, 2025
a07b2c1
fix: multiple width glyph support for DomBackend
benoitlx Nov 24, 2025
57003c2
feat: get buffer size from utils
benoitlx Nov 24, 2025
202de01
fix: fix resize for DomBackend
benoitlx Nov 25, 2025
026aaf9
fix: cursor for DomBackend
benoitlx Nov 26, 2025
c46f010
feat(examples): add fullwidth glyph in demo2 emails
benoitlx Nov 26, 2025
94af383
feat: unicode example from #121
benoitlx Dec 1, 2025
a8aec5c
chore: don't mind hyperlinks - expand unicode example
benoitlx Dec 1, 2025
84f34ec
fix: avoiding vertical flickering
benoitlx Jan 8, 2026
34b9f54
fix: unicode example name and removing external css
benoitlx Jan 8, 2026
cf57427
fix: removing unecessary cursor attribute
benoitlx Jan 8, 2026
2a85786
refactor: custom type for css attribute
benoitlx Jan 8, 2026
d3efe9c
perf: avoid calling width method for ascii char
benoitlx Jan 8, 2026
5e360bf
fix: prevent OOB access
benoitlx Jan 8, 2026
d22b6b7
style: update rustdoc comment
benoitlx Jan 8, 2026
aeec0fe
refactor: remove unecessary temp vector
benoitlx Jan 8, 2026
f5404df
refactor: simplify the update_css_field function
benoitlx Jan 14, 2026
5b2802d
test: update_css_field util function
benoitlx Jan 14, 2026
6a9658f
ops: test targetting wasm32 using wasm-pack
benoitlx Jan 14, 2026
af532bf
Merge branch 'main' into main
benoitlx Jan 14, 2026
ed9b721
fix build for unicode example
benoitlx Jan 14, 2026
cee37bf
style: style test
benoitlx Jan 15, 2026
9456213
ops: install wasm-pack from source
benoitlx Jan 15, 2026
6567fa5
refactor: remove unnecessary import
benoitlx Jan 15, 2026
05b1fa2
ops: install wasm-pack with taiki-e install action
benoitlx Jan 15, 2026
5a72c7c
style: import to the top, docstrings
benoitlx Jan 15, 2026
a2fda8b
build: don't specify a version range for unicode-width
benoitlx Jan 16, 2026
0ccf953
refactor: get cells by reference instead of cloning them
benoitlx Jan 16, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,10 @@ jobs:
- uses: actions/checkout@v4
- name: Install Rust
uses: dtolnay/rust-toolchain@stable
- name: Install wasm-pack
uses: taiki-e/install-action@v2
with:
tool: wasm-pack
- name: cargo generate-lockfile
if: hashFiles('Cargo.lock') == ''
run: cargo generate-lockfile
Expand All @@ -78,6 +82,8 @@ jobs:
run: cargo test --doc --all-features
- name: Cache Cargo dependencies
uses: Swatinem/rust-cache@v2
- name: Run browser headless tests
Comment thread
benoitlx marked this conversation as resolved.
run: wasm-pack test --firefox --headless

generate-template:
runs-on: ubuntu-latest
Expand Down
Loading
Loading