@dao42/d42paas-front 0.9.184 → 0.9.186

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -1,4 +1,33 @@
1
1
  # 更新日志
2
+ ## v0.9.186
3
+ ### 新增
4
+ + 新增`Editor`三连击,全选功能
5
+ ### 优化
6
+ + 关键词搜索控件按钮增加 tooltip 提示
7
+ + 文件树多文件移动时自动过滤重名文件
8
+ + 文件树中支持 Shfit 键对文件的选中操作
9
+ ## v0.9.185
10
+ ### 新增
11
+ + 新增消息 Messages.BehindTooMuch
12
+ + 新增方法 keyword_search_btn_replace_all
13
+ ```ts
14
+ const dao = new DaoPaaS({});
15
+ // codemirror 本地版本落后太多时可监听到此消息
16
+ dao.onMessage((message: Message) => {
17
+ case Messages.BehindTooMuch:
18
+ dao.syncServeDocForce(); // 强制同步服务端的文档及版本信息
19
+ break;
20
+ });
21
+ ```
22
+ ### 优化
23
+ + 优化多人编辑代码不同步的问题
24
+ + 优化多人编辑掉线重连后代码不同步的问题
25
+ ## v0.9.184
26
+ ### 新增
27
+ + `replayCodeByRange` 支持虚拟用户输入显示光标,并跟随视角
28
+ + 新增对`.ui`, `.svelte`,`.pro`后缀文件语法高亮
29
+ ### 优化
30
+ + 紧急修复编辑器代码不同步问题
2
31
  ## v0.9.182
3
32
  ### 新增
4
33
  + 新增AI虚拟用户自动跟随效果