diff --git a/CHANGELOG.md b/CHANGELOG.md index a0d673c..9689819 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -34,10 +34,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Security - No security issues fixed! +## [4.1.2] - 2023-12-11 +### Fixed +- Fix default resource file name constant value. + ## [4.1.1] - 2023-12-11 ### Fixed -- Restore conventions for uninitialized properties -- Fix flavor-specific configs not picking up the default resource path for the brand +- Restore conventions for uninitialized properties. +- Fix flavor-specific configs not picking up the default resource path for the brand. ## [4.1.0] - 2023-11-26 ### Changed @@ -492,7 +496,8 @@ res_dir_path -> resDirPath ### Added - Initial release. -[Unreleased]: https://github.com/hyperdevs-team/poeditor-android-gradle-plugin/compare/4.1.1...HEAD +[Unreleased]: https://github.com/hyperdevs-team/poeditor-android-gradle-plugin/compare/4.1.2...HEAD +[4.1.2]: https://github.com/hyperdevs-team/poeditor-android-gradle-plugin/compare/4.1.0...4.1.2 [4.1.1]: https://github.com/hyperdevs-team/poeditor-android-gradle-plugin/compare/4.1.0...4.1.1 [4.1.0]: https://github.com/hyperdevs-team/poeditor-android-gradle-plugin/compare/4.0.0...4.1.0 [4.0.0]: https://github.com/hyperdevs-team/poeditor-android-gradle-plugin/compare/3.4.2...4.0.0 diff --git a/src/main/kotlin/com/hyperdevs/poeditor/gradle/DefaultValues.kt b/src/main/kotlin/com/hyperdevs/poeditor/gradle/DefaultValues.kt index c230364..87cd662 100644 --- a/src/main/kotlin/com/hyperdevs/poeditor/gradle/DefaultValues.kt +++ b/src/main/kotlin/com/hyperdevs/poeditor/gradle/DefaultValues.kt @@ -32,7 +32,7 @@ object DefaultValues { internal val TAGS = emptyList() internal val LANGUAGE_VALUES_OVERRIDE_PATH_MAP = emptyMap() internal val MINIMUM_TRANSLATION_PERCENTAGE = -1 - internal val RES_FILE_NAME = "string" + internal val RES_FILE_NAME = "strings" internal val UNQUOTED = false internal val UNESCAPE_HTML_TAGS = true