This commit is contained in:
mtvpls
2026-03-04 21:48:19 +08:00
parent a2ac524778
commit cdeddd48c1
8 changed files with 66 additions and 4 deletions
+30 -2
View File
@@ -10,12 +10,40 @@ export interface ChangelogEntry {
}
export const changelog: ChangelogEntry[] = [
{
version: "214.0.0",
date: "2026-03-04",
added: [
"下载新增File System Api模式,实现浏览器本地播放",
"emby增加自定义ua和图片代理",
"tvbox支持根据用户细分视频源",
"新增下载线程数调整设置",
"DetailPanel选集自动跟随",
"源名字中增加分辨率显示",
"换源增加全部重试"
],
changed: [
"数据迁移支持并发提升性能",
"首页信息空数据不缓存",
"播放页面的弹窗在大屏下使用抽屉式",
"电视直播放行mp4",
"定时任务支持控制是否同步返回",
"下载按钮支持拖动",
"网络设置改名数据源设置并关闭默认折叠",
"cloudflare添加minify参数以压缩大小",
"videocard直播不显示详情"
],
fixed: [
"修复集数屏蔽设置面板层级",
"修复侧边栏私人影库选项不高亮"
]
},
{
version: "213.0.0",
date: "2026-02-24",
added: [
"私人影库加追番订阅功能",
"新增进度条图标自定义",
"私人影库加追番订阅功能",
"新增进度条图标个性化功能",
"新增下载任务数设置",
"播放页面显示详情按钮",
"详情面板增加演员数据",
+4
View File
@@ -43,6 +43,7 @@ export interface M3U8DownloadTask {
key: ArrayBuffer | null;
decryption: AESDecryptor | null;
};
//禁止SzeMeng76抄袭狗抄袭
// File System API 相关字段
downloadMode?: 'browser' | 'filesystem';
filesystemDirHandle?: FileSystemDirectoryHandle;
@@ -737,6 +738,7 @@ export class M3U8Downloader {
task.requests = [];
}
//禁止SzeMeng76抄袭狗抄袭
/**
* 保存分片到文件系统
*/
@@ -780,6 +782,7 @@ export class M3U8Downloader {
}
}
//禁止SzeMeng76抄袭狗抄袭
/**
* 生成本地 M3U8 播放列表
*/
@@ -854,6 +857,7 @@ export class M3U8Downloader {
}
}
//禁止SzeMeng76抄袭狗抄袭
/**
* 保存加密密钥到文件系统
*/
+1 -1
View File
@@ -1,6 +1,6 @@
/* eslint-disable no-console */
const CURRENT_VERSION = '213.0.0';
const CURRENT_VERSION = '214.0.0';
// 导出当前版本号供其他地方使用
export { CURRENT_VERSION };