-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: fan control speed rounding, board model, bump deps (#16)
* feat: add board model to about page * fix: round cooling device speed percentage * chore: update deps, bump version
- Loading branch information
1 parent
5848299
commit 3862d8d
Showing
12 changed files
with
1,066 additions
and
1,295 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "bmc-ui", | ||
"version": "3.3.0", | ||
"version": "3.3.1", | ||
"private": true, | ||
"type": "module", | ||
"scripts": { | ||
|
@@ -12,55 +12,55 @@ | |
}, | ||
"packageManager": "[email protected]", | ||
"dependencies": { | ||
"@fontsource/inter": "^5.0.18", | ||
"@radix-ui/react-avatar": "^1.0.4", | ||
"@radix-ui/react-checkbox": "^1.0.4", | ||
"@radix-ui/react-dialog": "^1.0.5", | ||
"@radix-ui/react-dropdown-menu": "^2.0.6", | ||
"@radix-ui/react-progress": "^1.0.3", | ||
"@radix-ui/react-select": "^2.0.0", | ||
"@radix-ui/react-slider": "^1.1.2", | ||
"@radix-ui/react-slot": "^1.0.2", | ||
"@radix-ui/react-switch": "^1.0.3", | ||
"@radix-ui/react-toast": "^1.1.5", | ||
"@radix-ui/react-tooltip": "^1.0.7", | ||
"@tanstack/react-query": "^5.45.0", | ||
"@tanstack/react-router": "^1.36.3", | ||
"@fontsource/inter": "^5.0.19", | ||
"@radix-ui/react-avatar": "^1.1.0", | ||
"@radix-ui/react-checkbox": "^1.1.1", | ||
"@radix-ui/react-dialog": "^1.1.1", | ||
"@radix-ui/react-dropdown-menu": "^2.1.1", | ||
"@radix-ui/react-progress": "^1.1.0", | ||
"@radix-ui/react-select": "^2.1.1", | ||
"@radix-ui/react-slider": "^1.2.0", | ||
"@radix-ui/react-slot": "^1.1.0", | ||
"@radix-ui/react-switch": "^1.1.0", | ||
"@radix-ui/react-toast": "^1.2.1", | ||
"@radix-ui/react-tooltip": "^1.1.2", | ||
"@tanstack/react-query": "^5.51.15", | ||
"@tanstack/react-router": "^1.45.11", | ||
"axios": "^1.7.2", | ||
"class-variance-authority": "^0.7.0", | ||
"clsx": "^2.1.1", | ||
"filesize": "^10.1.2", | ||
"i18next": "^23.11.5", | ||
"filesize": "^10.1.4", | ||
"i18next": "^23.12.2", | ||
"i18next-browser-languagedetector": "^8.0.0", | ||
"javascript-time-ago": "^2.5.10", | ||
"lucide-react": "^0.394.0", | ||
"lucide-react": "^0.416.0", | ||
"next-themes": "^0.3.0", | ||
"react": "^18.3.1", | ||
"react-dom": "^18.3.1", | ||
"react-i18next": "^14.1.2", | ||
"tailwind-merge": "^2.3.0", | ||
"react-i18next": "^15.0.0", | ||
"tailwind-merge": "^2.4.0", | ||
"tailwindcss-animate": "^1.0.7", | ||
"vaul": "^0.9.1" | ||
}, | ||
"devDependencies": { | ||
"@tanstack/react-query-devtools": "^5.45.0", | ||
"@tanstack/router-devtools": "^1.36.3", | ||
"@tanstack/router-vite-plugin": "^1.37.0", | ||
"@types/node": "^20.14.2", | ||
"@tanstack/react-query-devtools": "^5.51.15", | ||
"@tanstack/router-devtools": "^1.45.11", | ||
"@tanstack/router-vite-plugin": "^1.45.8", | ||
"@types/node": "^20.14.12", | ||
"@types/react": "^18.3.3", | ||
"@types/react-dom": "^18.3.0", | ||
"@typescript-eslint/eslint-plugin": "^7.13.0", | ||
"@typescript-eslint/parser": "^7.13.0", | ||
"@typescript-eslint/eslint-plugin": "^7.17.0", | ||
"@typescript-eslint/parser": "^7.17.0", | ||
"@vitejs/plugin-react-swc": "^3.7.0", | ||
"autoprefixer": "^10.4.19", | ||
"eslint": "^8.57.0", | ||
"eslint-plugin-react-hooks": "^4.6.2", | ||
"eslint-plugin-react-refresh": "^0.4.7", | ||
"eslint-plugin-simple-import-sort": "^12.1.0", | ||
"eslint-plugin-tailwindcss": "^3.17.3", | ||
"postcss": "^8.4.38", | ||
"tailwindcss": "^3.4.4", | ||
"vite": "^5.2.13", | ||
"eslint-plugin-react-refresh": "^0.4.9", | ||
"eslint-plugin-simple-import-sort": "^12.1.1", | ||
"eslint-plugin-tailwindcss": "^3.17.4", | ||
"postcss": "^8.4.40", | ||
"tailwindcss": "^3.4.7", | ||
"vite": "^5.3.5", | ||
"vite-plugin-svgr": "^4.2.0" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters