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
9a9a6612
Commit
9a9a6612
authored
Jan 17, 2017
by
Leopoldthecoder
Committed by
cinwell.li
Jan 17, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Changelog: update for 1.1.5
parent
c6ac4adf
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
20 additions
and
1 deletion
+20
-1
CHANGELOG.en-US.md
CHANGELOG.en-US.md
+7
-0
CHANGELOG.zh-CN.md
CHANGELOG.zh-CN.md
+6
-0
build/bin/version.js
build/bin/version.js
+6
-0
package.json
package.json
+1
-1
No files found.
CHANGELOG.en-US.md
View file @
9a9a6612
## Changelog
### 1.1.5
*2017-01-17*
-
Fixed Menu not activating corresponding menu item after router switching in router mode, #2451
-
Fixed
`value`
attribute of Collapse not supporting
`Number`
typed value, #2455
### 1.1.4
*2017-01-16*
...
...
CHANGELOG.zh-CN.md
View file @
9a9a6612
## 更新日志
### 1.1.5
*2017-01-17*
-
修复 Menu 在启用 router 模式下点击菜单跳转后没有激活对应菜单项的问题,#2451
-
新增 Collapse
`value`
属性增加对
`Number`
类型的支持,#2455
### 1.1.4
*2017-01-16*
...
...
build/bin/version.js
0 → 100644
View file @
9a9a6612
var
fs
=
require
(
'
fs
'
);
var
path
=
require
(
'
path
'
);
var
version
=
process
.
env
.
VERSION
||
require
(
'
../../package.json
'
).
version
;
var
content
=
{
'
1.0.9
'
:
'
1.0
'
};
content
[
version
]
=
'
1.1
'
;
fs
.
writeFileSync
(
path
.
resolve
(
__dirname
,
'
../../examples/versions.json
'
),
JSON
.
stringify
(
content
));
package.json
View file @
9a9a6612
...
...
@@ -10,7 +10,7 @@
],
"scripts"
:
{
"bootstrap"
:
"yarn || npm i"
,
"build:file"
:
"node build/bin/iconInit.js & node build/bin/build-entry.js & node build/bin/i18n.js"
,
"build:file"
:
"node build/bin/iconInit.js & node build/bin/build-entry.js & node build/bin/i18n.js
& node build/bin/version.js
"
,
"build:theme"
:
"node build/bin/gen-cssfile && gulp build --gulpfile packages/theme-default/gulpfile.js && cp-cli packages/theme-default/lib lib/theme-default"
,
"build:utils"
:
"cross-env BABEL_ENV=utils babel src --out-dir lib --ignore src/index.js"
,
"clean"
:
"rimraf lib && rimraf packages/*/lib && rimraf test/**/coverage && lerna clean --yes"
,
...
...
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