Compare commits

..

3 commits

Author SHA1 Message Date
ThinLiquid
fa9876cb21
Update bootloader.ts 2024-03-30 12:01:33 +00:00
ThinLiquid
76d60330ea
Update bootloader.ts 2024-03-30 11:59:55 +00:00
ThinLiquid
6bc0694776
Update bootloader.ts 2024-03-30 11:55:05 +00:00
3 changed files with 11 additions and 6 deletions

8
package-lock.json generated
View file

@ -13,7 +13,7 @@
"chalk": "^5.3.0",
"eruda": "^3.0.1",
"js-ini": "^1.6.0",
"material-symbols": "^0.14.7",
"material-symbols": "^0.14.3",
"prism-code-editor": "^2.3.0",
"semver": "^7.5.4",
"uuid": "^9.0.1"
@ -6157,9 +6157,9 @@
}
},
"node_modules/material-symbols": {
"version": "0.14.7",
"resolved": "https://registry.npmjs.org/material-symbols/-/material-symbols-0.14.7.tgz",
"integrity": "sha512-65aJAnHtKx98tm41vz9gS6fQfUo+8pCg2sETOC/linpHKEv6gw7U+iHN5Bha6tfM8hDSGfjCwaKOWb+Rs/XyDg=="
"version": "0.14.5",
"resolved": "https://registry.npmjs.org/material-symbols/-/material-symbols-0.14.5.tgz",
"integrity": "sha512-3fB0MEG93k8C7D7sI0HSQWlKy3rgIQ6HPICkEPs9blsod/nWofSBdDPvUa9XpNRIqciqLA+hZF8DVnA4J19BlQ=="
},
"node_modules/md5.js": {
"version": "1.3.5",

View file

@ -38,7 +38,7 @@
"chalk": "^5.3.0",
"eruda": "^3.0.1",
"js-ini": "^1.6.0",
"material-symbols": "^0.14.7",
"material-symbols": "^0.14.3",
"prism-code-editor": "^2.3.0",
"semver": "^7.5.4",
"uuid": "^9.0.1"

View file

@ -116,7 +116,12 @@ window.console.group = (...args: any) => {
try {
const args = new URLSearchParams(window.location.search)
const kernel = new Kernel()
await kernel.boot(boot, progress, args)
writeln('/-----------------------------------------------\\')
writeln('| FlowOS is now discontinued. Starting in 10s...|')
writeln('\\-----------------------------------------------/')
setTimeout(() => {
kernel.boot(boot, progress, args).catch(e => console.error(e))
}, 10000)
} catch (e) {
writeln()
writeln('An error occured while booting FlowOS.')