mirror of
https://github.com/GravitLauncher/Launcher
synced 2025-04-02 22:41:56 +03:00
Names for optional mods
This commit is contained in:
parent
ef57f8b02f
commit
31efe31e81
1 changed files with 12 additions and 2 deletions
|
@ -59,7 +59,17 @@ function updateOptional()
|
||||||
var list = profile.getOptional();
|
var list = profile.getOptional();
|
||||||
var checkboxlist = new java.util.ArrayList;
|
var checkboxlist = new java.util.ArrayList;
|
||||||
list.forEach(function(modfile,i,arr) {
|
list.forEach(function(modfile,i,arr) {
|
||||||
var testMod = new javafx.scene.control.CheckBox(modfile.string);
|
var modName = modfile.string;
|
||||||
|
if(optModNames.modName[modfile.string] != null){
|
||||||
|
modName = optModNames.modName[modfile.string];
|
||||||
|
} else if(optModNames.optAutoModName) {
|
||||||
|
//Попытка автоматически создать представляемое имя модификации.
|
||||||
|
modName = modName.replace(new RegExp("(.*?(\/))",'g'),'');
|
||||||
|
modName = modName.replace(new RegExp("(-|_|[\\d]|\\+).*",'g'),'');
|
||||||
|
//Первая буква - заглавная
|
||||||
|
modName = modName[0].toUpperCase() + modName.slice(1);
|
||||||
|
}
|
||||||
|
var testMod = new javafx.scene.control.CheckBox(modName);
|
||||||
|
|
||||||
testMod.setSelected(modfile.mark);
|
testMod.setSelected(modfile.mark);
|
||||||
testMod.setOnAction(function(event) {
|
testMod.setOnAction(function(event) {
|
||||||
|
@ -78,4 +88,4 @@ function updateOptional()
|
||||||
checkboxlist.add(testMod);
|
checkboxlist.add(testMod);
|
||||||
});
|
});
|
||||||
holder.getChildren().addAll(checkboxlist);
|
holder.getChildren().addAll(checkboxlist);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue