chore(release): v1.3.0

This commit is contained in:
2977094657
2026-02-18 01:18:16 +08:00
parent c4a2d9baf1
commit ce5979b60e
6 changed files with 9 additions and 8 deletions

View File

@@ -1,12 +1,12 @@
{ {
"name": "wechat-data-analysis-desktop", "name": "wechat-data-analysis-desktop",
"version": "0.2.1", "version": "1.3.0",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "wechat-data-analysis-desktop", "name": "wechat-data-analysis-desktop",
"version": "0.2.1", "version": "1.3.0",
"devDependencies": { "devDependencies": {
"concurrently": "^9.2.1", "concurrently": "^9.2.1",
"cross-env": "^10.1.0", "cross-env": "^10.1.0",

View File

@@ -1,7 +1,7 @@
{ {
"name": "wechat-data-analysis-desktop", "name": "wechat-data-analysis-desktop",
"private": true, "private": true,
"version": "0.2.1", "version": "1.3.0",
"main": "src/main.cjs", "main": "src/main.cjs",
"scripts": { "scripts": {
"dev": "concurrently -k -s first \"cd ..\\\\frontend && npm run dev\" \"cross-env ELECTRON_START_URL=http://localhost:3000 electron .\"", "dev": "concurrently -k -s first \"cd ..\\\\frontend && npm run dev\" \"cross-env ELECTRON_START_URL=http://localhost:3000 electron .\"",

View File

@@ -1,6 +1,6 @@
[project] [project]
name = "wechat-decrypt-tool" name = "wechat-decrypt-tool"
version = "0.2.1" version = "1.3.0"
description = "Modern WeChat database decryption tool with React frontend" description = "Modern WeChat database decryption tool with React frontend"
readme = "README.md" readme = "README.md"
requires-python = ">=3.11" requires-python = ">=3.11"

View File

@@ -1,5 +1,5 @@
"""微信数据库解密工具 """微信数据库解密工具
""" """
__version__ = "0.1.0" __version__ = "1.3.0"
__author__ = "WeChat Decrypt Tool" __author__ = "WeChat Decrypt Tool"

View File

@@ -9,6 +9,7 @@ from starlette.exceptions import HTTPException as StarletteHTTPException
from starlette.responses import FileResponse from starlette.responses import FileResponse
from starlette.staticfiles import StaticFiles from starlette.staticfiles import StaticFiles
from . import __version__ as APP_VERSION
from .logging_config import setup_logging, get_logger from .logging_config import setup_logging, get_logger
from .path_fix import PathFixRoute from .path_fix import PathFixRoute
from .chat_realtime_autosync import CHAT_REALTIME_AUTOSYNC from .chat_realtime_autosync import CHAT_REALTIME_AUTOSYNC
@@ -33,7 +34,7 @@ logger = get_logger(__name__)
app = FastAPI( app = FastAPI(
title="微信数据库解密工具", title="微信数据库解密工具",
description="现代化的微信数据库解密工具,支持微信信息检测和数据库解密功能", description="现代化的微信数据库解密工具,支持微信信息检测和数据库解密功能",
version="0.1.0", version=APP_VERSION,
) )
# 设置自定义路由类 # 设置自定义路由类

2
uv.lock generated
View File

@@ -866,7 +866,7 @@ wheels = [
[[package]] [[package]]
name = "wechat-decrypt-tool" name = "wechat-decrypt-tool"
version = "0.2.1" version = "1.3.0"
source = { editable = "." } source = { editable = "." }
dependencies = [ dependencies = [
{ name = "aiofiles" }, { name = "aiofiles" },