diff --git a/README.md b/README.md index 874364c..aa75ac1 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 } ``` @@ -88,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"