Skip to content
This repository has been archived by the owner on Jan 30, 2024. It is now read-only.

Commit

Permalink
Merge pull request #2 from agentdid127/master
Browse files Browse the repository at this point in the history
1.17 support, RPC 1.6.0 support
  • Loading branch information
CoryBorek authored Jun 25, 2021
2 parents f820c03 + 6b0912d commit c1ff7d7
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ classes/

# Maven
dependency-reduced-pom.xml

# macOS
.DS_Store
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>com.agentdid127</groupId>
<artifactId>RPC-GUI</artifactId>
<version>0.0.2</version>
<version>0.0.3</version>

<properties>
<maven.compiler.source>8</maven.compiler.source>
Expand Down Expand Up @@ -80,7 +80,7 @@
<dependency>
<groupId>com.github.agentdid127</groupId>
<artifactId>ResourcePackConverter</artifactId>
<version>1.5.2</version>
<version>1.6.0</version>
</dependency>
</dependencies>
</project>
2 changes: 2 additions & 0 deletions src/main/java/com/agentdid127/rpcgui/Main.form
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,7 @@
<item value="1.16.3"/>
<item value="1.16.4"/>
<item value="1.16.5"/>
<item value="1.17"/>
</model>
</properties>
</component>
Expand Down Expand Up @@ -157,6 +158,7 @@
<item value="1.16.3"/>
<item value="1.16.4"/>
<item value="1.16.5"/>
<item value="1.17"/>
</model>
</properties>
</component>
Expand Down
2 changes: 2 additions & 0 deletions src/main/java/com/agentdid127/rpcgui/Main.java
Original file line number Diff line number Diff line change
Expand Up @@ -208,6 +208,7 @@ public void write(byte[] b) throws IOException {
defaultComboBoxModel1.addElement("1.16.3");
defaultComboBoxModel1.addElement("1.16.4");
defaultComboBoxModel1.addElement("1.16.5");
defaultComboBoxModel1.addElement("1.17");
comboBox1.setModel(defaultComboBoxModel1);
versions.add(comboBox1);
initalVersionLabel = new JLabel();
Expand Down Expand Up @@ -249,6 +250,7 @@ public void write(byte[] b) throws IOException {
defaultComboBoxModel2.addElement("1.16.3");
defaultComboBoxModel2.addElement("1.16.4");
defaultComboBoxModel2.addElement("1.16.5");
defaultComboBoxModel2.addElement("1.17");
comboBox2.setModel(defaultComboBoxModel2);
versions.add(comboBox2);
finalVersionLabel = new JLabel();
Expand Down

0 comments on commit c1ff7d7

Please sign in to comment.