Skip to content

Commit 279dbdc

Browse files
super_editor v0.3.0-dev.3
1 parent 3b3f5c2 commit 279dbdc

File tree

2 files changed

+29
-7
lines changed

2 files changed

+29
-7
lines changed

super_editor/CHANGELOG.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,25 @@
1+
## [0.3.0-dev.3] - Aug 16, 2024
2+
* DEPENDENCY: Upgraded `super_text_layout` to `v0.1.11`.
3+
* BREAKING: Remove `nodes` list from `Document` API in preparation for immutable `Document`s.
4+
* BREAKING: When inserting new nodes, make copies of the provided nodes instead of
5+
retaining the original node, so that undo/redo can restore the original state.
6+
* FEATURE: Undo/redo (partial implementation, off by default).
7+
* FEATURE: Can apply arbitrary underline decorations to text in documents.
8+
* ADJUSTMENT: Deprecated `document` and `composer` properties of `SuperEditor` - they're not read
9+
directly from the `Editor`.
10+
* ADJUSTMENT: Added extension methods on `Editor` to access `document` and `composer` directly.
11+
* ADJUSTMENT: Selection-by-word on Android.
12+
* ADJUSTMENT: Mobile text selection handle appearance.
13+
* ADJUSTMENT: Dragging to change selection on Android plays haptic feedback.
14+
* FIX: Crash on long press over non-text node.
15+
* FIX: Caret was blinking while being dragged (should stop blinking).
16+
* FIX: Crash when merging paragraphs (Mac).
17+
* FIX: Exception thrown when pressing ESC while composing an action tag.
18+
* FIX: Vertical scrolling on multi-line `SuperTextField` now works.
19+
* FIX: List item component styles are respected when the stylesheet doesn't specify
20+
list item styles.
21+
* FIX: Horizontal drag and editor scrolling.
22+
123
## [0.3.0-dev.2] - July 2, 2024
224
* DEPENDENCY: Upgraded `attributed_text` to `v0.3.2`.
325
* FEATURE: Tasks can now be indented.

super_editor/pubspec.yaml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: super_editor
22
description: Configurable, composable, extensible text editor and document renderer for Flutter.
3-
version: 0.3.0-dev.2
3+
version: 0.3.0-dev.3
44
homepage: https://github.com/superlistapp/super_editor
55

66
screenshots:
@@ -28,7 +28,7 @@ dependencies:
2828
http: ">=0.13.1 <2.0.0"
2929
linkify: ^5.0.0
3030
logging: ^1.0.1
31-
super_text_layout: ^0.1.10
31+
super_text_layout: ^0.1.11
3232
url_launcher: ^6.1.9
3333
uuid: ^4.0.0
3434
overlord: ^0.0.3+5
@@ -39,13 +39,13 @@ dependencies:
3939
flutter_test_robots: ^0.0.24
4040
clock: ^1.1.1
4141

42-
dependency_overrides:
42+
#dependency_overrides:
4343
# Override to local mono-repo path so devs can test this repo
4444
# against changes that they're making to other mono-repo packages
45-
attributed_text:
46-
path: ../attributed_text
47-
super_text_layout:
48-
path: ../super_text_layout
45+
# attributed_text:
46+
# path: ../attributed_text
47+
# super_text_layout:
48+
# path: ../super_text_layout
4949

5050
dev_dependencies:
5151
flutter_lints: ^2.0.1

0 commit comments

Comments
 (0)