Add: image naming with number

This commit is contained in:
yoshiko2
2022-11-24 01:31:17 +08:00
parent 65e3cf98b0
commit 9db0ba27ef
3 changed files with 26 additions and 9 deletions

View File

@@ -328,6 +328,12 @@ class Config:
except:
return 50
def image_naming_with_number(self) -> bool:
try:
return self.conf.getboolean("Name_Rule", "image_naming_with_number")
except:
return False
def update_check(self) -> bool:
try:
return self.conf.getboolean("update", "update_check")