Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
E
Element
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
CI / CD Analytics
Repository Analytics
Value Stream Analytics
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
林焕东
Element
Commits
1044d930
Commit
1044d930
authored
Oct 29, 2020
by
iamkun
Committed by
GitHub
Oct 29, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
chore: update changelog (#20347)
parent
bcc36ebc
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
88 additions
and
4 deletions
+88
-4
CHANGELOG.en-US.md
CHANGELOG.en-US.md
+21
-0
CHANGELOG.es.md
CHANGELOG.es.md
+21
-0
CHANGELOG.fr-FR.md
CHANGELOG.fr-FR.md
+21
-0
CHANGELOG.zh-CN.md
CHANGELOG.zh-CN.md
+22
-1
build/bin/version.js
build/bin/version.js
+1
-1
build/deploy-ci.sh
build/deploy-ci.sh
+1
-1
build/deploy-faas.sh
build/deploy-faas.sh
+1
-1
No files found.
CHANGELOG.en-US.md
View file @
1044d930
## Changelog
### 2.14.0
*2020-10-29*
#### Breaking changes
-
Popconfirm
-
Rename event name to
`confirm`
,
`cancel`
(#20240 by @hugiron)"
#### Bug fixes
-
Progress
-
Fix attribute error (#19985 by @Caaalabash)
#### Optimization
-
I18n
-
Update Russian translation (#19451 by @yangirov)
-
Update Khmer translation (#20077 by @Sovai)
-
Update Ukrainian translation (#20344 by @MammutAlex)
### 2.13.2
*2020-05-18*
...
...
CHANGELOG.es.md
View file @
1044d930
## Changelog
### 2.14.0
*2020-10-29*
#### Breaking changes
-
Popconfirm
-
Rename event name to
`confirm`
,
`cancel`
(#20240 by @hugiron)"
#### Bug fixes
-
Progress
-
Fix attribute error (#19985 by @Caaalabash)
#### Optimization
-
I18n
-
Update Russian translation (#19451 by @yangirov)
-
Update Khmer translation (#20077 by @Sovai)
-
Update Ukrainian translation (#20344 by @MammutAlex)
### 2.13.2
*2020-05-18*
...
...
CHANGELOG.fr-FR.md
View file @
1044d930
## Changelog
### 2.14.0
*2020-10-29*
#### Breaking changes
-
Popconfirm
-
Rename event name to
`confirm`
,
`cancel`
(#20240 by @hugiron)"
#### Bug fixes
-
Progress
-
Fix attribute error (#19985 by @Caaalabash)
#### Optimization
-
I18n
-
Update Russian translation (#19451 by @yangirov)
-
Update Khmer translation (#20077 by @Sovai)
-
Update Ukrainian translation (#20344 by @MammutAlex)
### 2.13.2
*2020-05-18*
...
...
CHANGELOG.zh-CN.md
View file @
1044d930
## 更新日志
### 2.14.0
*2020-10-29*
#### 非兼容性更新
-
Popconfirm
-
事件名称修改为
`confirm`
,
`cancel`
(#20240 by @hugiron)"
#### Bug 修复
-
Progress
-
修复参数错误的问题 (#19985 by @Caaalabash)
#### 优化
-
I18n
-
更新俄语翻译 (#19451 by @yangirov)
-
更新高棉语翻译 (#20077 by @Sovai)
-
更新乌克兰语翻译 (#20344 by @MammutAlex)
### 2.13.2
*2020-05-18*
...
...
@@ -11,7 +32,7 @@
-
Image
-
更新错误状态 (#19194 by @lhx6538665)
####
Optimization
####
优化
-
I18n
-
更新 ru-RU popconfirm 翻译 (#19220 by @Opppex)
...
...
build/bin/version.js
View file @
1044d930
...
...
@@ -2,5 +2,5 @@ var fs = require('fs');
var
path
=
require
(
'
path
'
);
var
version
=
process
.
env
.
VERSION
||
require
(
'
../../package.json
'
).
version
;
var
content
=
{
'
1.4.13
'
:
'
1.4
'
,
'
2.0.11
'
:
'
2.0
'
,
'
2.1.0
'
:
'
2.1
'
,
'
2.2.2
'
:
'
2.2
'
,
'
2.3.9
'
:
'
2.3
'
,
'
2.4.11
'
:
'
2.4
'
,
'
2.5.4
'
:
'
2.5
'
,
'
2.6.3
'
:
'
2.6
'
,
'
2.7.2
'
:
'
2.7
'
,
'
2.8.2
'
:
'
2.8
'
,
'
2.9.2
'
:
'
2.9
'
,
'
2.10.1
'
:
'
2.10
'
,
'
2.11.1
'
:
'
2.11
'
,
'
2.12.0
'
:
'
2.12
'
};
if
(
!
content
[
version
])
content
[
version
]
=
'
2.1
3
'
;
if
(
!
content
[
version
])
content
[
version
]
=
'
2.1
4
'
;
fs
.
writeFileSync
(
path
.
resolve
(
__dirname
,
'
../../examples/versions.json
'
),
JSON
.
stringify
(
content
));
build/deploy-ci.sh
View file @
1044d930
...
...
@@ -40,7 +40,7 @@ if [ "$TRAVIS_TAG" ]; then
# build sub folder
echo
$TRAVIS_TAG
SUB_FOLDER
=
'2.1
3
'
SUB_FOLDER
=
'2.1
4
'
mkdir
$SUB_FOLDER
rm
-rf
*
.js
*
.css
*
.map static
rm
-rf
$SUB_FOLDER
/
**
...
...
build/deploy-faas.sh
View file @
1044d930
...
...
@@ -6,7 +6,7 @@ cd temp_web
git clone
--depth
1
-b
gh-pages
--single-branch
https://github.com/ElemeFE/element.git
&&
cd
element
# build sub folder
SUB_FOLDER
=
'2.1
3
'
SUB_FOLDER
=
'2.1
4
'
mkdir
-p
$SUB_FOLDER
rm
-rf
*
.js
*
.css
*
.map static
rm
-rf
$SUB_FOLDER
/
**
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment