Skip to content

Commit

Permalink
Merge pull request #17 from ua0lnj/master
Browse files Browse the repository at this point in the history
Version 1.1.1.
  • Loading branch information
ua0lnj authored Mar 25, 2021
2 parents eaadde8 + 89b9326 commit 649fa5d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions filebrowser.c
Original file line number Diff line number Diff line change
Expand Up @@ -201,6 +201,7 @@ eOSState cMpvFilebrowser::ProcessKey(eKeys Key)
// first let VDR handle those keys or we get the previous item
State = cOsdMenu::ProcessKey(Key);
item = (cMpvFilebrowserMenuItem *) Get(Current());
if (!item) break;
currentItem = item->Text();
#ifdef USE_DISC
SetHelp(tr("Disc"), item->IsDirectory() ? tr("PlayDir") : NULL, tr("Shuffle"), NULL);
Expand Down
2 changes: 1 addition & 1 deletion mpv.c
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
#include "menu_options.h"
#include "mpv_service.h"

static const char *VERSION = "1.1.0"
static const char *VERSION = "1.1.1"
#ifdef GIT_REV
"-GIT" GIT_REV
#endif
Expand Down
2 changes: 1 addition & 1 deletion player.c
Original file line number Diff line number Diff line change
Expand Up @@ -968,6 +968,6 @@ void cMpvPlayer::SetVolume(int Volume)
{
if (MpvPluginConfig->SoftVol)
SendCommand("set volume %d\n", Volume);
else
else if (PlayerIsRunning())
mpv_set_property_string(hMpv, "ao-volume", std::to_string(Volume).c_str());
}

0 comments on commit 649fa5d

Please sign in to comment.