Skip to content
This repository was archived by the owner on Nov 26, 2019. It is now read-only.

Commit 0334472

Browse files
committed
Changed version from 1.3.3 to 1.3.4 and added uncaught exception handler
1 parent 41c3dd9 commit 0334472

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

client/src/main/java/com/msc/serverbrowser/Client.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -345,6 +345,9 @@ private static void selfRestart()
345345
public static void main(final String[] args)
346346
{
347347
readApplicationArguments(args);
348+
349+
Thread.setDefaultUncaughtExceptionHandler((t, e) -> Logging.log(Level.SEVERE, "Uncaught exception in thread: " + t, e));
350+
348351
Application.launch(args);
349352
}
350353

client/src/main/java/com/msc/serverbrowser/data/properties/Property.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ public enum Property
2020
ALLOW_CLOSE_SAMP(11, false, Boolean.class),
2121
CHANGELOG_ENABLED(12, true, Boolean.class),
2222
DEVELOPMENT(13, false, Boolean.class),
23-
LAST_TAG_NAME(14, "1.3.3", String.class),
23+
LAST_TAG_NAME(14, "1.3.4", String.class),
2424
ALLOW_CACHING_DOWNLOADS(15, true, Boolean.class);
2525

2626
private int id;

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
projectVersion = 1.3.3
1+
projectVersion = 1.3.4
22
projectGroup = me.marcelschr.samp
33
projectVendor = Bios-Marcel
44
gradleWrapperVersion = 4.1

0 commit comments

Comments
 (0)