mirror of
https://github.com/squidfunk/mkdocs-material.git
synced 2024-11-27 17:00:54 +01:00
Prepare 1.8.1 release
This commit is contained in:
parent
cc7facb199
commit
a09d5e5819
@ -1,3 +1,7 @@
|
|||||||
|
mkdocs-material-1.8.1 (2017-08-07)
|
||||||
|
|
||||||
|
* Fixed #429: Missing pagination for GitHub API
|
||||||
|
|
||||||
mkdocs-material-1.8.0 (2017-08-02)
|
mkdocs-material-1.8.0 (2017-08-02)
|
||||||
|
|
||||||
* Added support for lazy-loading of search results for better performance
|
* Added support for lazy-loading of search results for better performance
|
||||||
|
@ -12,11 +12,17 @@ To determine the currently installed version, use the following command:
|
|||||||
|
|
||||||
``` sh
|
``` sh
|
||||||
pip show mkdocs-material | grep -E ^Version
|
pip show mkdocs-material | grep -E ^Version
|
||||||
# Version 1.8.0
|
# Version 1.8.1
|
||||||
```
|
```
|
||||||
|
|
||||||
## Changelog
|
## Changelog
|
||||||
|
|
||||||
|
### 1.8.1 <small> _ August 7, 2017</small>
|
||||||
|
|
||||||
|
* Fixed [#429][429]: Missing pagination for GitHub API
|
||||||
|
|
||||||
|
[429]: https://github.com/squidfunk/mkdocs-material/issues/429
|
||||||
|
|
||||||
### 1.8.0 <small> _ August 2, 2017</small>
|
### 1.8.0 <small> _ August 2, 2017</small>
|
||||||
|
|
||||||
* Added support for lazy-loading of search results for better performance
|
* Added support for lazy-loading of search results for better performance
|
||||||
@ -24,6 +30,9 @@ pip show mkdocs-material | grep -E ^Version
|
|||||||
* Fixed [#424][424]: Search doesn't handle capital letters anymore
|
* Fixed [#424][424]: Search doesn't handle capital letters anymore
|
||||||
* Fixed [#419][419]: Search doesn't work on whole words
|
* Fixed [#419][419]: Search doesn't work on whole words
|
||||||
|
|
||||||
|
[419]: https://github.com/squidfunk/mkdocs-material/issues/419
|
||||||
|
[424]: https://github.com/squidfunk/mkdocs-material/issues/424
|
||||||
|
|
||||||
### 1.7.5 <small> _ July 25, 2017</small>
|
### 1.7.5 <small> _ July 25, 2017</small>
|
||||||
|
|
||||||
* Fixed [#398][398]: Forms broken due to search shortcuts
|
* Fixed [#398][398]: Forms broken due to search shortcuts
|
||||||
|
1
material/assets/javascripts/application-6940329b9f.js
Normal file
1
material/assets/javascripts/application-6940329b9f.js
Normal file
File diff suppressed because one or more lines are too long
@ -24,7 +24,7 @@
|
|||||||
{% else %}
|
{% else %}
|
||||||
<link rel="shortcut icon" href="{{ base_url }}/assets/images/favicon.png">
|
<link rel="shortcut icon" href="{{ base_url }}/assets/images/favicon.png">
|
||||||
{% endif %}
|
{% endif %}
|
||||||
<meta name="generator" content="mkdocs-{{ mkdocs_version }}, mkdocs-material-1.8.0">
|
<meta name="generator" content="mkdocs-{{ mkdocs_version }}, mkdocs-material-1.8.1">
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
{% block htmltitle %}
|
{% block htmltitle %}
|
||||||
{% if page and page.meta.title %}
|
{% if page and page.meta.title %}
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "mkdocs-material",
|
"name": "mkdocs-material",
|
||||||
"version": "1.8.0",
|
"version": "1.8.1",
|
||||||
"description": "A Material Design theme for MkDocs",
|
"description": "A Material Design theme for MkDocs",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"mkdocs",
|
"mkdocs",
|
||||||
|
Loading…
Reference in New Issue
Block a user