Skip to content

Commit d203222

Browse files
committed
release: update 5.4.0
1 parent 07ad01e commit d203222

File tree

5 files changed

+92
-2
lines changed

5 files changed

+92
-2
lines changed

CHANGELOG.en_US.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,33 @@
1+
# 5.4.0 (2024-04-18)
2+
3+
### 🎫 Feat
4+
5+
- Add global disabled attribute `disabled` to `ReSegmented` component
6+
- Added mind map examples
7+
- Functional pop-up box `ReDialog` adds `Popconfirm` bubble confirmation box
8+
- `pure-table` adds `headerSlot` custom header slot usage example
9+
- The route adds a configurable `fixedTag` attribute, which determines whether the current menu name is fixedly displayed on the tab and cannot be closed.
10+
- Added account setting function page and compatible with mobile terminals
11+
- Upgrade `eslint9` and related compatibility processing
12+
- Added global configuration `MaxTagsLevel` property to set the maximum number of open tabs
13+
- Full coverage of the internationalization of the core code of the framework (only the internationalization of the business code needs to be processed)
14+
15+
### 🐞 Bug fixes
16+
17+
- Fixed the issue where columns cannot be dragged normally when there are multiple `RePureTableBar` components on a page
18+
- Fixed the problem of icon display style after the third-level menu is folded to the left
19+
- Fixed the issue where the font color does not take effect after refreshing the account settings page
20+
- Fixed the issue where the `refreshToken` parameter is empty when calling the refresh `token` interface
21+
22+
### 🍏 Perf
23+
24+
- Optimize login interface
25+
- Optimize the logic of obtaining the top menu
26+
- Optimize request whitelist logic and be compatible with more scenarios
27+
- Simplified export and import usage in `store` files
28+
- Removed unnecessary `cloc` tool dependency package, which uses the `GPL` open source license and is controversial
29+
- Optimize the types of `post` and `get` utility functions in `src/utils/http` files
30+
131
# 5.3.0 (2024-03-28)
232

333
### ✔️ refactor

CHANGELOG.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,33 @@
1+
# 5.4.0 (2024-04-18)
2+
3+
### 🎫 Feat
4+
5+
- Add global disabled attribute `disabled` to `ReSegmented` component
6+
- Added mind map examples
7+
- Functional pop-up box `ReDialog` adds `Popconfirm` bubble confirmation box
8+
- `pure-table` adds `headerSlot` custom header slot usage example
9+
- The route adds a configurable `fixedTag` attribute, which determines whether the current menu name is fixedly displayed on the tab and cannot be closed.
10+
- Added account setting function page and compatible with mobile terminals
11+
- Upgrade `eslint9` and related compatibility processing
12+
- Added global configuration `MaxTagsLevel` property to set the maximum number of open tabs
13+
- Full coverage of the internationalization of the core code of the framework (only the internationalization of the business code needs to be processed)
14+
15+
### 🐞 Bug fixes
16+
17+
- Fixed the issue where columns cannot be dragged normally when there are multiple `RePureTableBar` components on a page
18+
- Fixed the problem of icon display style after the third-level menu is folded to the left
19+
- Fixed the issue where the font color does not take effect after refreshing the account settings page
20+
- Fixed the issue where the `refreshToken` parameter is empty when calling the refresh `token` interface
21+
22+
### 🍏 Perf
23+
24+
- Optimize login interface
25+
- Optimize the logic of obtaining the top menu
26+
- Optimize request whitelist logic and be compatible with more scenarios
27+
- Simplified export and import usage in `store` files
28+
- Removed unnecessary `cloc` tool dependency package, which uses the `GPL` open source license and is controversial
29+
- Optimize the types of `post` and `get` utility functions in `src/utils/http` files
30+
131
# 5.3.0 (2024-03-28)
232

333
### ✔️ refactor

CHANGELOG.zh_CN.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,33 @@
1+
# 5.4.0 (2024-04-18)
2+
3+
### 🎫 Feat
4+
5+
- 分段控制器组件添加全局禁用属性`disabled`
6+
- 添加思维导图示例
7+
- 函数式弹框`ReDialog`添加`Popconfirm`气泡确认框
8+
- `pure-table`添加`headerSlot`自定义表头插槽用法示例
9+
- 路由添加可配置的`fixedTag`属性,作用为当前菜单名称是否固定显示在标签页且不可关闭
10+
- 添加账户设置功能页面且兼容移动端
11+
- 升级`eslint9`,相关兼容处理
12+
- 添加全局配置`MaxTagsLevel`属性,可设置打开标签页最大数
13+
- 框架核心代码国际化全量覆盖(仅需处理业务代码国际化即可)
14+
15+
### 🐞 Bug fixes
16+
17+
- 修复当一个页面存在多个`RePureTableBar`组件,列无法正常拖动问题
18+
- 修复三级菜单向左折叠后图标显示样式问题
19+
- 修复账户设置页面,刷新后字体颜色未生效的问题
20+
- 修复调用刷新`token`接口时,`refreshToken`参数为空的问题
21+
22+
### 🍏 Perf
23+
24+
- 优化登录接口
25+
- 优化获取顶级菜单逻辑
26+
- 优化请求白名单逻辑,兼容更多场景
27+
- 简化`store`文件中导出和导入用法
28+
- 移除非必要的`cloc`工具依赖包,它使用`GPL`开源许可证具有争议性
29+
- 优化`src/utils/http`文件中`post``get`工具函数的类型
30+
131
# 5.3.0 (2024-03-28)
232

333
### ✔️ refactor

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "vue-pure-admin",
3-
"version": "5.3.0",
3+
"version": "5.4.0",
44
"private": true,
55
"type": "module",
66
"scripts": {

public/platform-config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"Version": "5.3.0",
2+
"Version": "5.4.0",
33
"Title": "PureAdmin",
44
"FixedHeader": true,
55
"HiddenSideBar": false,

0 commit comments

Comments
 (0)