From 46a5cde77c54ff0532ff9ab3b89e0b882058f235 Mon Sep 17 00:00:00 2001 From: X Code Date: Sun, 20 Feb 2022 08:27:47 -0800 Subject: [PATCH] Bug fix for text direction rtl --- CHANGELOG.md | 3 +++ lib/src/models/documents/attribute.dart | 1 + pubspec.yaml | 2 +- 3 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d00c61d0..267a26c5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +# [4.0.4] +* Bug fix for text direction rtl. + # [4.0.3] * Support text direction rtl. diff --git a/lib/src/models/documents/attribute.dart b/lib/src/models/documents/attribute.dart index fe2832da..13b6b482 100644 --- a/lib/src/models/documents/attribute.dart +++ b/lib/src/models/documents/attribute.dart @@ -32,6 +32,7 @@ class Attribute { Attribute.placeholder.key: Attribute.placeholder, Attribute.header.key: Attribute.header, Attribute.align.key: Attribute.align, + Attribute.direction.key: Attribute.direction, Attribute.list.key: Attribute.list, Attribute.codeBlock.key: Attribute.codeBlock, Attribute.blockQuote.key: Attribute.blockQuote, diff --git a/pubspec.yaml b/pubspec.yaml index 382f7ca4..339d0ade 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,6 +1,6 @@ name: flutter_quill description: A rich text editor supporting mobile and web (Demo App @ bulletjournal.us) -version: 4.0.3 +version: 4.0.4 #author: bulletjournal homepage: https://bulletjournal.us/home/index.html repository: https://github.com/singerdmx/flutter-quill