docs(changelog): 4.1.0

This commit is contained in:
qingwei.li 2017-05-30 12:05:25 +08:00
parent 8595c99c0b
commit 7e169ad154
No known key found for this signature in database
GPG Key ID: B6DDC2F7AE80B2F4
5 changed files with 18 additions and 1 deletions

View File

@ -1,5 +1,12 @@
# Changelog
## 4.1.0 / 2017-05-30
* feat: Support server client renderer [See detail](//docsify.js.org/#/ssr)
* feat: Support HTML5 history API. `$docsify.routerMode = 'history'`
* Breaking change: Clean global API
## 3.7.3 / 2017-05-22
* fix(render): find => filter, Compatible with old browser

View File

@ -18,5 +18,6 @@
- [Vue compatibility](vue.md)
- [CDN](cdn.md)
- [Offline Mode(PWA)](pwa.md)
- [(Server-client renderer(SSR)](ssr.md)
- [Changelog](changelog.md)

View File

@ -317,7 +317,7 @@ window.$docsify = {
```
## format-updated
We can display the file update date through **{docsify-updated<span>}</span>** variable. And format it by `formatUpdated`.
We can display the file update date through **{docsify-updated<span>}</span>** variable. And format it by `formatUpdated`.
See https://github.com/lukeed/tinydate#patterns
```js
window.$docsify = {
@ -340,3 +340,10 @@ window.$docsify = {
externalLinkTarget: '_self' // default: '_blank'
}
```
## router-mode
```js
window.$docsify = {
routerMode: 'history' // default: 'hash'
}
```

View File

@ -18,5 +18,6 @@
- [Vue Kompatibilität](de-de/vue.md)
- [CDN](de-de/cdn.md)
- [Offline Modus (PWA)](de-de/pwa.md)
- [Server-client renderer (SSR)](de-de/ssr.md)
- [Changelog](de-de/changelog.md)

View File

@ -18,5 +18,6 @@
- [兼容 Vue](zh-cn/vue.md)
- [CDN](zh-cn/cdn.md)
- [离线模式(PWA)](zh-cn/pwa.md)
- [服务端渲染 (SSR)](zh-cn/ssr.md)
- [Changelog](zh-cn/changelog.md)