mirror of
https://github.com/squidfunk/mkdocs-material.git
synced 2024-06-14 11:52:32 +03:00
Prepare 2.0.0 release
This commit is contained in:
parent
a36bfae62a
commit
c5143e890f
@ -1,3 +1,11 @@
|
||||
mkdocs-material-2.0.0 (2017-10-31)
|
||||
|
||||
* Added support for MkDocs 0.17.1 theme configuration options
|
||||
* Added support for easier configuration of search tokenizer
|
||||
* Added support to disable search
|
||||
* Added Korean translations
|
||||
* Removed support for MkDocs 0.16.x
|
||||
|
||||
mkdocs-material-1.12.2 (2017-10-26)
|
||||
|
||||
* Added Italian, Norwegian, French and Chinese translations
|
||||
|
@ -473,18 +473,20 @@ automatically included.
|
||||
|
||||
### From 1.x to 2.0
|
||||
|
||||
Material for MkDocs 2.0 requires MkDocs 0.17.1, as this version introduced
|
||||
changes to the way themes can define options. The following variables inside
|
||||
your project's `mkdocs.yml` need to be renamed:
|
||||
* Material for MkDocs 2.0 requires MkDocs 0.17.1, as this version introduced
|
||||
changes to the way themes can define options. The following variables inside
|
||||
your project's `mkdocs.yml` need to be renamed:
|
||||
|
||||
* `extra.feature` becomes `theme.feature`
|
||||
* `extra.palette` becomes `theme.palette`
|
||||
* `extra.font` becomes `theme.font`
|
||||
* `extra.logo` becomes `theme.logo`
|
||||
* `extra.feature` becomes `theme.feature`
|
||||
* `extra.palette` becomes `theme.palette`
|
||||
* `extra.font` becomes `theme.font`
|
||||
* `extra.logo` becomes `theme.logo`
|
||||
|
||||
Localization is now separate in theme language and search language. While
|
||||
there can only be a single language on theme-level, the search supports
|
||||
multiple languages which can be separated by commas.
|
||||
* Localization is now separate in theme language and search language. While
|
||||
there can only be a single language on theme-level, the search supports
|
||||
multiple languages which can be separated by commas.
|
||||
|
||||
* The search tokenizer can now be set through `extra.search.tokenizer`.
|
||||
|
||||
## Extensions
|
||||
|
||||
|
@ -12,11 +12,19 @@ To determine the currently installed version, use the following command:
|
||||
|
||||
``` sh
|
||||
pip show mkdocs-material | grep -E ^Version
|
||||
# Version 1.12.2
|
||||
# Version 2.0.0
|
||||
```
|
||||
|
||||
## Changelog
|
||||
|
||||
### 2.0.0 <small>_ October 31, 2017</small>
|
||||
|
||||
* Added support for MkDocs 0.17.1 theme configuration options
|
||||
* Added support for easier configuration of search tokenizer
|
||||
* Added support to disable search
|
||||
* Added Korean translations
|
||||
* Removed support for MkDocs 0.16.x
|
||||
|
||||
### 1.12.2 <small>_ October 26, 2017</small>
|
||||
|
||||
* Added Italian, Norwegian, French and Chinese translations
|
||||
|
@ -38,7 +38,7 @@
|
||||
{% else %}
|
||||
<link rel="shortcut icon" href="{{ base_url }}/assets/images/favicon.png">
|
||||
{% endif %}
|
||||
<meta name="generator" content="mkdocs-{{ mkdocs_version }}, mkdocs-material-1.12.2">
|
||||
<meta name="generator" content="mkdocs-{{ mkdocs_version }}, mkdocs-material-2.0.0">
|
||||
{% endblock %}
|
||||
{% block htmltitle %}
|
||||
{% if page and page.meta.title %}
|
||||
|
@ -36,6 +36,10 @@ theme:
|
||||
name: null
|
||||
custom_dir: material
|
||||
|
||||
# Don't include MkDocs' JavaScript
|
||||
include_search_page: false
|
||||
search_index_only: true
|
||||
|
||||
# Default values, taken from mkdocs_theme.yml
|
||||
language: en
|
||||
feature:
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "mkdocs-material",
|
||||
"version": "1.12.2",
|
||||
"version": "2.0.0",
|
||||
"description": "A Material Design theme for MkDocs",
|
||||
"keywords": [
|
||||
"mkdocs",
|
||||
|
Loading…
Reference in New Issue
Block a user