diff --git a/README.md b/README.md index 82f4a4a..a9439f4 100644 --- a/README.md +++ b/README.md @@ -30,6 +30,13 @@ pip install --no-cache-dir -r requirements.txt -i https://pypi.mirrors.ustc.edu. ``` ![](https://raw.githubusercontent.com/xingsu1021/pthelper/master/static/screenshot/update.png) +# v2.2.2 说明 + +```shell + 1、新增备份恢复功能。 + 2、支持mysql作为后端数据库 +``` + # v2.2.1 说明 ```shell diff --git a/pthelper/settings.py b/pthelper/settings.py index 9927a15..c955be9 100644 --- a/pthelper/settings.py +++ b/pthelper/settings.py @@ -140,6 +140,7 @@ WSGI_APPLICATION = 'pthelper.wsgi.application' # 'default': { # 'ENGINE': 'django.db.backends.sqlite3', # 'NAME': os.path.join(BASE_DIR,'db','pthelper.sqlite3'), +# 'timeout': 20, # } # } #mysql @@ -225,7 +226,7 @@ DEFAULT_AUTO_FIELD = 'django.db.models.BigAutoField' #模板使用变量 SITE_NAME = 'PT助手' SITE_URL = 'https://github.com/xingsu1021/pthelper' -SITE_VERSION = 'Version 2.2.1' +SITE_VERSION = '版本 2.2.2' SITE_COPYRIGHT = 'copyright © 2022' SITE_NAME_COPYRIGHT = 'copyright © 2022 PT助手'