Skip to content

Commit 2eabb88

Browse files
committed
Improve package score.
1 parent a598b7f commit 2eabb88

3 files changed

Lines changed: 9 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 2.0.13
2+
3+
* Improve package score.
4+
15
## 2.0.12
26

37
* Improve package score.

lib/src/paragraph.dart

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -774,7 +774,9 @@ void _resolveImplicitTypes(
774774
// Rule I2.
775775
if (t == CharacterType.ltr ||
776776
t == CharacterType.an ||
777-
t == CharacterType.en) textData[i].embeddingLevel += 1;
777+
t == CharacterType.en) {
778+
textData[i].embeddingLevel += 1;
779+
}
778780
}
779781
}
780782
}

pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: bidi
22
description: Implementation of the Unicode Bidirectional Algorithm (UBA). Converts logical strings to their equivalent visual representation.
3-
version: 2.0.12
3+
version: 2.0.13
44
repository: https://github.com/xclud/dart_bidi
55
homepage: https://pwa.ir
66

@@ -9,4 +9,4 @@ environment:
99

1010
dev_dependencies:
1111
test: ^1.25.0
12-
lints: ^4.0.0
12+
lints: ^5.0.0

0 commit comments

Comments
 (0)