File tree Expand file tree Collapse file tree 3 files changed +8
-7
lines changed
src/main/java/dev/arbor/extrasoundsnext/debug Expand file tree Collapse file tree 3 files changed +8
-7
lines changed Original file line number Diff line number Diff line change 11# ExtraSounds Next - Changelog
22
3- ## [ 1.5.0 - 1.5.2 ]
3+ ## [ 1.5.0 - 1.5.3 ]
44
55** New Features**
66- Added sound support for popular mods:
1717
1818** Fixes**
1919- Sound switches not working properly
20- ** Chores**
2120- Correct mixin refmap configuration
21+ - Fixed Forge jar used development version instead of release version
2222
23- ## [ 1.5.3]
24-
23+ ## [ 1.5.4]
2524** Fixes**
26- - Fixed Forge jar used development version instead of release version
25+ - Make DEBUG flag via system property
26+ - Fixed ae2 compatibility
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ org.gradle.configuration-cache=false
55mod.id =extrasounds
66mod.name =ExtraSounds Next
77mod.group =dev.arbor
8- mod.version =1.5.3
8+ mod.version =1.5.4
99mod.channel_tag =
1010mod.authors =Arborsm, stashymane
1111mod.contributors =
Original file line number Diff line number Diff line change @@ -22,7 +22,8 @@ public class DebugUtils {
2222 public static final String NO_CACHE_VAR = "extrasounds.nocache" ;
2323 private static final String JVM_ARG_SEARCH_UNDEF_SND = "extrasounds.searchundef" ;
2424
25- public static final boolean DEBUG = true ;
25+ public static final boolean DEBUG = System .getProperties ().containsKey (DEBUG_VAR )
26+ && System .getProperties ().get (DEBUG_VAR ).equals ("true" );
2627 public static final String DEBUG_PATH = System .getProperties ().containsKey (DEBUG_PATH_VAR )
2728 ? System .getProperty (DEBUG_PATH_VAR ) : "debug/" ;
2829 public static final boolean NO_CACHE = System .getProperties ().containsKey (NO_CACHE_VAR )
You can’t perform that action at this time.
0 commit comments