Skip to content

Commit

Permalink
added changelog for new release, improved 16x16 icon and fixed test f…
Browse files Browse the repository at this point in the history
…ile not always deleted
  • Loading branch information
Drumber committed Sep 5, 2020
1 parent 2ec8b87 commit d53cbc6
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 2 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,17 @@
## Changelog
#### v0.2.4-rc2
- minor UI fixes and improvements
- fixed window size sometimes not saving
- fixed output Add-popup-menu background
- added setting to customize the UI font and font size
- fixed notification overlaps scrollbar
- other minor fixes like text color
- fixed data file not completely saved to disk (issue #10)
- fixed MusicSync error when no sound input is selected (issue #11)
- added virtual output so that e.g. plugins can forward output data
- added Multi output ([learn more](https://github.com/Drumber/RemoteLight/wiki/MultiOutput))
- fixed Chain output ([learn more](https://github.com/Drumber/RemoteLight/wiki/Chain))

#### v0.2.4-rc1
- added new rainbow modes to Rainbow animation
- added plugin system for java plugins
Expand Down
Binary file modified remotelight-client/icons/icon-icns.icns
Binary file not shown.
Binary file modified remotelight-client/icons/icon-ico.ico
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ public class RemoteLightCore {
private static long startMillis = System.currentTimeMillis();

public final static String VERSION = "v0.2.4-rc2";
public final static boolean DEVBUILD = true;
public final static boolean DEVBUILD = false;
public final static String WEBSITE = "https://remotelight-software.blogspot.com";
public final static String GITHUB = "https://github.com/Drumber/RemoteLight";

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ public void runTest() {
System.out.println("Time elapsed: " + duration + " ms");

// delete file
file.deleteOnExit();
file.delete();
}


Expand Down

0 comments on commit d53cbc6

Please sign in to comment.