Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
6be6ce5
神秘小东西
cloudfl4re Aug 2, 2026
025b438
神秘小东西
cloudfl4re Aug 2, 2026
665e808
修正 2.0.2 版本号
cloudfl4re Aug 3, 2026
c05fe68
兼容 2.0.1 客户端视频列表协议
cloudfl4re Aug 3, 2026
083ffcf
test: 修复 Windows 换行基线检查(任务 0/7)
cloudfl4re Aug 5, 2026
8462e56
fix: 限制握手协议版本长度(任务 1/7)
cloudfl4re Aug 5, 2026
4918e02
build: 建立双版本聚合与服务端工具链(任务 2/7)
cloudfl4re Aug 5, 2026
58bd8a6
refactor: 迁移 1.21.11 至 Mojang 官方映射(任务 3/7)
cloudfl4re Aug 5, 2026
a03e14e
feat: 适配 Fabric 26.2 客户端渲染(任务 4/7)
cloudfl4re Aug 5, 2026
c051081
fix: 完善 Folia 与纹理资源生命周期(任务 5/7)
cloudfl4re Aug 5, 2026
8748213
build: 生成并验证双版本发布包(任务 6/7)
cloudfl4re Aug 5, 2026
87f167e
Merge remote-tracking branch 'mcxqk/main' into feature/minecraft-26.2
cloudfl4re Aug 5, 2026
37332be
feat(paper): expose VPLight telemetry on 26.2
cloudfl4re Aug 5, 2026
0a3f166
fix(paper): harden VPLight telemetry lifecycle
cloudfl4re Aug 5, 2026
284b078
fix: skip redundant YouTube live resolution
cloudfl4re Aug 9, 2026
fee4ff1
fix: preserve previous handshake compatibility
cloudfl4re Aug 9, 2026
f6e7da2
fix: externalize native media runtimes
cloudfl4re Aug 15, 2026
48ea1b2
Update README.md
cloudfl4re Aug 15, 2026
59b6ff6
Update build.yml
cloudfl4re Aug 16, 2026
343faf7
Update build.yml
cloudfl4re Aug 16, 2026
198b85c
Update build.yml
cloudfl4re Aug 16, 2026
255f719
Update README.md
cloudfl4re Aug 16, 2026
6d227df
Update README.md
cloudfl4re Aug 16, 2026
211b367
Delete FOLIA_COMPATIBILITY_AUDIT.md
cloudfl4re Aug 18, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
37 changes: 28 additions & 9 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,26 +15,45 @@ jobs:
- name: validate gradle wrapper
uses: gradle/actions/wrapper-validation@v4
- name: setup jdk
uses: actions/setup-java@v4
uses: actions/setup-java@v5
with:
java-version: '21'
java-version: '25'
distribution: 'microsoft'
- name: make gradle wrapper executable
run: chmod +x ./gradlew
- name: build
run: ./gradlew build
- name: capture Fabric artifact
- name: capture Fabric 1.21.11 artifact
uses: actions/upload-artifact@v4
with:
name: VideoPlayer-Fabric
name: VideoPlayer-Fabric-1.21.11
path: |
build/libs/VideoPlayer-*.jar
!build/libs/*-sources.jar
!build/libs/*-dev-shadow.jar
- name: capture Paper artifact
fabric-1.21.11/build/libs/VideoPlayer-*.jar
!fabric-1.21.11/build/libs/*-sources.jar
!fabric-1.21.11/build/libs/*-dev-shadow.jar
if-no-files-found: error
- name: capture Fabric 26.2 artifact
uses: actions/upload-artifact@v4
with:
name: VideoPlayer-Paper
name: VideoPlayer-Fabric-26.2
path: |
fabric-26.2/build/libs/VideoPlayer-*-26.2.jar
!fabric-26.2/build/libs/*-plain.jar
!fabric-26.2/build/libs/*-sources.jar
if-no-files-found: error
- name: capture Paper 1.21.11 artifact
uses: actions/upload-artifact@v4
with:
name: VideoPlayer-Paper-1.21.11
path: |
paper-plugin/build/libs/VideoPlayer-Paper-*.jar
!paper-plugin/build/libs/*-plain.jar
if-no-files-found: error
- name: capture Paper 26.2 artifact
uses: actions/upload-artifact@v4
with:
name: VideoPlayer-Paper-26.2
path: |
paper-plugin-26.2/build/libs/VideoPlayer-Paper-*-26.2.jar
!paper-plugin-26.2/build/libs/*-plain.jar
if-no-files-found: error
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
</p>

<p align="center">
<a href="https://github.com/mcxqk/VideoPlayer/actions/workflows/build.yml"><img src="https://github.com/mcxqk/VideoPlayer/actions/workflows/build.yml/badge.svg" alt="Build"></a>
<a href="https://github.com/mcxyd/VideoPlayer/actions/workflows/build.yml"><img src="https://github.com/mcxyd/VideoPlayer/actions/workflows/build.yml/badge.svg" alt="Build"></a>
<a href="https://www.minecraft.net/"><img src="https://img.shields.io/badge/Minecraft-1.21.11-62B47A" alt="Minecraft 1.21.11"></a>
<a href="https://adoptium.net/"><img src="https://img.shields.io/badge/Java-21-ED8B00" alt="Java 21"></a>
<a href="LICENSE"><img src="https://img.shields.io/github/license/mcxqk/VideoPlayer" alt="GPL-3.0 license"></a>
Expand Down
Loading
Loading