Skip to content

Commit fb0ba37

Browse files
committed
Bump version number
1 parent c63432a commit fb0ba37

File tree

4 files changed

+4
-3
lines changed

4 files changed

+4
-3
lines changed

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>groupId</groupId>
88
<artifactId>jda</artifactId>
9-
<version>0.0.5</version>
9+
<version>0.0.6</version>
1010

1111
<repositories>
1212
<repository>

src/main/java/the/bytecode/club/jda/JDA.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828

2929
public class JDA {
3030
/*per version*/
31-
public static final String version = "0.0.5";
31+
public static final String version = "0.0.6";
3232
public static final boolean previewCopy = false;
3333
/* Constants */
3434
public static final String fs = System.getProperty("file.separator");

src/main/java/the/bytecode/club/jda/decompilers/ProcyonDecompiler.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,7 @@ public boolean tryLoadType(String s, Buffer buffer) {
114114
@Override
115115
public void decompileToZip(String zipName) {
116116
// todo: rewrite
117+
throw new UnsupportedOperationException();
117118
}
118119
}
119120

src/main/java/the/bytecode/club/jda/settings/Settings.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ public class Settings {
2929
public static final Setting PATH = new Setting("path", "");
3030
public static final Setting SHOW_CONTAINER_NAME = new Setting("showfilename", false, BOOLEAN);
3131
public static final Setting SNAP_TO_EDGES = new Setting("snaptoedges", false, BOOLEAN);
32-
public static final Setting DO_UPDATE_CHECK = new Setting("doupdatecheck", true, BOOLEAN);
32+
public static final Setting DO_UPDATE_CHECK = new Setting("doupdatecheck", false, BOOLEAN);
3333
public static final Setting REFRESH_ON_VIEW_CHANGE = new Setting("refreshonviewchange", false, BOOLEAN);
3434

3535
public static final Setting FONT_SIZE = new Setting("font", "fontsize", 12, INT);

0 commit comments

Comments
 (0)