Skip to content

Commit

Permalink
chore: clean outdated links
Browse files Browse the repository at this point in the history
  • Loading branch information
ulivz committed Dec 22, 2021
1 parent 6aaacdf commit c8eff35
Show file tree
Hide file tree
Showing 8 changed files with 18 additions and 18 deletions.
22 changes: 11 additions & 11 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -623,7 +623,7 @@ It seems no any changes here.
### Features

* **$core:** refine theme api ([d16d3d5](https://github.com/vuejs/vuepress/commit/d16d3d5)) [@ULIVZ](https://github.com/ULIVZ)([#1319](https://github.com/vuejs/vuepress/issues/1319))
- Check out [Theme Inheritance](https://v1.vuepress.vuejs.org/theme/inheritance.html) for more details.
- Check out [Theme Inheritance](https://vuepress.vuejs.org/theme/inheritance.html) for more details.
* **$markdown:** code snippet hmr (close [#1309](https://github.com/vuejs/vuepress/issues/1309)) ([#1358](https://github.com/vuejs/vuepress/issues/1358)) ([8f83a17](https://github.com/vuejs/vuepress/commit/8f83a17)) [@Shigma](https://github.com/Shigma)
* **$markdown:** refine markdown api ([#1337](https://github.com/vuejs/vuepress/issues/1337)) ([b79768c](https://github.com/vuejs/vuepress/commit/b79768c)) [@Shigma](https://github.com/Shigma)
* **$markdown:** cache parser ([#1359](https://github.com/vuejs/vuepress/issues/1359)) ([f04adbf](https://github.com/vuejs/vuepress/commit/f04adbf)) [@Shigma](https://github.com/Shigma)
Expand Down Expand Up @@ -720,7 +720,7 @@ It seems no any changes here.
* **$core:** Cannot load assets when `base` is not '/' (close: [#1238](https://github.com/vuejs/vuepress/issues/1238))([#1239](https://github.com/vuejs/vuepress/issues/1239)) ([8a234bb](https://github.com/vuejs/vuepress/commit/8a234bb)) [@Steve Young](https://github.com/Steve Young)
<br>This is a regression issue of leverage webpack-dev-server at [#1195](https://github.com/vuejs/vuepress/issues/1195).

* **$markdown:** Remove colon as separator for [Import Code Snippets](https://v1.vuepress.vuejs.org/guide/markdown.html#import-code-snippets) (close: [#1151](https://github.com/vuejs/vuepress/issues/1151)) ([#1236](https://github.com/vuejs/vuepress/issues/1236)) ([099d346](https://github.com/vuejs/vuepress/commit/099d346)) [@Shigma](https://github.com/Shigma)
* **$markdown:** Remove colon as separator for [Import Code Snippets](https://vuepress.vuejs.org/guide/markdown.html#import-code-snippets) (close: [#1151](https://github.com/vuejs/vuepress/issues/1151)) ([#1236](https://github.com/vuejs/vuepress/issues/1236)) ([099d346](https://github.com/vuejs/vuepress/commit/099d346)) [@Shigma](https://github.com/Shigma)


### Features
Expand All @@ -746,7 +746,7 @@ It seems no any changes here.
### Features

* **$core:** Leverage `webpack-dev-server` and sunset `webpack-serve` ([#1195](https://github.com/vuejs/vuepress/issues/1195)) ([81e3ef6](https://github.com/vuejs/vuepress/commit/81e3ef6)) [@ULIVZ](https://github.com/ULIVZ)
- Add new plugin option api [beforeDevServer](https://v1.vuepress.vuejs.org/plugin/option-api.html#beforedevserver) and [afterDevServer](https://v1.vuepress.vuejs.org/plugin/option-api.html#afterdevserver).
- Add new plugin option api [beforeDevServer](https://vuepress.vuejs.org/plugin/option-api.html#beforedevserver) and [afterDevServer](https://vuepress.vuejs.org/plugin/option-api.html#afterdevserver).
- Remove `enhanceDevServer`.
- Publish [vuepress-plugin-export](https://github.com/ulivz/vuepress-plugin-export).
* **$core:** Allow a theme package using a sub directory (close [#1204](https://github.com/vuejs/vuepress/issues/1204)) ([#1206](https://github.com/vuejs/vuepress/issues/1206)) ([febe3a7](https://github.com/vuejs/vuepress/commit/febe3a7)) [@Liu&nbsp;Xinyu](https://github.com/Liu&nbsp;Xinyu)
Expand All @@ -756,7 +756,7 @@ It seems no any changes here.

* **$core:** - Plugin option `enhanceDevServer` was removed.
- **For 0.x users**, there is no any effect since we didn't expose API to modify it.
- **For 1.x users whose version of VuePress is lower than 1.0.0-alpha.33**, you should use [`beforeDevServer`](https://v1.vuepress.vuejs.org/plugin/option-api.html#beforedevserver)(i.e. [before](https://webpack.js.org/configuration/dev-server/#devserver-before) in `webpack-dev-server`) to replace `enhanceDevServer`, you can also use [`afterDevServer`](https://v1.vuepress.vuejs.org/plugin/option-api.html#afterdevserver)(i.e. [after](https://webpack.js.org/configuration/dev-server/#devserver-after) in `webpack-dev-server`) to execute custom middleware after all other middleware internally within the server.
- **For 1.x users whose version of VuePress is lower than 1.0.0-alpha.33**, you should use [`beforeDevServer`](https://vuepress.vuejs.org/plugin/option-api.html#beforedevserver)(i.e. [before](https://webpack.js.org/configuration/dev-server/#devserver-before) in `webpack-dev-server`) to replace `enhanceDevServer`, you can also use [`afterDevServer`](https://vuepress.vuejs.org/plugin/option-api.html#afterdevserver)(i.e. [after](https://webpack.js.org/configuration/dev-server/#devserver-after) in `webpack-dev-server`) to execute custom middleware after all other middleware internally within the server.

<a name="1.0.0-alpha.32"></a>
# [1.0.0-alpha.32](https://github.com/vuejs/vuepress/compare/v1.0.0-alpha.31...v1.0.0-alpha.32) (2019-01-15)
Expand Down Expand Up @@ -842,7 +842,7 @@ It seems no any changes here.

* **$core:** pass generated page paths to `generated` hook ([#925](https://github.com/vuejs/vuepress/issues/925)) ([5ee2b2b](https://github.com/vuejs/vuepress/commit/5ee2b2b)) [@Michael&nbsp;Smith](https://github.com/Michael&nbsp;Smith)
* **$core:** `extendCli` Plugin Option API ([#1069](https://github.com/vuejs/vuepress/issues/1069)) ([e963731](https://github.com/vuejs/vuepress/commit/e963731)) [@ULIVZ](https://github.com/ULIVZ)
- See [docs](https://v1.vuepress.vuejs.org/plugin/option-api.html#extendcli).
- See [docs](https://vuepress.vuejs.org/plugin/option-api.html#extendcli).
* **$plugin-search:** searchable paths with test RegExp ([#1032](https://github.com/vuejs/vuepress/issues/1032)) ([d6bddf1](https://github.com/vuejs/vuepress/commit/d6bddf1)) [@Robson&nbsp;Tenório](https://github.com/Robson&nbsp;Tenório)


Expand Down Expand Up @@ -1238,7 +1238,7 @@ It seems no any changes here.
### Features

- **Plugin API**
- [Documentation](https://v1.vuepress.vuejs.org/plugin/)
- [Documentation](https://vuepress.vuejs.org/plugin/)
- Multiple official plugins
- [@vuepress/plugin-active-header-links](https://github.com/vuejs/vuepress/tree/master/packages/@vuepress/plugin-active-header-links)
- [@vuepress/plugin-back-to-top](https://github.com/vuejs/vuepress/tree/master/packages/%40vuepress/plugin-back-to-top) (Thanks to @ycmjason )
Expand All @@ -1253,18 +1253,18 @@ It seems no any changes here.

- **Refined Theme API**
- From now on, the theme will no longer use Layout.vue as the entry point, but you can have your own configuration. For example, a theme can have some built-in plugins.
- [Documentation](https://v1.vuepress.vuejs.org/theme/)
- [Documentation](https://vuepress.vuejs.org/theme/)

- **Permalinks**
- From now on, VuePress supports custom routing in addition to the default file-level-based routing.
- [Documentation](https://v1.vuepress.vuejs.org/guide/permalinks.html)
- [Documentation](https://vuepress.vuejs.org/guide/permalinks.html)

- **Markdown slots**
- [Documentation](https://v1.vuepress.vuejs.org/guide/markdown-slot.html)
- [Documentation](https://vuepress.vuejs.org/guide/markdown-slot.html)

- **Free to add new pages**
- You can add new pages with content (i.e. pointing to markdown files) or no content (i.e. common routes).
- [Documentation](https://v1.vuepress.vuejs.org/plugin/option-api.html#additionalpages)
- [Documentation](https://vuepress.vuejs.org/plugin/option-api.html#additionalpages)

- **Custom temp path**
- The running of VuePress actually depends on some temporary files generated during the build time. Before that, its default location is in `node_modules`, but now you can start configuring it, but don't forget to add it to gitignore.
Expand Down Expand Up @@ -1416,7 +1416,7 @@ It seems no any changes here.
* **$core:**: version data layer ([0c5b752](https://github.com/vuejs/vuepress/commit/0c5b752)) [@ULIVZ](https://github.com/ULIVZ)
* **$default-theme:** new file-level API: `style.styl`. ([2f53f2f](https://github.com/vuejs/vuepress/commit/2f53f2f)) [@ULIVZ](https://github.com/ULIVZ)
1. Fixed overriding css variable doesn't work at `0.11.0` (close: [#639](https://github.com/vuejs/vuepress/issues/639))
2. Split `override.styl` into two APIs: `override.styl` and `style.styl`, the former will focus on ONLY the stylus constants override, while the latter will focus on styles override or custom styles. See also: https://v1.vuepress.vuejs.org/default-theme-config/#simple-css-override.
2. Split `override.styl` into two APIs: `override.styl` and `style.styl`, the former will focus on ONLY the stylus constants override, while the latter will focus on styles override or custom styles. See also: https://vuepress.vuejs.org/default-theme-config/#simple-css-override.


<a name="0.11.0"></a>
Expand Down
2 changes: 1 addition & 1 deletion packages/@vuepress/plugin-active-header-links/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

> active-header-links plugin for VuePress
See [documentation](https://v1.vuepress.vuejs.org/plugin/official/plugin-active-header-links.html).
See [documentation](https://vuepress.vuejs.org/plugin/official/plugin-active-header-links.html).
2 changes: 1 addition & 1 deletion packages/@vuepress/plugin-back-to-top/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

> Back-to-top plugin for VuePress
See [documentation](https://v1.vuepress.vuejs.org/plugin/official/plugin-back-to-top.html).
See [documentation](https://vuepress.vuejs.org/plugin/official/plugin-back-to-top.html).
2 changes: 1 addition & 1 deletion packages/@vuepress/plugin-google-analytics/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

> Google analytics plugin for VuePress
See [documentation](https://v1.vuepress.vuejs.org/plugin/official/plugin-google-analytics.html).
See [documentation](https://vuepress.vuejs.org/plugin/official/plugin-google-analytics.html).
2 changes: 1 addition & 1 deletion packages/@vuepress/plugin-last-updated/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

> last-updated plugin for VuePress
See [documentation](https://v1.vuepress.vuejs.org/plugin/official/plugin-last-updated.html).
See [documentation](https://vuepress.vuejs.org/plugin/official/plugin-last-updated.html).
2 changes: 1 addition & 1 deletion packages/@vuepress/plugin-medium-zoom/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

> medium-zoom plugin for VuePress
See [documentation](https://v1.vuepress.vuejs.org/plugin/official/plugin-medium-zoom.html).
See [documentation](https://vuepress.vuejs.org/plugin/official/plugin-medium-zoom.html).
2 changes: 1 addition & 1 deletion packages/@vuepress/plugin-pwa/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

> PWA plugin for VuePress
See [documentation](https://v1.vuepress.vuejs.org/plugin/official/plugin-pwa.html).
See [documentation](https://vuepress.vuejs.org/plugin/official/plugin-pwa.html).
2 changes: 1 addition & 1 deletion packages/@vuepress/plugin-search/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@

> header-based search plugin for VuePress
See [documentation](https://v1.vuepress.vuejs.org/plugin/official/plugin-search.html).
See [documentation](https://vuepress.vuejs.org/plugin/official/plugin-search.html).

0 comments on commit c8eff35

Please sign in to comment.