Skip to content

Commit 9c63a9a

Browse files
authored
chore: Update userdev version page (#517)
1 parent ef0c8be commit 9c63a9a

File tree

2 files changed

+4
-14
lines changed

2 files changed

+4
-14
lines changed

docs/paper/dev/getting-started/userdev.mdx

Lines changed: 3 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -48,16 +48,9 @@ plugins {
4848

4949
The latest version of `paperweight-userdev` supports dev bundles for Minecraft 1.17.1 and newer, so it's best practice to keep it up to date!
5050
Only the latest version of `paperweight-userdev` is officially supported, and we will ask you to update first if you are having problems with old versions.
51-
52-
:::warning
53-
54-
In order to use userdev for 1.21.4, you have to update your userdev to a beta version. At the time of writing, the latest version that works for
55-
1.21.4 is `2.0.0-beta.8`. You can find the latest version here: https://github.com/PaperMC/paperweight/releases.
56-
57-
Furthermore, from version `2.0.0` onwards, userdev requires you to use at least **Gradle 8.11.2** (Gradle 8.11 or below will not work). For more information on upgrading, check
58-
out this site from the Gradle docs: https://docs.gradle.org/current/userguide/gradle_wrapper.html.
59-
60-
:::
51+
Furthermore, if you are having issues with `paperweight-userdev`, it is suggested that you update your Gradle version to the latest version. For more information on upgrading Gradle,
52+
check out [the Gradle wrapper documentation](https://docs.gradle.org/current/userguide/gradle_wrapper.html). If you keep experiencing issues, you should ask in the
53+
[`#build-tooling-help`](https://discord.com/channels/289587909051416579/1078993196924813372) channel in our dedicated [Discord server](https://discord.gg/PaperMC)!
6154

6255
:::info[Snapshots]
6356

src/util/versionUtils.ts

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,10 +41,7 @@ const createUserdevVersionsValue = (ttl: number = 5 * 60 * 1000): ExpiringValue<
4141
r.json()
4242
);
4343

44-
return json
45-
.map((e) => e.name.substring(1))
46-
.filter((e) => !e.includes("beta"))
47-
.reverse();
44+
return json.map((e) => e.name.substring(1)).reverse();
4845
});
4946
};
5047

0 commit comments

Comments
 (0)