diff --git a/CHANGELOG.en_US.md b/CHANGELOG.en_US.md index 2e99ac143..d99a947b5 100644 --- a/CHANGELOG.en_US.md +++ b/CHANGELOG.en_US.md @@ -1,3 +1,23 @@ +# 4.1.0 (2023-05-12) + +### 🎫 Feat + +- Add a `demo` example combined with `Form` for the functional pop-up box component +- wrapper `el-col` component of `element-plus` +- Add `beforeCancel` and `beforeSure` callbacks to the functional popup component, which can suspend the closing of the popup +- Improve `System Management-Department Management` page +- Optimize `PureTableBar` component, add drag and drop function for column display + +### 🐞 Bug fixes + +- Fix the problem that the page cache still exists when you click the tab to reload after turning on `keepAlive` +- Fix the problem that the left menu will flicker after refreshing the tab in the mixed mode menu + +### 🍏 Perf + +- Optimize home page layout +- Dependency update to `vue3.3+` and remove `unplugin-vue-define-options` plugin + # 4.0.0 (2023-05-09) [View 4.0.0 version optimization details](https://github.com/pure-admin/vue-pure-admin/issues/428#issuecomment-1422191158) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2e99ac143..d99a947b5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,23 @@ +# 4.1.0 (2023-05-12) + +### 🎫 Feat + +- Add a `demo` example combined with `Form` for the functional pop-up box component +- wrapper `el-col` component of `element-plus` +- Add `beforeCancel` and `beforeSure` callbacks to the functional popup component, which can suspend the closing of the popup +- Improve `System Management-Department Management` page +- Optimize `PureTableBar` component, add drag and drop function for column display + +### 🐞 Bug fixes + +- Fix the problem that the page cache still exists when you click the tab to reload after turning on `keepAlive` +- Fix the problem that the left menu will flicker after refreshing the tab in the mixed mode menu + +### 🍏 Perf + +- Optimize home page layout +- Dependency update to `vue3.3+` and remove `unplugin-vue-define-options` plugin + # 4.0.0 (2023-05-09) [View 4.0.0 version optimization details](https://github.com/pure-admin/vue-pure-admin/issues/428#issuecomment-1422191158) diff --git a/CHANGELOG.zh_CN.md b/CHANGELOG.zh_CN.md index ffed94299..3fad2f2d2 100644 --- a/CHANGELOG.zh_CN.md +++ b/CHANGELOG.zh_CN.md @@ -1,3 +1,23 @@ +# 4.1.0 (2023-05-12) + +### 🎫 Feat + +- 函数式弹框组件添加结合 `Form` 的 `demo` 示例 +- 封装 `element-plus` 的 `el-col` 组件 +- 函数式弹框组件添加 `beforeCancel` 和 `beforeSure` 回调,可暂停弹框的关闭 +- 完善 `系统管理-部门管理` 页面 +- 优化 `PureTableBar` 组件,列展示添加拖拽功能 + +### 🐞 Bug fixes + +- 修复开启 `keepAlive` 后点击标签页的重新加载,页面缓存还存在的问题 +- 修复混合模式菜单下刷新页签后左侧菜单会闪烁一下的问题 + +### 🍏 Perf + +- 优化首页布局 +- 依赖更新到 `vue3.3+` 以及删除 `unplugin-vue-define-options` 插件 + # 4.0.0 (2023-05-09) [查看 4.0.0 版本优化细节](https://github.com/pure-admin/vue-pure-admin/issues/428#issuecomment-1422191158) diff --git a/package.json b/package.json index 167ee3218..04500fbd0 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "vue-pure-admin", - "version": "4.0.0", + "version": "4.1.0", "private": true, "scripts": { "dev": "NODE_OPTIONS=--max-old-space-size=4096 vite", diff --git a/public/serverConfig.json b/public/serverConfig.json index f08ba6943..854cfcfc7 100644 --- a/public/serverConfig.json +++ b/public/serverConfig.json @@ -1,5 +1,5 @@ { - "Version": "4.0.0", + "Version": "4.1.0", "Title": "PureAdmin", "FixedHeader": true, "HiddenSideBar": false,