docs: Update README with v0.6.24 changelog

This commit is contained in:
2026-01-08 21:11:15 +09:00
parent 6c31b96be6
commit 783b44b6b6
2 changed files with 8 additions and 2 deletions

View File

@@ -81,6 +81,12 @@
## 📝 변경 이력 (Changelog)
### v0.6.24 (2026-01-08)
- **Ohli24 GDM 연동 버그 수정**:
- **썸네일 누락 해결**: GDM 위임 시 `image` 키를 `thumbnail`로 올바르게 매핑하여 목록에서 이미지가 보이도록 수정.
- **소스 타입 통일**: GDM 측 명칭 변경에 맞춰 `ani24` 대신 `ohli24`를 기본값으로 사용 (하위 호환 유지).
- **검색 결과 썸네일**: 일부 환경에서 썸네일 URL이 누락되던 필드 보강.
### v0.6.23 (2026-01-08)
- **Linkkf 다운로드 완전 복구**:
- **Zendriver Daemon CDP 헤더 버그 수정**: `zd.cdp.network.Headers()` 타입 래핑 누락으로 Referer 헤더가 적용되지 않던 문제 해결.

View File

@@ -2303,7 +2303,7 @@ class LogicOhli24(AnimeModuleBase):
# GDM 소스 타입 결정 (멀티쓰레드/aria2c 사용 여부에 따라)
# GDM의 'general'은 yt-dlp + aria2c를 사용함
gdm_source_type = "ani24"
gdm_source_type = "ohli24"
if download_method in ['ytdlp', 'aria2c']:
gdm_source_type = "general"
@@ -2315,7 +2315,7 @@ class LogicOhli24(AnimeModuleBase):
"caller_plugin": f"{P.package_name}_{self.name}",
"callback_id": episode_info["_id"],
"title": entity.filename or episode_info.get('title'),
"thumbnail": episode_info.get('image'),
"thumbnail": episode_info.get('thumbnail') or episode_info.get('image'),
"meta": {
"series": entity.content_title,
"season": entity.season,