mirror of
https://github.com/squidfunk/mkdocs-material.git
synced 2024-11-23 23:21:00 +01:00
Prepared 8.1.1 release
This commit is contained in:
parent
1453e946fb
commit
c093b090d1
13
CHANGELOG
13
CHANGELOG
@ -1,3 +1,16 @@
|
||||
mkdocs-material-8.1.1 (2012-12-13)
|
||||
|
||||
* Added support for #only-light and #only-dark image hash fragments
|
||||
* Fixed copy-to-clipboard adding blank lines when using line anchors
|
||||
* Fixed code annotation directionality for right-to-left languages
|
||||
* Fixed header title positioning for right-to-left languages
|
||||
* Fixed admonition borders for right-to-left languages (8.0.0 regression)
|
||||
* Fixed footer navigation link positioning (8.0.0 regression)
|
||||
* Fixed footer navigation title breaking out of container when too long
|
||||
* Fixed shrinking arrow in navigation title when too long
|
||||
* Fixed #3343: Filtered stopwords appear as missing search terms
|
||||
* Fixed #3346: Site unusable due to usage of :not() (Firefox 78 ESR)
|
||||
|
||||
mkdocs-material-8.1.0+insiders-4.4.0 (2021-12-10)
|
||||
|
||||
* Added support for code annotation anchor links (deep linking)
|
||||
|
@ -6,6 +6,19 @@ template: overrides/main.html
|
||||
|
||||
## Material for MkDocs
|
||||
|
||||
### 8.1.1 <small>_ December 13, 2021</small> { id="8.1.1" }
|
||||
|
||||
- Added support for `#only-light` and `#only-dark` image hash fragments
|
||||
- Fixed copy-to-clipboard adding blank lines when using line anchors
|
||||
- Fixed code annotation directionality for right-to-left languages
|
||||
- Fixed header title positioning for right-to-left languages
|
||||
- Fixed admonition borders for right-to-left languages (8.0.0 regression)
|
||||
- Fixed footer navigation link positioning (8.0.0 regression)
|
||||
- Fixed footer navigation title breaking out of container when too long
|
||||
- Fixed shrinking arrow in navigation title when too long
|
||||
- Fixed #3343: Filtered stopwords appear as missing search terms
|
||||
- Fixed #3346: Site unusable due to usage of :not() (Firefox 78 ESR)
|
||||
|
||||
### 8.1.0 <small>_ December 10, 2021</small> { id="8.1.0" }
|
||||
|
||||
- Added basic support for code block line anchors
|
||||
|
@ -130,7 +130,7 @@ browsers without support:
|
||||
|
||||
### Light and dark mode
|
||||
|
||||
[:octicons-tag-24: Unreleased][Light and dark mode support] ·
|
||||
[:octicons-tag-24: 8.1.1][Light and dark mode support] ·
|
||||
:octicons-beaker-24: Experimental
|
||||
|
||||
If you added a [color palette toggle] and want to show different images for
|
||||
|
@ -22,7 +22,7 @@
|
||||
<link rel="canonical" href="{{ page.canonical_url }}">
|
||||
{% endif %}
|
||||
<link rel="icon" href="{{ config.theme.favicon | url }}">
|
||||
<meta name="generator" content="mkdocs-{{ mkdocs_version }}, mkdocs-material-8.1.0">
|
||||
<meta name="generator" content="mkdocs-{{ mkdocs_version }}, mkdocs-material-8.1.1">
|
||||
{% endblock %}
|
||||
{% block htmltitle %}
|
||||
{% if page and page.meta and page.meta.title %}
|
||||
|
2
package-lock.json
generated
2
package-lock.json
generated
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "mkdocs-material",
|
||||
"version": "8.1.0",
|
||||
"version": "8.1.1",
|
||||
"lockfileVersion": 1,
|
||||
"requires": true,
|
||||
"dependencies": {
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "mkdocs-material",
|
||||
"version": "8.1.0",
|
||||
"version": "8.1.1",
|
||||
"description": "A Material Design theme for MkDocs",
|
||||
"keywords": [
|
||||
"mkdocs",
|
||||
|
Loading…
Reference in New Issue
Block a user