Skip to content

Commit 7bdc307

Browse files
committed
feat:发行为 v2.1.0
1 parent 78ded62 commit 7bdc307

File tree

3 files changed

+31
-2
lines changed

3 files changed

+31
-2
lines changed

CHANGELOG.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,35 @@
22

33
🔥🔥基于 Vue3.x setup + ThinkPHP6 + TypeScript + Vite + Pinia + Element Plus等流行技术栈的后台管理系统,自适应多端、支持CRUD代码生成、自带WEB终端、同时提供Web和Server端、内置全局数据回收站和字段级数据修改保护、自动注册路由、无限子级权限管理等,无需授权即可免费商用,希望能帮助大家实现快速开发。
44

5+
## v2.1.0-Release
6+
### 新增
7+
- 升级所有前端依赖
8+
- 增加`Writeable`工具类型,可将只读属性转为可写
9+
- 增加`vue-tsc`依赖和`typecheck`命令
10+
- 模块上传安装时对模块版本是否兼容当前系统版本进行检查
11+
12+
### 重构/优化/修复
13+
- 修复`FormItem`组件属性失去了响应性的问题
14+
- 修复`switch`组件使用了`activeValue`属性时无法工作的问题
15+
- 修复连续安装模块时终端命令可能执行失败的问题
16+
- 修复拥有所有权限的分组可能无法默认选中权限节点的问题
17+
- 基于`Element plus`新版本优化远程下拉组件(分页样式、逻辑等)
18+
- 基于`Element plus`新版本优化文件上传组件(钩子等)
19+
- 基于`Element plus`新版本优化`FormItem`组件
20+
- 优化`FormItem``props.tip``props.blockHelp`样式
21+
- 优化`FormItem`组件的类型定义
22+
- 合并`FormItem``props`本身和`props.attr`,可查阅[此提交](https://gitee.com/wonderful-code/buildadmin/commit/10527ebb760a10b329130e3194a6bbc929a52737)
23+
- 合并`baInput`组件的`props.attr``props.data`,可查阅[此提交](https://gitee.com/wonderful-code/buildadmin/commit/10527ebb760a10b329130e3194a6bbc929a52737)
24+
- 优化表格的`props`继承的类型的定义
25+
- 优化富文本编辑器的默认宽度
26+
- 优化可视化`CRUD`生成的模型的`onBeforeInsert`方法返回值类型定义
27+
- 优化可视化`CRUD`生成的`FormItem`组件的属性代码
28+
- 优化`debounce`的使用,无必要不使用全局`debounce`
29+
- 去除菜单权限规则类的静态变量缓存以更好的兼容常驻内存运行
30+
- 使用`PSR-12`编码风格规范格式化和检查所有`PHP`代码
31+
- `Vite`热更新控制的相关功能整理为函数
32+
- 其他细节
33+
534
## v2.0.10-Release
635
### 新增
736
- 单复选框支持按钮模式

config/buildadmin.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@
7676
// 内容分发网络URL,末尾不带`/`
7777
'cdn_url' => '',
7878
// 版本号
79-
'version' => 'v2.0.10',
79+
'version' => 'v2.1.0',
8080
// 接口地址
8181
'api_url' => 'https://buildadmin.com',
8282
];

web/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "build-admin",
3-
"version": "2.0.10",
3+
"version": "2.1.0",
44
"license": "Apache-2.0",
55
"type": "module",
66
"scripts": {

0 commit comments

Comments
 (0)