This commit is contained in:
cwx
2023-01-10 07:07:09 +08:00
parent 906184f8c6
commit 9658ebdfa3
16 changed files with 397 additions and 1179 deletions
+24 -1
View File
@@ -37,6 +37,8 @@ class comicInfo():
str_date_day = None
str_page_count = None
str_web = None
str_list_img = None
str_files_img = None
chapter_node = None
comicName_node = None
@@ -126,6 +128,22 @@ class comicInfo():
cls.str_web = value
cls.web_node = cls.setNodeAndValue(cls.web,value)
@classmethod
def setChapterListImg(cls,value):
cls.str_list_img=value
@classmethod
def getChapterListImg(cls):
return cls.str_list_img
@classmethod
def setChapterFilesName(cls,value):
cls.str_files_img=value
@classmethod
def getChapterFilesName(cls):
return cls.str_files_img
@classmethod
def getWeb(cls):
return cls.str_web
@@ -431,4 +449,9 @@ class comicInfo():
comic_update = data.get(comic_name)
if comic_name != None and comic_update == c_update_at:
is_update = False
return is_update
return is_update
@classmethod
def comicChapterDownload(cls,imgs,names):
cls.setChapterListImg(imgs)
cls.setChapterFilesName(names)