Skip to content

Commit 00e5e9b

Browse files
author
smith
committed
Exit on close button
* Added Exit menu option to File menu * updated readme
1 parent a3e5e64 commit 00e5e9b

File tree

4 files changed

+15
-96
lines changed

4 files changed

+15
-96
lines changed

README.md

Lines changed: 12 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,22 @@
11
# Audio Router
22

3-
I created a similar app that does exactly what CheVolume does, except this is free at least for now. I tried to make a public post about it here on /r/software, but apparently they don't allow any download links to unknown apps in a text post.
3+
@audiorouterdev created a similar app that does exactly what CheVolume does, except this is free.
44

5-
If you want to test it out, [here's the download link (64-bit).](https://github.com/audiorouterdev/audio-router/releases/download/v0.10.2/AudioRouter-0.10.2.zip)
6-
7-
If you don't have a 64 bit OS, [here's the 32 bit version.](https://github.com/audiorouterdev/audio-router/releases/download/v0.10.2/AudioRouter-0.10.2-32bit.zip)
5+
[Downloads](https://github.com/a-sync/audio-router/releases/)
86

97
[Here's a simple gif to show how it's used.](http://i.imgur.com/uq6ApMe.gif)
108

11-
For all feature requests/bugs/feedback, you can send me a [PM.](https://www.reddit.com/message/compose/?to=audiorouterdev) I highly appreciate all of them. The thread is now archived, so unfortunately you can't reply to it anymore.
9+
Changelog 0.10.4:
10+
11+
* Exit on close button
12+
* Added Exit menu option to File menu
13+
* Removed telemetry
14+
* Build updates
1215

13-
**Version 0.10.2 of Audio Router released!** Download it from the original links above.
16+
Changelog 0.10.3:
17+
18+
* Automatic routing enabled
19+
* Minimize to tray
1420

1521
Changelog 0.10.2:
1622

@@ -75,5 +81,3 @@ Current known bugs:
7581
* Routing audio to a new device does not delete old audio sessions, so the windows volume mixer fills up with unused sessions.
7682

7783
Minimum supported OS version: Windows 7
78-
79-
Since many people have been asking for this, [here's a link](https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=audiorouterdev%40gmail%2ecom&lc=FI&item_name=Audio%20Router%20Donation&currency_code=USD&bn=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHosted) for PayPal donation if you want to give your support. Naturally, I highly appreciate any amount of donation you are willing to make!
128 Bytes
Binary file not shown.

audio-router-gui/window.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ LRESULT window::OnDestroy(UINT /*uMsg*/, WPARAM /*wParam*/, LPARAM /*lParam*/, B
3333

3434
LRESULT window::OnSysCommand(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled)
3535
{
36-
if (wParam == SC_MINIMIZE || IsWindowVisible() && wParam == SC_CLOSE)
36+
if (wParam == SC_MINIMIZE/* || IsWindowVisible() && wParam == SC_CLOSE*/)
3737
{
3838
/* for(dialog_main::dialog_arrays_t::iterator it = this->dlg_main->dialog_arrays.begin();
3939
it != this->dlg_main->dialog_arrays.end();
@@ -132,10 +132,10 @@ LRESULT window::OnFileRefreshlist(WORD /*wNotifyCode*/, WORD /*wID*/, HWND /*hWn
132132
LRESULT window::OnAbout(WORD /*wNotifyCode*/, WORD /*wID*/, HWND /*hWndCtl*/, BOOL& /*bHandled*/)
133133
{
134134
this->MessageBoxW(
135-
L"Audio Router version 0.10.2.\n" \
135+
L"Audio Router version 0.10.4.\n" \
136136
L"\nIf you come across any bugs(especially relating to routing or duplicating), " \
137137
L"or just have an idea for a new feature, " \
138-
L"please send a PM to the developer on reddit: reddit.com/user/audiorouterdev/",
138+
L"please open an issue on github: github.com/a-sync/audio-router/",
139139
L"About", MB_ICONINFORMATION);
140140
return 0;
141141
}

old_comment.txt

Lines changed: 0 additions & 85 deletions
This file was deleted.

0 commit comments

Comments
 (0)