1. 更新版本号至 0.1.4 - 更新程序标题显示版本号 - 添加版本信息配置文件 2. 修复配置保存和加载问题 - 修复保存路径设置不生效的问题 - 优化配置加载时机,确保使用最新设置
21 lines
392 B
TOML
21 lines
392 B
TOML
[project]
|
|
name = "llmclipboard"
|
|
version = "0.1.4"
|
|
description = "A cross-platform rich text capture tool with GUI support"
|
|
readme = "README.md"
|
|
requires-python = ">=3.10"
|
|
dependencies = [
|
|
"pynput",
|
|
"pywin32",
|
|
"html2text",
|
|
"keyboard",
|
|
"configparser",
|
|
"PyQt6",
|
|
"darkdetect",
|
|
"qt-material",
|
|
"jieba"
|
|
]
|
|
|
|
[project.scripts]
|
|
llmclipboard = "llmclipboard.app:main"
|