WorldEdit Build #7109
Be aware that this branch (
chore/split-out-cui-protocol
) is not the main branch (version/7.3.x
)!Branches other than the main one may be experimental. In addition, you should be using stable releases rather than these test builds.
Go to main branch View stable downloadsProject | WorldEdit |
---|---|
Status | SUCCESS |
Branch | chore/split-out-cui-protocol |
Number | #7109-19e9963 |
Date | 2 days ago |
Artifacts
worldedit-bukkit-7.3.12-SNAPSHOT-dist.jar(5883.35 kBytes)
worldedit-cli-7.3.12-SNAPSHOT-dist.jar(22301.24 kBytes)
worldedit-fabric-mc1.21.5-7.3.12-SNAPSHOT-dist.jar(5260.21 kBytes)
worldedit-mod-7.3.12-SNAPSHOT-dist.jar(6520.76 kBytes)
worldedit-neoforge-mc1.21.5-7.3.12-SNAPSHOT-dist.jar(4587.43 kBytes)
worldedit-sponge-api15-7.3.12-SNAPSHOT-dist.jar(3406.17 kBytes)
Changes
ID | Summary | Committer | Date |
---|---|---|---|
19e9963c | Split out CUI protocol on Fabric | Maddy Miller | 2 days ago |
dece49b5 | Configure PublishingExtension for WorldEdit Sponge (#2761) Currently, sponge api aren't be published to the maven repository (only the `pom`s are): https://maven.enginehub.org/repo/com/sk89q/worldedit/worldedit-sponge/7.4.0-SNAPSHOT/ Looks like the `worldedit-sponge` is just not configuring publishing: - Sponge (No `configure<PublishingExtension> `) - https://github.com/EngineHub/WorldEdit/blob/version/7.3.x/worldedit-sponge/build.gradle.kts - Bukkit (configures it) - https://github.com/EngineHub/WorldEdit/blob/version/7.3.x/worldedit-bukkit/build.gradle.kts#L110 - Fabric (configures it) - https://github.com/EngineHub/WorldEdit/blob/version/7.3.x/worldedit-fabric/build.gradle.kts#L71 Presumably since `worldedit-sponge` is missing: ```kt configure<PublishingExtension> { publications.named<MavenPublication>("maven") { from(components["java"]) } } ``` It doesn't get the information from the `java-library` plugin to actually include the jar, so it just includes the pom. Unfortunately I obviously don't have permission to publish the enginehub repository, but perhaps someone could take a look to see if this fix would work? | tyhdefu | 8 days ago |
42329472 | Back to SNAPSHOT for continued development | Maddy Miller | 13 days ago |
ac380ade | Release 7.3.12 Beta 2 | Maddy Miller | 13 days ago |
936b0c2c | [Sponge] 1.21.5 (#2750) | Maddy Miller | 13 days ago |
0f47c7aa | Add text3 bukkit adapter override for Spigot gson change. (#2759) | wizjany | 15 days ago |
ce043859 | Update click and hover text component serialization for 1.21.5. (#2757) Hacky workaround by overwriting the text3 StyleSerializer class with our own modified copy. Note that the hover events "show_entity" and "show_item" aren't supported as they no longer take a rendered component, but just the NBT structure. Behavior remains unchanged if 1.21.4- is detected. Fixes #2756. | wizjany | 17 days ago |
25988878 | Do not paste unsaveable entities in their default state (#2721) Remove a redundant passenger check, as entity.save() returns false in that case. This also causes leash knots to not be copied. I don't think this is a problem because: - They would not be saved to disk, it's misleading for users that they appear. - Pasted leashed mobs still think they're leashed to the original position and get unleashed* - no change in behaviour. \* Unless they're pasted close enough to the original position, in which case this has better behaviour because they create their own leash_knot entity. | brickmonster | 22 days ago |
4ac91033 | [Bukkit] Workaround string NBT data being wrapped with quotes in MC 1.21.5 (#2753) | Maddy Miller | 25 days ago |
77eb6143 | Sponge module refactoring and fixes (#2697) * Refactor some vanilla methods to sponge api * Fixes * Update api 14 * Fixes * PR fixes * Bring back vanilla methods | vilperi221 | a month ago |