Skip to content

Commit e25fc24

Browse files
committed
Bump version
1 parent b3c17c0 commit e25fc24

File tree

3 files changed

+57
-1
lines changed

3 files changed

+57
-1
lines changed

.github/workflows/autotag.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Create Tag
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
8+
jobs:
9+
build:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@v2
13+
- uses: jacopocarlini/action-autotag@3.0.0
14+
env:
15+
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
16+
with:
17+
tag_prefix: "v"

CHANGELOG.md

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
## [3.3.0] - 2022-9-13
2+
* Sync ShortcutManager's shortcuts in didUpdateWidget [#140], thanks [@jpnurmi].
3+
* fix: terminal font size not respecting system level font scale [#138], thanks [@LucasAschenbach].
4+
* Fix selection color [#135], thanks [@jpnurmi].
5+
* fix: dispose controllers of TerminalView [#132], thanks [@tauu].
6+
* feat: add hardwareKeyboardOnly flag to TerminalView [#131], thanks [@tauu].
7+
* feat: initial mouse support [#130], thanks [@tauu].
8+
* feat: limited window manipulation support [#129], thanks [@tauu].
9+
* fix: workaround to draw underlined spaces [#128], thanks [@tauu].
10+
* feat: block selection [#127], thanks [@tauu].
11+
* feat: enable changing the inputHandler of a terminal [#126], thanks [@tauu].
12+
* fix: export TerminalTargetPlatform [#125], thanks [@tauu].
13+
* fix: only dispose the FocusNodes which TerminalView creates [#124], thanks [@tauu].
14+
* feat: expose readOnly flag of CustomTextEdit in TerminalView [#123], thanks [@tauu].
15+
* fix: supports numpad enter key [#137].
16+
* feat: expose `reflowEnabled` flag [#104].
17+
* docs: add virtual keyboard example [#141].
18+
119
## [3.2.7] - 2022-9-13
220
* Fix lint issues.
321

@@ -174,6 +192,9 @@
174192
[@michaellee8]: https://github.com/michaellee8
175193
[@linhanyu]: https://github.com/linhanyu
176194
[@jda258]: https://github.com/jda258
195+
[@jpnurmi]: https://github.com/jpnurmi
196+
[@LucasAschenbach]: https://github.com/LucasAschenbach
197+
[@tauu]: https://github.com/tauu
177198

178199
[#40]: https://github.com/TerminalStudio/xterm.dart/pull/40
179200
[#43]: https://github.com/TerminalStudio/xterm.dart/pull/43
@@ -197,3 +218,21 @@
197218
[#69]: https://github.com/TerminalStudio/xterm.dart/pull/69
198219
[#74]: https://github.com/TerminalStudio/xterm.dart/pull/74
199220
[#77]: https://github.com/TerminalStudio/xterm.dart/pull/77
221+
222+
[#104]: https://github.com/TerminalStudio/xterm.dart/issues/104
223+
[#123]: https://github.com/TerminalStudio/xterm.dart/pull/123
224+
[#124]: https://github.com/TerminalStudio/xterm.dart/pull/124
225+
[#125]: https://github.com/TerminalStudio/xterm.dart/pull/125
226+
[#126]: https://github.com/TerminalStudio/xterm.dart/pull/126
227+
[#127]: https://github.com/TerminalStudio/xterm.dart/pull/127
228+
[#128]: https://github.com/TerminalStudio/xterm.dart/pull/128
229+
[#129]: https://github.com/TerminalStudio/xterm.dart/pull/129
230+
[#130]: https://github.com/TerminalStudio/xterm.dart/pull/130
231+
[#131]: https://github.com/TerminalStudio/xterm.dart/pull/131
232+
[#132]: https://github.com/TerminalStudio/xterm.dart/pull/132
233+
[#135]: https://github.com/TerminalStudio/xterm.dart/pull/135
234+
[#137]: https://github.com/TerminalStudio/xterm.dart/issues/137
235+
[#138]: https://github.com/TerminalStudio/xterm.dart/pull/138
236+
[#140]: https://github.com/TerminalStudio/xterm.dart/pull/140
237+
[#141]: https://github.com/TerminalStudio/xterm.dart/pull/141
238+

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: xterm
22
description: xterm.dart is a fast and fully-featured terminal emulator for Flutter applications, with support for mobile and desktop platforms.
3-
version: 3.2.7
3+
version: 3.3.0
44
homepage: https://github.com/TerminalStudio/xterm.dart
55

66
environment:

0 commit comments

Comments
 (0)