Skip to content

2.3.0

Choose a tag to compare

@adriangl adriangl released this 22 Jul 19:17
· 55 commits to master since this release
b3576aa

Added

  • Add some code style rules to be shared via editorconfig (insert_final_newline=false). Thanks to @nokite for the contribution!
  • Add minimumTranslationPercentage parameter to poEditorConfig block to specify the minimum accepted percentage of translated strings per language. Thanks to @nokite for the contribution!
Groovy
poEditor {
    apiToken = "your_api_token"
    projectId = 12345
    defaultLang = "en"
    minimumTranslationPercentage = 85
}
Kotlin
poEditor {
    apiToken = "your_api_token"
    projectId = 12345
    defaultLang = "en"
    minimumTranslationPercentage = 85
}

Changed

  • The XML attribute encoding in the generated string resource files is now lowercase utf-8. Thanks to @nokite for the contribution!
  • Migrate to PoEditor API v2.
  • Update some dependencies (Gradle 6.9, Kotlin 1.4.20, Moshi 1.12.0, OkHttp 4.9.1, Junit 4.13.2). Thanks to @nokite for the contribution!
  • Update deprecated Gradle property classifier to archiveClassifier Thanks to @nokite for the contribution!
  • Update Project.xml (matching Android Studio 4.2.1) Thanks to @nokite for the contribution!