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 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
|
* Fixed #374: Search bar misalignment on big screens
|
||||||
|
|
||||||
mkdocs-material-1.11.0 (2017-10-19)
|
mkdocs-material-1.11.0 (2017-10-19)
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
|
|
||||||
The official [Docker image][1] for Material comes with all dependencies
|
The official [Docker image][1] for Material comes with all dependencies
|
||||||
pre-installed and ready-to-use with the latest version published on PyPI,
|
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/
|
[1]: https://hub.docker.com/r/squidfunk/mkdocs-material/
|
||||||
|
|
||||||
|
@ -12,11 +12,20 @@ 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.11.0
|
# Version 1.12.0
|
||||||
```
|
```
|
||||||
|
|
||||||
## Changelog
|
## 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>
|
### 1.11.0 <small>_ October 19, 2017</small>
|
||||||
|
|
||||||
* Added localization to clipboard
|
* Added localization to clipboard
|
||||||
|
@ -35,7 +35,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.11.0">
|
<meta name="generator" content="mkdocs-{{ mkdocs_version }}, mkdocs-material-1.12.0">
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
{% block htmltitle %}
|
{% block htmltitle %}
|
||||||
{% if page and page.meta.title %}
|
{% if page and page.meta.title %}
|
||||||
|
12
mkdocs.yml
12
mkdocs.yml
@ -55,13 +55,16 @@ extra:
|
|||||||
# Extensions
|
# Extensions
|
||||||
markdown_extensions:
|
markdown_extensions:
|
||||||
- markdown.extensions.admonition
|
- markdown.extensions.admonition
|
||||||
- markdown.extensions.codehilite(guess_lang=false)
|
- markdown.extensions.codehilite:
|
||||||
|
guess_lang: false
|
||||||
- markdown.extensions.def_list
|
- markdown.extensions.def_list
|
||||||
- markdown.extensions.footnotes
|
- markdown.extensions.footnotes
|
||||||
- markdown.extensions.meta
|
- markdown.extensions.meta
|
||||||
- markdown.extensions.toc(permalink=true)
|
- markdown.extensions.toc:
|
||||||
|
permalink: true
|
||||||
- pymdownx.arithmatex
|
- pymdownx.arithmatex
|
||||||
- pymdownx.betterem(smart_enable=all)
|
- pymdownx.betterem:
|
||||||
|
smart_enable: all
|
||||||
- pymdownx.caret
|
- pymdownx.caret
|
||||||
- pymdownx.critic
|
- pymdownx.critic
|
||||||
- pymdownx.details
|
- pymdownx.details
|
||||||
@ -72,7 +75,8 @@ markdown_extensions:
|
|||||||
- pymdownx.mark
|
- pymdownx.mark
|
||||||
- pymdownx.smartsymbols
|
- pymdownx.smartsymbols
|
||||||
- pymdownx.superfences
|
- pymdownx.superfences
|
||||||
- pymdownx.tasklist(custom_checkbox=true)
|
- pymdownx.tasklist:
|
||||||
|
custom_checkbox: true
|
||||||
- pymdownx.tilde
|
- pymdownx.tilde
|
||||||
|
|
||||||
# Page tree
|
# Page tree
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "mkdocs-material",
|
"name": "mkdocs-material",
|
||||||
"version": "1.11.0",
|
"version": "1.12.0",
|
||||||
"description": "A Material Design theme for MkDocs",
|
"description": "A Material Design theme for MkDocs",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"mkdocs",
|
"mkdocs",
|
||||||
|
@ -18,6 +18,6 @@
|
|||||||
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
||||||
# IN THE SOFTWARE.
|
# IN THE SOFTWARE.
|
||||||
|
|
||||||
mkdocs>=0.16
|
mkdocs==0.16.3
|
||||||
pygments>=2.2
|
Pygments>=2.2
|
||||||
pymdown-extensions>=3.4
|
pymdown-extensions>=3.4
|
||||||
|
@ -20,7 +20,7 @@
|
|||||||
IN THE SOFTWARE.
|
IN THE SOFTWARE.
|
||||||
-->
|
-->
|
||||||
|
|
||||||
<!-- Translations: English -->
|
<!-- Translations: Danish -->
|
||||||
{% macro t(key) %}{{ {
|
{% macro t(key) %}{{ {
|
||||||
"language": "da",
|
"language": "da",
|
||||||
"clipboard.copy": "Kopiér til udklipsholderen",
|
"clipboard.copy": "Kopiér til udklipsholderen",
|
||||||
|
Loading…
Reference in New Issue
Block a user