mirror of
https://github.com/squidfunk/mkdocs-material.git
synced 2024-06-14 11:52:32 +03:00
Merge pull request #107 from squidfunk/chore/prepare-1.0.1-release
Prepare 1.0.1 release
This commit is contained in:
commit
b54813ffd8
@ -1,3 +1,10 @@
|
|||||||
|
mkdocs-material-1.0.1 (2017-01-14)
|
||||||
|
|
||||||
|
* Fixed massive repaints happening when scrolling
|
||||||
|
* Fixed footer back reference positions in case of overflow
|
||||||
|
* Fixed header logo from showing when the menu icon is rendered
|
||||||
|
* Changed scrollbar behavior to only show when content overflows
|
||||||
|
|
||||||
mkdocs-material-1.0.0 (2017-01-13)
|
mkdocs-material-1.0.0 (2017-01-13)
|
||||||
|
|
||||||
* Introduced Webpack for more sophisticated JavaScript bundling
|
* Introduced Webpack for more sophisticated JavaScript bundling
|
||||||
|
@ -17,6 +17,13 @@ pip show mkdocs-material | grep -E ^Version
|
|||||||
|
|
||||||
## Changelog
|
## Changelog
|
||||||
|
|
||||||
|
### 1.0.1 <small> _ January 14, 2017</small>
|
||||||
|
|
||||||
|
* Fixed massive repaints happening when scrolling
|
||||||
|
* Fixed footer back reference positions in case of overflow
|
||||||
|
* Fixed header logo from showing when the menu icon is rendered
|
||||||
|
* Changed scrollbar behavior to only show when content overflows
|
||||||
|
|
||||||
### 1.0.0 <small> _ January 13, 2017</small>
|
### 1.0.0 <small> _ January 13, 2017</small>
|
||||||
|
|
||||||
* Introduced Webpack for more sophisticated JavaScript bundling
|
* Introduced Webpack for more sophisticated JavaScript bundling
|
||||||
|
@ -19,7 +19,7 @@
|
|||||||
{% else %}
|
{% else %}
|
||||||
<link rel="shortcut icon" href="{{ base_url }}/assets/images/favicon.ico">
|
<link rel="shortcut icon" href="{{ base_url }}/assets/images/favicon.ico">
|
||||||
{% endif %}
|
{% endif %}
|
||||||
<meta name="generator" content="mkdocs+mkdocs-material#1.0.0">
|
<meta name="generator" content="mkdocs+mkdocs-material#1.0.1">
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
{% block htmltitle %}
|
{% block htmltitle %}
|
||||||
{% if page.title %}
|
{% if page.title %}
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "mkdocs-material",
|
"name": "mkdocs-material",
|
||||||
"version": "1.0.0",
|
"version": "1.0.1",
|
||||||
"description": "A Material Design theme for MkDocs",
|
"description": "A Material Design theme for MkDocs",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"mkdocs",
|
"mkdocs",
|
||||||
|
2
setup.py
2
setup.py
@ -23,7 +23,7 @@ from setuptools import setup, find_packages
|
|||||||
# Package description
|
# Package description
|
||||||
setup(
|
setup(
|
||||||
name = "mkdocs-material",
|
name = "mkdocs-material",
|
||||||
version = "1.0.0",
|
version = "1.0.1",
|
||||||
url = "http://squidfunk.github.io/mkdocs-material/",
|
url = "http://squidfunk.github.io/mkdocs-material/",
|
||||||
license = "MIT",
|
license = "MIT",
|
||||||
description = "A Material Design theme for MkDocs",
|
description = "A Material Design theme for MkDocs",
|
||||||
|
Loading…
Reference in New Issue
Block a user