Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test #1

Open
wants to merge 248 commits into
base: 1
Choose a base branch
from
Open

test #1

wants to merge 248 commits into from

Commits on May 26, 2023

  1. 移动 http api 代码

    aaa1115910 committed May 26, 2023
    Configuration menu
    Copy the full SHA
    3ec33e6 View commit details
    Browse the repository at this point in the history
  2. 新增 proto 文件

    proto 文件来源:https://github.com/SocialSisterYi/bilibili-API-collect
    
    这有几个坑
    
    - 几个空的 proto 文件会生成重复的 ApiKt 导致 generateProto 时失败
    - proto 文件中好几个包名中包含 java 关键字 interface,导致无法编译,需要手动指定 java_package
    - nativeact.proto 生成的 java 代码在编译时会在编译时报上百个“找不到符号”,先删去
    aaa1115910 committed May 26, 2023
    Configuration menu
    Copy the full SHA
    7dede4f View commit details
    Browse the repository at this point in the history

Commits on May 27, 2023

  1. Configuration menu
    Copy the full SHA
    d66cb8f View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    72fc176 View commit details
    Browse the repository at this point in the history

Commits on May 28, 2023

  1. 启用 K2 编译器

    ### 编译速度对比
    
    仅编译 `bili-api`,对比 `:bili-api:compileKotlin` 任务执行时长,删掉 `bili-api/build` 后再编译
    
    #### 编译设备
    
    Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz
    
    macOS 13
    
    #### 结果
    
    |旧编译器|第 1 次|第 2 次|第 3 次|
    |-|-|-|-|
    |耗时|248.0s|228.0s|244.3s|
    |总耗时|310.2s|282.8s|315.2s|
    |占比|79.9%|80.6%|77.5%|
    
    |K2|第 1 次|第 2 次|第 3 次|
    |-|-|-|-|
    |耗时|104.3s|107.1s|106.2s|
    |总耗时|168.4s|173.3s|174.6s|
    |占比|61.9%|61.8%|60.8%|
    aaa1115910 committed May 28, 2023
    Configuration menu
    Copy the full SHA
    54b199a View commit details
    Browse the repository at this point in the history
  2. Revert "启用 K2 编译器"

    将会导致 Compose 代码编译失败,之前启用 K2 是为了改善引入 gRPC 后的编译速度
    
    This reverts commit 54b199a.
    aaa1115910 committed May 28, 2023
    Configuration menu
    Copy the full SHA
    56562d1 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    645e97e View commit details
    Browse the repository at this point in the history

Commits on May 29, 2023

  1. 新增短信登录

    aaa1115910 committed May 29, 2023
    Configuration menu
    Copy the full SHA
    a6cd038 View commit details
    Browse the repository at this point in the history

Commits on Jun 2, 2023

  1. Configuration menu
    Copy the full SHA
    6f3282c View commit details
    Browse the repository at this point in the history
  2. 完善短信登录页面

    aaa1115910 committed Jun 2, 2023
    Configuration menu
    Copy the full SHA
    5bdf36c View commit details
    Browse the repository at this point in the history

Commits on Jun 3, 2023

  1. 更改 protobuf 依赖

    - 将 `protobuf-kotlin-lite` 更换为 `protobuf-kotlin`,因为 protobuf-kotlin-lite 中不包含 ProtoAny.unpack() 等方法,会无法解析 Any
    - 增加 grpc 会用到的 grpc-okhttp 依赖
    aaa1115910 committed Jun 3, 2023
    Configuration menu
    Copy the full SHA
    9783710 View commit details
    Browse the repository at this point in the history
  2. 为所有的 proto 文件添加 java_multiple_files = true;

    因为将一个 proto 生产的代码全部写入到一个文件内会导致文件巨大,例如 bilibili.app.view.v1.ViewOuterClass 文件行数达到了 22w 行,文件大小 7m+,此时会导致 ide 默认设置下无法解析这么大的代码文件
    并且会导致 Any 中记录的 class 名称无法直接使用,例如 bilibili.rpc.Status 会被编译为 bilibili.rpc.StatusOuterClass$Status
    aaa1115910 committed Jun 3, 2023
    Configuration menu
    Copy the full SHA
    d4e0030 View commit details
    Browse the repository at this point in the history
  3. 重命名文件

    pgcanymodel.proto -> PGCAnyModel.proto
    ugcanymodel.proto -> UGCAnyModel.proto
    
    因为在 Actions 中编译时出现错误(但在本地上编译没问题):
    
    /Users/runner/work/bv/bv/bili-api/build/generated/source/proto/main/java/bilibili/app/playerunite/ugcanymodel/UGCAnyModel.java:6: error: class Ugcanymodel is public, should be declared in a file named Ugcanymodel.java
    > Task :bili-api:compileJava
    public final class Ugcanymodel ***
                 ^
    /Users/runner/work/bv/bv/bili-api/build/generated/source/proto/main/java/bilibili/app/playerunite/pgcanymodel/PGCAnyModel.java:6: error: class Pgcanymodel is public, should be declared in a file named Pgcanymodel.java
    public final class Pgcanymodel ***
                 ^
    2 errors
    aaa1115910 committed Jun 3, 2023
    Configuration menu
    Copy the full SHA
    736ca1a View commit details
    Browse the repository at this point in the history

Commits on Jun 5, 2023

  1. Configuration menu
    Copy the full SHA
    e7d4618 View commit details
    Browse the repository at this point in the history

Commits on Jun 6, 2023

  1. Configuration menu
    Copy the full SHA
    39e9cd8 View commit details
    Browse the repository at this point in the history

Commits on Jun 9, 2023

  1. 使用平板端扫码方式登录

    更改使用 android_hd 的 appkey 以便使用扫码登录
    aaa1115910 committed Jun 9, 2023
    Configuration menu
    Copy the full SHA
    41b8b1e View commit details
    Browse the repository at this point in the history
  2. Merge branch 'develop' into feature/grpc

    # Conflicts:
    #	gradle/libs.versions.toml
    aaa1115910 committed Jun 9, 2023
    Configuration menu
    Copy the full SHA
    54fca70 View commit details
    Browse the repository at this point in the history

Commits on Jun 10, 2023

  1. Configuration menu
    Copy the full SHA
    f82a2ca View commit details
    Browse the repository at this point in the history

Commits on Jun 11, 2023

  1. Configuration menu
    Copy the full SHA
    ff8d847 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    a3fe987 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    14bf2a7 View commit details
    Browse the repository at this point in the history

Commits on Jun 15, 2023

  1. Configuration menu
    Copy the full SHA
    0279238 View commit details
    Browse the repository at this point in the history

Commits on Jun 17, 2023

  1. Configuration menu
    Copy the full SHA
    d66cb0a View commit details
    Browse the repository at this point in the history

Commits on Jun 24, 2023

  1. 将 gRPC 的代码分离到独立的 module

    这可以避免修改 :bili-api 中的代码后反复重新编译未改动的 gRPC 代码,以节省编译时间
    aaa1115910 committed Jun 24, 2023
    Configuration menu
    Copy the full SHA
    501123f View commit details
    Browse the repository at this point in the history

Commits on Jun 25, 2023

  1. 移动 gRPC 文件 bilibili.polymer.list.list.proto 到 `bilibili.polymer.lis…

    …t.v1.list.proto`
    
    gRPC 接口 `bilibili.polymer.list.List` 在访问时返回错误 404,有效请求路径应为 `bilibili.polymer.list.v1.List`
    aaa1115910 committed Jun 25, 2023
    Configuration menu
    Copy the full SHA
    77a667f View commit details
    Browse the repository at this point in the history
  2. 更改 gRPC 接口 metadata 的 app 标识

    部分 gRPC 接口要求 app 标识与所使用的 access token 相匹配
    aaa1115910 committed Jun 25, 2023
    Configuration menu
    Copy the full SHA
    91c3045 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    b4993bf View commit details
    Browse the repository at this point in the history

Commits on Jun 26, 2023

  1. 改造收藏接口

    aaa1115910 committed Jun 26, 2023
    Configuration menu
    Copy the full SHA
    d2986c5 View commit details
    Browse the repository at this point in the history

Commits on Jul 6, 2023

  1. 更新 proto 文件

    aaa1115910 committed Jul 6, 2023
    Configuration menu
    Copy the full SHA
    a86bd2d View commit details
    Browse the repository at this point in the history

Commits on Jul 9, 2023

  1. Configuration menu
    Copy the full SHA
    0b45e65 View commit details
    Browse the repository at this point in the history
  2. 改造剧集信息接口

    aaa1115910 committed Jul 9, 2023
    Configuration menu
    Copy the full SHA
    40a6482 View commit details
    Browse the repository at this point in the history
  3. 新增 common.ErrorProto

    返回的错误信息除了`bilibili.rpc.Status`还包含`common.ErrorProto`,解码后看到这两个消息结构相同,因此直接复制`bilibili.rpc.Status`的代码
    
    错误信息示例:
    
    grpc-status-details-bin=CAISBzYwMDIwMDQaWgoldHlwZS5nb29nbGVhcGlzLmNvbS9jb21tb24uRXJyb3JQcm90bxIxCNSq7gISKuaKseatieaCqOaJgOS9v+eUqOeahOW5s+WPsOS4jeWPr+ingueci++8gRpcCid0eXBlLmdvb2dsZWFwaXMuY29tL2JpbGliaWxpLnJwYy5TdGF0dXMSMQjUqu4CEirmirHmrYnmgqjmiYDkvb/nlKjnmoTlubPlj7DkuI3lj6/op4LnnIvvvIE
    aaa1115910 committed Jul 9, 2023
    Configuration menu
    Copy the full SHA
    135eb05 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    b3c2619 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    14cbce1 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    8e57d88 View commit details
    Browse the repository at this point in the history

Commits on Jul 10, 2023

  1. Configuration menu
    Copy the full SHA
    186920d View commit details
    Browse the repository at this point in the history
  2. 改造追番接口

    aaa1115910 committed Jul 10, 2023
    Configuration menu
    Copy the full SHA
    aee69d3 View commit details
    Browse the repository at this point in the history

Commits on Jul 16, 2023

  1. Configuration menu
    Copy the full SHA
    e6e2879 View commit details
    Browse the repository at this point in the history
  2. Merge branch 'develop' into feature/grpc

    # Conflicts:
    #	app/src/main/kotlin/dev/aaa1115910/bv/activities/user/LoginActivity.kt
    #	app/src/main/kotlin/dev/aaa1115910/bv/component/controllers2/MenuController.kt
    #	app/src/main/kotlin/dev/aaa1115910/bv/screen/user/UserInfoScreen.kt
    #	gradle/gradle.versions.toml
    #	gradle/libs.versions.toml
    aaa1115910 committed Jul 16, 2023
    Configuration menu
    Copy the full SHA
    6ad59be View commit details
    Browse the repository at this point in the history

Commits on Jul 17, 2023

  1. Configuration menu
    Copy the full SHA
    bc1c821 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    b6dc2a4 View commit details
    Browse the repository at this point in the history
  3. 改造动态接口

    aaa1115910 committed Jul 17, 2023
    Configuration menu
    Copy the full SHA
    6a23e21 View commit details
    Browse the repository at this point in the history
  4. 更新 proto

    aaa1115910 committed Jul 17, 2023
    Configuration menu
    Copy the full SHA
    1e2c011 View commit details
    Browse the repository at this point in the history

Commits on Jul 20, 2023

  1. 改造历史记录接口

    aaa1115910 committed Jul 20, 2023
    Configuration menu
    Copy the full SHA
    b1f35b9 View commit details
    Browse the repository at this point in the history

Commits on Jul 21, 2023

  1. 改造关注列表接口

    aaa1115910 committed Jul 21, 2023
    Configuration menu
    Copy the full SHA
    621c047 View commit details
    Browse the repository at this point in the history

Commits on Jul 22, 2023

  1. 改造搜索接口

    搜索接口在 web 端与 app 端间有较大差距导致一系列问题
    - app 端分类搜索接口无法使用筛选器,要使用删选器可能得使用综合搜索接口
    - 推荐搜索项的图标大小可能会显示异常
    - 搜索建议在 app 端接口可能会提示一些通过 av/bv/文章id 直接跳转的提示项,目前暂未处理
    
    目前感觉搜索结果页需要找个良辰吉日来重写
    aaa1115910 committed Jul 22, 2023
    Configuration menu
    Copy the full SHA
    e39ba71 View commit details
    Browse the repository at this point in the history

Commits on Jul 28, 2023

  1. 改造字幕接口

    aaa1115910 committed Jul 28, 2023
    Configuration menu
    Copy the full SHA
    96c5f1a View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    ea7e839 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    118ce24 View commit details
    Browse the repository at this point in the history

Commits on Jul 29, 2023

  1. 更新 proto

    aaa1115910 committed Jul 29, 2023
    Configuration menu
    Copy the full SHA
    ac3068a View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    1ad3627 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    6d9ff7d View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    13b07c0 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    e1f7ea1 View commit details
    Browse the repository at this point in the history

Commits on Jul 30, 2023

  1. 改造热门接口

    aaa1115910 committed Jul 30, 2023
    Configuration menu
    Copy the full SHA
    ce46f30 View commit details
    Browse the repository at this point in the history
  2. 更改打包环境 ubuntu-latest -> macos-latest

    在引入 grpc 后,在 linux 下打包会莫名其妙中断打包,而在 macos 中一切正常
    aaa1115910 committed Jul 30, 2023
    Configuration menu
    Copy the full SHA
    e929ee7 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    fef648a View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    71fd817 View commit details
    Browse the repository at this point in the history
  5. 更新依赖

    aaa1115910 committed Jul 30, 2023
    Configuration menu
    Copy the full SHA
    b099d97 View commit details
    Browse the repository at this point in the history

Commits on Jul 31, 2023

  1. 外部 api 变更

    aaa1115910 committed Jul 31, 2023
    Configuration menu
    Copy the full SHA
    4b95bfc View commit details
    Browse the repository at this point in the history

Commits on Aug 2, 2023

  1. Configuration menu
    Copy the full SHA
    cc97167 View commit details
    Browse the repository at this point in the history
  2. 新增推荐接口

    aaa1115910 committed Aug 2, 2023
    Configuration menu
    Copy the full SHA
    bf1ff34 View commit details
    Browse the repository at this point in the history

Commits on Aug 6, 2023

  1. Configuration menu
    Copy the full SHA
    c993621 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    2968530 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    796965e View commit details
    Browse the repository at this point in the history
  4. 使用 focusRestorer 替换 FocusGroup

    https://android-review.googlesource.com/q/I39cf65807e5f0a33f1345c4ac881c6ccb2d36e4a
    
    但 focusRestorer 仅适用于 LazyList,对于 Row,Column 这种 List 无效,因此未替换掉 TopNav 中的 FocusGroup
    aaa1115910 committed Aug 6, 2023
    Configuration menu
    Copy the full SHA
    7e2211e View commit details
    Browse the repository at this point in the history
  5. 更新 proto

    aaa1115910 committed Aug 6, 2023
    Configuration menu
    Copy the full SHA
    bb07908 View commit details
    Browse the repository at this point in the history

Commits on Aug 7, 2023

  1. 新增推荐

    resolved #41
    aaa1115910 committed Aug 7, 2023
    Configuration menu
    Copy the full SHA
    73e27ae View commit details
    Browse the repository at this point in the history
  2. 去掉全局小圆角

    aaa1115910 committed Aug 7, 2023
    Configuration menu
    Copy the full SHA
    4ac2dce View commit details
    Browse the repository at this point in the history

Commits on Aug 8, 2023

  1. Configuration menu
    Copy the full SHA
    2f22d93 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    5447007 View commit details
    Browse the repository at this point in the history

Commits on Aug 9, 2023

  1. Configuration menu
    Copy the full SHA
    e4a30fc View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    46aa4ed View commit details
    Browse the repository at this point in the history

Commits on Aug 10, 2023

  1. 新增代理接口

    aaa1115910 committed Aug 10, 2023
    Configuration menu
    Copy the full SHA
    1693ad3 View commit details
    Browse the repository at this point in the history
  2. 将 app GET 接口的参数排序

    使用代理接口时必须将参数进行排序
    aaa1115910 committed Aug 10, 2023
    Configuration menu
    Copy the full SHA
    9e0b13f View commit details
    Browse the repository at this point in the history
  3. 增加代理设置

    aaa1115910 committed Aug 10, 2023
    Configuration menu
    Copy the full SHA
    d7557f8 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    d6e488f View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    c149716 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    cc1fd6d View commit details
    Browse the repository at this point in the history

Commits on Aug 11, 2023

  1. Configuration menu
    Copy the full SHA
    36ef509 View commit details
    Browse the repository at this point in the history

Commits on Aug 14, 2023

  1. Configuration menu
    Copy the full SHA
    82140dd View commit details
    Browse the repository at this point in the history

Commits on Aug 16, 2023

  1. Configuration menu
    Copy the full SHA
    615c1ea View commit details
    Browse the repository at this point in the history
  2. 科技以换皮为本!

    - 去掉粉色主题色(一些地方用粉色真的太扎眼了)
    - 替换组件
    - 界面优化
    aaa1115910 committed Aug 16, 2023
    Configuration menu
    Copy the full SHA
    e851003 View commit details
    Browse the repository at this point in the history

Commits on Aug 17, 2023

  1. Configuration menu
    Copy the full SHA
    aed4351 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    908630b View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    2f3626d View commit details
    Browse the repository at this point in the history

Commits on Aug 18, 2023

  1. 修复登录后当前会话部分接口无法使用

    登录后未将 token 信息保存至 AuthRepository,导致部分接口请求时缺少参数
    aaa1115910 committed Aug 18, 2023
    Configuration menu
    Copy the full SHA
    f5045bb View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    3c2c8f2 View commit details
    Browse the repository at this point in the history

Commits on Aug 19, 2023

  1. Configuration menu
    Copy the full SHA
    1cc4a66 View commit details
    Browse the repository at this point in the history
  2. Merge branch 'develop' into feature/proxy

    # Conflicts:
    #	app/src/main/kotlin/dev/aaa1115910/bv/screen/SeasonInfoScreen.kt
    aaa1115910 committed Aug 19, 2023
    Configuration menu
    Copy the full SHA
    8d3d343 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    6d29cb3 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    bc889e5 View commit details
    Browse the repository at this point in the history
  5. Merge pull request #110 from aaa1115910/feature/proxy

    支持使用代理服务器
    aaa1115910 authored Aug 19, 2023
    Configuration menu
    Copy the full SHA
    d6091d2 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    29c9dfb View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    4e1ad8e View commit details
    Browse the repository at this point in the history
  8. Merge tag 'v0.2.2' into develop

    Tagging version v0.2.2 v0.2.2
    aaa1115910 committed Aug 19, 2023
    Configuration menu
    Copy the full SHA
    9643569 View commit details
    Browse the repository at this point in the history
  9. 更新依赖/版本号

    aaa1115910 committed Aug 19, 2023
    Configuration menu
    Copy the full SHA
    3b78295 View commit details
    Browse the repository at this point in the history

Commits on Aug 23, 2023

  1. Configuration menu
    Copy the full SHA
    ef28c17 View commit details
    Browse the repository at this point in the history

Commits on Sep 1, 2023

  1. 将代理方式更换为分别设置 HTTP 接口代理和 gRPC 接口代理

    - 移除 BiliRoaming 代理支持
    - 移除刚造好的轮子(因为又造了一个)
    aaa1115910 committed Sep 1, 2023
    Configuration menu
    Copy the full SHA
    73fedad View commit details
    Browse the repository at this point in the history

Commits on Sep 3, 2023

  1. Configuration menu
    Copy the full SHA
    d267125 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    e23a15d View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    40f0aaf View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    e3b1cd7 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    08175a4 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    fb65103 View commit details
    Browse the repository at this point in the history

Commits on Sep 4, 2023

  1. Configuration menu
    Copy the full SHA
    8416123 View commit details
    Browse the repository at this point in the history
  2. 移除无用依赖

    aaa1115910 committed Sep 4, 2023
    Configuration menu
    Copy the full SHA
    fb9ffd0 View commit details
    Browse the repository at this point in the history

Commits on Sep 5, 2023

  1. Configuration menu
    Copy the full SHA
    68b67db View commit details
    Browse the repository at this point in the history

Commits on Sep 6, 2023

  1. 优化播放地址域名日志显示

    因为 app 端播放地址默认是 http 而 web 是 https,因此还是得显示更多信息
    aaa1115910 committed Sep 6, 2023
    Configuration menu
    Copy the full SHA
    1bb63c9 View commit details
    Browse the repository at this point in the history

Commits on Sep 7, 2023

  1. Configuration menu
    Copy the full SHA
    23a6362 View commit details
    Browse the repository at this point in the history
  2. 更新依赖

    aaa1115910 committed Sep 7, 2023
    Configuration menu
    Copy the full SHA
    ca66c60 View commit details
    Browse the repository at this point in the history
  3. 启用 K2 编译器

    部分 Compose 代码不支持 K2
    aaa1115910 committed Sep 7, 2023
    Configuration menu
    Copy the full SHA
    ad880bf View commit details
    Browse the repository at this point in the history
  4. 稍微延后播放页打开菜单时请求焦点的时间

    不延后可能会导致焦点虽然在它之上(onFocused==true),但实际并不在其之上(需要移动方向键/Center键才能真正获取到焦点),已经整不会了😭
    
    #116
    aaa1115910 committed Sep 7, 2023
    Configuration menu
    Copy the full SHA
    fa5082d View commit details
    Browse the repository at this point in the history

Commits on Sep 8, 2023

  1. Configuration menu
    Copy the full SHA
    fef9176 View commit details
    Browse the repository at this point in the history
  2. Merge tag 'v0.2.3' into develop

    Tagging version v0.2.3 v0.2.3
    aaa1115910 committed Sep 8, 2023
    Configuration menu
    Copy the full SHA
    a0d593e View commit details
    Browse the repository at this point in the history
  3. 更新版本号

    aaa1115910 committed Sep 8, 2023
    Configuration menu
    Copy the full SHA
    bec9a01 View commit details
    Browse the repository at this point in the history
  4. 更新 Issue 模板

    aaa1115910 committed Sep 8, 2023
    Configuration menu
    Copy the full SHA
    85a8a45 View commit details
    Browse the repository at this point in the history

Commits on Sep 13, 2023

  1. 将 BuildConfig 设置合并进 Gradle 文件

    android.defaults.buildfeatures.buildconfig=true 已被废弃
    aaa1115910 committed Sep 13, 2023
    Configuration menu
    Copy the full SHA
    1c8bd45 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    bf8e0b5 View commit details
    Browse the repository at this point in the history

Commits on Sep 14, 2023

  1. Configuration menu
    Copy the full SHA
    f29cde4 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    60add24 View commit details
    Browse the repository at this point in the history

Commits on Sep 18, 2023

  1. Configuration menu
    Copy the full SHA
    78c5b1c View commit details
    Browse the repository at this point in the history

Commits on Sep 25, 2023

  1. Configuration menu
    Copy the full SHA
    0d849e1 View commit details
    Browse the repository at this point in the history

Commits on Sep 27, 2023

  1. 更新测试代码

    aaa1115910 committed Sep 27, 2023
    Configuration menu
    Copy the full SHA
    963f470 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    4f02d64 View commit details
    Browse the repository at this point in the history

Commits on Sep 29, 2023

  1. Merge pull request #114 from aaa1115910/feature/custom-proxy

    使用自定义代理服务器
    aaa1115910 authored Sep 29, 2023
    Configuration menu
    Copy the full SHA
    1caf349 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    6cbb277 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    3b2c0b5 View commit details
    Browse the repository at this point in the history
  4. 新增剧集系列列表

    aaa1115910 committed Sep 29, 2023
    Configuration menu
    Copy the full SHA
    e9e36c7 View commit details
    Browse the repository at this point in the history

Commits on Sep 30, 2023

  1. Configuration menu
    Copy the full SHA
    946072f View commit details
    Browse the repository at this point in the history

Commits on Oct 1, 2023

  1. Configuration menu
    Copy the full SHA
    a646b6b View commit details
    Browse the repository at this point in the history

Commits on Oct 6, 2023

  1. 更新依赖

    aaa1115910 committed Oct 6, 2023
    Configuration menu
    Copy the full SHA
    2193ea9 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    c58204f View commit details
    Browse the repository at this point in the history
  3. Merge tag 'v0.2.4' into develop

    Tagging version v0.2.4 v0.2.4
    aaa1115910 committed Oct 6, 2023
    Configuration menu
    Copy the full SHA
    eee7fe0 View commit details
    Browse the repository at this point in the history
  4. 更新版本号

    aaa1115910 committed Oct 6, 2023
    Configuration menu
    Copy the full SHA
    569959b View commit details
    Browse the repository at this point in the history

Commits on Oct 12, 2023

  1. 支持多用户切换

    aaa1115910 committed Oct 12, 2023
    Configuration menu
    Copy the full SHA
    581f9e9 View commit details
    Browse the repository at this point in the history

Commits on Oct 13, 2023

  1. Configuration menu
    Copy the full SHA
    baffe22 View commit details
    Browse the repository at this point in the history

Commits on Oct 25, 2023

  1. Configuration menu
    Copy the full SHA
    78c92f8 View commit details
    Browse the repository at this point in the history

Commits on Nov 2, 2023

  1. 新增日志保存功能

    - 保存 logcat 日志到本地文件
    - 通过扫码下载日志
    aaa1115910 committed Nov 2, 2023
    Configuration menu
    Copy the full SHA
    f85a2dd View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    4960d7a View commit details
    Browse the repository at this point in the history

Commits on Nov 3, 2023

  1. 更新依赖

    aaa1115910 committed Nov 3, 2023
    Configuration menu
    Copy the full SHA
    b97e788 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    a8aa548 View commit details
    Browse the repository at this point in the history
  3. 更新 Issue 模板

    aaa1115910 committed Nov 3, 2023
    Configuration menu
    Copy the full SHA
    d85ce71 View commit details
    Browse the repository at this point in the history

Commits on Nov 25, 2023

  1. Configuration menu
    Copy the full SHA
    4a64b2b View commit details
    Browse the repository at this point in the history

Commits on Dec 3, 2023

  1. 更新依赖

    aaa1115910 committed Dec 3, 2023
    Configuration menu
    Copy the full SHA
    d9a52f4 View commit details
    Browse the repository at this point in the history

Commits on Dec 4, 2023

  1. 新增剧集索引接口

    aaa1115910 committed Dec 4, 2023
    Configuration menu
    Copy the full SHA
    19b819e View commit details
    Browse the repository at this point in the history
  2. 降级 qrcode-kotlin 依赖版本

    3.3.0 之后的版本要求 minSDK >= 23
    aaa1115910 committed Dec 4, 2023
    Configuration menu
    Copy the full SHA
    e53fb82 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    08116b2 View commit details
    Browse the repository at this point in the history

Commits on Dec 5, 2023

  1. 新增番剧索引

    aaa1115910 committed Dec 5, 2023
    Configuration menu
    Copy the full SHA
    e6f1e38 View commit details
    Browse the repository at this point in the history

Commits on Dec 6, 2023

  1. Configuration menu
    Copy the full SHA
    968b217 View commit details
    Browse the repository at this point in the history
  2. Merge tag 'v0.2.5' into develop

    Tagging version v0.2.5 v0.2.5
    aaa1115910 committed Dec 6, 2023
    Configuration menu
    Copy the full SHA
    f2d5b10 View commit details
    Browse the repository at this point in the history

Commits on Dec 7, 2023

  1. 更新依赖/版本号

    aaa1115910 committed Dec 7, 2023
    Configuration menu
    Copy the full SHA
    e3e8948 View commit details
    Browse the repository at this point in the history
  2. 在 debug 版本中禁用数据统计

    即便已添加 firebase_analytics_collection_enabled=false 和 firebase_crashlytics_collection_enabled=false ,但任然能看到设备统计,因此尝试增加 firebase_analytics_collection_deactivated=true
    aaa1115910 committed Dec 7, 2023
    Configuration menu
    Copy the full SHA
    1e3fb5b View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    74e46ae View commit details
    Browse the repository at this point in the history

Commits on Dec 11, 2023

  1. 修复错误的版本号

    aaa1115910 committed Dec 11, 2023
    Configuration menu
    Copy the full SHA
    0746bae View commit details
    Browse the repository at this point in the history
  2. 更新 Issue 模板

    aaa1115910 committed Dec 11, 2023
    Configuration menu
    Copy the full SHA
    7319403 View commit details
    Browse the repository at this point in the history

Commits on Dec 14, 2023

  1. Configuration menu
    Copy the full SHA
    60b674f View commit details
    Browse the repository at this point in the history

Commits on Dec 15, 2023

  1. Configuration menu
    Copy the full SHA
    0890d23 View commit details
    Browse the repository at this point in the history

Commits on Jan 15, 2024

  1. Configuration menu
    Copy the full SHA
    87f4a40 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    e93863f View commit details
    Browse the repository at this point in the history

Commits on Jan 23, 2024

  1. 更新依赖

    aaa1115910 committed Jan 23, 2024
    Configuration menu
    Copy the full SHA
    b55ca19 View commit details
    Browse the repository at this point in the history

Commits on Jan 28, 2024

  1. Configuration menu
    Copy the full SHA
    c388254 View commit details
    Browse the repository at this point in the history

Commits on Feb 2, 2024

  1. 优化地区检测机制

    Resolves #124
    Resolves #125
    aaa1115910 committed Feb 2, 2024
    Configuration menu
    Copy the full SHA
    91cff92 View commit details
    Browse the repository at this point in the history

Commits on Feb 5, 2024

  1. Configuration menu
    Copy the full SHA
    51804d1 View commit details
    Browse the repository at this point in the history

Commits on Feb 8, 2024

  1. Configuration menu
    Copy the full SHA
    f14e007 View commit details
    Browse the repository at this point in the history

Commits on Feb 9, 2024

  1. Configuration menu
    Copy the full SHA
    ed981b8 View commit details
    Browse the repository at this point in the history
  2. Merge tag 'v0.2.6' into develop

    Tagging version v0.2.6 v0.2.6
    aaa1115910 committed Feb 9, 2024
    Configuration menu
    Copy the full SHA
    fdc7f1e View commit details
    Browse the repository at this point in the history

Commits on Mar 12, 2024

  1. 更新版本号

    aaa1115910 committed Mar 12, 2024
    Configuration menu
    Copy the full SHA
    10f7c68 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    e1a72b2 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    daba19b View commit details
    Browse the repository at this point in the history

Commits on Apr 7, 2024

  1. 更新 .gitignore

    aaa1115910 committed Apr 7, 2024
    Configuration menu
    Copy the full SHA
    5a45356 View commit details
    Browse the repository at this point in the history

Commits on Apr 8, 2024

  1. Configuration menu
    Copy the full SHA
    8180275 View commit details
    Browse the repository at this point in the history
  2. 新增优先使用官方 cdn 的选项

    resolves #109, resolves #130
    aaa1115910 committed Apr 8, 2024
    Configuration menu
    Copy the full SHA
    30d773a View commit details
    Browse the repository at this point in the history

Commits on Apr 19, 2024

  1. 更新依赖

    aaa1115910 committed Apr 19, 2024
    Configuration menu
    Copy the full SHA
    204cfea View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    f0f5c8e View commit details
    Browse the repository at this point in the history
  3. 更新 proguard-rules.pro

    aaa1115910 committed Apr 19, 2024
    Configuration menu
    Copy the full SHA
    be113d8 View commit details
    Browse the repository at this point in the history

Commits on Apr 28, 2024

  1. 更新 Actions

    - 不再打包 abi 分包
    - 不再上传至 MS AppCenter
    - 自动上传到 Github Release
    aaa1115910 committed Apr 28, 2024
    Configuration menu
    Copy the full SHA
    cc5be7f View commit details
    Browse the repository at this point in the history

Commits on Apr 29, 2024

  1. Configuration menu
    Copy the full SHA
    f6548bb View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    c701895 View commit details
    Browse the repository at this point in the history
  3. 更新 actions 版本

    Node.js 16 actions 已被弃用
    aaa1115910 committed Apr 29, 2024
    Configuration menu
    Copy the full SHA
    d1daa20 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    dedeaaf View commit details
    Browse the repository at this point in the history

Commits on May 12, 2024

  1. 在番剧页新增打开動畫風的按钮

    麻麻再也不用担心我看番切换应用时得返回桌面了
    aaa1115910 committed May 12, 2024
    Configuration menu
    Copy the full SHA
    d7e490f View commit details
    Browse the repository at this point in the history

Commits on May 13, 2024

  1. 更新 README.md

    - 更新 badge
    - 更新下载地址
    aaa1115910 committed May 13, 2024
    Configuration menu
    Copy the full SHA
    75321a3 View commit details
    Browse the repository at this point in the history

Commits on May 14, 2024

  1. Configuration menu
    Copy the full SHA
    8511f43 View commit details
    Browse the repository at this point in the history
  2. 修复 Protobuf v26.x 破坏性更新导致无法解析错误信息

    在生成的代码中 com.google.rpc.Status 继承 com.google.protobuf.GeneratedMessageV3,但 GeneratedMessageV3 却被移除,导致 Status 无法正常解析
    
    https://protobuf.dev/news/2023-12-05/
    aaa1115910 committed May 14, 2024
    Configuration menu
    Copy the full SHA
    158759e View commit details
    Browse the repository at this point in the history
  3. 更新 ci

    使用 gradle/actions/setup-gradle 提交依赖项关系图
    aaa1115910 committed May 14, 2024
    Configuration menu
    Copy the full SHA
    6414d6a View commit details
    Browse the repository at this point in the history

Commits on May 15, 2024

  1. Configuration menu
    Copy the full SHA
    9aec925 View commit details
    Browse the repository at this point in the history
  2. Merge tag 'v0.2.7' into develop

    Tagging version v0.2.7 v0.2.7
    aaa1115910 committed May 15, 2024
    Configuration menu
    Copy the full SHA
    1457065 View commit details
    Browse the repository at this point in the history
  3. 更新版本号

    aaa1115910 committed May 15, 2024
    Configuration menu
    Copy the full SHA
    0ac07ca View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    0d7fda1 View commit details
    Browse the repository at this point in the history

Commits on May 17, 2024

  1. 更新依赖

    aaa1115910 committed May 17, 2024
    Configuration menu
    Copy the full SHA
    c49e4fe View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    e406ad2 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    27e2af8 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    ece3e1a View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    3c22f92 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    178393d View commit details
    Browse the repository at this point in the history
  7. 更新 proguard-rules.pro

    aaa1115910 committed May 17, 2024
    Configuration menu
    Copy the full SHA
    c79f900 View commit details
    Browse the repository at this point in the history

Commits on May 18, 2024

  1. Configuration menu
    Copy the full SHA
    4c38c7f View commit details
    Browse the repository at this point in the history

Commits on May 20, 2024

  1. 修复无法播放视频

    aaa1115910 committed May 20, 2024
    Configuration menu
    Copy the full SHA
    3d57ebd View commit details
    Browse the repository at this point in the history

Commits on May 29, 2024

  1. 新增弹幕防遮挡

    aaa1115910 committed May 29, 2024
    Configuration menu
    Copy the full SHA
    6264d71 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    dca8f68 View commit details
    Browse the repository at this point in the history

Commits on Jun 1, 2024

  1. 修复使用 App 接口偏好时在视频详细页无法显示是否关注

    使用 access_token 请求数据时返回 -663 鉴权错误,但移动端貌似并没有使用该接口,便直接改为和 web 接口偏好一样使用 sessdata 请求数据
    aaa1115910 committed Jun 1, 2024
    Configuration menu
    Copy the full SHA
    e82697b View commit details
    Browse the repository at this point in the history
  2. 优化界面样式

    aaa1115910 committed Jun 1, 2024
    Configuration menu
    Copy the full SHA
    95f7c49 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    1184107 View commit details
    Browse the repository at this point in the history
  4. 优化网络检测速度

    aaa1115910 committed Jun 1, 2024
    Configuration menu
    Copy the full SHA
    1354de4 View commit details
    Browse the repository at this point in the history

Commits on Jun 3, 2024

  1. 新增用户锁

    resolves #133
    aaa1115910 committed Jun 3, 2024
    Configuration menu
    Copy the full SHA
    c32a7a2 View commit details
    Browse the repository at this point in the history
  2. 更正文字

    aaa1115910 committed Jun 3, 2024
    Configuration menu
    Copy the full SHA
    2a5b979 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    b154506 View commit details
    Browse the repository at this point in the history

Commits on Jun 10, 2024

  1. Configuration menu
    Copy the full SHA
    c721fc5 View commit details
    Browse the repository at this point in the history

Commits on Jun 12, 2024

  1. 新增进度条预览

    aaa1115910 committed Jun 12, 2024
    Configuration menu
    Copy the full SHA
    a1bcb75 View commit details
    Browse the repository at this point in the history
  2. 修复部分视频无法播放(App接口)

    测试视频: av1500309285 2024拜年祭
    该视频的视频信息全部被放置于 activitySeason 字段内
    aaa1115910 committed Jun 12, 2024
    Configuration menu
    Copy the full SHA
    3a01be9 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    fe74d3e View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    7f1f7d9 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    53b5239 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    0a6cf3c View commit details
    Browse the repository at this point in the history

Commits on Jun 14, 2024

  1. Configuration menu
    Copy the full SHA
    c67f514 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    4f81589 View commit details
    Browse the repository at this point in the history

Commits on Jun 15, 2024

  1. 修复没有谷歌配置文件无法运行的问题

    一方面判断配置文件存在才启用谷歌插件,
    一方面所有firebase相关封装起来,初始化失败就不调用其他方法,
    AoEiuV020 committed Jun 15, 2024
    Configuration menu
    Copy the full SHA
    f2edc2d View commit details
    Browse the repository at this point in the history

Commits on Jun 16, 2024

  1. Merge pull request #140 from AoEiuV020/p1

    修复没有谷歌配置文件无法运行的问题
    aaa1115910 authored Jun 16, 2024
    Configuration menu
    Copy the full SHA
    c328eac View commit details
    Browse the repository at this point in the history
  2. 更新依赖

    aaa1115910 committed Jun 16, 2024
    Configuration menu
    Copy the full SHA
    cbbde0b View commit details
    Browse the repository at this point in the history

Commits on Jul 11, 2024

  1. 优化音频选择顺序

    在默认音频设置为杜比/HiRes但视频不存在对应音频时,会优先选择HiRes/杜比而不是192k
    
    resolve #143
    aaa1115910 committed Jul 11, 2024
    Configuration menu
    Copy the full SHA
    f7aae55 View commit details
    Browse the repository at this point in the history

Commits on Aug 1, 2024

  1. 完善进度条动画

    在播放剧集时也加载进度条装扮,但剧集类视频仅有 App 接口才能获取到特殊装扮
    aaa1115910 committed Aug 1, 2024
    Configuration menu
    Copy the full SHA
    ce61341 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    dde2477 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    928a716 View commit details
    Browse the repository at this point in the history
  4. Merge tag 'v0.2.8' into develop

    Tagging version v0.2.8 v0.2.8
    aaa1115910 committed Aug 1, 2024
    Configuration menu
    Copy the full SHA
    591289f View commit details
    Browse the repository at this point in the history

Commits on Aug 5, 2024

  1. Configuration menu
    Copy the full SHA
    ef5671c View commit details
    Browse the repository at this point in the history
  2. 更新版本号

    aaa1115910 committed Aug 5, 2024
    Configuration menu
    Copy the full SHA
    d2279de View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    5e2d37c View commit details
    Browse the repository at this point in the history

Commits on Aug 7, 2024

  1. 同时请求多种视频编码的播放地址(App接口)

    原本因为 App 接口请求播放地址时只会返回一种编码的视频,这就会导致一些特殊规格视频例如杜比视界可能会无法获取到播放地址
    现在在获取视频播放地址时将同时请求多种编码格式,以便用户切换编码和补全单一视频编码下可能缺失的特殊规格视频
    aaa1115910 committed Aug 7, 2024
    Configuration menu
    Copy the full SHA
    a3bc393 View commit details
    Browse the repository at this point in the history

Commits on Aug 17, 2024

  1. Configuration menu
    Copy the full SHA
    34a9002 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    526a1a1 View commit details
    Browse the repository at this point in the history

Commits on Aug 29, 2024

  1. 更新依赖

    aaa1115910 committed Aug 29, 2024
    Configuration menu
    Copy the full SHA
    1b1e9d8 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    511a788 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    d763f00 View commit details
    Browse the repository at this point in the history

Commits on Aug 30, 2024

  1. 优化收藏夹的使用体验

    - 替换掉早该换的临时 tabs
    - 按下返回键时先返回顶部
    aaa1115910 committed Aug 30, 2024
    Configuration menu
    Copy the full SHA
    a7b5bff View commit details
    Browse the repository at this point in the history

Commits on Sep 4, 2024

  1. 修复部分剧集无法加载

    fixed #149
    aaa1115910 committed Sep 4, 2024
    Configuration menu
    Copy the full SHA
    5ea9a63 View commit details
    Browse the repository at this point in the history

Commits on Sep 17, 2024

  1. Configuration menu
    Copy the full SHA
    39d34a1 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    996c27d View commit details
    Browse the repository at this point in the history

Commits on Sep 18, 2024

  1. Configuration menu
    Copy the full SHA
    2326055 View commit details
    Browse the repository at this point in the history

Commits on Sep 24, 2024

  1. 更新视频卡片样式

    aaa1115910 committed Sep 24, 2024
    Configuration menu
    Copy the full SHA
    76edf81 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    ef2aeb7 View commit details
    Browse the repository at this point in the history

Commits on Oct 2, 2024

  1. 更新布局

    aaa1115910 committed Oct 2, 2024
    Configuration menu
    Copy the full SHA
    ec1a642 View commit details
    Browse the repository at this point in the history

Commits on Oct 7, 2024

  1. 修复部分设备播放视频时没有画面

    compose-tv 1.0.0/1.0.0-rc2 的 Surface 会和 media3 的 ExoPlayer 发生冲突,底层的 Surface 会显示在 PlayerView 内画面的上层(ui 的下层)导致视频画面被遮挡
    在我 Chromecast with Android TV 12 和 Android 13 avd 中未能复现,但在 Android TV 9 avd 中能复现,可能低版本 Android 出现概率更大
    
    https://issuetracker.google.com/issues/361611808
    
    #151
    aaa1115910 committed Oct 7, 2024
    Configuration menu
    Copy the full SHA
    075cb3f View commit details
    Browse the repository at this point in the history

Commits on Oct 21, 2024

  1. Configuration menu
    Copy the full SHA
    87b6edb View commit details
    Browse the repository at this point in the history

Commits on Oct 22, 2024

  1. 完善 PGC 内容

    aaa1115910 committed Oct 22, 2024
    Configuration menu
    Copy the full SHA
    4a0f60f View commit details
    Browse the repository at this point in the history

Commits on Oct 25, 2024

  1. Configuration menu
    Copy the full SHA
    ac8c6ca View commit details
    Browse the repository at this point in the history

Commits on Oct 30, 2024

  1. 新增 PGC 索引

    aaa1115910 committed Oct 30, 2024
    Configuration menu
    Copy the full SHA
    9da689f View commit details
    Browse the repository at this point in the history

Commits on Nov 28, 2024

  1. 修复 PGC 轮播图可能获取失败

    通过 Koin 注入的 PgcRepository 可能为 null
    aaa1115910 committed Nov 28, 2024
    Configuration menu
    Copy the full SHA
    ba61c99 View commit details
    Browse the repository at this point in the history