Initial commit - 按新规范整理目录结构

- Code/: 源代码、配置文件、文档、工具
- Releases/: 发布包(v1.0)
- Test/: 测试用例和测试脚本
This commit is contained in:
2026-03-20 06:54:40 +08:00
commit 45e7d9553a
29 changed files with 5068 additions and 0 deletions

28
Code/config/config.ini Normal file
View File

@@ -0,0 +1,28 @@
# 远程连接音量自动调节器 - 配置文件
# Remote Volume Monitor Configuration
[volume]
# 远程连接时的音量 (0-100)
remote_volume = 30
# 本地使用时的音量 (0-100, 可选)
# 如果设置,断开远程连接时会自动恢复
local_volume = 80
[monitor]
# 检测间隔 (秒)
check_interval = 5
[behavior]
# 检测到远程连接时是否调整音量
adjust_on_connect = true
# 检测到远程连接断开时是否恢复音量
adjust_on_disconnect = true
[logging]
# 日志级别DEBUG, INFO, WARNING, ERROR
level = INFO
# 日志文件路径
log_file = remote_volume.log