-
-
Notifications
You must be signed in to change notification settings - Fork 686
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implement support for Minecraft Education Edition 1.12.60
Changes: * Temporarily Disable Github Action * Add gamerule "codebuilder":"false" to disable MCEE code builder. * Update config.yml so that both an edition and version can be specified. That allows multiple version to be tracked. * Move away from static class to dependency injection. This allows versions to use the existing classes or redefine them. Instead of using Toolbox.something one uses GeyserEdition.TOOLBOX.something. * Move version specific classes into their own packages. As all classes are very intertwined this will require lots of testing to ensure it remains clear and simple without introducing too much baggage. * Where possible all version specific translations and mappings are provided in the GeyserEdition class for the specific version. This moves away from magic annotations as this does not allow one version to selectively use translators fromo other versions. * Move mappings to be namespaced by both the edition and version (resources/edition/version), with fullstops replaced with underscores (though I can't quite remember why now I did that). * Check for legacy SkinData
- Loading branch information
Showing
153 changed files
with
80,211 additions
and
2,199 deletions.
There are no files selected for viewing
File renamed without changes.
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,3 +1,6 @@ | ||
[submodule "connector/src/main/resources/mappings"] | ||
path = connector/src/main/resources/mappings | ||
[submodule "connector/src/main/resources/bedrock/1_14_60/mappings"] | ||
path = connector/src/main/resources/bedrock/1_14_60/mappings | ||
url = https://github.com/GeyserMC/mappings.git | ||
[submodule "connector/src/main/resources/education/1_12_60/mappings"] | ||
path = connector/src/main/resources/education/1_12_60/mappings | ||
url = https://github.com/Bundabrg/mappings-education.git |
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
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
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.