WARNING: THIS SITE IS A MIRROR OF GITHUB.COM / IT CANNOT LOGIN OR REGISTER ACCOUNTS / THE CONTENTS ARE PROVIDED AS-IS / THIS SITE ASSUMES NO RESPONSIBILITY FOR ANY DISPLAYED CONTENT OR LINKS / IF YOU FOUND SOMETHING MAY NOT GOOD FOR EVERYONE, CONTACT ADMIN AT ilovescratch@foxmail.com
Skip to content

Commit b2b4f59

Browse files
committed
build
1 parent a95504b commit b2b4f59

File tree

77 files changed

+416
-404
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

77 files changed

+416
-404
lines changed

CHANGELOG.md

Lines changed: 14 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,27 @@
22

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

5-
## [0.39.39]
5+
## [0.39.52]
66

77
### Bug Fixes
88

9-
- 目录拼错的情况
9+
- 无法清理数据缓存的情况
1010

11-
## [0.39.37]
11+
### Performance
12+
13+
- 优化预览消息
14+
- 优化移动端输入法换行
15+
- 审批消息预览图片
16+
- 删除冗余字段
17+
- 优化索引
18+
- 优化国际化语言
19+
- 优化会话查询
20+
21+
## [0.39.39]
1222

1323
### Bug Fixes
1424

25+
- 目录拼错的情况
1526
- 设置子任务时间主任务出现1970的情况
1627
- 消息溢出的情况
1728

app/Models/WebSocketDialog.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -211,6 +211,7 @@ public static function synthesizeData($data, $userid, $hasData = false)
211211
$data[$field] = $data[$field] ?? null;
212212
}
213213
}
214+
$data['avatar'] = Base::fillUrl($data['avatar']);
214215

215216
// 会员必要字段
216217
$fields = [

database/migrations/2024_11_02_094141_add_index_some_20241102.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ public function up()
1818
});
1919
Schema::table('deleteds', function (Blueprint $table) {
2020
$table->index(['type', 'userid']);
21-
$table->index(['type', 'userid', 'deleted_at']);
21+
$table->index(['type', 'userid', 'created_at']);
2222
});
2323
Schema::table('report_receives', function (Blueprint $table) {
2424
$table->index(['userid', 'read', 'rid']);

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "DooTask",
3-
"version": "0.39.39",
3+
"version": "0.39.52",
44
"codeVerson": 149,
55
"description": "DooTask is task management system.",
66
"scripts": {
Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)