-
-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
38 changed files
with
1,714 additions
and
7,897 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,58 +1,31 @@ | ||
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 | ||
From: AlphaKR93 <[email protected]> | ||
Date: Tue, 14 May 2024 18:36:30 +0900 | ||
Subject: [PATCH] Rebrand | ||
Subject: [PATCH] Fork-friendly Rebranding | ||
|
||
|
||
diff --git a/MIT.txt b/MIT.txt | ||
new file mode 100644 | ||
index 0000000000000000000000000000000000000000..67d405764ed68083d0164b1af0eabc0af7f6efea | ||
--- /dev/null | ||
+++ b/MIT.txt | ||
@@ -0,0 +1,21 @@ | ||
+The MIT License (MIT) | ||
+ | ||
+Copyright (c) 2024 Paper Contributors | ||
+ | ||
+Permission is hereby granted, free of charge, to any person obtaining | ||
+a copy of this software and associated documentation files (the "Software"), | ||
+to deal in the Software without restriction, including without limitation | ||
+the rights to use, copy, modify, merge, publish, distribute, sublicense, | ||
+and/or sell copies of the Software, and to permit persons to whom | ||
+the Software is furnished to do so, subject to the following conditions: | ||
+ | ||
+The above copyright notice and this permission notice shall be included | ||
+in all copies or substantial portions of the Software. | ||
+ | ||
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, | ||
+EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE | ||
+WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE | ||
+AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS | ||
+BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN | ||
+AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF | ||
+OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. | ||
diff --git a/src/main/java/co/aikar/timings/TimingHandler.java b/src/main/java/co/aikar/timings/TimingHandler.java | ||
index 199789d56d22fcb1b77ebd56805cc28aa5a5ab0a..3b3bcfa6fa2dbcc7fef899cc7570da097437ab3a 100644 | ||
index 199789d56d22fcb1b77ebd56805cc28aa5a5ab0a..41d10421e1e79711e2e90ff2dc225bfd9cac9284 100644 | ||
--- a/src/main/java/co/aikar/timings/TimingHandler.java | ||
+++ b/src/main/java/co/aikar/timings/TimingHandler.java | ||
@@ -127,7 +127,7 @@ class TimingHandler implements Timing { | ||
while ((last = TIMING_STACK.removeLast()) != this) { | ||
last.timingDepth = 0; | ||
if ("Minecraft".equalsIgnoreCase(last.identifier.group)) { | ||
- Logger.getGlobal().log(Level.SEVERE, "TIMING_STACK_CORRUPTION - Look above this for any errors and report this to Paper unless it has a plugin in the stack trace (" + last.identifier + " did not stopTiming)"); | ||
+ Logger.getGlobal().log(Level.SEVERE, "TIMING_STACK_CORRUPTION - Look above this for any errors and report this to " + io.papermc.paper.ServerBuildInfo.buildInfo().brandName() + " unless it has a plugin in the stack trace (" + last.identifier + " did not stopTiming)"); | ||
+ Logger.getGlobal().log(Level.SEVERE, "TIMING_STACK_CORRUPTION - Look above this for any errors and report this to " + io.papermc.paper.ServerBuildInfo.buildInfo().brandName() + " unless it has a plugin in the stack trace (" + last.identifier + " did not stopTiming)"); // Plazma - Fork-friendly Rebranding | ||
} else { | ||
Logger.getGlobal().log(Level.SEVERE, "TIMING_STACK_CORRUPTION - Report this to the plugin " + last.identifier.group + " (Look for errors above this in the logs) (" + last.identifier + " did not stopTiming)", new Throwable()); | ||
} | ||
diff --git a/src/main/java/io/papermc/paper/ServerBuildInfo.java b/src/main/java/io/papermc/paper/ServerBuildInfo.java | ||
index 7196594e07af19a14c320d77df893978525fe386..843283cfee6e481addea1f1c18147639c70ddfe0 100644 | ||
index 7196594e07af19a14c320d77df893978525fe386..6ac3376f12df2ee3e0519ab8b5a0c8211350e550 100644 | ||
--- a/src/main/java/io/papermc/paper/ServerBuildInfo.java | ||
+++ b/src/main/java/io/papermc/paper/ServerBuildInfo.java | ||
@@ -33,6 +33,29 @@ public interface ServerBuildInfo { | ||
Key BRAND_PURPUR_ID = Key.key("purpurmc", "purpur"); | ||
// Purpur end | ||
|
||
+ // Plazma start - Rebranding | ||
+ // Plazma start - Fork-friendly Rebranding | ||
+ /** | ||
+ * The brand id for Plazma. | ||
+ */ | ||
|
@@ -73,21 +46,21 @@ index 7196594e07af19a14c320d77df893978525fe386..843283cfee6e481addea1f1c18147639 | |
+ BRAND_PURPUR_ID, | ||
+ BRAND_PLAZMA_ID | ||
+ ); | ||
+ // Plazma end - Rebranding | ||
+ // Plazma end - Fork-friendly Rebranding | ||
+ | ||
/** | ||
* Gets the {@code ServerBuildInfo}. | ||
* | ||
diff --git a/src/main/java/org/bukkit/command/defaults/VersionCommand.java b/src/main/java/org/bukkit/command/defaults/VersionCommand.java | ||
index c880d0010849ab733ad13bbd18fab3c864d0cf61..e7d7bcbd3dbaf69fd7b9375d4f53ef9420c6b46a 100644 | ||
index c880d0010849ab733ad13bbd18fab3c864d0cf61..316317222a137c2781b9b0c38948912e9dd08c76 100644 | ||
--- a/src/main/java/org/bukkit/command/defaults/VersionCommand.java | ||
+++ b/src/main/java/org/bukkit/command/defaults/VersionCommand.java | ||
@@ -259,7 +259,7 @@ public class VersionCommand extends BukkitCommand { | ||
// Purpur start | ||
int distance = getVersionFetcher().distance(); | ||
final Component message = Component.join(net.kyori.adventure.text.JoinConfiguration.separator(Component.newline()), | ||
- ChatColor.parseMM("<grey>Current Purpur Version: %s%s*", distance == 0 ? "<green>" : distance > 0 ? "<yellow>" : "<red>", Bukkit.getVersion()), | ||
+ ChatColor.parseMM("<grey>Current " + io.papermc.paper.ServerBuildInfo.buildInfo().brandName() + " Version: %s%s*", distance == 0 ? "<green>" : distance > 0 ? "<yellow>" : "<red>", Bukkit.getVersion()), | ||
+ ChatColor.parseMM("<grey>Current " + io.papermc.paper.ServerBuildInfo.buildInfo().brandName() + " Version: %s%s*", distance == 0 ? "<green>" : distance > 0 ? "<yellow>" : "<red>", Bukkit.getVersion()), // Plazma - Fork-friendly Rebranding | ||
// Purpur end | ||
msg | ||
); | ||
|
Oops, something went wrong.