File tree Expand file tree Collapse file tree
main/java/de/lars/remotelightcore
test/java/de/lars/remotelightcore Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11## Changelog
2+ #### v0.2.4-rc2
3+ - minor UI fixes and improvements
4+ - fixed window size sometimes not saving
5+ - fixed output Add-popup-menu background
6+ - added setting to customize the UI font and font size
7+ - fixed notification overlaps scrollbar
8+ - other minor fixes like text color
9+ - fixed data file not completely saved to disk (issue #10 )
10+ - fixed MusicSync error when no sound input is selected (issue #11 )
11+ - added virtual output so that e.g. plugins can forward output data
12+ - added Multi output ([ learn more] ( https://github.com/Drumber/RemoteLight/wiki/MultiOutput ) )
13+ - fixed Chain output ([ learn more] ( https://github.com/Drumber/RemoteLight/wiki/Chain ) )
14+
215#### v0.2.4-rc1
316- added new rainbow modes to Rainbow animation
417- added plugin system for java plugins
Original file line number Diff line number Diff line change @@ -66,7 +66,7 @@ public class RemoteLightCore {
6666 private static long startMillis = System .currentTimeMillis ();
6767
6868 public final static String VERSION = "v0.2.4-rc2" ;
69- public final static boolean DEVBUILD = true ;
69+ public final static boolean DEVBUILD = false ;
7070 public final static String WEBSITE = "https://remotelight-software.blogspot.com" ;
7171 public final static String GITHUB = "https://github.com/Drumber/RemoteLight" ;
7272
Original file line number Diff line number Diff line change @@ -69,7 +69,7 @@ public void runTest() {
6969 System .out .println ("Time elapsed: " + duration + " ms" );
7070
7171 // delete file
72- file .deleteOnExit ();
72+ file .delete ();
7373 }
7474
7575
You can’t perform that action at this time.
0 commit comments