-
Notifications
You must be signed in to change notification settings - Fork 59
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
Showing
13 changed files
with
242 additions
and
38 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,12 +1,11 @@ | ||
### Additions | ||
* Dev mode now displays warnings and errors on recipes with resolution instructions | ||
|
||
### Tweaks | ||
* The recipe tree in newer versions without the vanilla dirt background will now use a nearly opaque black | ||
* EMI will now always return to the screen where recipes are being filled #581 | ||
* Item tooltips in EMI are now provided world context #575 | ||
* Adjusted input capturing behavior for non-primary mouse buttons #598 | ||
* Updated JEI integration for 1.21 and 1.20.6 #607 #577 | ||
|
||
### Fixes | ||
* Fixed enchantment related errors when rejoining a world | ||
* Fixed various creative search issues #573 #580 | ||
* Fixed fluids losing components in 1.21 #582 | ||
* Fluids with null still textures will no longer crash EMI #579 | ||
* Fixed 1.21 NeoForge access widener issue #590 | ||
* Fixed NeoForge packets in 1.20.6 | ||
* Fixed Fabric networking not working correctly #586 #584 | ||
* Fixed dynamic registry availability for stack serialization #532 | ||
* Fixed certain recipe ingredients having incorrect amounts starting in 1.1.8 #597 |
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
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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
package dev.emi.emi.runtime.dev; | ||
|
||
import java.util.Set; | ||
|
||
import net.minecraft.util.Identifier; | ||
|
||
public class EmiDev { | ||
public static Set<Identifier> duplicateRecipeIds = Set.of(); | ||
} |
13 changes: 13 additions & 0 deletions
13
xplat/src/main/java/dev/emi/emi/runtime/dev/RecipeError.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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
package dev.emi.emi.runtime.dev; | ||
|
||
import java.util.List; | ||
|
||
import net.minecraft.client.gui.tooltip.TooltipComponent; | ||
|
||
public record RecipeError(Severity severity, List<TooltipComponent> tooltip) { | ||
|
||
public static enum Severity { | ||
ERROR, | ||
WARNING | ||
} | ||
} |
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
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
Oops, something went wrong.