Prepare 2.6.6 release
This commit is contained in:
parent
060a5df1f5
commit
2a48e17d2d
|
|
@ -1,6 +1,7 @@
|
||||||
mkdocs-material-2.x.x (2018-xx-xx)
|
mkdocs-material-2.6.6 (2018-02-22)
|
||||||
|
|
||||||
* Added preconnect for Google Fonts for faster loading
|
* Added preconnect for Google Fonts for faster loading
|
||||||
|
* Fixed #710: With tabs sidebar disappears if JavaScript is not available
|
||||||
|
|
||||||
mkdocs-material-2.6.5 (2018-02-22)
|
mkdocs-material-2.6.5 (2018-02-22)
|
||||||
|
|
||||||
|
|
@ -26,9 +27,9 @@ mkdocs-material-2.6.2 (2018-02-12)
|
||||||
|
|
||||||
mkdocs-material-2.6.1 (2018-02-11)
|
mkdocs-material-2.6.1 (2018-02-11)
|
||||||
|
|
||||||
|
* Added ability to override Disqus integration using metadata
|
||||||
* Fixed #690: Duplicate slashes in source file URLs
|
* Fixed #690: Duplicate slashes in source file URLs
|
||||||
* Fixed #696: Active page highlight not working with default palette
|
* Fixed #696: Active page highlight not working with default palette
|
||||||
* Added ability to override Disqus integration using metadata
|
|
||||||
* Adjusted German translations
|
* Adjusted German translations
|
||||||
|
|
||||||
mkdocs-material-2.6.0 (2018-02-02)
|
mkdocs-material-2.6.0 (2018-02-02)
|
||||||
|
|
|
||||||
|
|
@ -37,6 +37,13 @@ pip show mkdocs-material
|
||||||
|
|
||||||
## Changelog
|
## Changelog
|
||||||
|
|
||||||
|
### 2.6.6 <small>_ February 22, 2018</small>
|
||||||
|
|
||||||
|
* Added preconnect for Google Fonts for faster loading
|
||||||
|
* Fixed [#710][710]: With tabs sidebar disappears if JavaScript is not available
|
||||||
|
|
||||||
|
[710]: https://github.com/squidfunk/mkdocs-material/issues/710
|
||||||
|
|
||||||
### 2.6.5 <small>_ February 22, 2018</small>
|
### 2.6.5 <small>_ February 22, 2018</small>
|
||||||
|
|
||||||
* Reverted `--dev-addr` flag removal from `Dockerfile`
|
* Reverted `--dev-addr` flag removal from `Dockerfile`
|
||||||
|
|
@ -61,9 +68,9 @@ pip show mkdocs-material
|
||||||
|
|
||||||
### 2.6.1 <small>_ February 11, 2018</small>
|
### 2.6.1 <small>_ February 11, 2018</small>
|
||||||
|
|
||||||
|
* Added ability to override Disqus integration using metadata
|
||||||
* Fixed [#690][690]: Duplicate slashes in source file URLs
|
* Fixed [#690][690]: Duplicate slashes in source file URLs
|
||||||
* Fixed [#696][696]: Active page highlight not working with default palette
|
* Fixed [#696][696]: Active page highlight not working with default palette
|
||||||
* Added ability to override Disqus integration using metadata
|
|
||||||
* Adjusted German translations
|
* Adjusted German translations
|
||||||
|
|
||||||
[690]: https://github.com/squidfunk/mkdocs-material/issues/690
|
[690]: https://github.com/squidfunk/mkdocs-material/issues/690
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
|
|
@ -36,7 +36,7 @@
|
||||||
<meta name="lang:{{ key }}" content="{{ lang.t(key) }}">
|
<meta name="lang:{{ key }}" content="{{ lang.t(key) }}">
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
<link rel="shortcut icon" href="{{ base_url }}/{{ config.theme.favicon }}">
|
<link rel="shortcut icon" href="{{ base_url }}/{{ config.theme.favicon }}">
|
||||||
<meta name="generator" content="mkdocs-{{ mkdocs_version }}, mkdocs-material-2.6.5">
|
<meta name="generator" content="mkdocs-{{ mkdocs_version }}, mkdocs-material-2.6.6">
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
{% block htmltitle %}
|
{% block htmltitle %}
|
||||||
{% if page and page.meta and page.meta.title %}
|
{% if page and page.meta and page.meta.title %}
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "mkdocs-material",
|
"name": "mkdocs-material",
|
||||||
"version": "2.6.5",
|
"version": "2.6.6",
|
||||||
"description": "A Material Design theme for MkDocs",
|
"description": "A Material Design theme for MkDocs",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"mkdocs",
|
"mkdocs",
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue