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", "chalk": "^5.3.0",
"eruda": "^3.0.1", "eruda": "^3.0.1",
"js-ini": "^1.6.0", "js-ini": "^1.6.0",
"material-symbols": "^0.16.0", "material-symbols": "^0.14.3",
"prism-code-editor": "^2.3.0", "prism-code-editor": "^2.3.0",
"semver": "^7.5.4", "semver": "^7.5.4",
"uuid": "^9.0.1" "uuid": "^9.0.1"
@ -6157,9 +6157,9 @@
} }
}, },
"node_modules/material-symbols": { "node_modules/material-symbols": {
"version": "0.16.0", "version": "0.14.5",
"resolved": "https://registry.npmjs.org/material-symbols/-/material-symbols-0.16.0.tgz", "resolved": "https://registry.npmjs.org/material-symbols/-/material-symbols-0.14.5.tgz",
"integrity": "sha512-ZgX0TEQQnaAPvy9jSg6WEoBfkkL95URJ5dGHsqU9cIdXVB3K6/T+IH8l7E1ZAl4HFmaZ0hMPBBQz8DoBkoaygg==" "integrity": "sha512-3fB0MEG93k8C7D7sI0HSQWlKy3rgIQ6HPICkEPs9blsod/nWofSBdDPvUa9XpNRIqciqLA+hZF8DVnA4J19BlQ=="
}, },
"node_modules/md5.js": { "node_modules/md5.js": {
"version": "1.3.5", "version": "1.3.5",

View file

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

View file

@ -116,7 +116,12 @@ window.console.group = (...args: any) => {
try { try {
const args = new URLSearchParams(window.location.search) const args = new URLSearchParams(window.location.search)
const kernel = new Kernel() 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) { } catch (e) {
writeln() writeln()
writeln('An error occured while booting FlowOS.') writeln('An error occured while booting FlowOS.')