-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge Forge + Fabric Versions + Update to 1.4.1
--- Minor Changes Forge side. Update Fabric side to 1.4.0 Standard Signed-off-by: AterAnimAvis <[email protected]>
- Loading branch information
1 parent
5657e91
commit 4d91b13
Showing
156 changed files
with
3,153 additions
and
335 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
15 changes: 15 additions & 0 deletions
15
common/src/main/java/com/unascribed/blockrenderer/Reference.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,15 @@ | ||
package com.unascribed.blockrenderer; | ||
|
||
import com.unascribed.blockrenderer.varia.VersionUtilities; | ||
|
||
import java.util.Objects; | ||
|
||
public interface Reference { | ||
|
||
String ID = "block_renderer"; | ||
String NAME = "BlockRenderer"; | ||
String VERSION = VersionUtilities.getSpecificationVersion(Reference.class).orElse("DEVELOPMENT"); | ||
|
||
boolean DEVELOPMENT = Objects.equals(VERSION, "DEVELOPMENT"); | ||
|
||
} |
File renamed without changes.
5 changes: 3 additions & 2 deletions
5
...erer/client/render/IAnimatedRenderer.java → ...ockrenderer/render/IAnimatedRenderer.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
4 changes: 2 additions & 2 deletions
4
...lockrenderer/client/render/IRenderer.java → ...ribed/blockrenderer/render/IRenderer.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
2 changes: 1 addition & 1 deletion
2
...blockrenderer/client/render/IRequest.java → ...cribed/blockrenderer/render/IRequest.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
2 changes: 1 addition & 1 deletion
2
...t/render/request/lambda/ImageHandler.java → ...r/render/request/lambda/ImageHandler.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
4 changes: 4 additions & 0 deletions
4
common/src/main/java/com/unascribed/blockrenderer/render/request/lambda/package-info.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,4 @@ | ||
@NonnullDefault | ||
package com.unascribed.blockrenderer.render.request.lambda; | ||
|
||
import org.lwjgl.system.NonnullDefault; |
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
4 changes: 2 additions & 2 deletions
4
...ed/blockrenderer/client/varia/Images.java → ...nascribed/blockrenderer/varia/Images.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
Oops, something went wrong.