Skip to content

Commit

Permalink
Exit on close button
Browse files Browse the repository at this point in the history
 * Added Exit menu option to File menu
 * updated readme
  • Loading branch information
a-sync committed Oct 14, 2017
1 parent a3e5e64 commit 00e5e9b
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 96 deletions.
20 changes: 12 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,22 @@
# Audio Router

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.
@audiorouterdev created a similar app that does exactly what CheVolume does, except this is free.

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)

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)
[Downloads](https://github.com/a-sync/audio-router/releases/)

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

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.
Changelog 0.10.4:

* Exit on close button
* Added Exit menu option to File menu
* Removed telemetry
* Build updates

**Version 0.10.2 of Audio Router released!** Download it from the original links above.
Changelog 0.10.3:

* Automatic routing enabled
* Minimize to tray

Changelog 0.10.2:

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

Minimum supported OS version: Windows 7

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!
Binary file modified audio-router-gui/audio-router-gui.rc
Binary file not shown.
6 changes: 3 additions & 3 deletions audio-router-gui/window.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ LRESULT window::OnDestroy(UINT /*uMsg*/, WPARAM /*wParam*/, LPARAM /*lParam*/, B

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

This file was deleted.

0 comments on commit 00e5e9b

Please # to comment.