Prepare 1.12.0 release

This commit is contained in:
squidfunk 2017-10-20 09:37:18 +02:00 committed by Martin Donath
parent eda4ff2c14
commit b8b245a1b8
8 changed files with 27 additions and 13 deletions

View File

@ -1,7 +1,8 @@
master
mkdocs-material-1.12.0 (2017-10-20)
* Added support for setting language(s) via mkdocs.yml
* Added support for default localization and German translations
* Added support for default localization
* Added German and Danish translations
* Fixed #374: Search bar misalignment on big screens
mkdocs-material-1.11.0 (2017-10-19)

View File

@ -6,7 +6,7 @@
The official [Docker image][1] for Material comes with all dependencies
pre-installed and ready-to-use with the latest version published on PyPI,
packaged in a very small image (23MB compressed).
packaged in a very small image (35MB compressed).
[1]: https://hub.docker.com/r/squidfunk/mkdocs-material/

View File

@ -12,11 +12,20 @@ To determine the currently installed version, use the following command:
``` sh
pip show mkdocs-material | grep -E ^Version
# Version 1.11.0
# Version 1.12.0
```
## Changelog
### 1.12.0 <small>_ October 20, 2017</small>
* Added support for setting language(s) via `mkdocs.yml`
* Added support for default localization
* Added German and Danish translations
* Fixed [#374][374]: Search bar misalignment on big screens
[374]: https://github.com/squidfunk/mkdocs-material/issues/374
### 1.11.0 <small>_ October 19, 2017</small>
* Added localization to clipboard

View File

@ -35,7 +35,7 @@
{% else %}
<link rel="shortcut icon" href="{{ base_url }}/assets/images/favicon.png">
{% endif %}
<meta name="generator" content="mkdocs-{{ mkdocs_version }}, mkdocs-material-1.11.0">
<meta name="generator" content="mkdocs-{{ mkdocs_version }}, mkdocs-material-1.12.0">
{% endblock %}
{% block htmltitle %}
{% if page and page.meta.title %}

View File

@ -55,13 +55,16 @@ extra:
# Extensions
markdown_extensions:
- markdown.extensions.admonition
- markdown.extensions.codehilite(guess_lang=false)
- markdown.extensions.codehilite:
guess_lang: false
- markdown.extensions.def_list
- markdown.extensions.footnotes
- markdown.extensions.meta
- markdown.extensions.toc(permalink=true)
- markdown.extensions.toc:
permalink: true
- pymdownx.arithmatex
- pymdownx.betterem(smart_enable=all)
- pymdownx.betterem:
smart_enable: all
- pymdownx.caret
- pymdownx.critic
- pymdownx.details
@ -72,7 +75,8 @@ markdown_extensions:
- pymdownx.mark
- pymdownx.smartsymbols
- pymdownx.superfences
- pymdownx.tasklist(custom_checkbox=true)
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tilde
# Page tree

View File

@ -1,6 +1,6 @@
{
"name": "mkdocs-material",
"version": "1.11.0",
"version": "1.12.0",
"description": "A Material Design theme for MkDocs",
"keywords": [
"mkdocs",

View File

@ -18,6 +18,6 @@
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
# IN THE SOFTWARE.
mkdocs>=0.16
pygments>=2.2
mkdocs==0.16.3
Pygments>=2.2
pymdown-extensions>=3.4

View File

@ -20,7 +20,7 @@
IN THE SOFTWARE.
-->
<!-- Translations: English -->
<!-- Translations: Danish -->
{% macro t(key) %}{{ {
"language": "da",
"clipboard.copy": "Kopiér til udklipsholderen",