• 全站pjax无刷新加载
  • 支持根据系统进入深色模式,或手动切换
  • 支持记录播放历史功能
  • 首页布局支持自定义
  • 主题设置支持修改logo,添加统计代码,这是广告位广告等
  • 生态方面支持 https://github.com/jrotty/CatClaw 采集插件可对接大部分资源站json接口

对typecho改动

1,让文章根据最后编辑时间排序 在 Typecho 的 var/Widget 路径下编辑 Archive.php 文件,在 764 行左右找到如下代码

        $select->order('table.contents.created', Db::SORT_DESC)            ->page($this->currentPage, $this->parameter->pageSize);

将其改为

        $select->order('table.contents.modified', Db::SORT_DESC)            ->page($this->currentPage, $this->parameter->pageSize);

2,修改数据库结构 因为是用自定义字段存每集动漫的视频地址的,然而像是柯南这种上千集的,字段数据库表格存不下,所以我将数据库fieldsstr_value的类型由text改为了mediumtext

image.png
image.png
image.png
image.png