Bundle cleanup

This commit is contained in:
Anuken
2018-07-26 14:19:58 -04:00
parent 583342b430
commit 2a6ee6d65b
3 changed files with 5 additions and 6 deletions

View File

@@ -154,12 +154,10 @@ project(":core") {
compileOnly project(":annotations") compileOnly project(":annotations")
build.finalizedBy(finish) build.finalizedBy(finish)
boolean comp = System.properties["release"] == null || System.properties["release"] == "false" def comp = System.properties["release"] == null || System.properties["release"] == "false"
if(!comp){ if(!comp){
println("NOTICE: Compiling release build.") println("Note: Compiling release build.")
}else{
println("Compiling DEBUG build.")
} }
if(new File(projectDir.parent, '../uCore').exists() && comp){ if(new File(projectDir.parent, '../uCore').exists() && comp){

View File

@@ -1,4 +1,4 @@
text.about=Created by [ROYAL]Anuken[] - [SKY]anukendev@gmail.com[] text.credits.text=Created by [ROYAL]Anuken[] - [SKY]anukendev@gmail.com[]\n\n[GRAY](In case you can't tell, this text is currently unfinished.\nTranslators, don't edit it yet!)
text.credits=Credits text.credits=Credits
text.discord=Join the mindustry discord! text.discord=Join the mindustry discord!
text.link.discord.description=the official Mindustry discord chatroom text.link.discord.description=the official Mindustry discord chatroom
@@ -530,3 +530,4 @@ block.liquid-junction.name=Liquid Junction
block.bridge-conduit.name=Bridge Conduit block.bridge-conduit.name=Bridge Conduit
block.rotary-pump.name=Rotary Pump block.rotary-pump.name=Rotary Pump
block.nuclear-reactor.name=Nuclear Reactor block.nuclear-reactor.name=Nuclear Reactor
block.interceptor-factory.name=Interceptor Factory

View File

@@ -93,7 +93,7 @@ public class AboutDialog extends FloatingDialog{
public void showCredits(){ public void showCredits(){
FloatingDialog dialog = new FloatingDialog("$text.credits"); FloatingDialog dialog = new FloatingDialog("$text.credits");
dialog.addCloseButton(); dialog.addCloseButton();
dialog.content().add("$text.about"); dialog.content().add("$text.credits.text");
dialog.show(); dialog.show();
} }
} }