mirror of
https://github.com/Vendicated/Vencord.git
synced 2025-01-10 01:46:23 +00:00
3a9f692644
I forgor to test host after adding web support
50 lines
1.4 KiB
TypeScript
50 lines
1.4 KiB
TypeScript
export * as Plugins from "./plugins";
|
|
export * as Webpack from "./webpack";
|
|
export * as Api from "./api";
|
|
export * as Updater from "./utils/updater";
|
|
export * as QuickCss from "./utils/quickCss";
|
|
|
|
import { popNotice, showNotice } from "./api/Notices";
|
|
import { Settings } from "./api/settings";
|
|
import { startAllPlugins } from "./plugins";
|
|
|
|
export { Settings };
|
|
|
|
import "./webpack/patchWebpack";
|
|
import "./utils/quickCss";
|
|
import { checkForUpdates, UpdateLogger } from './utils/updater';
|
|
import { onceReady } from "./webpack";
|
|
import { Router } from "./webpack/common";
|
|
|
|
Object.defineProperty(window, "IS_WEB", {
|
|
get: () => !window.DiscordNative,
|
|
configurable: true,
|
|
enumerable: true
|
|
});
|
|
|
|
export let Components;
|
|
|
|
async function init() {
|
|
await onceReady;
|
|
startAllPlugins();
|
|
Components = await import("./components");
|
|
|
|
try {
|
|
const isOutdated = await checkForUpdates();
|
|
if (isOutdated && Settings.notifyAboutUpdates)
|
|
setTimeout(() => {
|
|
showNotice(
|
|
"A Vencord update is available!",
|
|
"View Update",
|
|
() => {
|
|
popNotice();
|
|
Router.open("VencordUpdater");
|
|
}
|
|
);
|
|
}, 10000);
|
|
} catch (err) {
|
|
UpdateLogger.error("Failed to check for updates", err);
|
|
}
|
|
}
|
|
|
|
init();
|