-
Notifications
You must be signed in to change notification settings - Fork 6
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
18 changed files
with
138 additions
and
235 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
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,204 +1,103 @@ | ||
Build: 1.18.1-39.0.19 - Wed Jan 12 02:00:21 GMT 2022 | ||
35673674+alcatrazescapee: | ||
Rework world persistence hooks to fix the double registry injection when loading single player worlds. (#8234) | ||
1.19.x Changelog | ||
41.0 | ||
==== | ||
- 41.0.35 Fix EnumArgument to use enum names for suggestions (#8728) | ||
Previously, the suggestions used the string representation of the enum | ||
through Enum#toString, which can differ from the name of the enum as | ||
required by Enum#valueOf, causing invalid suggestions (both in gui and | ||
through the error message). | ||
- 41.0.34 Jar-In-Jar (#8715) | ||
- 41.0.33 [1.19] Fix data-gen output path of custom data-pack registries (#8724) | ||
- 41.0.32 Fix player dive and surface animations in custom fluids (#8738) | ||
- 41.0.31 [1.19.x] Affect ItemEntity Motion in Custom Fluids (#8737) | ||
- 41.0.30 [1.19] Add support for items to add enchantments without setting them in NBT (#8719) | ||
- 41.0.29 [1.19.x] Add stock biome modifier types for adding features and spawns (#8697) | ||
- 41.0.28 [1.19.x] Fluid API Overhaul (#8695) | ||
- 41.0.27 Replace StructureSpawnListGatherEvent with StructureModifiers (#8717) | ||
- 41.0.26 Use stack sensitive translation key by default for FluidAttributes. (#8707) | ||
- 41.0.25 Delete LootItemRandomChanceCondition which added looting bonus enchantment incorrectly. (#8733) | ||
- 41.0.24 Update EventBus to 6.0, ModLauncher to 10.0.1 and BootstrapLauncher to 1.1 (#8725) | ||
- 41.0.23 Replace support bot with support action (#8700) | ||
- 41.0.22 Fix Reach Distance / Attack Range being clamped at 6.0 (#8699) | ||
- 41.0.21 [1.19.x] Fix mods' worldgen data not being loaded when creating new singleplayer worlds (#8693) | ||
- 41.0.20 [1.19.x] Fix experimental confirmation screen (#8727) | ||
- 41.0.19 Move is_mountain to forge's tag instead of vanilla's (#8726) | ||
- 41.0.18 [1.19.x] Add CommandBuildContext to Register Command Events (#8716) | ||
- 41.0.17 Only rewrite datagen cache when needed (#8709) | ||
- 41.0.16 Implement a simple feature system for Forge (#8670) | ||
* Implement a simple feature system for Forge. Allows mods to demand certain features are available in the loading system. An example for java_version is provided, but not expected to be used widely. This is more targeted to properties of the display, such as GL version and glsl profile. | ||
Requires https://github.com/MinecraftForge/ForgeSPI/pull/13 to be merged first in ForgeSPI, and the SPI to be updated appropriately in build.gradle files. | ||
* rebase onto 1.19 and add in SPI update | ||
- 41.0.15 displayTest option in mods.toml (#8656) | ||
* displayTest option in mods.toml | ||
* "MATCH_VERSION" (or none) is existing match version string behaviour | ||
* "IGNORE_SERVER_VERSION" accepts anything and sends special SERVERONLY string | ||
* "IGNORE_ALL_VERSION" accepts anything and sends an empty string | ||
* "NONE" allows the mod to supply their own displaytest using the IExtensionPoint mechanism. | ||
* Update display test with feedback and added the mods.toml discussion in mdk. | ||
- 41.0.14 Update forgeSPI to v5 (#8696) | ||
- 41.0.13 Make IVertexConsumers such as the lighting pipeline, be aware of which format they are dealing with. (#8692) | ||
Also fix Lighting pipeline ignoring the overlay coords from the block renderer. | ||
- 41.0.12 Fixed misaligned patch to invalidateCaps in Entity (#8705) | ||
- 41.0.11 Fix readAdditionalLevelSaveData (#8704) | ||
- 41.0.10 Fixes setPos to syncPacketPositionCodec (#8702) | ||
- 41.0.9 Fix wrong param passed to PlayLevelSoundEvent.AtEntity (#8688) | ||
- 41.0.8 Override initialize in SlotItemHandler, so it uses the itemhandler instead of container (#8679) | ||
- 41.0.7 Update MDK for 1.19 changes (#8675) | ||
- 41.0.6 Add helper to RecipeType, and fix eclipse compiler error in test class. | ||
- 41.0.5 Update modlauncher to latest (#8691) | ||
- 41.0.4 Fix getting entity data serializer id crashing due to improper port to new registry system (#8678) | ||
- 41.0.3 Fire registry events in the order vanilla registers to registries (#8677) | ||
Custom registries are still fired in alphabetical order, after all vanilla registries. | ||
Move forge's data_serializers registry to forge namespace. | ||
- 41.0.2 Add method with pre/post wrap to allow setting/clearing mod context. (#8682) | ||
Fixes ActiveContainer in ModContext not being present in registry events. Closes #8680 | ||
- 41.0.1 Fix the Curlie oopsie | ||
- 41.0.0 Forge 1.19 | ||
* Bump pack.mcmeta formats | ||
* 1.19 biome modifiers | ||
* Mark ClientPlayerNetworkEvent.LoggedOutEvent's getters as nullable | ||
* Add docs and package-info to client extension interfaces package | ||
* Move RenderBlockOverlayEvent hooks to ForgeHooksClient | ||
* Add package-infos to client events package | ||
* Rename SoundLoadEvent to SoundEngineLoadEvent | ||
This reduces confusion from consumers which may think the | ||
name SoundLoadEvent refers to an individual sound being loaded rather | ||
than the sound engine. | ||
* Document and change SoundLoadEvent to fire on mod bus | ||
Previously, it fired on both the mod bus and the Forge bus, which is | ||
confusing for consumers. | ||
* Delete SoundSetupEvent | ||
Looking at its original implementation shows that there isn't an | ||
appropriate place in the new sound code to reinsert the event, and the | ||
place of 'sound engine/manager initialization event' is taken already by SoundLoadEvent. | ||
* Perform some cleanup on client events | ||
- Removed nullable annotations from ClientPlayerNetworkEvent | ||
- Renamed #getPartialTicks methods to #getPartialTick, to be consistent | ||
with vanilla's naming of the partial tick | ||
- Cleanup documentation to remove line breaks, use the | ||
spelling 'cancelled' over | ||
'canceled', and improve docs on existing and | ||
new methods. | ||
* Remove EntityEvent.CanUpdate | ||
Closes MinecraftForge/MinecraftForge#6394 | ||
* Switch to Jetbrains nullability annotations | ||
* New PlayLevelSoundEvent; replaces old PlaySoundAtEntityEvent | ||
* Remove ForgeWorldPresetScreens | ||
* Remove IForgeRegistryEntry | ||
* Remove use of List<Throwable> in FML's CompletableFutures | ||
* Add docs to mod loading stages, stages, and phases | ||
* Gradle 7.4.2 | ||
* Use SLF4J in FMLLoader and other subprojects | ||
* Switch dynamic versions in subprojects to pinned ones | ||
* Switch ForgeRoot and MDK to FG plugin markers | ||
* Configure Forge javadoc task | ||
The task now uses a custom stylesheet with MCForge elements, and | ||
configured to combine the generation from the four FML subprojects | ||
(fmlloader, fmlcore, javafmllanguage, mclanguage) and the Forge project | ||
into the javadoc output. | ||
* Update docs/md files, for 1.19 update and the move away from IRC to Discord. | ||
* Make "Potentially dangerous alternative prefix" a debug warning, not info. | ||
Co-authored-by: Curle <[email protected]> | ||
Co-authored-by: sciwhiz12 <[email protected]> | ||
|
||
========= | ||
Build: 1.18.1-39.0.18 - Tue Jan 11 00:16:08 GMT 2022 | ||
supermartijn642: | ||
Update tags for new 1.17 and 1.18 content (#7891) | ||
|
||
========= | ||
Build: 1.18.1-39.0.17 - Mon Jan 10 00:56:15 GMT 2022 | ||
xfacthd: | ||
Fix TerrainParticle rendering black under certain conditions (#8378) | ||
|
||
========= | ||
Build: 1.18.1-39.0.16 - Sun Jan 09 21:36:50 GMT 2022 | ||
cech12: | ||
Allow modded tools to work on glow lichen (#8371) | ||
|
||
========= | ||
Build: 1.18.1-39.0.15 - Sun Jan 09 21:18:44 GMT 2022 | ||
sciwhiz12: | ||
Fix custom climbable blocks not sending a death message (#8372) | ||
|
||
Fixes #8370 | ||
|
||
========= | ||
Build: 1.18.1-39.0.14 - Sat Jan 08 21:20:26 GMT 2022 | ||
pupnewfster: | ||
Provide access to the blockstate in BucketPickup#getPickupSound for multiply-logged blocks (#8357) | ||
|
||
========= | ||
Build: 1.18.1-39.0.13 - Sat Jan 08 20:47:41 GMT 2022 | ||
pupnewfster: | ||
Fix clients being unable to deserialize tags for custom registries (#8352) | ||
|
||
========= | ||
Build: 1.18.1-39.0.12 - Sat Jan 08 20:28:36 GMT 2022 | ||
bageldotjpg: | ||
Fix particles going fullbright for a few frames when first spawning (#8291) | ||
|
||
========= | ||
Build: 1.18.1-39.0.11 - Sat Jan 08 18:44:26 GMT 2022 | ||
diesieben07: | ||
Also create parent directories when creating config files (#8364) | ||
|
||
========= | ||
Build: 1.18.1-39.0.10 - Sun Jan 02 18:43:24 GMT 2022 | ||
JTK222: | ||
Fix crash with PermissionsAPI (#8330) | ||
|
||
Fixes a crash in singleplayer, when the internal server didn't shut down correctly between world loads. | ||
|
||
========= | ||
Build: 1.18.1-39.0.9 - Mon Dec 27 16:24:00 GMT 2021 | ||
sciwhiz12: | ||
Re-add missing default spawn lists in features (#8285) | ||
|
||
Fixes #8265 | ||
Fixes #8301 | ||
|
||
========= | ||
Build: 1.18.1-39.0.8 - Wed Dec 22 13:22:32 GMT 2021 | ||
JTK222: | ||
Fixed incorrect generic in PermissionAPI (#8317) | ||
|
||
========= | ||
Build: 1.18.1-39.0.7 - Mon Dec 20 18:35:11 GMT 2021 | ||
JTK222: | ||
Redo of the whole PermissionAPI (#7780) | ||
|
||
|
||
|
||
Co-authored-by: LexManos <[email protected]> | ||
|
||
========= | ||
Build: 1.18.1-39.0.6 - Sun Dec 19 18:28:43 GMT 2021 | ||
JTK222: | ||
Fix misplaced patch in SpreadingSnowyDirtBlock. | ||
|
||
Fixes #8308. | ||
|
||
========= | ||
Build: 1.18.1-39.0.5 - Mon Dec 13 21:58:30 GMT 2021 | ||
pupnewfster: | ||
Add RenderArmEvent to make overriding just the arm rendering not require copying nearly as much vanilla code (#8254) | ||
|
||
========= | ||
Build: 1.18.1-39.0.4 - Mon Dec 13 21:32:20 GMT 2021 | ||
bageldotjpg: | ||
Add MobEffect tags (#8231) | ||
|
||
========= | ||
Build: 1.18.1-39.0.3 - Mon Dec 13 19:49:00 GMT 2021 | ||
xfacthd: | ||
Log missing or unsupported dependencies (#8218) | ||
|
||
========= | ||
Build: 1.18.1-39.0.2 - Mon Dec 13 19:33:05 GMT 2021 | ||
sciwhiz12: | ||
Fix datagen test for sounds definitions provider (#8249) | ||
|
||
========= | ||
Build: 1.18.1-39.0.1 - Mon Dec 13 19:14:15 GMT 2021 | ||
williewillus: | ||
Fix wrong stage being declared in transition to common (#8267) | ||
|
||
========= | ||
Build: 1.18.1-39.0.0 - Fri Dec 10 19:32:24 GMT 2021 | ||
curle: | ||
Update to 1.18.1 | ||
|
||
Co-Authored by: | ||
- Curle | ||
_ Orion | ||
|
||
========= | ||
Build: 1.18-38.0.17 - Fri Dec 10 09:23:45 GMT 2021 | ||
oriondevelopment: | ||
[CVE-2021-44228]: Update Log4J to fix the security issue inside it. (#8268) | ||
|
||
========= | ||
Build: 1.18-38.0.16 - Wed Dec 08 00:09:40 GMT 2021 | ||
jaredlll08: | ||
Fix KeyMappings only checking if they conflict with themselves. (#8256) | ||
|
||
========= | ||
Build: 1.18-38.0.15 - Sun Dec 05 19:40:15 GMT 2021 | ||
xfacthd: | ||
Fix ChunkWatchEvent not being fired (#8253) | ||
|
||
========= | ||
Build: 1.18-38.0.14 - Sat Dec 04 01:30:30 GMT 2021 | ||
git: | ||
Call handleUpdateTag for BlockEntities again (#8237) | ||
|
||
========= | ||
Build: 1.18-38.0.13 - Fri Dec 03 22:10:25 GMT 2021 | ||
commoble: | ||
Fix test worldgen data (#8248) | ||
|
||
========= | ||
Build: 1.18-38.0.12 - Thu Dec 02 20:16:47 GMT 2021 | ||
lexmanos: | ||
Allow Forge Registries to return key information for overridden objects. Fixes #8230 | ||
|
||
========= | ||
Build: 1.18-38.0.11 - Thu Dec 02 19:17:12 GMT 2021 | ||
curle: | ||
Save Chunk capabilities to the chunk, rather than recursively to the capabilities. | ||
|
||
========= | ||
Build: 1.18-38.0.10 - Thu Dec 02 15:24:47 GMT 2021 | ||
gigaherz: | ||
Make HandshakeConsumer public again. | ||
Fixes #8241 | ||
|
||
gigaherz: | ||
Fix LevelChunk capability attach crash. | ||
Fix client chunks not having capability providers attached. | ||
Add capability attach tests. | ||
|
||
========= | ||
Build: 1.18-38.0.8 - Thu Dec 02 00:44:15 GMT 2021 | ||
curle: | ||
Add missing biomes back to the BiomeDictionary | ||
|
||
curle: | ||
Complete TODO in ShapedRecipe patch causing logspam related to minecraft:air | ||
|
||
========= | ||
Build: 1.18-38.0.6 - Wed Dec 01 22:12:05 GMT 2021 | ||
curle: | ||
Readd Mixin 0.8.5 to fix modules issues. | ||
|
||
========= | ||
Build: 1.18-38.0.5 - Wed Dec 01 16:56:24 GMT 2021 | ||
curle: | ||
Readd PoseStack field to RenderTooltipEvent. | ||
|
||
========= | ||
Build: 1.18-38.0.4 - Wed Dec 01 01:29:57 GMT 2021 | ||
curle: | ||
Fix custom loot serializers using wrong registry names | ||
|
||
========= | ||
Build: 1.18-38.0.3 - Wed Dec 01 01:15:13 GMT 2021 | ||
lexmanos: | ||
Fix DungeonHooks not returning correct values. Fixes dungeons in world spawning pigs. | ||
|
||
========= | ||
Build: 1.18-38.0.2 - Wed Dec 01 00:23:23 GMT 2021 | ||
lexmanos: | ||
Fix dedicated server install. Closes #8226 | ||
Fix example mod | ||
Fix obf issue with records. Closes #8228 | ||
Fix dependencies beingg out of sync from vanilla. Closes #8227 | ||
Disable mixin due to module incompatibility. | ||
|
||
========= | ||
Build: 1.18-38.0.1 - Tue Nov 30 20:56:52 GMT 2021 | ||
gigaherz: | ||
Fix mod resources not loading. | ||
Add BreakingItemParticle.java.patch which I forgot to commit during the porting. |
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
Binary file not shown.
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,5 +1,5 @@ | ||
distributionBase=GRADLE_USER_HOME | ||
distributionPath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-7.3-bin.zip | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4.2-bin.zip | ||
zipStoreBase=GRADLE_USER_HOME | ||
zipStorePath=wrapper/dists |
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.