Skip to content

Commit 6e6a455

Browse files
committed
9.0.0 - Java 9 Update Stable (ENSURE YOUR GLOBAL JAVA INSTALLATION IS JAVA 9 OR HIGHER)
1 parent 120ac17 commit 6e6a455

File tree

4 files changed

+6
-7
lines changed

4 files changed

+6
-7
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.5</version>
14+
<version>9.0.0</version>
1515
<properties>
1616
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1717
<java.version>9</java.version>
18-
<version>8.3.5</version>
18+
<version>9.0.0</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.5";
24+
this.version = "9.0.0";
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/SSHConfig.java

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -91,17 +91,15 @@ public SSHConfig() throws IOException, DuplicateKeyException, YamlReaderExceptio
9191
"The generated file will be a .pub file, which contains the public key.",
9292
"Example connection command: `ssh -i /path/to/private/key username@server-ip-address`");
9393

94-
server_private_key = put(name, "server-private-key").setDefValues("./autoplug/server_host_key.ser")
94+
server_private_key = put(name, "server-private-key").setDefValues("./autoplug/system/ssh_private_server_key")
9595
.setComments(
9696
"The private key used by the server to authenticate itself to the SSH console.",
9797
"The file must be in the OpenSSH format.",
9898
"Create keys with 'ssh-keygen -t rsa -b 4096' and add them to the file.",
9999
"The generated file can be found in the .ssh directory of the user that created the key, unless a different path was specified.",
100100
"The generated file will be a file with no extension, which contains the private key.",
101101
"In the same directory as the private key, there will also need to be a file with the same name and a .pub extension, which contains the public key.",
102-
"NOTICE: The .ssh directory is not present by default, and must be created via the usage of the 'ssh-keygen' command.",
103-
"Example:",
104-
"server-private-key: ./autoplug/id_rsa");
102+
"NOTICE: The .ssh directory is not present by default, and must be created via the usage of the 'ssh-keygen' command.");
105103

106104
username = put(name, "username").setDefValues("autoplug")
107105
.setComments(

src/main/java/com/osiris/autoplug/client/network/online/ConMain.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525
public class ConMain extends DefaultConnection {
2626
public final ConSendPublicDetails CON_PUBLIC_DETAILS = new ConSendPublicDetails();
2727

28+
2829
// Secondary connections:
2930
public final ConAutoPlugConsoleReceive CON_CONSOLE_RECEIVE = new ConAutoPlugConsoleReceive();
3031
public final ConAutoPlugConsoleSend CON_CONSOLE_SEND = new ConAutoPlugConsoleSend();

0 commit comments

Comments
 (0)