Skip to content

Commit a74a9e2

Browse files
committed
release: update 3.3.5
1 parent 28e58e4 commit a74a9e2

File tree

5 files changed

+95
-2
lines changed

5 files changed

+95
-2
lines changed

CHANGELOG.en_US.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,34 @@
1+
# 3.3.5 (2022-8-19)
2+
3+
### 🎫 Feat
4+
5+
- Secondary encapsulation of `Table` of `element-plus` into [@pureadmin/table](https://github.com/xiaoxian521/pure-admin-table), providing flexible configuration items and integrating into the platform
6+
- Secondary encapsulation of `Descriptions` of `element-plus` into [@pureadmin/descriptions](https://github.com/xiaoxian521/pure-admin-descriptions), providing flexible configuration items and integrating into the platform
7+
- Centralize most of the tools and hooks of the platform to [@pureadmin/utils](https://pure-admin-utils-docs.vercel.app/), and delete the code concentrated in this library to reduce the size of the platform
8+
- Add [unplugin-vue-define-options](https://www.npmjs.com/package/unplugin-vue-define-options) plugin, the page can directly write `defineOptions({name: custom name})`
9+
- Add project files, language analysis tool [cloc](https://www.npmjs.com/package/cloc)
10+
- Added landing page internationalization
11+
- Add full routing configuration table type declaration
12+
- Add virtual listing page demo
13+
- Add `PDF` preview page demo
14+
- Added export `execl` page demo
15+
- Added blank page demo without `Layout`
16+
17+
### ✔️ refactor
18+
19+
- Refactored the theme color to adapt to `element-plus` dark mode (also solved the problem that the same element `css` in `3.3.0` and earlier versions was overwritten many times, resulting in poor style debugging)
20+
- Refactored route reset function
21+
22+
### 🍏 Perf
23+
24+
- The compatible project storage directory is named in Chinese, but we really do not recommend Chinese naming, because a library may not escape the Chinese path, causing the project to crash
25+
- Optimized interface type
26+
27+
### 🐞 Bug fixes
28+
29+
- Fixed async routes with `showlink` set to `false`, not showing after refresh
30+
- Fixed vertical navigation menu text being hidden after collapse when there is no `icon`
31+
132
# 3.3.0 (2022-5-11)
233

334
### 🎫 Feat

CHANGELOG.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,34 @@
1+
# 3.3.5 (2022-8-19)
2+
3+
### 🎫 Feat
4+
5+
- Secondary encapsulation of `Table` of `element-plus` into [@pureadmin/table](https://github.com/xiaoxian521/pure-admin-table), providing flexible configuration items and integrating into the platform
6+
- Secondary encapsulation of `Descriptions` of `element-plus` into [@pureadmin/descriptions](https://github.com/xiaoxian521/pure-admin-descriptions), providing flexible configuration items and integrating into the platform
7+
- Centralize most of the tools and hooks of the platform to [@pureadmin/utils](https://pure-admin-utils-docs.vercel.app/), and delete the code concentrated in this library to reduce the size of the platform
8+
- Add [unplugin-vue-define-options](https://www.npmjs.com/package/unplugin-vue-define-options) plugin, the page can directly write `defineOptions({name: custom name})`
9+
- Add project files, language analysis tool [cloc](https://www.npmjs.com/package/cloc)
10+
- Added landing page internationalization
11+
- Add full routing configuration table type declaration
12+
- Add virtual listing page demo
13+
- Add `PDF` preview page demo
14+
- Added export `execl` page demo
15+
- Added blank page demo without `Layout`
16+
17+
### ✔️ refactor
18+
19+
- Refactored the theme color to adapt to `element-plus` dark mode (also solved the problem that the same element `css` in `3.3.0` and earlier versions was overwritten many times, resulting in poor style debugging)
20+
- Refactored route reset function
21+
22+
### 🍏 Perf
23+
24+
- The compatible project storage directory is named in Chinese, but we really do not recommend Chinese naming, because a library may not escape the Chinese path, causing the project to crash
25+
- Optimized interface type
26+
27+
### 🐞 Bug fixes
28+
29+
- Fixed async routes with `showlink` set to `false`, not showing after refresh
30+
- Fixed vertical navigation menu text being hidden after collapse when there is no `icon`
31+
132
# 3.3.0 (2022-5-11)
233

334
### 🎫 Feat

CHANGELOG.zh_CN.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,34 @@
1+
# 3.3.5 (2022-8-19)
2+
3+
### 🎫 Feat
4+
5+
-`element-plus``Table` 二次封装到[@pureadmin/table](https://github.com/xiaoxian521/pure-admin-table),提供灵活的配置项并集成到平台里
6+
-`element-plus``Descriptions` 二次封装到[@pureadmin/descriptions](https://github.com/xiaoxian521/pure-admin-descriptions),提供灵活的配置项并集成到平台里
7+
- 将平台的大部分工具以及 hooks 都集中到[@pureadmin/utils](https://pure-admin-utils-docs.vercel.app/),并删除集中到这个库里的代码,减少平台体积
8+
- 添加[unplugin-vue-define-options](https://www.npmjs.com/package/unplugin-vue-define-options)插件,页面可直接写 `defineOptions({name: 自定义名称})`
9+
- 添加项目文件、语言分析工具 [cloc](https://www.npmjs.com/package/cloc)
10+
- 添加登陆页国际化
11+
- 添加完整路由配置表类型声明
12+
- 添加虚拟列表页面 demo
13+
- 添加 `PDF` 预览页面 demo
14+
- 添加导出 `execl` 页面 demo
15+
- 添加无 `Layout` 的空白页面 demo
16+
17+
### ✔️ refactor
18+
19+
- 重构主题色,适配 `element-plus` 暗黑模式(同时也解决了 `3.3.0` 及更低版本中同样的元素 `css` 被多次覆盖,导致样式不好调试的问题)
20+
- 重构路由重置功能
21+
22+
### 🍏 Perf
23+
24+
- 兼容项目存放目录以中文命名,但我们真心不推荐中文命名,因为可能某个库没有对中文路径做转义处理,导致项目奔溃
25+
- 优化接口类型
26+
27+
### 🐞 Bug fixes
28+
29+
- 修复路由 `showlink``false` 的异步路由,刷新后不显示
30+
- 修复当没有 `icon` 时,垂直导航菜单折叠后文字被隐藏
31+
132
# 3.3.0 (2022-5-11)
233

334
### 🎫 Feat

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": "3.3.0",
3+
"version": "3.3.5",
44
"private": true,
55
"scripts": {
66
"dev": "cross-env --max_old_space_size=4096 vite",

public/serverConfig.json

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

0 commit comments

Comments
 (0)