Skip to content

Commit 46712f5

Browse files
authored
fix: forward msg error (#49)
## 修复 * #67 * #54 * #53 ## 新功能 * 增强机器人回复 * 修复转发失败问题 * 修复转发监听问题 * 增加多语言支持,支持`中文`,`english`, `russian`, `ukrainian` * 修复过滤器标题匹配失败问题 * 修复上传压缩文件问题 ## fix * #67 * #54 * #53 ## new function * Enhanced bot reply * Fix forwarding failure problem * Fix forwarding monitoring problem * Add multi-language support, support `Chinese`, `english`, `russian`, `ukrainian` * Fix filter title matching failure problem * Fix the problem of uploading compressed files
1 parent 6a91ede commit 46712f5

20 files changed

+1470
-745
lines changed

.github/ISSUE_TEMPLATE/bug.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ body:
5252
description: Also tell us, what did you expect to happen?
5353
placeholder: Tell us what you expected to happen!
5454
validations:
55-
required: true
55+
required: true
5656
- type: textarea
5757
id: current-behavior
5858
attributes:

.github/ISSUE_TEMPLATE/bug_report.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ body:
5858
description: Also tell us, what did you expect to happen?
5959
placeholder: Tell us what you expected to happen!
6060
validations:
61-
required: true
61+
required: true
6262
- type: textarea
6363
id: current-behavior
6464
attributes:

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -64,3 +64,5 @@ parsetab.py
6464
local_test/
6565
.vscode
6666
TODO.md
67+
log/
68+
temp/

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ language: EN
216216
- **hide_file_name** - Whether to hide the web interface file name, default `false`
217217
- **web_host** - Web host
218218
- **web_port** - Web port
219-
- **language** - Application language, the default is English (`EN`), optional `CN`(Chinese).
219+
- **language** - Application language, the default is English (`EN`), optional `ZH`(Chinese),`RU`,`UA`
220220

221221

222222

README_CN.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ web_port: 5000
212212
- **hide_file_name** - 是否隐藏web界面文件名称,默认`false`
213213
- **web_host** - web界面地址
214214
- **web_port** - web界面端口
215-
- **language** - 应用语言,默认为英文(`EN`),可选`CN`(中文)
215+
- **language** - 应用语言,默认为英文(`EN`),可选`ZH`(中文),`RU`,`UA`
216216

217217
## 执行
218218

docker-compose.yaml

+7-7
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,15 @@ services:
99
- "5000:5000"
1010
volumes:
1111
# Here is what you need to edit
12-
# - "/root/downloads/:/app/downloads/"
12+
- "./downloads/:/app/downloads/"
1313

1414
# The following is what you don't need to edit
1515
- "./config.yaml:/app/config.yaml"
1616
- "./data.yaml:/app/data.yaml"
1717
- "./log/:/app/log/"
18-
- "sessions:/app/sessions"
19-
- "temp:/app/temp"
20-
21-
volumes:
22-
sessions:
23-
temp:
18+
- "./sessions/:/app/sessions"
19+
- "./temp/:/app/temp"
20+
#restart: "unless-stopped"
21+
# volumes:
22+
# sessions:
23+
# temp:

0 commit comments

Comments
 (0)