mirror of
https://github.com/KuekHaoYang/KVideo.git
synced 2026-08-12 23:33:43 +08:00
- 将 groupedSources 存储在 sessionStorage 中而非 URL 参数里,以防止因 URL 过长导致的 CDN 414 错误 (#112) - 自动将旧版 groupedSources URL 迁移至短 gs 键 - 从视频元素中检测并显示实际视频分辨率(例如 1920x1080),不再依赖来源提供的标签 - 修复 PlayerNavbar 设置链接在高级模式下总是跳转到 /settings 而非 /premium/settings 的问题 (#106) - 修复 WatchHistorySidebar 未向 HistoryList 传递 isPremium,导致历史记录项 URL 丢失 premium=1 参数的问题 (#106) - 为 HLS 播放添加多级浏览器回退机制 (HLS.js → 原生 → 代理 → 错误并提供浏览器建议) (#104) - 在 IPTV 播放器中添加 HEVC/H.265 级别过滤,防止 CCTV 等频道出现仅有音频播放的问题 (#81) - 更新依赖并升级版本至 4.5.0
40 lines
1013 B
JSON
40 lines
1013 B
JSON
{
|
|
"name": "kvideo",
|
|
"version": "4.5.0",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "next dev --port ${PORT:-3000}",
|
|
"build": "next build",
|
|
"start": "next start --port ${PORT:-3000}",
|
|
"lint": "eslint",
|
|
"pages:build": "npx @cloudflare/next-on-pages@1"
|
|
},
|
|
"dependencies": {
|
|
"@dnd-kit/core": "^6.3.1",
|
|
"@dnd-kit/sortable": "^10.0.0",
|
|
"@dnd-kit/utilities": "^3.2.2",
|
|
"@upstash/redis": "^1.37.0",
|
|
"@vercel/analytics": "^2.0.0",
|
|
"hls.js": "^1.6.15",
|
|
"lucide-react": "^0.577.0",
|
|
"next": "16.1.6",
|
|
"opencc-js": "^1.0.5",
|
|
"react": "19.2.4",
|
|
"react-dom": "19.2.4",
|
|
"zustand": "^5.0.11"
|
|
},
|
|
"devDependencies": {
|
|
"@cloudflare/next-on-pages": "^1.13.16",
|
|
"@tailwindcss/postcss": "^4",
|
|
"@types/node": "^25",
|
|
"@types/react": "^19",
|
|
"@types/react-dom": "^19",
|
|
"eslint": "^10",
|
|
"eslint-config-next": "16.1.6",
|
|
"postcss": "^8.5.8",
|
|
"postcss-preset-env": "^11.2.0",
|
|
"tailwindcss": "^4",
|
|
"typescript": "^5"
|
|
}
|
|
}
|