Skip to content

Commit

Permalink
releases: 0.6.4
Browse files Browse the repository at this point in the history
  • Loading branch information
cipchk committed Jan 22, 2018
1 parent 54d5273 commit 561dac1
Show file tree
Hide file tree
Showing 12 changed files with 34 additions and 16 deletions.
24 changes: 24 additions & 0 deletions docs/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,30 @@ title:
type: Other
---

### 0.6.4

`2018-1-22`

- 脚手架
- 重构 `startup.service``default.interceptor` 逻辑处理 ([3f437a1](https://github.com/cipchk/ng-alain/commit/3f437a1))
- 重构 `title.service` 将路由 `data.title` 优先级高于其他 ([7f2ceeb](https://github.com/cipchk/ng-alain/commit/7f2ceeb))
- 不再维护 `blank` 分支
- @delon/theme
- 重构 `TitleService` 包括:
- **BREAKING CHANGES** 移除 `setTitleByUrl` 统一采用 `setTitle`
- 新增 `default` 属性指定默认标题名
- 重构 `begin``end``public`
- @delon/abc
- `simple-table` 变更:
- 新增按钮允许设置 `"reload"` 表示重新加载表格
- 新增按钮当 `type=modal` 时允许设置 `paramName` 简化目标组件的接收参数名
- 修复当指定 `ps=0` 时应该不分页问题,[#27](https://github.com/cipchk/delon/issues/27)
- 修复 `reuse-tab` 某些情况下导致 `active` 无效问题,[#244](https://github.com/cipchk/ng-alain/issues/244)
- @delon/auth
- 修复可能会因为跳转引起渲染异常
- @delon/cli
- 同步脚手架的优化

### 0.6.3

`2018-1-20`
Expand Down
3 changes: 0 additions & 3 deletions docs/getting-started.en-US.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,6 @@ ng new -c=@delon/cli my-app
### Clone the Git Repository

```bash
# Blank branch (just only basic)
git clone -b blank --depth 1 https://github.com/cipchk/ng-alain.git my-project
# Or Master
$ git clone --depth=1 https://github.com/cipchk/ng-alain.git my-project

$ cd my-project
Expand Down
3 changes: 0 additions & 3 deletions docs/getting-started.zh-CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,6 @@ ng new -c=@delon/cli my-app
### 直接 clone git 仓库

```bash
# 基础版(只包括最基本功能)
git clone -b blank --depth 1 https://github.com/cipchk/ng-alain.git my-project
# 或完整版(含所有示例)
$ git clone --depth=1 https://github.com/cipchk/ng-alain.git my-project

$ cd my-project
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "delon",
"version": "0.6.3",
"version_laster": "0.6.3",
"version": "0.6.4",
"version_laster": "0.6.4",
"version_next": "0.6.0-rc.3",
"typings": "index.d.ts",
"description": "Delon is a set of essential modules for ng-alain.",
Expand Down
2 changes: 1 addition & 1 deletion scaffold
2 changes: 1 addition & 1 deletion src/core/abc/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@delon/abc",
"version": "0.6.3",
"version": "0.6.4",
"description": "@delon/abc",
"main": "./bundles/abc.umd.js",
"module": "./index.js",
Expand Down
2 changes: 1 addition & 1 deletion src/core/acl/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@delon/acl",
"version": "0.6.3",
"version": "0.6.4",
"description": "@delon/acl",
"main": "./bundles/acl.umd.js",
"module": "./index.js",
Expand Down
2 changes: 1 addition & 1 deletion src/core/auth/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@delon/auth",
"version": "0.6.3",
"version": "0.6.4",
"description": "@delon/auth",
"main": "./bundles/auth.umd.js",
"module": "./index.js",
Expand Down
2 changes: 1 addition & 1 deletion src/core/cache/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@delon/cache",
"version": "0.6.3",
"version": "0.6.4",
"description": "@delon/cache",
"main": "./bundles/cache.umd.js",
"module": "./index.js",
Expand Down
2 changes: 1 addition & 1 deletion src/core/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@delon/cli",
"version": "0.6.3",
"version": "0.6.4",
"description": "Schematics for ng-alain",
"main": "./bundles/cli.umd.js",
"module": "./index.js",
Expand Down
2 changes: 1 addition & 1 deletion src/core/mock/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@delon/mock",
"version": "0.6.3",
"version": "0.6.4",
"description": "@delon/mock",
"main": "./bundles/mock.umd.js",
"module": "./index.js",
Expand Down
2 changes: 1 addition & 1 deletion src/core/theme/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@delon/theme",
"version": "0.6.3",
"version": "0.6.4",
"description": "@delon/theme",
"main": "./bundles/theme.umd.js",
"module": "./index.js",
Expand Down

0 comments on commit 561dac1

Please sign in to comment.