- added list of sponsors, if you host an instance, it can be enabled with showSponsors. - fixed download button thickness on ios. - about button now opens about tab when no new changelog is available.
21 lines
817 B
JavaScript
21 lines
817 B
JavaScript
import { loadJSON } from "./sub/loadFromFs.js";
|
|
const config = loadJSON("./src/config.json");
|
|
const packageJson = loadJSON("./package.json");
|
|
const servicesConfigJson = loadJSON("./src/modules/processing/servicesConfig.json");
|
|
|
|
export const
|
|
services = servicesConfigJson.config,
|
|
audioIgnore = servicesConfigJson.audioIgnore,
|
|
version = packageJson.version,
|
|
streamLifespan = config.streamLifespan,
|
|
maxVideoDuration = config.maxVideoDuration,
|
|
genericUserAgent = config.genericUserAgent,
|
|
repo = packageJson["bugs"]["url"].replace('/issues', ''),
|
|
authorInfo = config.authorInfo,
|
|
donations = config.donations,
|
|
ffmpegArgs = config.ffmpegArgs,
|
|
supportedAudio = config.supportedAudio,
|
|
celebrations = config.celebrations,
|
|
links = config.links,
|
|
sponsors = config.sponsors
|