Skip to content

Commit

Permalink
fix: forward msg error (#49)
Browse files Browse the repository at this point in the history
## 修复
* #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
  • Loading branch information
tangyoha authored May 10, 2023
1 parent 6a91ede commit 46712f5
Show file tree
Hide file tree
Showing 20 changed files with 1,470 additions and 745 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/bug.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ body:
description: Also tell us, what did you expect to happen?
placeholder: Tell us what you expected to happen!
validations:
required: true
required: true
- type: textarea
id: current-behavior
attributes:
Expand Down
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ body:
description: Also tell us, what did you expect to happen?
placeholder: Tell us what you expected to happen!
validations:
required: true
required: true
- type: textarea
id: current-behavior
attributes:
Expand Down
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -64,3 +64,5 @@ parsetab.py
local_test/
.vscode
TODO.md
log/
temp/
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ language: EN
- **hide_file_name** - Whether to hide the web interface file name, default `false`
- **web_host** - Web host
- **web_port** - Web port
- **language** - Application language, the default is English (`EN`), optional `CN`(Chinese).
- **language** - Application language, the default is English (`EN`), optional `ZH`(Chinese),`RU`,`UA`



Expand Down
2 changes: 1 addition & 1 deletion README_CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ web_port: 5000
- **hide_file_name** - 是否隐藏web界面文件名称,默认`false`
- **web_host** - web界面地址
- **web_port** - web界面端口
- **language** - 应用语言,默认为英文(`EN`),可选`CN`(中文)
- **language** - 应用语言,默认为英文(`EN`),可选`ZH`(中文),`RU`,`UA`

## 执行

Expand Down
14 changes: 7 additions & 7 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,15 @@ services:
- "5000:5000"
volumes:
# Here is what you need to edit
# - "/root/downloads/:/app/downloads/"
- "./downloads/:/app/downloads/"

# The following is what you don't need to edit
- "./config.yaml:/app/config.yaml"
- "./data.yaml:/app/data.yaml"
- "./log/:/app/log/"
- "sessions:/app/sessions"
- "temp:/app/temp"

volumes:
sessions:
temp:
- "./sessions/:/app/sessions"
- "./temp/:/app/temp"
#restart: "unless-stopped"
# volumes:
# sessions:
# temp:
Loading

0 comments on commit 46712f5

Please sign in to comment.