New languages screen (#595)
* added a dictionary size property * new language selection screen * added a language search field * SettingsStore now return a copy of the enabled languages to prevent accidental overwriting of the original settings object
This commit is contained in:
parent
76099862e5
commit
2eea62b26f
34 changed files with 540 additions and 160 deletions
|
|
@ -2,8 +2,9 @@ ext.getDictionaryProperties = { dictionariesDir, sizesDir ->
|
|||
fileTree(dir: dictionariesDir).getFiles().parallelStream().forEach {dictionary ->
|
||||
def hash = dictionary.exists() ? dictionary.text.digest("SHA-1") : ""
|
||||
def revision = dictionary.exists() ? exec("git log --pretty=tformat:%H -n 1 ${dictionary}") : ""
|
||||
def size = dictionary.exists() ? dictionary.length() : 0
|
||||
def words = dictionary.exists() ? dictionary.text.split("\n").length : 0
|
||||
|
||||
new File(sizesDir, "${dictionary.getName()}.props.yml").text = "hash: ${hash}\nrevision: ${revision}\nwords: ${words}"
|
||||
new File(sizesDir, "${dictionary.getName()}.props.yml").text = "hash: ${hash}\nrevision: ${revision}\nsize: ${size}\nwords: ${words}"
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue