-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathconfig.yaml.example
More file actions
43 lines (42 loc) · 1.15 KB
/
config.yaml.example
File metadata and controls
43 lines (42 loc) · 1.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# 日志配置
logging:
level: "info" # debug, info, warn, error
format: "logback" # logback, json
# 激活的应用
activate: app1
default_downloads: "C:\\Downloads"
default_apps: "C:\\Apps"
apps:
app1:
path: C:\Path\To\App1.exe
args: []
monitor:
enabled: true
update:
enabled: true # 启用更新检查
channel: "stable" # 更新通道: stable/beta/alpha
auto_check: true # 启动时自动检查更新
auto_download: false # 是否自动下载更新
notify: true # 是否显示更新通知
app2:
path: D:\Another\App2.exe
args: ["-flag"]
monitor:
enabled: false
update:
enabled: true
channel: "beta" # 使用beta版本通道
auto_check: true
auto_download: true # 自动下载beta版本
notify: true
app3:
path: C:\Games\Game.exe
args: ["-fullscreen"]
monitor:
enabled: true
update:
enabled: false # 禁用更新检查
# channel: "stable" # 当enabled=false时,其他配置被忽略
# auto_check: false
# auto_download: false
# notify: false