feat: Replace screen capture with ScreenCaptureKit and fix performance issues #6

Merged
Ivan merged 20 commits from replace-rust-swift-screencapture-with-screencapturekit into develop 2025-07-04 22:03:41 +08:00
24 changed files with 4151 additions and 2894 deletions
Showing only changes of commit 6c30a824b0 - Show all commits

View File

@ -20,12 +20,13 @@
"tippy.js": "^6.3.7" "tippy.js": "^6.3.7"
}, },
"devDependencies": { "devDependencies": {
"@tailwindcss/postcss": "^4.1.11",
"@tauri-apps/cli": "^1.6.3", "@tauri-apps/cli": "^1.6.3",
"@types/debug": "^4.1.12", "@types/debug": "^4.1.12",
"@types/node": "^24.0.7", "@types/node": "^24.0.7",
"autoprefixer": "^10.4.21", "autoprefixer": "^10.4.21",
"postcss": "^8.5.6", "postcss": "^8.5.6",
"tailwindcss": "^3.4.17", "tailwindcss": "^4.1.11",
"typescript": "^4.9.5", "typescript": "^4.9.5",
"vite": "^6.3.5", "vite": "^6.3.5",
"vite-plugin-solid": "^2.11.7" "vite-plugin-solid": "^2.11.7"

1061
pnpm-lock.yaml generated

File diff suppressed because it is too large Load Diff

View File

@ -1,6 +1,6 @@
module.exports = { module.exports = {
plugins: { plugins: {
tailwindcss: {}, '@tailwindcss/postcss': {},
autoprefixer: {}, autoprefixer: {},
}, },
} }

View File

@ -1,3 +1,3 @@
@tailwind base; @import "tailwindcss";
@tailwind components;
@tailwind utilities; @config "../tailwind.config.js";