Skip to content

Commit

Permalink
build
Browse files Browse the repository at this point in the history
  • Loading branch information
kuaifan committed Mar 2, 2024
1 parent 26adfa1 commit c4430e1
Show file tree
Hide file tree
Showing 72 changed files with 336 additions and 320 deletions.
18 changes: 17 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,25 @@

All notable changes to this project will be documented in this file.

## [0.35.10]

### Bug Fixes

- 修改消息导致最后消息改变
- 显示无关系的子任务、指定成员可见消息推送
- 调整gemini机器人设置参数

### Performance

- 更新说明文档
- 优化客户端
- 默认关闭端到端加密传输

## [0.34.95]

### Bug Fixes

- 调整发送参数逻辑
- 推送标题存在换行时不显示
- 修复下载文件大小为0时报错
- 更改其他版本的链接
Expand All @@ -17,6 +32,7 @@ All notable changes to this project will be documented in this file.

### Features

- 升级okr
- 优化内置浏览器
- Gemini机器人添加代理参数
- 发布接口只保留最近两个版本
Expand All @@ -26,11 +42,11 @@ All notable changes to this project will be documented in this file.
### Performance

- 优化ai机器人
- Okr和审批优化
- 优化pdf在线预览
- 优化客户端打开服务器链接
- 签到设置,有些客户服务器安全体系会拦截 curl -sSL 关键字,优化为cmd不传值
- 签到设置,有些客户服务器安全体系会拦截 curl -sSL 关键字,优化为base64返回
- 升级okr

## [0.34.66]

Expand Down
2 changes: 1 addition & 1 deletion app/Tasks/BotReceiveMsgTask.php
Original file line number Diff line number Diff line change
Expand Up @@ -483,7 +483,7 @@ private function botManagerWebhook(string $command, WebSocketDialogMsg $msg, Use
'version' => Base::getVersion(),
'extras' => Base::array2json($extras)
];
$res = Ihttp::ihttp_post($webhookUrl, $data, 10);
$res = Ihttp::ihttp_post($webhookUrl, $data);
if ($userBot) {
$userBot->webhook_num++;
$userBot->save();
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "DooTask",
"version": "0.34.95",
"version": "0.35.10",
"description": "DooTask is task management system.",
"scripts": {
"start": "./cmd dev",
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit c4430e1

Please sign in to comment.