volume control, schedule button, VBR decoder fix, reduced debug in decoder, added decoder source

This commit is contained in:
Blue 2019-02-02 01:24:09 +03:00 committed by Gitea
parent 2f8226d406
commit 7713110129
18 changed files with 1486 additions and 12 deletions

View file

@ -52,6 +52,10 @@ var AlbumPage = TempPage.inherit({
[{
type: 0,
action: "play"
},
{
type: 0,
action: "scheduledToPlay"
}]
);
var PaneClass = PaneModel.Songs;

View file

@ -47,6 +47,10 @@ var ArtistPage = TempPage.inherit({
[{
type: 0,
action: "play"
},
{
type: 0,
action: "scheduledToPlay"
}]
);
var PaneClass = PaneModel.Songs;

View file

@ -148,6 +148,10 @@ var MusicPage = Page.inherit({
[{
type: 0,
action: "play"
},
{
type: 0,
action: "scheduledToPlay"
}]
);
this._songsLink = new Link(this._address["+"](new Address(["songsLink"])), "Songs", this._addresses.songs.local.clone());