Skip to content

Commit 7967d0b

Browse files
committed
8.3.2 beta release with potential bug fix for connection isConnected=true but isThreadRunning=false for user input connections
1 parent e959bff commit 7967d0b

File tree

3 files changed

+9
-6
lines changed

3 files changed

+9
-6
lines changed

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ AUTO-GENERATED FILE, CHANGES SHOULD BE DONE IN ./JPM.java or ./src/main/java/JPM
1111
<modelVersion>4.0.0</modelVersion>
1212
<groupId>com.osiris.autoplug.client</groupId>
1313
<artifactId>AutoPlug-Client</artifactId>
14-
<version>8.3.1</version>
14+
<version>8.3.2</version>
1515
<properties>
1616
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1717
<java.version>9</java.version>
18-
<version>8.3.1</version>
18+
<version>8.3.2</version>
1919
<main-class>com.osiris.autoplug.client.Main</main-class>
2020
<slf4j.version>2.0.13</slf4j.version>
2121
<name>AutoPlug-Client</name>

src/main/java/JPM.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ public ThisProject(List<String> args) {
2121
// Override default configurations
2222
this.groupId = "com.osiris.autoplug.client";
2323
this.artifactId = "AutoPlug-Client";
24-
this.version = "8.3.1";
24+
this.version = "8.3.2";
2525
this.mainClass = "com.osiris.autoplug.client.Main";
2626
this.jarName = "AutoPlug-Client-original.jar";
2727
this.fatJarName = "AutoPlug-Client.jar";

src/main/java/com/osiris/autoplug/client/configs/UpdaterConfig.java

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,10 @@
1414
import com.osiris.dyml.YamlSection;
1515
import com.osiris.dyml.exceptions.*;
1616
import com.osiris.jlib.logger.AL;
17+
import me.hsgamer.mcserverupdater.UpdateBuilder;
1718

1819
import java.io.IOException;
20+
import java.util.stream.Collectors;
1921

2022
public class UpdaterConfig extends MyYaml {
2123

@@ -147,11 +149,11 @@ public UpdaterConfig() throws IOException, DuplicateKeyException, YamlReaderExce
147149
server_updater_profile = put(name, "server-updater", "profile").setDefValues("AUTOMATIC").setComments(
148150
"Note that your servers jar/executable NAME will not be updated, even if set to AUTOMATIC, to increase compatibility with external scripts or other programs.",
149151
"The actual content/file will update though, thus rename it to something like server.jar, and do not include version info to prevent confusion.");
152+
String serverSoftwareNames = String.join(" ", UpdateBuilder.getUpdaterNames());
153+
150154
server_software = put(name, "server-updater", "software").setDefValues("paper").setComments(
151155
"Select your favorite server software. Enter the name below. Supported software:\n" +
152-
"- Minecraft (paper, travertine, waterfall, velocity, folia, pandaspigot, purpur, bungeecord, " +
153-
"spigot, patina, pufferfish, fabric, fabric-dev, spongevanilla, spongevanilla-recommended, " +
154-
"spongeforge, spongeforge-recommended, mohist, plazma, kaiiju, divine, leaf, leaves, luminol)\n" +
156+
"- Minecraft ("+serverSoftwareNames+")\n" +
155157
"- Any Steam game (enter the app-id below, go to https://steamdb.info/ and search for: \"<game-name> server\" to find the app-id)\n" +
156158
"Note: If you change this, also reset the \"build-id\" to 0 to guarantee correct update-detection.");
157159
server_steamcmd_login = put(name, "server-updater", "steam-cmd-login")
@@ -161,6 +163,7 @@ public UpdaterConfig() throws IOException, DuplicateKeyException, YamlReaderExce
161163
"If left empty, taken from general.yml, if also empty, taken from server jar.\n" +
162164
"A list of supported versions can be found in the links below:\n" +
163165
"- Minecraft versions: https://papermc.io/api/v2/projects/paper | https://papermc.io/api/v2/projects/waterfall | https://papermc.io/api/v2/projects/travertine | https://papermc.io/api/v2/projects/velocity | https://purpur.pl3x.net/downloads | https://fabricmc.net/use/installer\n" +
166+
"- If not listed, you must google to get the project and find its latest version." +
164167
"Enter \"latest\" as version to always fetch the latest release (major + minor).\n" +
165168
"Pufferfish+ (and its purpur variant) are also supported by appending -plus and/or -purpur to the version.\n" +
166169
"Note: Only update to a newer version if you are sure that all your essential plugins support that version.\n" +

0 commit comments

Comments
 (0)