mirror of
https://github.com/squidfunk/mkdocs-material.git
synced 2024-11-23 23:21:00 +01:00
Prepare 3.0.1 release
This commit is contained in:
parent
679aa64310
commit
309389befd
27
.env
Executable file
27
.env
Executable file
@ -0,0 +1,27 @@
|
||||
#!/bin/bash
|
||||
|
||||
# Copyright (c) 2016-2018 Martin Donath <martin.donath@squidfunk.com>
|
||||
|
||||
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
# of this software and associated documentation files (the "Software"), to
|
||||
# deal in the Software without restriction, including without limitation the
|
||||
# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
||||
# sell copies of the Software, and to permit persons to whom the Software is
|
||||
# furnished to do so, subject to the following conditions:
|
||||
|
||||
# The above copyright notice and this permission notice shall be included in
|
||||
# all copies or substantial portions of the Software.
|
||||
|
||||
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
# FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE
|
||||
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
||||
# IN THE SOFTWARE.
|
||||
|
||||
# Activate virtual environment
|
||||
if [ -f venv/bin/activate ]; then
|
||||
echo "Activating virtual environment"
|
||||
source venv/bin/activate
|
||||
fi
|
1
.gitignore
vendored
1
.gitignore
vendored
@ -28,6 +28,7 @@
|
||||
|
||||
# Python-related
|
||||
__pycache__
|
||||
venv
|
||||
|
||||
# Files generated by build
|
||||
/build
|
||||
|
@ -1,3 +1,7 @@
|
||||
mkdocs-material-3.0.1 (2018-08-05)
|
||||
|
||||
* Fixed #838: Search result links incorrect
|
||||
|
||||
mkdocs-material-3.0.0 (2018-08-05)
|
||||
|
||||
* Upgraded MkDocs to 1.0
|
||||
|
@ -49,6 +49,12 @@ pip show mkdocs-material
|
||||
|
||||
## Changelog
|
||||
|
||||
### 3.0.1 <small>_ August 5, 2018</small>
|
||||
|
||||
* Fixed [#838][838]: Search result links incorrect
|
||||
|
||||
[838]: https://github.com/squidfunk/mkdocs-material/issues/838
|
||||
|
||||
### 3.0.0 <small>_ August 5, 2018</small>
|
||||
|
||||
* Upgraded MkDocs to 1.0
|
||||
|
File diff suppressed because one or more lines are too long
1
material/assets/javascripts/application.e72fd936.js
Normal file
1
material/assets/javascripts/application.e72fd936.js
Normal file
File diff suppressed because one or more lines are too long
@ -36,7 +36,7 @@
|
||||
<meta name="lang:{{ key }}" content="{{ lang.t(key) }}">
|
||||
{% endfor %}
|
||||
<link rel="shortcut icon" href="{{ config.theme.favicon | url }}">
|
||||
<meta name="generator" content="mkdocs-{{ mkdocs_version }}, mkdocs-material-3.0.0">
|
||||
<meta name="generator" content="mkdocs-{{ mkdocs_version }}, mkdocs-material-3.0.1">
|
||||
{% endblock %}
|
||||
{% block htmltitle %}
|
||||
{% if page and page.meta and page.meta.title %}
|
||||
@ -177,7 +177,7 @@
|
||||
{% endblock %}
|
||||
</div>
|
||||
{% block scripts %}
|
||||
<script src="{{ 'assets/javascripts/application.5c3774b5.js' | url }}"></script>
|
||||
<script src="{{ 'assets/javascripts/application.e72fd936.js' | url }}"></script>
|
||||
{% if lang.t("search.language") != "en" %}
|
||||
{% set languages = lang.t("search.language").split(",") %}
|
||||
{% if languages | length and languages[0] != "" %}
|
||||
|
2
package-lock.json
generated
2
package-lock.json
generated
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "mkdocs-material",
|
||||
"version": "2.9.4",
|
||||
"version": "3.0.1",
|
||||
"lockfileVersion": 1,
|
||||
"requires": true,
|
||||
"dependencies": {
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "mkdocs-material",
|
||||
"version": "3.0.0",
|
||||
"version": "3.0.1",
|
||||
"description": "A Material Design theme for MkDocs",
|
||||
"keywords": [
|
||||
"mkdocs",
|
||||
|
Loading…
Reference in New Issue
Block a user