Skip to content

Commit d53cbc6

Browse files
committed
added changelog for new release, improved 16x16 icon and fixed test file not always deleted
1 parent 2ec8b87 commit d53cbc6

5 files changed

Lines changed: 15 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,17 @@
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
-48 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.

remotelight-core/src/main/java/de/lars/remotelightcore/RemoteLightCore.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

remotelight-core/src/test/java/de/lars/remotelightcore/FileStoreTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)