z------------- / CPod

(UNMAINTAINED) A simple, beautiful podcast app for Windows, macOS, and Linux.
Apache License 2.0
746 stars 76 forks source link

Add volume slider to player toggles #148

Closed eralpsahin closed 5 years ago

eralpsahin commented 5 years ago

Implemented the feature request from #147

Additions

If you want me to add anything, I am happy to.

z------------- commented 5 years ago

First of all, kudos and big thanks for looking through my poorly organized codebase and adding in this feature.

I've added in the keyboard shortcuts and a couple of other things.

The mpris stuff is for Linux users who want to be able to control CPod using their environment's interfaces. For example,

if (cbus.audio.mprisPlayer) {
  cbus.audio.mprisPlayer.volume = cbus.audio.element.volume;
}

simply tells mpris that we have changed the volume so that it will be reflected in the mpris interface.