Skip to content

Commit

Permalink
switch skripthub back to shanebeee
Browse files Browse the repository at this point in the history
  • Loading branch information
ShaneBeee committed Jan 4, 2025
1 parent 81a0a14 commit c96094d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/main/java/com/shanebeestudios/skbee/SkBee.java
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ public void onEnable() {
String version = getDescription().getVersion();
if (version.contains("-")) {
Util.log("&eThis is a BETA build, things may not work as expected, please report any bugs on GitHub");
Util.log("&ehttps://github.com/SkriptHub/SkBee/issues");
Util.log("&ehttps://github.com/ShaneBeee/SkBee/issues");
}

new UpdateChecker(this);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ private void onJoin(PlayerJoinEvent event) {

Bukkit.getScheduler().runTaskLater(UpdateChecker.this.plugin, () -> getUpdateVersion(true).thenApply(version -> {
Util.sendColMsg(player, "&7[&bSk&3Bee&7] update available: &a" + version);
Util.sendColMsg(player, "&7[&bSk&3Bee&7] download at &bhttps://github.com/SkriptHub/SkBee/releases");
Util.sendColMsg(player, "&7[&bSk&3Bee&7] download at &bhttps://github.com/ShaneBeee/SkBee/releases");
return true;
}), 30);
}
Expand All @@ -63,7 +63,7 @@ private void checkUpdate(boolean async) {
Util.logLoading("&cPlugin is not up to date!");
Util.logLoading(" - Current version: &cv%s", this.pluginVersion);
Util.logLoading(" - Available update: &av%s", version);
Util.logLoading(" - Download available at: https://github.com/SkriptHub/SkBee/releases");
Util.logLoading(" - Download available at: https://github.com/ShaneBeee/SkBee/releases");
return true;
}).exceptionally(throwable -> {
Util.logLoading("&aPlugin is up to date!");
Expand Down Expand Up @@ -108,7 +108,7 @@ private CompletableFuture<Version> getLatestReleaseVersion(boolean async) {
@SuppressWarnings("CallToPrintStackTrace")
private @Nullable Version getLastestVersionFromGitHub() {
try {
URL url = new URL("https://api.github.com/repos/SkriptHub/SkBee/releases/latest");
URL url = new URL("https://api.github.com/repos/ShaneBeee/SkBee/releases/latest");
BufferedReader reader = new BufferedReader(new InputStreamReader(url.openStream()));
JsonObject jsonObject = new Gson().fromJson(reader, JsonObject.class);
String tag_name = jsonObject.get("tag_name").getAsString();
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/plugin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version: '@version@'
description: "A simple Skript addon to help customize your server to the fullest."
api-version: '1.13'
author: ShaneBee
website: https://github.com/SkriptHub/SkBee
website: https://github.com/ShaneBeee/SkBee
depend:
- Skript
loadbefore:
Expand Down

0 comments on commit c96094d

Please sign in to comment.