Skip to content

Releases: hyperdevs-team/poeditor-android-gradle-plugin

3.3.1

20 Mar 14:42
380cbca
Compare
Choose a tag to compare

Changed

  • Roll back to AGP 7.2.2 and Java 8 until further notice.

3.3.0

20 Mar 14:37
84d2056
Compare
Choose a tag to compare

Changed

  • Bump project dependencies
  • Project is now compiled against Java 11

Fixed

  • Fix unexpected plug-in crash when PoEditor responses return no result. Thanks to @MartinakDaniel for the contribution!

3.2.0

22 Jan 18:54
c0ac25a
Compare
Choose a tag to compare

Added

  • Add option to unquote strings via export API

3.1.1

27 Dec 10:08
32d44d7
Compare
Choose a tag to compare

Fixed

  • Fix order setter not added to PoEditorPluginExtension

3.1.0

16 Nov 14:04
fc96896
Compare
Choose a tag to compare

Added

  • Add configuration support to define custom resource file names. Thanks to @gustavaa for the contribution!
  • Add configuration support to define how to order the export. Thanks to @WarrenFaith for the contribution!

3.0.1

18 Sep 20:50
06e82ed
Compare
Choose a tag to compare

Fixed

  • Fix Chinese variants support
  • Fix Indonesian, Hebrew and Yiddish support

3.0.0

03 Feb 21:19
0661fe5
Compare
Choose a tag to compare

Changed

  • BREAKING: Update dependencies to work with Android Gradle Plugin 7.+. This will break compatibility with
    projects that use versions lower than 7.0

2.4.2

17 Oct 20:24
Compare
Choose a tag to compare

Changed

  • Change detekt rules according to library update to version 1.18.1

Removed

  • Remove jcenter() from project.

2.4.1

16 Sep 07:08
b5d84b1
Compare
Choose a tag to compare

Fixed

  • Fix CDATA strings not parsed correctly
  • Fix < and > not getting properly unescaped in CDATA strings

2.4.0

26 Jul 20:24
3127f56
Compare
Choose a tag to compare

Added

  • Add filters parameter to poEditorConfig block to specify the POEditor filters to use for all languages. Thanks to @nokite for the contribution!
Groovy
poEditor {
    apiToken = "your_api_token"
    projectId = 12345
    defaultLang = "en"
    filters = ["translated", "not_fuzzy"]
}
Kotlin
poEditor {
    apiToken = "your_api_token"
    projectId = 12345
    defaultLang = "en"
    filters = listOf("translated", "not_fuzzy")
}