Upgrade to 6.1.1

pull/994/head
X Code 2 years ago
parent ee1775349c
commit d15174e4b6
  1. 3
      CHANGELOG.md
  2. 7
      lib/src/widgets/style_widgets/number_point.dart
  3. 2
      pubspec.yaml

@ -1,3 +1,6 @@
# [6.1.1]
* Fix order list numbering.
# [6.1.0]
* Add keyboard shortcuts for editor actions.

@ -82,11 +82,14 @@ class QuillNumberPoint extends StatelessWidget {
final builder = StringBuffer();
for (var a = 0; a < arabianRomanNumbers.length; a++) {
final times = (num / arabianRomanNumbers[a]).truncate(); // equals 1 only when arabianRomanNumbers[a] = num
final times = (num / arabianRomanNumbers[a])
.truncate(); // equals 1 only when arabianRomanNumbers[a] = num
// executes n times where n is the number of times you have to add
// the current roman number value to reach current num.
builder.write(romanNumbers[a] * times);
num -= times * arabianRomanNumbers[a]; // subtract previous roman number value from num
num -= times *
arabianRomanNumbers[
a]; // subtract previous roman number value from num
}
return builder.toString().toLowerCase();

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

Loading…
Cancel
Save