You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+32-2Lines changed: 32 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -22,7 +22,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
22
22
23
23
## [Unreleased]
24
24
### Added
25
-
-Add `filters` parameter to `poEditorConfig` block to specify the POEditor filters to use for all languages.
25
+
-No new features!
26
26
### Changed
27
27
- No changed features!
28
28
### Deprecated
@@ -34,6 +34,35 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
34
34
### Security
35
35
- No security issues fixed!
36
36
37
+
## [2.4.0] - 2021-07-26
38
+
### Added
39
+
- Add `filters` parameter to `poEditorConfig` block to specify the POEditor filters to use for all languages. _Thanks to [@nokite](https://github.com/nokite) for the contribution!_
40
+
<detailsopen><summary>Groovy</summary>
41
+
42
+
```groovy
43
+
poEditor {
44
+
apiToken = "your_api_token"
45
+
projectId = 12345
46
+
defaultLang = "en"
47
+
filters = ["translated", "not_fuzzy"]
48
+
}
49
+
```
50
+
51
+
</details>
52
+
53
+
<details><summary>Kotlin</summary>
54
+
55
+
```kotlin
56
+
poEditor {
57
+
apiToken ="your_api_token"
58
+
projectId =12345
59
+
defaultLang ="en"
60
+
filters =listOf("translated", "not_fuzzy")
61
+
}
62
+
```
63
+
64
+
</details>
65
+
37
66
## [2.3.0] - 2021-07-22
38
67
### Added
39
68
- Add some code style rules to be shared via editorconfig (`insert_final_newline=false`). _Thanks to [@nokite](https://github.com/nokite) for the contribution!_
0 commit comments