From 6845d1f8d82fee59753293ef7505ed3b84c48287 Mon Sep 17 00:00:00 2001 From: Vladislav Komkov Date: Thu, 7 May 2026 11:31:17 +0200 Subject: [PATCH 1/2] =?UTF-8?q?=F0=9F=93=9D=20Update=20readme=20configurat?= =?UTF-8?q?ion=20documentation?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 874364c..ee91f3d 100644 --- a/README.md +++ b/README.md @@ -27,9 +27,10 @@ The structure of this JSON is described in the example: "CZ": "cs", "FR-FR": "fr-rFR" // E.g. the column name is "FR-FR", the localizations will be saved to "values-fr-rFR" folder }, - "resourcesFolderPath": "libraries/translations/src/main/res" // Relative path to your "res" folder with respect to json configuration path - "supportEmptyStrings": false // Enables to support empty strings in the localization sheet - "resourcesStructure" : "ANDROID" // Structure of the generated resources files, could be ANDROID or MOKO_RESOURCES + "resourcesFolderPath": "libraries/translations/src/main/res", // Relative path to your "res" folder with respect to json configuration path + "supportEmptyStrings": false, // Enables to support empty strings in the localization sheet + "resourcesStructure" : "ANDROID", // Structure of the generated resources files, could be ANDROID or MOKO_RESOURCES + "escapeQuotes" : true // Whether escape quotes or not, disable this when working with Compose Resources } ``` From 5844c718f979bebc8f700ff74f27d9c55ae8a25b Mon Sep 17 00:00:00 2001 From: Vladislav Komkov Date: Thu, 7 May 2026 11:31:35 +0200 Subject: [PATCH 2/2] =?UTF-8?q?=F0=9F=94=96=20Bump=20up=20version?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 2 ++ plugin/build.gradle | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index ee91f3d..aa75ac1 100644 --- a/README.md +++ b/README.md @@ -89,6 +89,8 @@ test it in your project with the localizerSettings.xml like this: ``` ## Changelog +- `1.3.0` + - Support for Compose Resources quote escaping strategy - `1.2.2` - Support for Moko-resources localization file structure - `1.2.1` diff --git a/plugin/build.gradle b/plugin/build.gradle index 7f2008e..38a2cca 100644 --- a/plugin/build.gradle +++ b/plugin/build.gradle @@ -15,7 +15,7 @@ repositories { } group 'cz.ackee.localizer' -version '1.2.2' +version '1.3.0' def targetVersion = "2022.3.1.18"