lots of changes:
- change how we handle modules for services in the VM - fixed wtv-disk:/sync always failed the first time - implement production-like wtv-star handling (when a service port becomes unavailable, it requests the url over the wtv-star port to show an error page) - renamed WTVDownloadList.js to WTVDisk.js - a bit more work on WTVNews (created class) - probably more stuff I can't remember
This commit is contained in:
@@ -1,5 +1,7 @@
|
||||
var minisrv_service_file = true;
|
||||
|
||||
const wtvbgm = new WTVBGMusic(minisrv_config, session_data);
|
||||
|
||||
var catsListed = 0;
|
||||
var categories = wtvbgm.getCategoryList();
|
||||
var divide = Math.round(categories.length / 2, 0);
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
var minisrv_service_file = true;
|
||||
|
||||
const wtvbgm = new WTVBGMusic(minisrv_config, session_data);
|
||||
var music_obj = wtvbgm.getMusicObj();
|
||||
|
||||
headers = `
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
var minisrv_service_file = true;
|
||||
|
||||
if (request_headers.query.category) {
|
||||
const wtvbgm = new WTVBGMusic(minisrv_config, session_data);
|
||||
var musicList = wtvbgm.getCategorySongList(request_headers.query.category);
|
||||
var categoryName = wtvbgm.getCategoryName(request_headers.query.category);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user