Skip to content

Commit

Permalink
Bump version to 9.0.1.
Browse files Browse the repository at this point in the history
Add license to mods.toml.
Fix crash due to method not being reobfuscated.
  • Loading branch information
iChun committed Jul 29, 2020
1 parent 9867b80 commit c047c37
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ apply plugin: 'net.minecraftforge.gradle'
apply plugin: 'eclipse'
apply plugin: 'maven-publish'

version = '9.0.0'
version = '9.0.1'
group = 'tabula'
archivesBaseName = 'Tabula-1.16.1'

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,13 @@

import me.ichun.mods.tabula.client.tabula.Mainframe;
import net.minecraft.client.gui.IGuiEventListener;
import net.minecraft.client.gui.INestedGuiEventHandler;

import javax.annotation.Nullable;
import java.util.List;

public interface IProjectInfo
public interface IProjectInfo extends INestedGuiEventHandler
{
//because I'm lazy
List<? extends IGuiEventListener> getEventListeners();

/**
* Called before projectChanged(PROJECT) (ideally)
* @param info
Expand Down
1 change: 1 addition & 0 deletions src/main/resources/META-INF/mods.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
modLoader="javafml"
loaderVersion="[32,)" #forge version dep
license="GNU Lesser General Public License v3.0"
issueTrackerURL="https://github.com/iChun/Tabula/issues"

[[mods]]
Expand Down

0 comments on commit c047c37

Please sign in to comment.