[copy_manga] Add update status. Close #60

This commit is contained in:
2025-04-07 17:23:04 +08:00
parent 3de1889b06
commit 7d3994af8d
2 changed files with 5 additions and 3 deletions

View File

@@ -4,7 +4,7 @@ class CopyManga extends ComicSource {
key = "copy_manga" key = "copy_manga"
version = "1.1.3" version = "1.1.4"
minAppVersion = "1.2.1" minAppVersion = "1.2.1"
@@ -602,6 +602,7 @@ class CopyManga extends ComicSource {
let updateTime = comicData.datetime_updated ? comicData.datetime_updated : ""; let updateTime = comicData.datetime_updated ? comicData.datetime_updated : "";
let description = comicData.brief; let description = comicData.brief;
let chapters = await getChapters(id, data.groups); let chapters = await getChapters(id, data.groups);
let status = comicData.status.display;
return { return {
title: title, title: title,
@@ -610,7 +611,8 @@ class CopyManga extends ComicSource {
tags: { tags: {
"作者": authors, "作者": authors,
"更新": [updateTime], "更新": [updateTime],
"标签": tags "标签": tags,
"状态": [status],
}, },
chapters: chapters, chapters: chapters,
isFavorite: results[1], isFavorite: results[1],

View File

@@ -3,7 +3,7 @@
"name": "拷贝漫画", "name": "拷贝漫画",
"fileName": "copy_manga.js", "fileName": "copy_manga.js",
"key": "copy_manga", "key": "copy_manga",
"version": "1.1.3" "version": "1.1.4"
}, },
{ {
"name": "Komiic", "name": "Komiic",