# 1.0.0 (2024-02-07) ### Bug Fixes * actually stopped boot overflowing ([4bd8f9b](4bd8f9b058)) * added missing error handling for `fs.exists` ([77c0d57](77c0d57770)) * another strange problem ([12cd47a](12cd47a4b6)) * fixed dropdown styling ([470a1fa](470a1fa1e0)) * fixed input border ([3a64f58](3a64f5801a)) * fixed Theme Maker title and created popup ([e630ae6](e630ae664c)), closes [#157](https://github.com/cloudirector/FlowOS/issues/157) * FlowOS refusing to load thme ([1aad68f](1aad68f3f4)) * made `flowos-docs` build ([aff12d0](aff12d0ee1)) * made code follow ts-standard ([cf8f1b8](cf8f1b844a)) * made editor use theme colors ([0c2ffbb](0c2ffbbb9f)) * made UAC follow ts-standard ([3ca1e24](3ca1e247b4)) * make tests pass again ([0cf9209](0cf920970f)) * remove duplicate 'overflow' property ([d9ab009](d9ab009afd)) * stop boot div from overflowing ([a08b8d9](a08b8d938f)) * stopped filesystem from breaking at build ([54a92c5](54a92c5d79)) * theme not setting ([568e2f3](568e2f3100)) * upgrade material-symbols from 0.14.1 to 0.14.3 ([3e8fe0b](3e8fe0b024)) * upgrade prism-code-editor from 2.0.1 to 2.1.0 ([026a08b](026a08bd43)) * upgrade prism-code-editor from 2.1.0 to 2.2.0 ([3955b28](3955b2869b)) * upgrade prism-code-editor from 2.2.0 to 2.2.1 ([b3101c8](b3101c8b53)) * upgrade prism-code-editor from 2.2.1 to 2.2.2 ([c00a0f3](c00a0f3f58)) * upgrade prism-code-editor from 2.2.2 to 2.2.4 ([41421d4](41421d4931)) * upgrade prism-code-editor from 2.2.4 to 2.3.0 ([862743e](862743e01a)) * weird error stopping build ([2e208c9](2e208c91e1)) ### Features * add progress indicator to boot sequence ([48294da](48294da1ea)) * added `prependMany` function ([acdba11](acdba11691)) * added a `prepend` function ([f106776](f106776bee)) * added a button component ([8d3b629](8d3b629185)) * added support for new `/apps/list` endpoint ([423dd46](423dd46da0)) * added support for theming ([11540b9](11540b945a)), closes [#155](https://github.com/cloudirector/FlowOS/issues/155) * added theme maker application ([4e4615e](4e4615ecb1)) * created an actual kernel and bootloader ([04ccdf1](04ccdf1442)), closes [#151](https://github.com/cloudirector/FlowOS/issues/151) * created start menu ([aa5fb9e](aa5fb9e290)), closes [#183](https://github.com/cloudirector/FlowOS/issues/183) * made editor use MIME types ([cc3583b](cc3583bfdc)) * made reset filesystem reload [skip ci] ([f207101](f207101c6a)) * make reset filesystem button look better [skip ci] ([10c0dbe](10c0dbe48a)) * minor styling changes ([2dd5b5f](2dd5b5f887)) * overrall ui overhaul ([934d6e8](934d6e80a0)) * use UV version 1.0.11 ([ad38f19](ad38f19f29)) ### BREAKING CHANGES * `process.kernel.loadLibrary('lib/VirtualFS')` replaced by `process.fs`
56 lines
1.3 KiB
JSON
56 lines
1.3 KiB
JSON
{
|
|
"name": "flowos",
|
|
"version": "1.0.0",
|
|
"description": "The most aesthetic webOS.",
|
|
"main": "src/bootloader.ts",
|
|
"scripts": {
|
|
"docs": "typedoc src/**",
|
|
"test": "ts-standard",
|
|
"dev": "vite",
|
|
"build": "vite build",
|
|
"preview": "vite preview",
|
|
"serve": "vite dev",
|
|
"commit": "cz"
|
|
},
|
|
"keywords": [],
|
|
"author": "",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@semantic-release/git": "^10.0.1",
|
|
"@types/node": "^20.11.3",
|
|
"@types/uuid": "^9.0.5",
|
|
"@types/web": "^0.0.117",
|
|
"commitizen": "^4.3.0",
|
|
"less": "^4.2.0",
|
|
"semantic-release": "^23.0.0",
|
|
"ts-standard": "^12.0.2",
|
|
"typedoc": "^0.25.3",
|
|
"typedoc-material-theme": "^1.0.2",
|
|
"typedoc-plugin-missing-exports": "^2.1.0",
|
|
"typescript": "^5.2.2",
|
|
"vite": "^4.5.2",
|
|
"vite-plugin-compression": "^0.5.1",
|
|
"vite-plugin-dynamic-import": "^1.5.0",
|
|
"vite-plugin-node-polyfills": "^0.15.0"
|
|
},
|
|
"dependencies": {
|
|
"ansi-to-html": "^0.7.2",
|
|
"chalk": "^5.3.0",
|
|
"eruda": "^3.0.1",
|
|
"js-ini": "^1.6.0",
|
|
"material-symbols": "^0.14.3",
|
|
"prism-code-editor": "^2.3.0",
|
|
"semver": "^7.5.4",
|
|
"uuid": "^9.0.1"
|
|
},
|
|
"ts-standard": {
|
|
"ignore": [
|
|
"public"
|
|
]
|
|
},
|
|
"config": {
|
|
"commitizen": {
|
|
"path": "./node_modules/cz-conventional-changelog"
|
|
}
|
|
}
|
|
}
|