Developer
|
e3def7d01b
|
fix: 修复小窗闭包过期、详情页 loading 卡死、视频播放器性能问题
- 小窗 PanResponder 用 storeRef 替代闭包捕获,修复 roomId/bvid 始终为初始值
- useLiveDetail 用 ref 比对替代 cancelled 标志,防止 fetch 被意外取消
- 详情页 useLayoutEffect 同步清除小窗,BigVideoCard 小窗活跃时跳过播放
- 视频播放器竖屏/全屏互斥渲染,减半解码器占用
- onProgress 节流 + 退出全屏强制恢复播放
|
2026-03-25 15:03:49 +08:00 |
|
Developer
|
68b8b7d665
|
fix: 彻底修复小窗无法拖动问题
根本原因:TouchableOpacity 内嵌在 PanResponder Animated.View 内,
JS层 TouchableOpacity 与 Video 原生层共同阻断了 PanResponder 响应权。
修复方案:
- onStartShouldSetPanResponder: true,从 start 阶段独占响应权
- 移除主内容区的 TouchableOpacity,改用纯 View
- isDragging ref 区分点击与拖动:位移 >5px 为拖动
- onPanResponderRelease 通过 locationX/Y 坐标判断点击目标(关闭 or 跳转)
- Video 外层 View 加 pointerEvents='none' 防止原生层吞噬触摸
|
2026-03-25 13:36:28 +08:00 |
|
Developer
|
2bfc9f8110
|
fix: 修复小窗无法拖动的问题
onStartShouldSetPanResponder 被内部 TouchableOpacity 抢占响应权。
改用 onMoveShouldSetPanResponderCapture:位移 >3px 时从子组件夺回响应权,
点击仍正常透传到 TouchableOpacity。
|
2026-03-25 13:28:49 +08:00 |
|
Developer
|
0ffb331971
|
feat: 小窗拖动后自动吸附到左/右屏幕边缘
|
2026-03-25 13:25:34 +08:00 |
|
Developer
|
2afe5839f9
|
fix: 修复直播小窗按钮点击后小窗不显示的问题
useEffect 依赖 miniRoomId 导致 setLive 触发 clearLive 立即清除状态。
改为仅挂载时运行,用 getState() 读取当前值而非订阅响应式变化。
|
2026-03-25 13:20:58 +08:00 |
|
Developer
|
33a3148b38
|
feat: 直播小窗播放(PiP)功能
- 新增 store/liveStore.ts:Zustand store,存储小窗直播状态(roomId/title/cover/hlsUrl)
- 新增 components/LiveMiniPlayer.tsx:可拖动悬浮迷你直播播放器
- 原生端实际播放 HLS 流(react-native-video,有声)
- Web 端降级展示封面图 + LIVE 徽标
- LIVE 红点徽标 + 标题条底部
- 关闭按钮(×)和点击进入直播间
- HLS 出错时自动关闭(onError → clearLive)
- 视频 MiniPlayer 激活时自动上移避免重叠
- _layout.tsx:全局挂载 <LiveMiniPlayer />
- live/[roomId].tsx:顶部栏添加小窗按钮(browsers-outline)
- 仅直播中且有流地址时显示,离线时占位保持 title 居中
- 点击后 setLive + router.back(),返回首页继续看直播
- 进入同房间时自动 clearLive() 避免双播
|
2026-03-25 13:16:16 +08:00 |
|
Developer
|
13c73cdb25
|
feat:弹幕tag样式
|
2026-03-25 12:55:31 +08:00 |
|
Developer
|
c7fbc1f441
|
feat: 优化下载页UI交互、支持暗黑主题,移除首页 header 底边框
- downloads.tsx: 删除前弹 Alert 确认框(区分"取消下载"和"删除文件")
- downloads.tsx: 下载出错时显示"重新下载"按钮,跳转视频详情页
- downloads.tsx: 下载中取消按钮改为 close-circle-outline 图标
- downloads.tsx: 已完成条目整行可点击播放,移除单独"播放"按钮
- downloads.tsx: 播放器横竖屏均显示顶部控制栏,点击切换显隐
- downloads.tsx: 移除进度条旁 ActivityIndicator,保留百分比文字
- downloads.tsx: 全部颜色跟随暗黑主题(bg/card/text/textSub/border)
- index.tsx: 移除悬浮 header 底部分割线
|
2026-03-25 12:51:14 +08:00 |
|
Developer
|
e1fa8cc347
|
feat: 视频推荐关联当前视频、UP主信息展示、直播全屏修复及UI优化
- 推荐列表改用 getVideoRelated 基于当前 bvid 推荐,与首页 feed 解耦
- 视频详情页 UP主名称下方展示粉丝数和视频数
- 推荐视频点击改为 router.replace 避免页面堆叠
- 直播全屏改用 position:absolute,解决退出全屏视频重建暂停问题
- 退出全屏时直播自动暂停
- 直播画质选中状态修复,过滤杜比/4K 画质选项
- 直播画质面板改为居中 Modal 弹出框
- 视频详情 Tab 按钮左对齐,评论排序及设置页按钮统一实心背景风格
|
2026-03-25 12:03:28 +08:00 |
|
Developer
|
7870c83b12
|
docs: 更新 CHANGELOG,记录 v1.0.8 新功能和修复项
|
2026-03-24 23:59:21 +08:00 |
|
Developer
|
d84e2de5a1
|
fix: 修复推荐列表 ListEmptyComponent 条件、epCard offset 偏移和双边框问题
|
2026-03-24 23:57:03 +08:00 |
|
Developer
|
bfca7a1ff2
|
feat:暗黑模式支持
|
2026-03-24 23:48:04 +08:00 |
|
Developer
|
12e770a0bf
|
fix: 推荐图占位色、评论文字、弹幕背景色跟随暗黑主题
|
2026-03-24 23:08:17 +08:00 |
|
Developer
|
f6ac2d3cd4
|
feat: 视频详情页和直播详情页支持暗黑模式主题切换
|
2026-03-24 21:58:00 +08:00 |
|
Developer
|
03aee783da
|
fix: FollowedLiveStrip 背景色/头像占位/主播名跟随主题切换
|
2026-03-24 21:49:51 +08:00 |
|
Developer
|
5a368dc794
|
fix: 暗黑模式下封面图占位背景色跟随卡片颜色
|
2026-03-24 21:43:52 +08:00 |
|
Developer
|
a61aa5caac
|
feat: 使用本地库 react-native-qrcode-svg 生成二维码,移除第三方远程图片服务
|
2026-03-24 21:23:22 +08:00 |
|
Developer
|
f2fc4693a6
|
feat: 暗黑模式 + 节流模式
- settingsStore: 移除 coverQuality,新增 darkMode / trafficSaving 布尔字段(AsyncStorage 持久化)
- utils/theme.ts: 新建 useTheme() hook,返回浅色/深色颜色表
- settings.tsx: 新增外观(浅色/深色)和流量(标准/节流)选项,移除封面图清晰度
- BigVideoCard: 节流模式跳过预加载、禁止自动播放;封面低画质;支持暗黑配色
- useVideoDetail: 节流模式下默认 qn=16(360p)
- VideoCard / LiveCard: 移除 coverQuality 依赖,改用 trafficSaving;支持暗黑配色
- index.tsx: 导航栏/搜索栏/列表背景跟随主题
- search.tsx: 页面背景/输入框/文字跟随主题
- downloads.tsx: 顶栏/背景/文字跟随主题
- _layout.tsx: StatusBar 随暗黑模式切换 light/dark
|
2026-03-24 21:04:10 +08:00 |
|
Developer
|
aeaaa0af01
|
开源仓库,文明讨论,非诚勿扰
|
2026-03-24 19:21:58 +08:00 |
|
Developer
|
2e5f749583
|
Merge branch 'master' of https://github.com/tiajinsha/JKVideo
|
2026-03-24 01:26:43 +08:00 |
|
Developer
|
eb4d61669a
|
fix:expo-updates 包会在 expo prebuild 阶段向 Android 项目注入与 EAS Update 相关的 Gradle 任务,导致 assembleRelease 时卡住(挂起不退出)
|
2026-03-24 01:26:39 +08:00 |
|
github-actions[bot]
|
3e0c9040b5
|
chore: bump version to v1.0.6 [skip ci]
|
2026-03-23 16:23:05 +00:00 |
|
Developer
|
3a82151d8d
|
1
|
2026-03-24 00:22:30 +08:00 |
|
Developer
|
1df23a6e09
|
markdown修改
|
2026-03-24 00:20:38 +08:00 |
|
Developer
|
4ef70df676
|
Merge branch 'master' of https://github.com/tiajinsha/JKVideo
|
2026-03-24 00:18:06 +08:00 |
|
Developer
|
9bffc16fef
|
feat:添加哨兵功能,错误日志收集,为持续迭代做准备
|
2026-03-24 00:17:43 +08:00 |
|
github-actions[bot]
|
21d9df0156
|
chore: bump version to v1.0.6 [skip ci]
|
2026-03-20 07:46:14 +00:00 |
|
Developer
|
e05484bba6
|
feat: add browser download option to update dialog
|
2026-03-20 15:45:52 +08:00 |
|
github-actions[bot]
|
6bae600ff1
|
chore: bump version to v1.0.5 [skip ci]
|
2026-03-20 07:44:20 +00:00 |
|
Developer
|
b947883e8b
|
fix: proactively guide user to enable install unknown apps permission
|
2026-03-20 15:43:57 +08:00 |
|
github-actions[bot]
|
502502c5c7
|
chore: bump version to v1.0.4 [skip ci]
|
2026-03-20 07:19:41 +00:00 |
|
Developer
|
2450e6b49f
|
fix: handle REQUEST_INSTALL_PACKAGES permission on Android 8+
|
2026-03-20 15:19:17 +08:00 |
|
github-actions[bot]
|
9abc40882a
|
chore: bump version to v1.0.3 [skip ci]
|
2026-03-20 06:57:26 +00:00 |
|
Developer
|
b940862715
|
fix: 改用expo-file-system/legacy修复createDownloadResumable废弃报错
|
2026-03-20 14:57:03 +08:00 |
|
github-actions[bot]
|
bb0fdbd35f
|
chore: bump version to v1.0.2 [skip ci]
|
2026-03-20 06:37:41 +00:00 |
|
Developer
|
390d5874e9
|
Merge branch 'master' of https://github.com/tiajinsha/JKVideo
|
2026-03-20 14:37:18 +08:00 |
|
Developer
|
dd0c058339
|
还原代码
|
2026-03-20 14:37:14 +08:00 |
|
github-actions[bot]
|
22ac552fca
|
chore: bump version to v1.0.1 [skip ci]
|
2026-03-20 06:17:20 +00:00 |
|
Developer
|
28c6389f83
|
测试更新
|
2026-03-20 14:16:52 +08:00 |
|
Developer
|
7c62b2f665
|
fix: 授予workflow contents写权限 [skip ci]
|
2026-03-20 14:16:13 +08:00 |
|
Developer
|
77985d7540
|
fix: CI跳过android目录,prebuild后再构建APK
|
2026-03-20 14:15:01 +08:00 |
|
Developer
|
7f585ff8ad
|
测试更新
|
2026-03-20 14:12:51 +08:00 |
|
Developer
|
adeb5e9425
|
测试更新
|
2026-03-20 14:10:26 +08:00 |
|
Developer
|
38fc41f184
|
feat:热更新
|
2026-03-20 14:06:52 +08:00 |
|
Developer
|
4a69a8ed1d
|
修改文件
|
2026-03-20 13:45:19 +08:00 |
|
Developer
|
2292110fb8
|
Add demo video to README
|
2026-03-20 13:43:57 +08:00 |
|
Developer
|
49b3be72f3
|
修改README文档
|
2026-03-20 12:36:51 +08:00 |
|
Developer
|
5e819ca080
|
init
|
2026-03-20 12:05:58 +08:00 |
|
Developer
|
ff5860d3c7
|
chore: prepare project for open source release
- Remove internal planning docs (CLAUDE.md, docs/, feature.md, livePlan.md) from git tracking
- Add .gitignore rules to prevent re-tracking internal files
- Add README.md (Chinese) and README.en.md (English) with screenshots, features, quick start
- Add LICENSE (MIT)
- Add CONTRIBUTING.md with dev setup, commit conventions, PR guide
- Add CHANGELOG.md for v1.0.0
- Add .github/ issue templates (bug report, feature request) and PR template
- Add public/ screenshots (p1-p6)
|
2026-03-20 12:03:24 +08:00 |
|
Developer
|
5ec4c5a6be
|
版本1.0
|
2026-03-19 21:53:08 +08:00 |
|