-
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
717fe76
commit 637cefd
Showing
7 changed files
with
41 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
mod_version=1.2.1 | ||
minecraft_version=1.15.2 | ||
forge_version=31.1.37 | ||
minecraft_version=1.16.4 | ||
forge_version=35.1.13 | ||
mcp_mappings_channel=snapshot | ||
mcp_mappings_version=20200225-1.15.1 | ||
cyclopscore_version=1.6.1-1063 | ||
mcp_mappings_version=20201028-1.16.3 | ||
cyclopscore_version=1.9.0-1148 | ||
release_type=release | ||
fingerprint=bd0353b3e8a2810d60dd584e256e364bc3bedd44 | ||
|
4 changes: 3 additions & 1 deletion
4
src/main/java/org/cyclops/iconexporter/client/gui/IExportTask.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,14 @@ | ||
package org.cyclops.iconexporter.client.gui; | ||
|
||
import com.mojang.blaze3d.matrix.MatrixStack; | ||
|
||
import java.io.IOException; | ||
|
||
/** | ||
* @author rubensworks | ||
*/ | ||
public interface IExportTask { | ||
|
||
public void run() throws IOException; | ||
public void run(MatrixStack matrixStack) throws IOException; | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,33 @@ | ||
modLoader="javafml" | ||
loaderVersion="[28.1,)" | ||
loaderVersion="[34,)" | ||
issueTrackerURL="https://github.com/CyclopsMC/IconExporter/issues" | ||
displayURL="https://www.curseforge.com/minecraft/mc-mods/iconexporter" | ||
license="MIT" | ||
logoFile="logo.png" | ||
authors="rubensworks (aka kroeser)" | ||
|
||
[[mods]] | ||
modId="iconexporter" | ||
version="${file.jarVersion}" | ||
displayName="IconExporter" | ||
displayURL="https://www.curseforge.com/minecraft/mc-mods/iconexporter" | ||
logoFile="logo.png" | ||
authors="rubensworks (aka kroeser)" | ||
description=''' | ||
Exports item and block icons to files. | ||
''' | ||
[[dependencies.iconexporter]] | ||
modId="cyclopscore" | ||
mandatory=true | ||
versionRange="[1.6.1,)" | ||
versionRange="[1.9.0,)" | ||
ordering="NONE" | ||
side="BOTH" | ||
[[dependencies.iconexporter]] | ||
modId="forge" | ||
mandatory=true | ||
versionRange="[31.1,)" | ||
versionRange="[34,)" | ||
ordering="NONE" | ||
side="BOTH" | ||
[[dependencies.iconexporter]] | ||
modId="minecraft" | ||
mandatory=true | ||
versionRange="[1.15.2]" | ||
versionRange="[1.16.2,]" | ||
ordering="NONE" | ||
side="BOTH" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"pack": { | ||
"description": "iconexporter resources", | ||
"pack_format": 4 | ||
"pack_format": 6 | ||
} | ||
} |