mirror of
https://github.com/squidfunk/mkdocs-material.git
synced 2024-06-14 11:52:32 +03:00
Prepare 1.12.0 release
This commit is contained in:
parent
eda4ff2c14
commit
b8b245a1b8
@ -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)
|
||||
|
@ -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/
|
||||
|
||||
|
@ -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
|
||||
|
@ -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 %}
|
||||
|
12
mkdocs.yml
12
mkdocs.yml
@ -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
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "mkdocs-material",
|
||||
"version": "1.11.0",
|
||||
"version": "1.12.0",
|
||||
"description": "A Material Design theme for MkDocs",
|
||||
"keywords": [
|
||||
"mkdocs",
|
||||
|
@ -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
|
||||
|
@ -20,7 +20,7 @@
|
||||
IN THE SOFTWARE.
|
||||
-->
|
||||
|
||||
<!-- Translations: English -->
|
||||
<!-- Translations: Danish -->
|
||||
{% macro t(key) %}{{ {
|
||||
"language": "da",
|
||||
"clipboard.copy": "Kopiér til udklipsholderen",
|
||||
|
Loading…
Reference in New Issue
Block a user