#mache
1 messages ยท Page 1 of 1 (latest)
ae19e39 Don't commit patch conflicts - Machine-Maker
[PaperMC/mache] New branch created: feature/conflicts-in-index
[mache] Branch feature/conflicts-in-index was force-pushed to `d8d66a5`
Not committing the patch conflicts makes it easier to see what patches/files conflicted with git and/or IDE tools that track changed files.
This is done by collecting failed patches in the apply patches tasks and passing them to the task that is set as the finalizer for both patch tasks.
If there is a better way to handle the SetupSource task, so that you don't have to create two of them, one for each apply task, let me know. I couldn't figure out a way to configure the task directly wh...
[mache] Branch feature/conflicts-in-index was force-pushed to `eedb256`
[PaperMC/mache] branch deleted: feature/conflicts-in-index
[PaperMC/mache] branch deleted: parchment
d494541 Handle patches without target files correctly - DenWav
[PaperMC/mache] New branch created: snap/23w32a
[PaperMC/mache] New branch created: snap/23w33a
[PaperMC/mache] New branch created: snap/23w35a
I mean... a test can be just to make sure the code actually compiles. I suppose there's a small chance the code could still compile even if some parts weren't decompiled properly. I think checks for both would be good.
a void method with a VF error will compile fine
This currently targets the 1.20.2-pre2 branch, this should be created and changed before merging
thanks for the work, but the current latest branch iv vf10, where we work with the vineflower teams on reducing the path count (its like half the patches compared to your branch).
generally mache isnt really ready for prime time and contributions yet
[PaperMC/mache] New branch created: snap/23w40a
580f00c add step summary explaining that no release was... - MiniDigger
This is my first attempt of updating mache.
I also updated parchment from 1.20.1 to 1.20.2
The only complication was the FixProjectileStoredItem patch where I had to remove the generic type of a method.
I also had to rename some variables and convert a char variable to String.
Feedback is appreciated :)
fixes failed build if you wanted to start from no patches
Taking a look at this, it looks like you did a good job. Since we are still spinning up our new tooling we aren't super active on this as we aren't using it directly yet. I don't know for sure how we'll handle PRs like this since our workflow requires it to target a new branch - maybe we can just create the branch and re-target the PR. We haven't worked that out yet.
I'll take a closer look at this and if everything checks out I'll merge it. We have later versions, but not this one, so mig...
I don't understand changing PREFIX_CODE from a char to a String - that doesn't look like a decompile fix. Can you explain that?
Hey, thanks for taking a look even though later versions exist.
I had to change it from char to String cause it threw this compiler error:
Maybe it's just a dumb moment from me but changing it to a String was the quick fix for me. Maybe you have an idea why it happened.
i cloned your branch, and deleted the chat formating patch and it seemed to compile fine for me
character encoding quirk?
Did you just remove the patch or did you revert it to a char and try to compile?
i think i removed the patch, did applyPatches and then gradle build
but ill check again, im doubting myself :)
yeah 100% built ok
git clone git@github.com:Leguan16/mache.git
cd mache
git switch snap/23w44a
cd versions/23w44a/patches/net/minecraft
rm ChatFormatting.java.patch
cd ../../../..
./gradlew :versions:23w44a:applyPatches
./gradlew :versions:23w44a:build
this PR is currently targeting the ver/1.20.4 branch, a new snap/23w51b branch needs to be created first.
https://github.com/PaperMC/mache/branches
Haven't tried but I had windows issues in the file before
Yeah could be an encoding issue, I see you're on WSL too. I'll see if I can figure out what the issue is, likely needs to be fixed in the tooling layer.
Not sure if it's worth spending time on it it's just manifesting in this one location and fixed by a simple patch
The ChunkMap.java patch also has the same change.
@MiniDigger the purpose of mache is to be minimum necessary patches, it shouldn't change the code in that way. It's worth fixing to maintain the correctness guarantee that mache wants to support.
finally looked at the diff here in detail, what I was refering to was me doing this https://github.com/PaperMC/mache/blob/snap/23w35a/versions/23w35a/patches/net/minecraft/ChatFormatting.java.patch because it caused compiler issues before, but either an java update fixed it or something in our tooling changed because we dropped the patch and it still works fine for me ๐คท
I agree that the two diffs here in this PR should be dropped too
Yep I agree. I mainly did that to get it compiling. Would be nice if we can figure out what's the actual issue here. I hope I get to take a look on this on the weekend. Thanks for the input!
as I expected defining the encoding in the build file fixed the issue.
tasks {
compileJava {
options.encoding = "UTF-8"
}
}
[PaperMC/mache] New branch created: feature/support-reports
update codebook
Remove references to mavenLocal when new codebook is released.
8249a30 update patchment mappings - Machine-Maker
[PaperMC/mache] New branch created: update-parchment
061d2c5 update patchment mappings (#12) - Machine-Maker
[PaperMC/mache] branch deleted: update-parchment
[PaperMC/mache] New branch created: snap/24w11a
[PaperMC/mache] New branch created: snap/24w12a
[PaperMC/mache] New branch created: snap/23w51a
[PaperMC/mache] New branch created: 2snap/23w51a
[PaperMC/mache] branch deleted: snap/23w51a
[PaperMC/mache] branch deleted: 2snap/23w51a
[PaperMC/mache] New branch created: snap/23w51a
[PaperMC/mache] New branch created: 2snap/23w51a
[PaperMC/mache] branch deleted: snap/23w51a
[PaperMC/mache] branch deleted: 2snap/23w51a
[PaperMC/mache] New branch created: snap/23w51a
d3e7114 revert to old directory names - Machine-Maker
[PaperMC/mache] New branch created: ver/1.20.4-new
[PaperMC/mache] branch deleted: sculptor
[PaperMC/mache] branch deleted: vf10
d3e7114 revert to old directory names - Machine-Maker
[PaperMC/mache] New branch created: vdddder/1.20.4-new
[PaperMC/mache] branch deleted: ver/1.20.4-new
[PaperMC/mache] branch deleted: vdddder/1.20.4-new
b72a7e6 Automatically report failures from automatic up... - Machine-Maker
[PaperMC/mache] New branch created: improved-automation
Idea here is to create an issue when a build caused by an automated commit fails to either apply patches successfully or doesn't compile.
aa2fac1 fix/improve a bunch of workflow stuff - Machine-Maker
Release sculptor version and update this PR to that version before merging
why did you remove the gradle build action here? and I guess we should add --no-daemon
see discord, lets move the auto updating logic to sculptor, including running the build and opening the issue (but lets keep deploy here in each branch, the running build twice is a fine)
that way we can easier update the auto updating, not having so much logic in each mache branch
gradle build action is obsolete. It says to use setup-gradle and call the script directly. https://github.com/gradle/gradle-build-action
41c938b update sculptor, delete auto updating workflow - MiniDigger
[PaperMC/mache] New branch created: snap/24w03b
Failed to apply patches for 24w03b. Please check the logs for more information. The automatic updating will be paused until this is closed
[PaperMC/mache] New branch created: snfefeap/24w03b
[PaperMC/mache] branch deleted: snap/24w03b
[PaperMC/mache] branch deleted: snfefeap/24w03b
[PaperMC/mache] New branch created: snap/24w03b
Failed to apply patches for 24w03b. Please check the logs for more information. The automatic updating will be paused until this is closed
446a323 fix and rebuild patches for 24w03b (closes #17) - MiniDigger
[PaperMC/mache] branch deleted: snap/24w03b
[PaperMC/mache] branch deleted: snap/24w03a
[PaperMC/mache] branch deleted: snap/23w51b
[PaperMC/mache] branch deleted: snap/24w12a
[PaperMC/mache] branch deleted: snap/23w51a
[PaperMC/mache] branch deleted: snap/24w11a
[PaperMC/mache] branch deleted: snap/24w10a
[PaperMC/mache] branch deleted: snap/24w09a
[PaperMC/mache] branch deleted: snap/23w46a
[PaperMC/mache] branch deleted: snap/23w42a
[PaperMC/mache] branch deleted: snap/23w41a
[PaperMC/mache] branch deleted: snap/23w40a
[PaperMC/mache] branch deleted: snap/23w35a
[PaperMC/mache] branch deleted: snap/23w33a
[PaperMC/mache] branch deleted: snap/23w32a
[PaperMC/mache] branch deleted: snap/23w31a
[PaperMC/mache] branch deleted: ver/1.20.2
[PaperMC/mache] branch deleted: ver/1.20.2-pre2
[PaperMC/mache] branch deleted: ver/1.20.1
ff9d562 update sculptor and vineflower - Machine-Maker
[PaperMC/mache] New branch created: ver/1.20.4-updates
786d9a4 update sculptor and vineflower (#18) - Machine-Maker
[PaperMC/mache] New branch created: snap/23w51a
Failed to build for 23w51a. Please check the logs for more information. The automatic updating will be paused until this is closed
ff9d562 update sculptor and vineflower - Machine-Maker
[PaperMC/mache] New branch created: vdddder/1.20.4-updates
[PaperMC/mache] branch deleted: ver/1.20.4-updates
[PaperMC/mache] branch deleted: vdddder/1.20.4-updates
[PaperMC/mache] New branch created: snap/23w51b
Failed to build for 23w51b. Please check the logs for more information. The automatic updating will be paused until this is closed
[PaperMC/mache] New branch created: snapshot/23w31a
[PaperMC/mache] New branch created: snapshot/23w32a
[PaperMC/mache] New branch created: snapshot/23w33a
[PaperMC/mache] New branch created: snapshot/23w35a
[PaperMC/mache] New branch created: snapshot/23w40a
[PaperMC/mache] New branch created: snapshot/23w41a
[PaperMC/mache] New branch created: snapshot/23w42a
[PaperMC/mache] New branch created: snapshot/23w46a
[PaperMC/mache] New branch created: snapshot/23w51a
[PaperMC/mache] New branch created: snapshot/23w51b
[PaperMC/mache] New branch created: release/1.20.1
[PaperMC/mache] New branch created: release/1.20.2
[PaperMC/mache] New branch created: release/1.20.2-pre2
[PaperMC/mache] New branch created: release/1.20.4
[PaperMC/mache] branch deleted: snapshot/23w31a
[PaperMC/mache] branch deleted: snapshot/23w32a
[PaperMC/mache] branch deleted: snapshot/23w33a
[PaperMC/mache] branch deleted: snapshot/23w35a
[PaperMC/mache] branch deleted: snapshot/23w40a
[PaperMC/mache] branch deleted: snapshot/23w41a
[PaperMC/mache] branch deleted: ver/1.20.4
[PaperMC/mache] branch deleted: snap/23w51b
[PaperMC/mache] branch deleted: snap/23w51a
[PaperMC/mache] New branch created: snap/23w51b
[PaperMC/mache] New branch created: snap/23w51a
[PaperMC/mache] branch deleted: temp/24w14a
[PaperMC/mache] branch deleted: snap/23w51b
[PaperMC/mache] branch deleted: snap/23w51a
[PaperMC/mache] branch deleted: snapshot/23w42a
[PaperMC/mache] branch deleted: snapshot/23w46a
[PaperMC/mache] branch deleted: release/1.20.2-pre2
[PaperMC/mache] branch deleted: release/1.20.2
[PaperMC/mache] branch deleted: release/1.20.1
[PaperMC/mache] New branch created: feature/reports
set generateReports=true in gradle.properties or via cli
[PaperMC/mache] branch deleted: feature/support-reports
3667470 Support generating reports with gradle prop (#21) - Machine-Maker
[PaperMC/mache] branch deleted: feature/reports
addressed in 37a3c5c555bec1334bf6638dc94846b609c0bfaf
c4c9748 chore: update deploy workflow push branches - Machine-Maker
98f3a86 chore: update deploy workflow push branches - Machine-Maker
ef899f7 chore: actually update the branch names in the ... - Machine-Maker
c30687a chore: actually update the branch names in the ... - Machine-Maker
dab6183 Update to 24w03a - mache-sculptor[bot]
[PaperMC/mache] New branch created: snapshot/24w03a
Failed to apply patches for 24w03a. Please check the logs for more information. The automatic updating will be paused until this is closed
1aed553 fix patches for 24w03a, closes #22 - MiniDigger
1eda6aa Update to 24w03b - mache-sculptor[bot]
[PaperMC/mache] New branch created: snapshot/24w03b
fc6bfe6 Update to 24w04a - mache-sculptor[bot]
[PaperMC/mache] New branch created: snapshot/24w04a
Failed to apply patches for 24w04a. Please check the logs for more information. The automatic updating will be paused until this is closed
ff58afe fix patches for 24w04a, closes #23 - MiniDigger
0acd831 Update to 24w05a - mache-sculptor[bot]
[PaperMC/mache] New branch created: snapshot/24w05a
c511314 Update to 24w05b - mache-sculptor[bot]
[PaperMC/mache] New branch created: snapshot/24w05b
c3323ff Update to 24w06a - mache-sculptor[bot]
[PaperMC/mache] New branch created: snapshot/24w06a
Failed to apply patches for 24w06a. Please check the logs for more information. The automatic updating will be paused until this is closed
45fb13e fix patches for 24w06a, closes #24 - MiniDigger
7d70ae2 Update to 24w07a - mache-sculptor[bot]
[PaperMC/mache] New branch created: snapshot/24w07a
Failed to apply patches for 24w07a. Please check the logs for more information. The automatic updating will be paused until this is closed
9e61558 fix patches for 24w07a, closes #25 - MiniDigger
4320452 Update to 24w09a - mache-sculptor[bot]
[PaperMC/mache] New branch created: snapshot/24w09a
Failed to apply patches for 24w09a. Please check the logs for more information. The automatic updating will be paused until this is closed
c3ae5d4 fix patches for 24w09a, closes #26 - MiniDigger
5ecee0b Update to 24w10a - mache-sculptor[bot]
[PaperMC/mache] New branch created: snapshot/24w10a
Failed to build for 24w10a. Please check the logs for more information. The automatic updating will be paused until this is closed
335bc3f fix patches for 24w10a, closes #27 - MiniDigger
3a438ed Update to 24w11a - mache-sculptor[bot]
[PaperMC/mache] New branch created: snapshot/24w11a
[PaperMC/mache] New branch created: snapshot/24w12a
9164629 Update to 24w12a - mache-sculptor[bot]
a2275d6 Update to 24w13a - mache-sculptor[bot]
[PaperMC/mache] New branch created: snapshot/24w13a
Failed to apply patches for 24w13a. Please check the logs for more information. The automatic updating will be paused until this is closed
427ee41 fix patches for 24w13a, closes #28 - MiniDigger
fbd9780 Update to 24w14potato - mache-sculptor[bot]
[PaperMC/mache] New branch created: snapshot/24w14potato
Failed to apply patches for 24w14potato. Please check the logs for more information. The automatic updating will be paused until this is closed
c81fcda fix patches for 24w14potato, closes #29 - MiniDigger
63d3351 Update to 24w14a - mache-sculptor[bot]
[PaperMC/mache] New branch created: snapshot/24w14a
Failed to apply patches for 24w14a. Please check the logs for more information. The automatic updating will be paused until this is closed
717227f fix patches for 24w14a, closes #30 - MiniDigger
1aaa5bc Update to 1.20.5-pre1 - mache-sculptor[bot]
[PaperMC/mache] New branch created: snapshot/1.20.5-pre1
Failed to build for 1.20.5-pre1. Please check the logs for more information. The automatic updating will be paused until this is closed
2447d4c fix patches for 1.20.5-pre1, closes #31 - MiniDigger
[PaperMC/mache] New branch created: snapshot/1.20.5-pre2
a498358 Update to 1.20.5-pre2 - mache-sculptor[bot]
Failed to apply patches for 1.20.5-pre2. Please check the logs for more information. The automatic updating will be paused until this is closed
c44d52d fix patches for 1.20.5-pre2, closes #32 - MiniDigger
5aff27c Update to 1.20.5-pre3 - mache-sculptor[bot]
[PaperMC/mache] New branch created: snapshot/1.20.5-pre3
e1dfc72 Update to 1.20.5-pre4 - mache-sculptor[bot]
[PaperMC/mache] New branch created: snapshot/1.20.5-pre4
6ecf668 Update to 1.20.5-rc1 - mache-sculptor[bot]
[PaperMC/mache] New branch created: snapshot/1.20.5-rc1
6536f47 Update to 1.20.5-rc2 - mache-sculptor[bot]
[PaperMC/mache] New branch created: snapshot/1.20.5-rc2
Failed to build for 1.20.5-rc2. Please check the logs for more information. The automatic updating will be paused until this is closed
6be77e5 fix patches for 1.20.5-rc2, closes #33 - MiniDigger
57f83db Update to 1.20.5-rc3 - mache-sculptor[bot]
[PaperMC/mache] New branch created: snapshot/1.20.5-rc3
cd82270 Update to 1.20.5 - mache-sculptor[bot]
[PaperMC/mache] New branch created: release/1.20.5
1ee41e8 Update to 1.20.6-rc1 - mache-sculptor[bot]
[PaperMC/mache] New branch created: snapshot/1.20.6-rc1
e8c579f Update to 1.20.6 - mache-sculptor[bot]
[PaperMC/mache] New branch created: release/1.20.6
3fa4ff9 Update to 24w18a - mache-sculptor[bot]
[PaperMC/mache] New branch created: snapshot/24w18a
Failed to apply patches for 24w18a. Please check the logs for more information. The automatic updating will be paused until this is closed
Failed to apply patches for 24w18a. Please check the logs for more information. The automatic updating will be paused until this is closed
Could not GET 'https://maven.parchmentmc.org/org/parchmentmc/data/parchment-1.20.5/BLEEDING-SNAPSHOT/maven-metadata.xml'. Received status code 521 from server:
smh
When I try to build the version it prints a weird error message:
> Task :versions:v1_20_6:compileJava
G:\projects\mache\versions\1.20.6\src\main\java\net\minecraft\ChatFormatting.java:40: error: unclosed character literal
public static final char PREFIX_CODE = 'ยง';
^
G:\projects\mache\versions\1.20.6\src\main\java\net\minecraft\ChatFormatting.java:40: error: illegal character: '\u00a7'
public static final char PREFIX_CODE = 'ยง';
^
G:\projects\mache\versions\1.20.6\src\main\java\net\minecraft\ChatFormatting.java:40: error: unclosed character literal
public static final char PREFIX_CODE = 'ยง';
^
G:\projects\mache\versions\1.20.6\src\main\java\net\minecraft\server\level\ChunkMap.java:298: error: unclosed character literal
string = string + 'ยง' + fullStatus.ordinal() + fullStatus;
^...
ad6f599 Update to 24w19a - mache-sculptor[bot]
[PaperMC/mache] New branch created: snapshot/24w19a
Failed to apply patches for 24w19a. Please check the logs for more information. The automatic updating will be paused until this is closed
632c194 Update to 24w19b - mache-sculptor[bot]
[PaperMC/mache] New branch created: snapshot/24w19b
14123cd Update to 24w20a - mache-sculptor[bot]
[PaperMC/mache] New branch created: snapshot/24w20a
95cd425 Update to 24w21a - mache-sculptor[bot]
[PaperMC/mache] New branch created: snapshot/24w21a
Failed to apply patches for 24w21a. Please check the logs for more information. The automatic updating will be paused until this is closed
dfb71d9 Update to 24w21b - mache-sculptor[bot]
[PaperMC/mache] New branch created: snapshot/24w21b
20d76dc Update to 1.21-pre1 - mache-sculptor[bot]
[PaperMC/mache] New branch created: snapshot/1.21-pre1
Failed to apply patches for 1.21-pre1. Please check the logs for more information. The automatic updating will be paused until this is closed
638f16e Update to 1.21-pre2 - mache-sculptor[bot]
[PaperMC/mache] New branch created: snapshot/1.21-pre2
fbb9419 Update to 1.21-pre3 - mache-sculptor[bot]
[PaperMC/mache] New branch created: snapshot/1.21-pre3
Failed to build for 1.21-pre3. Please check the logs for more information. The automatic updating will be paused until this is closed
BitRandomSource.java.patch fixes an exception while trying to use runServer
> Task :versions:v1_20_6:runServer
Exception in thread "main" java.lang.ExceptionInInitializerError
at net.minecraft.world.level.biome.FixedBiomeSource.<clinit>(FixedBiomeSource.java:16)
at net.minecraft.world.level.biome.BiomeSources.bootstrap(BiomeSources.java:8)
at net.minecraft.core.registries.BuiltInRegistries.lambda$internalRegister$49(BuiltInRegistries.java:299)
at net.minecraft.core.registries.BuiltInRegistries.lambda$createContents$50(BuiltInRegistries.java:312)
at java.base/java.util.LinkedHashMap.forEach(LinkedHashMap.java:986)
at net.minecraft.core.registries.BuiltInRegistries.createContents(BuiltInRegistries.java:311)
at net.minecraft.core.registries.BuiltInRegistries.bootStrap(BuiltInRegistries.java:305)
at net.minecraft.server.Bootstrap.bootStrap(Bootstrap.java:53)
at net.minecraft.server.Main.main(Ma...
I am unsure what our policy for this will be (given the somewhat experimental nature of mache), but imo the better solution would be to bump vineflower as the newer versions correctly emit the long cast.
Needs input from mini presumably tho.
Yes, bump vineflower which fixes this issue.
https://github.com/PaperMC/mache/pull/41#issuecomment-2149772124
Fixes:
> Task :versions:v1_20_6:runServer
Exception in thread "main" java.lang.ExceptionInInitializerError
at net.minecraft.world.level.biome.FixedBiomeSource.<clinit>(FixedBiomeSource.java:16)
at net.minecraft.world.level.biome.BiomeSources.bootstrap(BiomeSources.java:8)
at net.minecraft.core.registries.BuiltInRegistries.lambda$internalRegister$49(BuiltInRegistries.java:299)
at net.minecraft.core.registries.BuiltInRegistries.lambda$createContents$50(BuiltInRegistries.java:312)
at java.base/java.util.LinkedHashMap.forEach(LinkedHashMap.java:986)
at net.minecraft.core.registries.BuiltInRegistries.createContents(BuiltInRegistries.java:311)
at net.minecraft.core.registries.BuiltInRegistries.bootStrap(BuiltInRegistries.java:305)
at net.minecraft.server.Bootstrap.bootStrap(Bootstrap.java:53)
at net.minecraft.server.Main.main(Main.java...
1ba7cd0 Update to 1.21-pre4 - mache-sculptor[bot]
[PaperMC/mache] New branch created: snapshot/1.21-pre4
f3d722c Update to 1.21-rc1 - mache-sculptor[bot]
[PaperMC/mache] New branch created: snapshot/1.21-rc1
[PaperMC/mache] New branch created: snapshot/1.21.1-rc1
5d994e3 Update to 1.21.1-rc1 - mache-sculptor[bot]
[PaperMC/mache] New branch created: release/1.21.1
58137b7 Update to 1.21.1 - mache-sculptor[bot]
f6c9889 Update to 24w33a - mache-sculptor[bot]
[PaperMC/mache] New branch created: snapshot/24w33a
Failed to apply patches for 24w33a. Please check the logs for more information. The automatic updating will be paused until this is closed
10983d9 Update to 24w34a - mache-sculptor[bot]
[PaperMC/mache] New branch created: snapshot/24w34a
Failed to build for 24w34a. Please check the logs for more information. The automatic updating will be paused until this is closed
b54b6fd Update to 24w35a - mache-sculptor[bot]
[PaperMC/mache] New branch created: snapshot/24w35a
Failed to apply patches for 24w35a. Please check the logs for more information. The automatic updating will be paused until this is closed
6ed02c4 Update to 24w36a - mache-sculptor[bot]
[PaperMC/mache] New branch created: snapshot/24w36a
Failed to apply patches for 24w36a. Please check the logs for more information. The automatic updating will be paused until this is closed
c26900f Update to 24w37a - mache-sculptor[bot]
[PaperMC/mache] New branch created: snapshot/24w37a
Failed to apply patches for 24w37a. Please check the logs for more information. The automatic updating will be paused until this is closed
5e768e0 Update to 24w38a - mache-sculptor[bot]
[PaperMC/mache] New branch created: snapshot/24w38a
8197873 Update to 24w39a - mache-sculptor[bot]
[PaperMC/mache] New branch created: snapshot/24w39a
Failed to apply patches for 24w39a. Please check the logs for more information. The automatic updating will be paused until this is closed
fdb8799 Update to 24w40a - mache-sculptor[bot]
[PaperMC/mache] New branch created: snapshot/24w40a
Failed to apply patches for 24w40a. Please check the logs for more information. The automatic updating will be paused until this is closed
[PaperMC/mache] New branch created: snapshot/1.21.2-pre1
a8041ae Update to 1.21.2-pre1 - mache-sculptor[bot]
Failed to apply patches for 1.21.2-pre1. Please check the logs for more information. The automatic updating will be paused until this is closed
cbbad3e Update to 1.21.2-pre2 - mache-sculptor[bot]
[PaperMC/mache] New branch created: snapshot/1.21.2-pre2
Failed to apply patches for 1.21.2-pre2. Please check the logs for more information. The automatic updating will be paused until this is closed
5f0c15b Update to 1.21.2-pre3 - mache-sculptor[bot]
[PaperMC/mache] New branch created: snapshot/1.21.2-pre3
[PaperMC/mache] New branch created: snapshot/1.21.2-pre4
28fbc87 Update to 1.21.2-pre4 - mache-sculptor[bot]
[PaperMC/mache] New branch created: snapshot/1.21.2-pre5
72db866 Update to 1.21.2-pre5 - mache-sculptor[bot]
[PaperMC/mache] New branch created: snapshot/1.21.2-rc1
5b342be Update to 1.21.2-rc1 - mache-sculptor[bot]
[PaperMC/mache] New branch created: snapshot/1.21.2-rc2
24b8ab2 Update to 1.21.2-rc2 - mache-sculptor[bot]
1795df6 Update to 1.21.3 - mache-sculptor[bot]
[PaperMC/mache] New branch created: release/1.21.3
c979826 Update to 24w44a - mache-sculptor[bot]
[PaperMC/mache] New branch created: snapshot/24w44a
Failed to apply patches for 24w44a. Please check the logs for more information. The automatic updating will be paused until this is closed
Due to the recent addition of the runClient functionality the run directory name has changed. The gitignore file still had the old name defined.
no clue on how we gonna propagate a change like this thru the branches
[PaperMC/mache] New branch created: snapshot/24w45a
41a61cf Update to 24w45a - mache-sculptor[bot]
Failed to build for 24w45a. Please check the logs for more information. The automatic updating will be paused until this is closed
[PaperMC/mache] New branch created: snapshot/24w46a
85b6f5e Update to 24w46a - mache-sculptor[bot]
12f7020 Update to 1.21.4-pre1 - mache-sculptor[bot]
[PaperMC/mache] New branch created: snapshot/1.21.4-pre1
Failed to apply patches for 1.21.4-pre1. Please check the logs for more information. The automatic updating will be paused until this is closed
[PaperMC/mache] New branch created: snapshot/1.21.4-pre2
fa7cc65 Update to 1.21.4-pre2 - mache-sculptor[bot]
8ed4426 Update to 1.21.4-pre3 - mache-sculptor[bot]
[PaperMC/mache] New branch created: snapshot/1.21.4-pre3
c9fe4d4 Update to 1.21.4-rc1 - mache-sculptor[bot]
[PaperMC/mache] New branch created: snapshot/1.21.4-rc1
2ed710f Update to 1.21.4-rc2 - mache-sculptor[bot]
[PaperMC/mache] New branch created: snapshot/1.21.4-rc2
[PaperMC/mache] New branch created: snapshot/1.21.4-rc3
b2ae4a7 Update to 1.21.4-rc3 - mache-sculptor[bot]
6aff0e4 Update to 1.21.4 - mache-sculptor[bot]
[PaperMC/mache] New branch created: release/1.21.4
Failed to apply patches for 1.21.4. Please check the logs for more information. The automatic updating will be paused until this is closed
2c20526 update vineflower, rebuild patches - MiniDigger
no clue on how we gonna propagate a change like this thru the branches
lets just not :D
b7b9ab2 update gitignore to exclude both runServer and ... - Leguan16
760db36 fetch vineflower from paper repo - MiniDigger
Since the version of vineflower you were using in 1.21.1 doesn't exist heres a fix for a version that exists.
Does this not require patch rebuilding?
Does this not require patch rebuilding?
not sure how to do that lol but i only changed the version for vineflower
Please also do this 760db36
done
e29e454 Update sculptor and setup-gradle action - kennytv
Does this not require patch rebuilding?
ok does not require any rebuilding
[PaperMC/mache] New branch created: snapshot/25w02a
80503e0 Update to 25w02a - mache-sculptor[bot]
Failed to apply patches for 25w02a. Please check the logs for more information. The automatic updating will be paused until this is closed
9bfb50224dbe14f5fdbdb2653a5a06534dc0c357
a314912 Update to 25w03a - mache-sculptor[bot]
[PaperMC/mache] New branch created: snapshot/25w03a
Failed to apply patches for 25w03a. Please check the logs for more information. The automatic updating will be paused until this is closed
840fd63 Fix conflicts and decompiler issues - lynxplay
840fd631364299d50d79fb4ea3fe55c04ecb40d3
0dc6b1b Update to 25w04a - mache-sculptor[bot]
[PaperMC/mache] New branch created: snapshot/25w04a
Failed to apply patches for 25w04a. Please check the logs for more information. The automatic updating will be paused until this is closed
269a9af Update to 25w05a - mache-sculptor[bot]
[PaperMC/mache] New branch created: snapshot/25w05a
Failed to apply patches for 25w05a. Please check the logs for more information. The automatic updating will be paused until this is closed
76df948 Update to 25w06a - mache-sculptor[bot]
[PaperMC/mache] New branch created: snapshot/25w06a
Failed to build for 25w06a. Please check the logs for more information. The automatic updating will be paused until this is closed
[PaperMC/mache] New branch created: snapshot/25w07a
10da801 Update to 25w07a - mache-sculptor[bot]
Failed to apply patches for 25w07a. Please check the logs for more information. The automatic updating will be paused until this is closed
handleChatMessageError
I'm trying to get the Client code for Minecraft and I tried to publish it to MavenLocal and it output a pom is invalid error
`Picked up JAVA_TOOL_OPTIONS: -XX:+UseContainerSupport -XX:ActiveProcessorCount=2
Task :versions:v1_21_4:generateMacheMetadata UP-TO-DATE
Task :versions:v1_21_4:createMacheArtifact UP-TO-DATE
Task :versions:v1_21_4:generateMetadataFileForMachePublication
Task :versions:v1_21_4:generatePomFileForMachePublication
Task :versions:v1_21_4:publishMachePublicationToMavenLocal FAILED
FAILURE: Build failed with an exception.
- What went wrong:
Execution failed for task ':versions:v1_21_4:publishMachePublicationToMavenLocal'.
Failed to publish publication 'mache' to repository 'mavenLocal'
Invalid publication 'mache': POM file is invalid. Check any modifications you have made to the POM file.
- Try:
Run with --stacktrace option to get the stack trace.
Run with --info or --debug option to get more log output.
Run with --scan to get full insights...
thinking its a issue with sculptor
de8cf79 Update to 25w08a - mache-sculptor[bot]
[PaperMC/mache] New branch created: snapshot/25w08a
b3f3a8a Update to 25w09a - mache-sculptor[bot]
[PaperMC/mache] New branch created: snapshot/25w09a
Failed to apply patches for 25w09a. Please check the logs for more information. The automatic updating will be paused until this is closed
[PaperMC/mache] New branch created: snapshot/25w09b
31ba967 Update to 25w09b - mache-sculptor[bot]
b302dfd Update to 25w10a - mache-sculptor[bot]
[PaperMC/mache] New branch created: snapshot/25w10a
Failed to build for 25w10a. Please check the logs for more information. The automatic updating will be paused until this is closed
[PaperMC/mache] New branch created: snapshot/1.21.5-pre1
e9e4620 Update to 1.21.5-pre1 - mache-sculptor[bot]
Failed to build for 1.21.5-pre1. Please check the logs for more information. The automatic updating will be paused until this is closed
[PaperMC/mache] New branch created: snapshot/1.21.5-pre2
107762c Update to 1.21.5-pre2 - mache-sculptor[bot]
[PaperMC/mache] New branch created: snapshot/1.21.5-pre3
d50aa9c Update to 1.21.5-pre3 - mache-sculptor[bot]
[PaperMC/mache] New branch created: snapshot/1.21.5-rc1
e848e33 Update to 1.21.5-rc1 - mache-sculptor[bot]
[PaperMC/mache] New branch created: snapshot/1.21.5-rc2
808b695 Update to 1.21.5-rc2 - mache-sculptor[bot]
[PaperMC/mache] New branch created: release/1.21.5
280f223 Update to 1.21.5 - mache-sculptor[bot]
[PaperMC/mache] New branch created: snapshot/25w14craftmine
4f2bb61 Update to 25w14craftmine - mache-sculptor[bot]
Failed to apply patches for 25w14craftmine. Please check the logs for more information. The automatic updating will be paused until this is closed
d50047a fix patches for 25w14craftmine, closes #70 - MiniDigger
7682e28 Update to 25w15a - mache-sculptor[bot]
[PaperMC/mache] New branch created: snapshot/25w15a
Failed to apply patches for 25w15a. Please check the logs for more information. The automatic updating will be paused until this is closed
Paper 1.21.5 when????
[PaperMC/mache] New branch created: snapshot/25w16a
e179659 Update to 25w16a - mache-sculptor[bot]
8bacf1b Update to 25w17a - mache-sculptor[bot]
[PaperMC/mache] New branch created: snapshot/25w17a
[PaperMC/mache] New branch created: snapshot/25w18a
31ff51c Update to 25w18a - mache-sculptor[bot]
Failed to apply patches for 25w18a. Please check the logs for more information. The automatic updating will be paused until this is closed
Could you elaborate on the steps you took?
66ab3da Update to 25w19a - mache-sculptor[bot]
[PaperMC/mache] New branch created: snapshot/25w19a
Failed to apply patches for 25w19a. Please check the logs for more information. The automatic updating will be paused until this is closed
8af6021 Update to 25w20a - mache-sculptor[bot]
[PaperMC/mache] New branch created: snapshot/25w20a
Failed to apply patches for 25w20a. Please check the logs for more information. The automatic updating will be paused until this is closed
Thank you for the PR! I was literally working on these and just noticed this pr-- will merge this anyways as our changes are identical.
Wanted to play around with the new dialogue stuff lol.
Thank you for the PR! I was literally working on these and just noticed this pr-- will merge this anyways as our changes are identical.
Wanted to play around with the new dialogue stuff lol.
Had time to play around with it as well. Here is my result. Basically changed the logger in MinecraftServer#handleCustomClickAction(...) to log on info.
<img width="1038" alt="grafik" src="https://github.com/user-attachments/assets/59461653-479c-4194-a031-c0e57b3a1a14" />
Dirty inlineed customization: https://gist.github.com/yannicklamprecht/f22633bc8542f4c36fade5bb41a55571
Thank you for the PR! I was literally working on these and just noticed this pr-- will merge this anyways as our changes are identical.
Wanted to play around with the new dialogue stuff lol.
Had time to play around with it as well. Here is my result. Basically changed the logger in
MinecraftServer#handleCustomClickAction(...)to log on info.<img width="1038" alt="grafik" src="https://github.com/user-attachments/assets/59461653-479c-4194-a031-c0e57b3a1a14" />
Dirty inlineed customization: https://gist.github.com/yannicklamprecht/f22633bc8542f4c36fade5bb41a55571
Yeah no it's pretty neat. Only thing is that the config stage support is a bit cooked rn but that'll be resolved.
1c6f6e8 Update to 25w21a - mache-sculptor[bot]
[PaperMC/mache] New branch created: snapshot/25w21a
[PaperMC/mache] New branch created: snapshot/1.21.6-pre1
84817f7 Update to 1.21.6-pre1 - mache-sculptor[bot]
688d3ef Update parchment and fix compilation issues - lynxplay
Failed to build for 1.21.6-pre1. Please check the logs for more information. The automatic updating will be paused until this is closed
[PaperMC/mache] New branch created: snapshot/1.21.6-pre2
1879ee4 Update to 1.21.6-pre2 - mache-sculptor[bot]
fb9cff9 Update to 1.21.6-pre3 - mache-sculptor[bot]
[PaperMC/mache] New branch created: snapshot/1.21.6-pre3
[PaperMC/mache] New branch created: snapshot/1.21.6-pre4
66b9a4c Update to 1.21.6-pre4 - mache-sculptor[bot]
[PaperMC/mache] New branch created: snapshot/1.21.6-rc1
e28af08 Update to 1.21.6-rc1 - mache-sculptor[bot]
fbba956 Update to 1.21.6 - mache-sculptor[bot]
[PaperMC/mache] New branch created: release/1.21.6
[PaperMC/mache] New branch created: snapshot/1.21.7-rc1
02e22f3 Update to 1.21.7-rc1 - mache-sculptor[bot]
[PaperMC/mache] New branch created: snapshot/1.21.7-rc2
ed417bb Update to 1.21.7-rc2 - mache-sculptor[bot]
011077f Update to 1.21.7 - mache-sculptor[bot]
[PaperMC/mache] New branch created: release/1.21.7
[PaperMC/mache] New branch created: cat/fixes/1.21.7-AbstractHorse-inversion
bcb1dc2 Fix loop inversion inside of AbstractHorse - electronicboy
5a68dec Fix loop inversion inside of AbstractHorse - electronicboy
[PaperMC/mache] branch deleted: cat/fixes/1.21.7-AbstractHorse-inversion
efe8b8f Update to 1.21.8-rc1 - mache-sculptor[bot]
[PaperMC/mache] New branch created: snapshot/1.21.8-rc1
[PaperMC/mache] New branch created: release/1.21.8
9edeeb3 Update to 1.21.8 - mache-sculptor[bot]
cc37d01 Update to 25w31a - mache-sculptor[bot]
[PaperMC/mache] New branch created: snapshot/25w31a
Failed to apply patches for 25w31a. Please check the logs for more information. The automatic updating will be paused until this is closed
[PaperMC/mache] New branch created: snapshot/25w32a
3f2736b Update to 25w32a - mache-sculptor[bot]
Failed to apply patches for 25w32a. Please check the logs for more information. The automatic updating will be paused until this is closed
[PaperMC/mache] New branch created: snapshot/25w33a
587682a Update to 25w33a - mache-sculptor[bot]
[PaperMC/mache] New branch created: snapshot/25w34a
8752cb7 Update to 25w34a - mache-sculptor[bot]
Failed to apply patches for 25w34a. Please check the logs for more information. The automatic updating will be paused until this is closed
[PaperMC/mache] New branch created: snapshot/25w34b
8946d58 Update to 25w34b - mache-sculptor[bot]
[PaperMC/mache] New branch created: snapshot/25w35a
92356a8 Update to 25w35a - mache-sculptor[bot]
[PaperMC/mache] New branch created: snapshot/25w36a
40a252c Update to 25w36a - mache-sculptor[bot]
Failed to apply patches for 25w36a. Please check the logs for more information. The automatic updating will be paused until this is closed
[PaperMC/mache] New branch created: snapshot/25w36b
d6e7af7 Update to 25w36b - mache-sculptor[bot]
47bbfc7 Update to 25w37a - mache-sculptor[bot]
[PaperMC/mache] New branch created: snapshot/25w37a
Failed to apply patches for 25w37a. Please check the logs for more information. The automatic updating will be paused until this is closed
[PaperMC/mache] New branch created: snapshot/1.21.9-pre1
889d154 Update to 1.21.9-pre1 - mache-sculptor[bot]
Failed to apply patches for 1.21.9-pre1. Please check the logs for more information. The automatic updating will be paused until this is closed
[PaperMC/mache] New branch created: snapshot/1.21.9-pre2
679a86a Update to 1.21.9-pre2 - mache-sculptor[bot]
[PaperMC/mache] New branch created: snapshot/1.21.9-pre3
93ace3c Update to 1.21.9-pre3 - mache-sculptor[bot]
[PaperMC/mache] New branch created: snapshot/1.21.9-pre4
258656b Update to 1.21.9-pre4 - mache-sculptor[bot]
[PaperMC/mache] New branch created: snapshot/1.21.9-rc1
fd2a61b Update to 1.21.9-rc1 - mache-sculptor[bot]
[PaperMC/mache] New branch created: release/1.21.9
f03ce5e Update to 1.21.9 - mache-sculptor[bot]
[PaperMC/mache] New branch created: snapshot/1.21.10-rc1
c7153f8 Update to 1.21.10-rc1 - mache-sculptor[bot]
[PaperMC/mache] New branch created: release/1.21.10
58a97bf Update to 1.21.10 - mache-sculptor[bot]
[PaperMC/mache] New branch created: snapshot/25w41a
Failed to apply patches for 25w41a. Please check the logs for more information. The automatic updating will be paused until this is closed
5edf450 Update to 25w41a - mache-sculptor[bot]
7c5c10e Update to 25w42a - mache-sculptor[bot]
[PaperMC/mache] New branch created: snapshot/25w42a
24b393b Update to 25w43a - mache-sculptor[bot]
[PaperMC/mache] New branch created: snapshot/25w43a
[PaperMC/mache] New branch created: snapshot/25w44a
1e7d0fe Update to 25w44a - mache-sculptor[bot]
Failed to apply patches for 25w44a. Please check the logs for more information. The automatic updating will be paused until this is closed
Can be closed as the 25w44a branch was fixed.
So that todays 25w45a update gets created.
[PaperMC/mache] New branch created: snapshot/25w45a
e0a8d36 Update to 25w45a - mache-sculptor[bot]
Failed to apply patches for 25w45a. Please check the logs for more information. The automatic updating will be paused until this is closed
[PaperMC/mache] New branch created: unobf/snapshot/25w45a
db1cd4e Add missed dropped local variable in ServerGamePac... - DenWav
[PaperMC/mache] New branch created: snapshot/25w46a
ccee859 Update to 25w46a - mache-sculptor[bot]
[PaperMC/mache] New branch created: snapshot/1.21.11-pre1
1862b01 Update to 1.21.11-pre1 - mache-sculptor[bot]
Failed to apply patches for 1.21.11-pre1. Please check the logs for more information. The automatic updating will be paused until this is closed
4f3bd80 Update to 1.21.11-pre2 - mache-sculptor[bot]
[PaperMC/mache] New branch created: snapshot/1.21.11-pre2
Failed to apply patches for 1.21.11-pre2. Please check the logs for more information. The automatic updating will be paused until this is closed
[PaperMC/mache] New branch created: snapshot/1.21.11-pre3
ca51918 Update to 1.21.11-pre3 - mache-sculptor[bot]
[PaperMC/mache] New branch created: snapshot/1.21.11-pre4
7fbb6d3 Update to 1.21.11-pre4 - mache-sculptor[bot]
[PaperMC/mache] New branch created: snapshot/1.21.11-pre5
6e2ece2 Update to 1.21.11-pre5 - mache-sculptor[bot]
[PaperMC/mache] New branch created: snapshot/1.21.11-rc1
4137a28 Update to 1.21.11-rc1 - mache-sculptor[bot]
[PaperMC/mache] New branch created: snapshot/1.21.11-rc2
92c0898 Update to 1.21.11-rc2 - mache-sculptor[bot]
60430ae Update to 1.21.11-rc3 - mache-sculptor[bot]
[PaperMC/mache] New branch created: snapshot/1.21.11-rc3
[PaperMC/mache] New branch created: release/1.21.11
459df02 Update to 1.21.11 - mache-sculptor[bot]
[PaperMC/mache] New branch created: snapshot/26.1-snapshot-1
81318ea Update to 26.1-snapshot-1 - mache-sculptor[bot]
Failed to apply patches for 26.1-snapshot-1. Please check the logs for more information. The automatic updating will be paused until this is closed
I think we want to use a pinned VF snapshot for now to fix some of this without patches
though the latest vf snapshot causes a lot more compile issues and requires a lot more patches than what is done here, i already reported two issues that should, when resolved, make 1.12.0 a viable version for mache to switch to, cuz rn it just requires way too many fixes
though the latest vf snapshot causes a lot more compile issues and requires a lot more patches than what is done here, i already reported two issues that should, when resolved, make 1.12.0 a viable version for mache to switch to, cuz rn it just requires way too many fixes
Less patches but instead we get one really big one. https://github.com/PaperMC/mache/compare/f207bf438c506886da54d26975a09cc83060bad6..591575f29300ba7244d3944a51f2a2e3fcfe867d#diff-8bd557c27fdae2ff59de9afb33d2e0b669af01dc2224757358339e2cce5889c6
we wanna wait for https://github.com/Vineflower/vineflower/pull/532 before we touch snapshots
[PaperMC/mache] New branch created: snapshot/26.1-snapshot-2
bf6c58a Update to 26.1-snapshot-2 - mache-sculptor[bot]
Failed to apply patches for 26.1-snapshot-2. Please check the logs for more information. The automatic updating will be paused until this is closed
f207bf4 fix(#89): fix patches - yannicklamprecht
Sorry for the wasted effort on the VF update, we decided to move forward with the release for now. I manually merged your earlier commit. Thanks
8b3b87d Temp allow publishing with snapshots - jpenilla
[PaperMC/mache] branch deleted: snapshot/26.1-snapshot-2
ac13b23 Update to 26.1-snapshot-2 - mache-sculptor[bot]
[PaperMC/mache] New branch created: snapshot/26.1-snapshot-2
[PaperMC/mache] New branch created: snapshot/26.1-snapshot-3
8c40531 Update to 26.1-snapshot-3 - mache-sculptor[bot]
Failed to apply patches for 26.1-snapshot-3. Please check the logs for more information. The automatic updating will be paused until this is closed
[PaperMC/mache] New branch created: snapshot/26.1-snapshot-4
3e0433d Update to 26.1-snapshot-4 - mache-sculptor[bot]
Failed to apply patches for 26.1-snapshot-4. Please check the logs for more information. The automatic updating will be paused until this is closed
c7f0ec9 Update to 26.1-snapshot-5 - mache-sculptor[bot]
[PaperMC/mache] New branch created: snapshot/26.1-snapshot-5
Failed to apply patches for 26.1-snapshot-5. Please check the logs for more information. The automatic updating will be paused until this is closed
5b9cb17 Update to 26.1-snapshot-6 - mache-sculptor[bot]
[PaperMC/mache] New branch created: snapshot/26.1-snapshot-6
Failed to apply patches for 26.1-snapshot-6. Please check the logs for more information. The automatic updating will be paused until this is closed
[PaperMC/mache] New branch created: snapshot/26.1-snapshot-7
423236e Update to 26.1-snapshot-7 - mache-sculptor[bot]
[PaperMC/mache] New branch created: snapshot/26.1-snapshot-8
a0dcb52 Update to 26.1-snapshot-8 - mache-sculptor[bot]
3791764 Update to 26.1-snapshot-9 - mache-sculptor[bot]
[PaperMC/mache] New branch created: snapshot/26.1-snapshot-9
6af9f72 Update to 26.1-snapshot-10 - mache-sculptor[bot]
[PaperMC/mache] New branch created: snapshot/26.1-snapshot-10
5791715 Update to 26.1-snapshot-11 - mache-sculptor[bot]
[PaperMC/mache] New branch created: snapshot/26.1-snapshot-11
347f244 Update to 26.1-pre-1 - mache-sculptor[bot]
[PaperMC/mache] New branch created: snapshot/26.1-pre-1
Failed to apply patches for 26.1-pre-1. Please check the logs for more information. The automatic updating will be paused until this is closed
dc4d1f8 Update to 26.1-pre-2 - mache-sculptor[bot]
[PaperMC/mache] New branch created: snapshot/26.1-pre-2
Failed to apply patches for 26.1-pre-2. Please check the logs for more information. The automatic updating will be paused until this is closed
[PaperMC/mache] New branch created: snapshot/26.1-pre-3
3879f49 Update to 26.1-pre-3 - mache-sculptor[bot]
4abd92d Update to 26.1-rc-1 - mache-sculptor[bot]
[PaperMC/mache] New branch created: snapshot/26.1-rc-1
[PaperMC/mache] New branch created: snapshot/26.1-rc-2
f2c73e0 Update to 26.1-rc-2 - mache-sculptor[bot]
[PaperMC/mache] New branch created: snapshot/26.1-rc-3
201cd2a Update to 26.1-rc-3 - mache-sculptor[bot]
[PaperMC/mache] New branch created: snapshot/26.1.1-rc-1
d740c5e Update to 26.1.1-rc-1 - mache-sculptor[bot]
[PaperMC/mache] New branch created: release/26.1.1
129a152 Update to 26.1.1 - mache-sculptor[bot]
76025fd Update to 26w14a - mache-sculptor[bot]
[PaperMC/mache] New branch created: snapshot/26w14a
Failed to apply patches for 26w14a. Please check the logs for more information. The automatic updating will be paused until this is closed
[PaperMC/mache] branch deleted: snapshot/26w14a
fd4c15c Update to 26w14a - mache-sculptor[bot]
[PaperMC/mache] New branch created: snapshot/26w14a
Failed to apply patches for 26w14a. Please check the logs for more information. The automatic updating will be paused until this is closed