Fix subscript (#1204)

pull/1205/head
jiangchong 2 years ago committed by GitHub
parent 6614030ae5
commit ccdb88fb9a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      CHANGELOG.md
  2. 2
      flutter_quill_extensions/pubspec.yaml
  3. 2
      lib/src/models/documents/attribute.dart
  4. 2
      pubspec.yaml

@ -1,3 +1,6 @@
# [7.1.16]
- Fixed subscript key from 'sup' to 'sub'.
# [7.1.15]
- Fixed a bug introduced in 7.1.7 where each section in `QuillToolbar` was displayed on its own line.

@ -12,7 +12,7 @@ dependencies:
flutter:
sdk: flutter
flutter_quill: ^7.1.15
flutter_quill: ^7.1.16
image_picker: ^0.8.5+3
photo_view: ^0.14.0

@ -373,7 +373,7 @@ class ScriptAttribute extends Attribute<String?> {
enum ScriptAttributes {
sup('super'),
sub('sup');
sub('sub');
const ScriptAttributes(this.value);

@ -1,6 +1,6 @@
name: flutter_quill
description: A rich text editor supporting mobile and web (Demo App @ bulletjournal.us)
version: 7.1.15
version: 7.1.16
#author: bulletjournal
homepage: https://bulletjournal.us/home/index.html
repository: https://github.com/singerdmx/flutter-quill

Loading…
Cancel
Save