Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
16 changes: 16 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# libtsm Release News

## CHANGES WITH 4.7.0
### New cursor interface:
A new tsm_screen_get_cursor_style() interface is available, that provides the current
style of the cursor.

### New features
* screen/vte: add cursor style support via DECSCUSR (CSI Ps SP q) by @underscoreevelyn in https://github.com/kmscon/libtsm/pull/58

### Bug Fixes
* Fix backward selection by @kdj0c in https://github.com/kmscon/libtsm/pull/54
* Fix also clear the character value for multi-width character. by @kdj0c in https://github.com/kmscon/libtsm/pull/56
* screen: don't clear cells when resizing by @kdj0c in https://github.com/kmscon/libtsm/pull/61

## New Contributors
* @underscoreevelyn made their first contribution in https://github.com/kmscon/libtsm/pull/58

## CHANGES WITH 4.6.0
### New draw2 interface
A new tsm_screen_draw2() interface is available that provides a simplified drawing API.
Expand Down
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
project(
'libtsm',
'c',
version: '4.6.0',
version: '4.7.0',
license: 'MIT',
meson_version: '>=1.1',
default_options: [
Expand Down
Loading