Skip to content

Commit

Permalink
0.2.8 - adds ignoreMissingTranslationWarnings
Browse files Browse the repository at this point in the history
  • Loading branch information
yannickpulver committed Apr 28, 2022
1 parent ef9f704 commit 58a5cc2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ buildscript {
dependencies {
//…
classpath 'com.appswithlove.loco:loco:0.2.7'
classpath 'com.appswithlove.loco:loco:0.2.8'
}
}
```
Expand Down Expand Up @@ -61,6 +61,7 @@ Loco {
status = "translated" // optional; filter assets by status. Negate values by prefixing with !. e.g. "translated", or "!fuzzy".
saveDefLangDuplicate = false // default: defLang will only be saved in values folder. If set to true, the defLang will also be saved in the specific folder (such as values-en)
resourceNamePrefix = null // optional: string prefix for all resource names (default: null, no prefix)
ignoreMissingTranslationWarnings = false // optional: use at your own risk, removes linting issues of missing translations
}
```

Expand Down Expand Up @@ -166,7 +167,7 @@ buildscript {
...
}
dependencies{
classpath 'com.appswithlove.loco:loco:0.2.7'
classpath 'com.appswithlove.loco:loco:0.2.8'
...
}
}
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ buildscript {
File[] contents = directory.listFiles();
if (contents == null || contents.length == 0) {
println("loco - mavenCentral version")
classpath "com.appswithlove.loco:loco:0.2.6"
classpath "com.appswithlove.loco:loco:0.2.7"
} else {
println("loco - local version")
classpath fileTree(include: ['*.jar'], dir: 'lib/build/libs')
Expand Down

0 comments on commit 58a5cc2

Please sign in to comment.