Skip to content

Commit e6ef1ba

Browse files
authored
[ci skip] Update download urls (#9100)
1 parent 497b919 commit e6ef1ba

7 files changed

+11
-11
lines changed

.github/ISSUE_TEMPLATE/behavior-bug-or-plugin-incompatibility.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ body:
6868
value: |
6969
Before submitting this issue, please ensure the following:
7070
71-
1. You are running the latest version of Paper from [our downloads page](https://papermc.io/downloads).
71+
1. You are running the latest version of Paper from [our downloads page](https://papermc.io/downloads/paper).
7272
2. You searched for and ensured there isn't already an open issue regarding this.
7373
3. Your version of Minecraft is supported by Paper.
7474

.github/ISSUE_TEMPLATE/performance-problem.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,6 @@ body:
7979
value: |
8080
Before submitting this issue, please ensure the following:
8181
82-
1. You are running the latest version of Paper from [our downloads page](https://papermc.io/downloads).
82+
1. You are running the latest version of Paper from [our downloads page](https://papermc.io/downloads/paper).
8383
2. You searched for and ensured there isn't already an open issue regarding this.
8484
3. Your version of Minecraft is supported by Paper.

.github/ISSUE_TEMPLATE/server-crash-or-stacktrace.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ body:
6868
value: |
6969
Before submitting this issue, please ensure the following:
7070
71-
1. You are running the latest version of Paper from [our downloads page](https://papermc.io/downloads).
71+
1. You are running the latest version of Paper from [our downloads page](https://papermc.io/downloads/paper).
7272
2. Your version of Minecraft is supported by Paper.
7373
7474
If your server crash log contains `DO NOT REPORT THIS TO PAPER`, please ask in our

patches/server/0027-Show-Paper-in-client-crashes-server-lists-and-Mojang.patch

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ index 6251d93c2ea61c471b4e1069048327782acc78e7..d3cd196e1a6f707ed5e0008123cc65df
1919

2020
public SystemReport fillSystemReport(SystemReport details) {
2121
diff --git a/src/main/java/org/bukkit/craftbukkit/CraftServer.java b/src/main/java/org/bukkit/craftbukkit/CraftServer.java
22-
index b9eae8760a642ab5a38980787dde045a3c08046d..fbc62e2b07a430dea8a827790bda5fbf6f19d05b 100644
22+
index e80510f14b9007afebf76110b936f1b5c29078d6..5e79baa09e3ae468a58b0f2e5f9e08c67fcd7ff8 100644
2323
--- a/src/main/java/org/bukkit/craftbukkit/CraftServer.java
2424
+++ b/src/main/java/org/bukkit/craftbukkit/CraftServer.java
2525
@@ -254,7 +254,7 @@ import org.yaml.snakeyaml.error.MarkedYAMLException;
@@ -32,15 +32,15 @@ index b9eae8760a642ab5a38980787dde045a3c08046d..fbc62e2b07a430dea8a827790bda5fbf
3232
private final String bukkitVersion = Versioning.getBukkitVersion();
3333
private final Logger logger = Logger.getLogger("Minecraft");
3434
diff --git a/src/main/java/org/bukkit/craftbukkit/Main.java b/src/main/java/org/bukkit/craftbukkit/Main.java
35-
index 7252677bd6dabe094bfc9d47882059b9cb86e791..422a7764ec8713ef6dc2f7cfbe152679ad91a891 100644
35+
index 7252677bd6dabe094bfc9d47882059b9cb86e791..e318b381e9d66fa83a6481f55d17fe5dcbb277ba 100644
3636
--- a/src/main/java/org/bukkit/craftbukkit/Main.java
3737
+++ b/src/main/java/org/bukkit/craftbukkit/Main.java
3838
@@ -233,12 +233,25 @@ public class Main {
3939
deadline.add(Calendar.DAY_OF_YEAR, -7);
4040
if (buildDate.before(deadline.getTime())) {
4141
System.err.println("*** Error, this build is outdated ***");
4242
- System.err.println("*** Please download a new build as per instructions from https://www.spigotmc.org/go/outdated-spigot ***");
43-
+ System.err.println("*** Please download a new build as per instructions from https://papermc.io/downloads ***"); // Paper
43+
+ System.err.println("*** Please download a new build as per instructions from https://papermc.io/downloads/paper ***"); // Paper
4444
System.err.println("*** Server will start in 20 seconds ***");
4545
Thread.sleep(TimeUnit.SECONDS.toMillis(20));
4646
}

patches/server/0028-Implement-Paper-VersionChecker.patch

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Subject: [PATCH] Implement Paper VersionChecker
66

77
diff --git a/src/main/java/com/destroystokyo/paper/PaperVersionFetcher.java b/src/main/java/com/destroystokyo/paper/PaperVersionFetcher.java
88
new file mode 100644
9-
index 0000000000000000000000000000000000000000..351159bbdb0c8045f4983f54dee34430dbcc423e
9+
index 0000000000000000000000000000000000000000..22a55be34fde453fedd987173d95b8b347a03588
1010
--- /dev/null
1111
+++ b/src/main/java/com/destroystokyo/paper/PaperVersionFetcher.java
1212
@@ -0,0 +1,129 @@
@@ -30,7 +30,7 @@ index 0000000000000000000000000000000000000000..351159bbdb0c8045f4983f54dee34430
3030
+public class PaperVersionFetcher implements VersionFetcher {
3131
+ private static final java.util.regex.Pattern VER_PATTERN = java.util.regex.Pattern.compile("^([0-9\\.]*)\\-.*R"); // R is an anchor, will always give '-R' at end
3232
+ private static final String GITHUB_BRANCH_NAME = "master";
33-
+ private static final String DOWNLOAD_PAGE = "https://papermc.io/downloads";
33+
+ private static final String DOWNLOAD_PAGE = "https://papermc.io/downloads/paper";
3434
+ private static @Nullable String mcVer;
3535
+
3636
+ @Override

patches/server/0152-Fix-this-stupid-bullshit.patch

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ index e43096e69a00f9ea96badd7c966443cfcf3e7b95..ac2b7b5161eaaca3620268ae865d6f2a
3131
Bootstrap.isBootstrapped = true;
3232
if (BuiltInRegistries.REGISTRY.keySet().isEmpty()) {
3333
diff --git a/src/main/java/org/bukkit/craftbukkit/Main.java b/src/main/java/org/bukkit/craftbukkit/Main.java
34-
index ebf561bce1b442f2b3a138d4ba0ed252e4ba3207..a8b21195ca304b3ff68c8bf7e336b4df64603c10 100644
34+
index beec3ebe4abc977885f93ef28aac3e834142d373..22aeca9eb61ccc0d2dc8ef3b0eb8ee242dd909bb 100644
3535
--- a/src/main/java/org/bukkit/craftbukkit/Main.java
3636
+++ b/src/main/java/org/bukkit/craftbukkit/Main.java
3737
@@ -250,10 +250,12 @@ public class Main {
@@ -41,7 +41,7 @@ index ebf561bce1b442f2b3a138d4ba0ed252e4ba3207..a8b21195ca304b3ff68c8bf7e336b4df
4141
- System.err.println("*** Error, this build is outdated ***");
4242
+ // Paper start - This is some stupid bullshit
4343
+ System.err.println("*** Warning, you've not updated in a while! ***");
44-
System.err.println("*** Please download a new build as per instructions from https://papermc.io/downloads ***"); // Paper
44+
System.err.println("*** Please download a new build as per instructions from https://papermc.io/downloads/paper ***"); // Paper
4545
- System.err.println("*** Server will start in 20 seconds ***");
4646
- Thread.sleep(TimeUnit.SECONDS.toMillis(20));
4747
+ //System.err.println("*** Server will start in 20 seconds ***");

settings.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ if (!file(".git").exists()) {
2222
zip from GitHub.
2323
2424
Built Paper jars are available for download at
25-
https://papermc.io/downloads
25+
https://papermc.io/downloads/paper
2626
2727
See https://github.com/PaperMC/Paper/blob/master/CONTRIBUTING.md
2828
for further information on building and modifying Paper.

0 commit comments

Comments
 (0)