diff --git a/chrome_tixcraft.py b/chrome_tixcraft.py index 0e4b5cc..d6311b3 100644 --- a/chrome_tixcraft.py +++ b/chrome_tixcraft.py @@ -55,7 +55,7 @@ import argparse import itertools import chromedriver_autoinstaller -CONST_APP_VERSION = "MaxBot (2023.07.21)" +CONST_APP_VERSION = "MaxBot (2023.07.22)" CONST_MAXBOT_CONFIG_FILE = "settings.json" CONST_MAXBOT_LAST_URL_FILE = "MAXBOT_LAST_URL.txt" @@ -415,7 +415,7 @@ def load_chromdriver_normal(config_dict, driver_type): chromedriver_path = get_chromedriver_path(webdriver_path) if not os.path.exists(chromedriver_path): - print("WebDriver not exist, automatically download...") + print("WebDriver not exist, try to download...") chromedriver_autoinstaller.install(path="webdriver", make_version_dir=False) if not os.path.exists(chromedriver_path): @@ -522,7 +522,7 @@ def load_chromdriver_uc(config_dict): chromedriver_path = get_chromedriver_path(webdriver_path) if not os.path.exists(chromedriver_path): - print("WebDriver not exist, automatically download...") + print("WebDriver not exist, try to download...") chromedriver_autoinstaller.install(path="webdriver", make_version_dir=False) options = uc.ChromeOptions() diff --git a/config_launcher.py b/config_launcher.py index f476ceb..c4affdf 100644 --- a/config_launcher.py +++ b/config_launcher.py @@ -22,7 +22,7 @@ import base64 import threading import subprocess -CONST_APP_VERSION = "MaxBot (2023.07.21)" +CONST_APP_VERSION = "MaxBot (2023.07.22)" CONST_MAXBOT_LAUNCHER_FILE = "config_launcher.json" CONST_MAXBOT_CONFIG_FILE = "settings.json" diff --git a/settings.py b/settings.py index ca5c018..6a931b4 100644 --- a/settings.py +++ b/settings.py @@ -34,7 +34,7 @@ warnings.simplefilter('ignore',InsecureRequestWarning) import ssl ssl._create_default_https_context = ssl._create_unverified_context -CONST_APP_VERSION = "MaxBot (2023.07.21)" +CONST_APP_VERSION = "MaxBot (2023.07.22)" CONST_MAXBOT_CONFIG_FILE = "settings.json" CONST_MAXBOT_LAST_URL_FILE = "MAXBOT_LAST_URL.txt" diff --git a/text_server.py b/text_server.py index 82dcc46..9193e41 100644 --- a/text_server.py +++ b/text_server.py @@ -28,7 +28,7 @@ import asyncio import tornado from tornado.web import Application -CONST_APP_VERSION = "MaxBot (2023.07.21)" +CONST_APP_VERSION = "MaxBot (2023.07.22)" CONST_MAXBOT_QUESTION_FILE = "MAXBOT_QUESTION.txt"