Skip to content
This repository has been archived by the owner on Oct 11, 2023. It is now read-only.

Commit

Permalink
增加更新内容,修改版本号
Browse files Browse the repository at this point in the history
  • Loading branch information
Ljzd-PRO committed Jun 23, 2023
1 parent 62a3991 commit 087f7cb
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 19 deletions.
8 changes: 1 addition & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,7 @@

### 更新说明

- 修复启动后由于商品数据相关问题而导致的崩溃
- 修复 Linux 实际不会应用 uvloop 的问题
- 人机验证更新至
GT4(但实际上暂时不可用 [#105](https://github.com/Ljzd-PRO/Mys_Goods_Tool/issues/105#issuecomment-1552727784)
- 修复短信验证码发送失败的问题 #105 #94 #104 - #126 by @Night-stars-1

## 功能和特性

Expand All @@ -29,9 +26,6 @@
- [x] 多账号支持
- [x] 支持米游社所有分区的商品兑换

### TODO
- [ ] 更新至极验第四代适应性验证

### 预览图

<details>
Expand Down
10 changes: 3 additions & 7 deletions mys_goods_tool/tui.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
from __future__ import annotations

import sys
from io import StringIO

from io import StringIO
from rich.console import RenderableType
from rich.markdown import Markdown
from rich.text import Text
Expand Down Expand Up @@ -31,9 +31,8 @@
# Mys_Goods_Tool - 米游社商品兑换工具
## 更新说明
- 修复启动后由于商品数据相关问题而导致的崩溃
- 修复 Linux 实际不会应用 uvloop 的问题
- 人机验证更新至 GT4(但实际上暂时不可用 [#105](https://github.com/Ljzd-PRO/Mys_Goods_Tool/issues/105#issuecomment-1552727784))
- 修复短信验证码发送失败的问题 #105 #94 #104 - #126 by @Night-stars-1
## 功能和特性
Expand All @@ -43,9 +42,6 @@
- 多账号支持
- 支持米游社所有分区的商品兑换
### TODO
- 更新至极验第四代适应性验证
## 其他
- [**🔗完整说明文档**](https://github.com/Ljzd-PRO/Mys_Goods_Tool/wiki)
- 仅供学习时参考
Expand Down
10 changes: 5 additions & 5 deletions mys_goods_tool/user_data.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
import os
from json import JSONDecodeError
from pathlib import Path
from typing import List, Union, Optional, Tuple, Any, Dict, Set, Callable, TYPE_CHECKING, AbstractSet, \
Mapping

import os
from httpx import Cookies
from loguru import logger
from pathlib import Path
from pydantic import BaseModel, Extra, ValidationError, BaseSettings, validator
from typing import List, Union, Optional, Tuple, Any, Dict, Set, Callable, TYPE_CHECKING, AbstractSet, \
Mapping

from mys_goods_tool.data_model import BaseModelWithSetter, Good, Address, GameRecord, BaseModelWithUpdate

Expand All @@ -16,7 +16,7 @@
CONFIG_PATH = ROOT_PATH / "user_data.json"
"""用户数据文件默认路径"""

VERSION = "2.0.5-dev"
VERSION = "2.0.5"
"""程序当前版本"""

if TYPE_CHECKING:
Expand Down

0 comments on commit 087f7cb

Please sign in to comment.