Update 1.5

This commit is contained in:
Yoshiko 2019-11-06 21:08:57 +08:00 committed by GitHub
parent fe12a05f8f
commit d84767c609
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 6 additions and 6 deletions

View File

@ -30,7 +30,7 @@ else:
print("retry=3", file=code) print("retry=3", file=code)
print("", file=code) print("", file=code)
print("[Name_Rule]", file=code) print("[Name_Rule]", file=code)
print("location_rule='JAV_output/'+actor+'/'+number",file=code) print("location_rule=actor+'/'+number",file=code)
print("naming_rule=number+'-'+title",file=code) print("naming_rule=number+'-'+title",file=code)
print("", file=code) print("", file=code)
print("[update]",file=code) print("[update]",file=code)

View File

@ -15,7 +15,7 @@ os.chdir(os.getcwd())
# ============global var=========== # ============global var===========
version='1.4' version='1.5'
config = ConfigParser() config = ConfigParser()
config.read(config_file, encoding='UTF-8') config.read(config_file, encoding='UTF-8')

View File

@ -440,8 +440,8 @@ def PrintFiles():
print(" <plot>" + outline + "</plot>", file=code) print(" <plot>" + outline + "</plot>", file=code)
print(" <runtime>" + str(runtime).replace(" ", "") + "</runtime>", file=code) print(" <runtime>" + str(runtime).replace(" ", "") + "</runtime>", file=code)
print(" <director>" + director + "</director>", file=code) print(" <director>" + director + "</director>", file=code)
print(" <poster>" + number + "-poster.jpg</poster>", file=code) print(" <poster>" + number + c_word + "-poster.jpg</poster>", file=code)
print(" <fanart>" + number + '-fanart.jpg' + "</fanart>", file=code) print(" <fanart>" + number + c_word + '-fanart.jpg' + "</fanart>", file=code)
try: try:
for key, value in actor_photo.items(): for key, value in actor_photo.items():
print(" <actor>", file=code) print(" <actor>", file=code)

View File

@ -1,5 +1,5 @@
{ {
"version": "1.4", "version": "1.5",
"version_show":"1.4", "version_show":"1.5",
"download": "https://github.com/yoshiko2/AV_Data_Capture/releases" "download": "https://github.com/yoshiko2/AV_Data_Capture/releases"
} }