8000 Release/10.0.1 by JorelAli · Pull Request #646 · CommandAPI/CommandAPI · GitHub
[go: up one dir, main page]

Skip to content

Release/10.0.1 #646

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 23 commits into from
May 6, 2025
Merged
Changes from 1 commit
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
87d2cca
Also remove commands from the Brigadier dispatcher on Paper
DerEchtePilz Apr 11, 2025
532c58a
Set version to 10.0.1-SNAPSHOT
DerEchtePilz Apr 11, 2025
a20b8c3
Merge branch 'master' into dev/dev
DerEchtePilz Apr 11, 2025
ff2ad03
Properly fix what I already fixed in 87d2cca1fc9149bc76f5b93b8a0081ef…
DerEchtePilz Apr 11, 2025
637a1f2
Revert unnecessary changes from yesterday and add changelog entry
DerEchtePilz Apr 12, 2025
dbc6e70
Fix error logging for when the mappings are wrong
willkroboth Apr 13, 2025
ef4e0f9
Update to latest MockBukkit in `commandapi-bukkit-test-toolkit`
willkroboth Apr 20, 2025
99cf995
Clean up NMS_Common to make it compile for all supported versions
DerEchtePilz Apr 17, 2025
485ba88
Use 1.21.3 dependency
DerEchtePilz Apr 17, 2025
49503a7
Use more GH Actions steps to fail the build when it isn't compatible …
DerEchtePilz Apr 17, 2025
4edc5b6
Use --quiet flag in the script
DerEchtePilz Apr 17, 2025
a29c068
Remove unused method
DerEchtePilz Apr 17, 2025
cd038b4
Remove NMS_CommonWithFunctions_XXX classes
DerEchtePilz Apr 17, 2025
75ad0e1
Make sure specialsource uses the correct version
DerEchtePilz Apr 17, 2025
dc1b999
Move methods out and into NMS_Common when possible
DerEchtePilz Apr 18, 2025
a41e73a
Make compileNMSCommon.sh more compact
DerEchtePilz Apr 18, 2025
6e003bc
There's no need to have this static
DerEchtePilz Apr 18, 2025
9fc9081
Merge pull request #641 from CommandAPI/fix/make-nms-common-actually-…
DerEchtePilz Apr 22, 2025
ba35fd4
Integrate BytecodeAnalyser into the GitHub Actions build (#643)
DerEchtePilz Apr 23, 2025
4cb1d79
Fix command registration being broken on the (current) latest Paper b…
DerEchtePilz May 6, 2025
47e8ba8
Update 10.0.1 release date
DerEchtePilz May 6, 2025
df77c23
Ignore requirements for `null` sender
willkroboth May 5, 2025
5a3434a
Set version to 10.0.1
JorelAli May 6, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
There's no need to have this static
  • Loading branch information
DerEchtePilz committed Apr 22, 2025
commit 6e003bce4090ed3cf9b19e2b7c90db847a61faa6
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@
import dev.jorel.commandapi.commandsenders.BukkitCommandSender;
import dev.jorel.commandapi.wrappers.Location2D;
import dev.jorel.commandapi.wrappers.MathOperation;
import dev.jorel.commandapi.wrappers.Rotation;
import net.minecraft.commands.CommandBuildContext;
import net.minecraft.commands.CommandSourceStack;
import net.minecraft.commands.arguments.AngleArgument;
Expand Down Expand Up @@ -71,7 +70,6 @@
import net.minecraft.resources.ResourceLocation;
import net.minecraft.server.level.ColumnPos;
import net.minecraft.world.level.block.state.pattern.BlockInWorld;
import net.minecraft.world.phys.Vec2;
import net.minecraft.world.phys.Vec3;
import org.bukkit.Axis;
import org.bukkit.Bukkit;
Expand All @@ -85,8 +83,6 @@
import org.bukkit.entity.EntityType;
import org.bukkit.entity.Player;
import org.bukkit.potion.PotionEffectType;
import org.bukkit.scoreboard.Objective;
import org.bukkit.scoreboard.Team;

import java.io.File;
import java.io.IOException;
Expand All @@ -110,7 +106,7 @@
*/
public abstract class NMS_Common extends CommandAPIBukkit<CommandSourceStack> {

protected static NamespacedKey fromResourceLocation(ResourceLocation key) {
public final NamespacedKey fromResourceLocation(ResourceLocation key) {
return NamespacedKey.fromString(key.getNamespace() + ":" + key.getPath());
}

Expand Down
Loading
0