mirror of
https://github.com/squidfunk/mkdocs-material.git
synced 2024-11-12 01:50:52 +01:00
Prepare 1.5.0 release
This commit is contained in:
parent
9d066f5f78
commit
0ca71b6e8c
19
CHANGELOG
19
CHANGELOG
@ -1,12 +1,21 @@
|
||||
mkdocs-material 1.x.x (2017-xx-xx)
|
||||
mkdocs-material 1.5.0 (2017-03-24)
|
||||
|
||||
TBD
|
||||
* Added support for localization of search placeholder
|
||||
* Added keyboard events for quick access of search
|
||||
* Added keyboard events for search control
|
||||
* Added opacity on hover for search buttons
|
||||
* Added git hook to skip CI build on non-src changes
|
||||
* Fixed non-resetting search placeholder when input is cleared
|
||||
* Fixed error for unescaped parentheses in search term
|
||||
* Fixed #229: Button to clear search missing
|
||||
* Fixed #231: Escape key doesn't exit search
|
||||
* Removed old-style figures from font feature settings
|
||||
|
||||
mkdocs-material-1.4.1 (2017-16-03)
|
||||
mkdocs-material-1.4.1 (2017-03-16)
|
||||
|
||||
* Fixed invalid destructuring attempt on NodeList (in Safari, Edge, IE)
|
||||
|
||||
mkdocs-material-1.4.0 (2017-16-03)
|
||||
mkdocs-material-1.4.0 (2017-03-16)
|
||||
|
||||
* Added support for grouping searched sections by documents
|
||||
* Added support for highlighting of search terms
|
||||
@ -14,7 +23,7 @@ mkdocs-material-1.4.0 (2017-16-03)
|
||||
* Fixed #216: table of contents icon doesn't show if h1 is not present
|
||||
* Reworked style and layout of search results for better usability
|
||||
|
||||
mkdocs-material-1.3.0 (2017-11-03)
|
||||
mkdocs-material-1.3.0 (2017-03-11)
|
||||
|
||||
* Added support for page-specific title and description using metadata
|
||||
* Added support for linking source files to documentation
|
||||
|
@ -12,11 +12,24 @@ To determine the currently installed version, use the following command:
|
||||
|
||||
``` sh
|
||||
pip show mkdocs-material | grep -E ^Version
|
||||
# Version 1.4.1
|
||||
# Version 1.5.0
|
||||
```
|
||||
|
||||
## Changelog
|
||||
|
||||
### 1.5.0 <small> _ March 24, 2017</small>
|
||||
|
||||
* Added support for localization of search placeholder
|
||||
* Added keyboard events for quick access of search
|
||||
* Added keyboard events for search control
|
||||
* Added opacity on hover for search buttons
|
||||
* Added git hook to skip CI build on non-src changes
|
||||
* Fixed non-resetting search placeholder when input is cleared
|
||||
* Fixed error for unescaped parentheses in search term
|
||||
* Fixed #229: Button to clear search missing
|
||||
* Fixed #231: Escape key doesn't exit search
|
||||
* Removed old-style figures from font feature settings
|
||||
|
||||
### 1.4.1 <small> _ March 16, 2017</small>
|
||||
|
||||
* Fixed invalid destructuring attempt on NodeList (in Safari, Edge, IE)
|
||||
|
@ -23,7 +23,7 @@
|
||||
{% else %}
|
||||
<link rel="shortcut icon" href="{{ base_url }}/assets/images/favicon.png">
|
||||
{% endif %}
|
||||
<meta name="generator" content="mkdocs-{{ mkdocs_version }}, mkdocs-material-1.4.1">
|
||||
<meta name="generator" content="mkdocs-{{ mkdocs_version }}, mkdocs-material-1.5.0">
|
||||
{% endblock %}
|
||||
{% block htmltitle %}
|
||||
{% if page and page.meta.title %}
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "mkdocs-material",
|
||||
"version": "1.4.1",
|
||||
"version": "1.5.0",
|
||||
"description": "A Material Design theme for MkDocs",
|
||||
"keywords": [
|
||||
"mkdocs",
|
||||
|
Loading…
Reference in New Issue
Block a user