开发:输出编译时间

pull/1505/MERGE
ChenX 3 years ago
parent afcef60e3f
commit 59a50aaf5f

@ -33,11 +33,13 @@ export let appUi: WebCAD;
export class WebCAD
{
app: ApplicationService;
constructor()
{
this.initRootLayout();
let app = new ApplicationService();
this.app = app;
registerCommand();
this.renderMain();

@ -189,11 +189,8 @@ window.onload = function ()
ReportErrorWrap.ReportError = ReportError;
let searchParams = new URLSearchParams(location.search);
if (searchParams.has("disablerefcut"))
ExtrudeConfig.DisableRefCut = true;
new WebCAD();
let cad = new WebCAD();
cad.app.Editor.Prompt(`当前版本编译时间:${version}`);
};
globalThis["copy"] = (text: string) =>

Loading…
Cancel
Save