Skip to content

Commit

Permalink
v1.2.1b2
Browse files Browse the repository at this point in the history
  • Loading branch information
Ottodix committed Jun 26, 2019
1 parent d33757b commit faecf32
Show file tree
Hide file tree
Showing 4 changed files with 239 additions and 202 deletions.
Binary file modified themes/eole/columnsUI_eole.fcl
Binary file not shown.
16 changes: 15 additions & 1 deletion themes/eole/js/JSpss_switch.js
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,20 @@ const refreshPSS_async = async() =>
}
};
function RefreshPSS() {
//let handle_list = plman.GetPlaylistItems(plman.ActivePlaylist);
if (fb.IsPaused) {
let handle_list = new FbMetadbHandleList(fb.GetNowPlaying());
handle_list.RefreshStats();
}
else if (fb.IsPlaying) {
let handle_list = new FbMetadbHandleList(fb.GetNowPlaying());
handle_list.RefreshStats();
}
else {
fb.Play();fb.Stop();
}
}
function RefreshPSS_old1() {
if (fb.IsPaused) {
fb.Play();
fb.Pause();
Expand All @@ -118,7 +132,7 @@ function RefreshPSS() {
fb.Play();fb.Stop();
}
}
function RefreshPSS_old() {
function RefreshPSS_old2() {
if (fb.IsPlaying || fb.IsPaused) {
fb.PlayOrPause();
fb.PlayOrPause();
Expand Down
2 changes: 1 addition & 1 deletion themes/eole/js/JStheme_common.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ var last_mouse_move_notified = (new Date).getTime();
var foo_playcount = utils.CheckComponent("foo_playcount", true);
var timers = []
var globalProperties = {
theme_version: '1.2.1b1',
theme_version: '1.2.1b2',
thumbnailWidthMax: window.GetProperty("GLOBAL thumbnail width max", 200),
coverCacheWidthMax: window.GetProperty("GLOBAL cover cache width max", 400),
TextRendering: 4,
Expand Down
Loading

0 comments on commit faecf32

Please sign in to comment.