mirror of
https://github.com/squidfunk/mkdocs-material.git
synced 2024-06-14 11:52:32 +03:00
Prepare 8.2.8 release
This commit is contained in:
parent
e96f07ae3d
commit
ce43e6ae9d
@ -1,3 +1,12 @@
|
||||
mkdocs-material-8.2.8 (2022-03-27)
|
||||
|
||||
* Bumped MkDocs version to 1.3.0 to mitigate breaking changes in Jinja
|
||||
* Reverted Jinja version range limitation (added in 8.2.7)
|
||||
* Improved styling of annotations and fixed borders of code blocks in tabs
|
||||
* Added background color to code blocks in focused/hovered links
|
||||
* Added check in tags plugin whether tags overview page exists
|
||||
* Fixed #3744: Content tab indicator on wrong position when using back button
|
||||
|
||||
mkdocs-material-8.2.7 (2022-03-24)
|
||||
|
||||
* Temporarily limit Jinja version range to < 3.1 due to breaking changes
|
||||
|
@ -6,6 +6,15 @@ template: overrides/main.html
|
||||
|
||||
## Material for MkDocs
|
||||
|
||||
### 8.2.8 <small>_ March 27, 2022</small> { id="8.2.8" }
|
||||
|
||||
- Bumped MkDocs version to 1.3.0 to mitigate breaking changes in Jinja
|
||||
- Reverted Jinja version range limitation (added in 8.2.7)
|
||||
- Improved styling of annotations and fixed borders of code blocks in tabs
|
||||
- Added background color to code blocks in focused/hovered links
|
||||
- Added check in tags plugin whether tags overview page exists
|
||||
- Fixed #3744: Content tab indicator on wrong position when using back button
|
||||
|
||||
### 8.2.7 <small>_ March 24, 2022</small> { id="8.2.7" }
|
||||
|
||||
- Temporarily limit Jinja version range to < 3.1 due to breaking changes
|
||||
|
@ -170,8 +170,9 @@ The following features are solely available via Material for MkDocs Insiders:
|
||||
|
||||
<div class="mdx-columns" markdown>
|
||||
|
||||
- [x] [Card grids] :material-new-box:
|
||||
- [x] [Offline plugin] :material-new-box:
|
||||
- [x] [Privacy plugin] :material-new-box:
|
||||
- [x] [Privacy plugin]
|
||||
- [x] [Table of contents anchor following]
|
||||
- [x] [Annotations]
|
||||
- [x] [Navigation icons]
|
||||
@ -266,9 +267,13 @@ are released for general availability.
|
||||
#### $ 14,000 – Goat's Horn
|
||||
|
||||
- [x] [Privacy plugin]
|
||||
- [x] [Card grids]
|
||||
- [ ] [Instant previews]
|
||||
- [ ] and much more, to be announced ...
|
||||
|
||||
[Privacy plugin]: ../setup/ensuring-data-privacy.md
|
||||
[Card grids]: ../reference/grids.md
|
||||
[Instant previews]: https://twitter.com/squidfunk/status/1466794654213492743
|
||||
|
||||
### Goals completed
|
||||
|
||||
|
@ -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.2.7">
|
||||
<meta name="generator" content="mkdocs-{{ mkdocs_version }}, mkdocs-material-8.2.8">
|
||||
{% endblock %}
|
||||
{% block htmltitle %}
|
||||
{% if page and page.meta and page.meta.title %}
|
||||
|
4
package-lock.json
generated
4
package-lock.json
generated
@ -1,12 +1,12 @@
|
||||
{
|
||||
"name": "mkdocs-material",
|
||||
"version": "8.2.7",
|
||||
"version": "8.2.8",
|
||||
"lockfileVersion": 2,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "mkdocs-material",
|
||||
"version": "8.2.7",
|
||||
"version": "8.2.8",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"array-flat-polyfill": "^1.0.1",
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "mkdocs-material",
|
||||
"version": "8.2.7",
|
||||
"version": "8.2.8",
|
||||
"description": "A Material Design theme for MkDocs",
|
||||
"keywords": [
|
||||
"mkdocs",
|
||||
|
Loading…
Reference in New Issue
Block a user