You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Aug 12, 2025. It is now read-only.
if (configFile.getBoolean("updater.disable_update_message", false)) {
63
+
if (updater.isLatestVersion()) {
64
+
getSLF4JLogger().info("[NextForge] You are running the latest version of NextCore.");
65
+
} else {
66
+
getSLF4JLogger().warn("[NextForge] A new version of NextForge is available! Please update to the latest version for the best experience.");
67
+
getSLF4JLogger().warn("[NextForge] Current version: {}, Latest version: {}", getPluginVersion(), updater.fetchLatestVersion());
68
+
getSLF4JLogger().warn("[NextForge] TIP: By changing the updater settings in config.yml, you can disable this message or change the update channel to 'dev'.");
69
+
getSLF4JLogger().warn("[NextForge] TIP: By changing the updater settings in config.yml, you can automatically download the newest version.");
70
+
}
71
+
}
72
+
if (configFile.getBoolean("updater.auto_update", true)) {
73
+
if (!updater.isLatestVersion()) {
74
+
getSLF4JLogger().info("[NextForge] Downloading the latest version of NextCore...");
0 commit comments