Closes #1404: Added logo to AE2

This commit is contained in:
thatsIch 2015-05-07 17:46:38 +02:00
parent e6e1771349
commit 81464d7de1
4 changed files with 19 additions and 19 deletions

View file

@ -104,6 +104,7 @@ sourceSets {
"assets/appliedenergistics2/textures/guis/*", "assets/appliedenergistics2/textures/guis/*",
"assets/appliedenergistics2/textures/models/*", "assets/appliedenergistics2/textures/models/*",
"assets/appliedenergistics2/textures/items/*", "assets/appliedenergistics2/textures/items/*",
"assets/appliedenergistics2/meta/*",
"mcmod.info", "mcmod.info",
"pack.mcmeta" "pack.mcmeta"
} }

View file

@ -22,6 +22,8 @@ package appeng.transformer;
import java.util.Map; import java.util.Map;
import javax.annotation.Nullable; import javax.annotation.Nullable;
import com.google.common.eventbus.EventBus;
import cpw.mods.fml.common.DummyModContainer; import cpw.mods.fml.common.DummyModContainer;
import cpw.mods.fml.common.LoadController; import cpw.mods.fml.common.LoadController;
import cpw.mods.fml.common.Mod.EventHandler; import cpw.mods.fml.common.Mod.EventHandler;
@ -31,8 +33,6 @@ import cpw.mods.fml.relauncher.FMLRelaunchLog;
import cpw.mods.fml.relauncher.IFMLLoadingPlugin; import cpw.mods.fml.relauncher.IFMLLoadingPlugin;
import cpw.mods.fml.relauncher.IFMLLoadingPlugin.MCVersion; import cpw.mods.fml.relauncher.IFMLLoadingPlugin.MCVersion;
import com.google.common.eventbus.EventBus;
import appeng.core.AEConfig; import appeng.core.AEConfig;
@ -51,6 +51,7 @@ public final class AppEngCore extends DummyModContainer implements IFMLLoadingPl
this.metadata.version = this.getVersion(); this.metadata.version = this.getVersion();
this.metadata.name = this.getName(); this.metadata.name = this.getName();
this.metadata.url = "http://ae2.ae-mod.info"; this.metadata.url = "http://ae2.ae-mod.info";
this.metadata.logoFile = "assets/appliedenergistics2/meta/logo.png";
this.metadata.description = "Embedded Coremod for Applied Energistics 2"; this.metadata.description = "Embedded Coremod for Applied Energistics 2";
} }
@ -105,7 +106,7 @@ public final class AppEngCore extends DummyModContainer implements IFMLLoadingPl
@Override @Override
public String getName() public String getName()
{ {
return "AppliedEnergistics2 Core"; return "Applied Energistics 2 Core";
} }
@Override @Override

Binary file not shown.

After

Width:  |  Height:  |  Size: 229 KiB

View file

@ -1,19 +1,17 @@
[ [
{ {
"modid":"appliedenergistics2", "modid":"appliedenergistics2",
"name":"Applied Energistics 2", "name":"Applied Energistics 2",
"description":"A Mod about Matter, Energy and using them to conquer the world..", "description":"A Mod about Matter, Energy and using them to conquer the world..",
"version":"${version}", "version":"${version}",
"mcversion":"${mcversion}", "mcversion":"${mcversion}",
"url":"http://ae2.ae-mod.info", "url":"http://ae2.ae-mod.info",
"updateUrl":"", "updateUrl":"",
"authorList":[ "authorList":[
"AlgorithmX2" "AlgorithmX2"
], ],
"credits":"AlgorithmX2", "credits":"AlgorithmX2",
"logoFile":"", "logoFile":"assets/appliedenergistics2/meta/logo.png",
"screenshots":[ "screenshots":[]
}
]
}
] ]