mirror of
https://github.com/squidfunk/mkdocs-material.git
synced 2024-06-14 11:52:32 +03:00
Prepare 9.5.2 release
This commit is contained in:
parent
52feaba403
commit
2ca5cf0ea0
14
CHANGELOG
14
CHANGELOG
@ -1,3 +1,17 @@
|
|||||||
|
mkdocs-material-9.5.2+insiders-4.47.1 (2023-12-11)
|
||||||
|
|
||||||
|
* Improved editing experience for projects plugin
|
||||||
|
* Improved resilience of optimize and social plugin
|
||||||
|
* Fixed race condition when writing manifest in optimize and social plugin
|
||||||
|
* Fixed #6475: Logo not taking precedence over icon in social card
|
||||||
|
* Fixed #6399: Projects plugin doesn't pick up added/removed projects
|
||||||
|
* Fixed #6306: Projects plugin cache not correctly updated
|
||||||
|
|
||||||
|
mkdocs-material-9.5.2 (2023-12-11)
|
||||||
|
|
||||||
|
* Fixed types for `slugify` settings in blog plugin config
|
||||||
|
* Fixed #6469: Horizontal scrollbars on MathJax containers
|
||||||
|
|
||||||
mkdocs-material-9.5.1+insiders-4.47.0 (2023-12-08)
|
mkdocs-material-9.5.1+insiders-4.47.0 (2023-12-08)
|
||||||
|
|
||||||
* Added support for staying on page when switching languages
|
* Added support for staying on page when switching languages
|
||||||
|
@ -2,6 +2,11 @@
|
|||||||
|
|
||||||
## Material for MkDocs
|
## Material for MkDocs
|
||||||
|
|
||||||
|
### 9.5.2 <small>December 11, 2023</small> { id="9.5.2" }
|
||||||
|
|
||||||
|
- Fixed types for `slugify` settings in blog plugin config
|
||||||
|
- Fixed #6469: Horizontal scrollbars on MathJax containers
|
||||||
|
|
||||||
### 9.5.1 <small>December 8, 2023</small> { id="9.5.1" }
|
### 9.5.1 <small>December 8, 2023</small> { id="9.5.1" }
|
||||||
|
|
||||||
- Updated Greek translations
|
- Updated Greek translations
|
||||||
|
@ -2,6 +2,15 @@
|
|||||||
|
|
||||||
## Material for MkDocs Insiders
|
## Material for MkDocs Insiders
|
||||||
|
|
||||||
|
### 4.47.1 <small>December 11, 2023</small> { id="4.47.1" }
|
||||||
|
|
||||||
|
- Improved editing experience for projects plugin
|
||||||
|
- Improved resilience of optimize and social plugin
|
||||||
|
- Fixed race condition when writing manifest in optimize and social plugin
|
||||||
|
- Fixed #6475: Logo not taking precedence over icon in social card
|
||||||
|
- Fixed #6399: Projects plugin doesn't pick up added/removed projects
|
||||||
|
- Fixed #6306: Projects plugin cache not correctly updated
|
||||||
|
|
||||||
### 4.47.0 <small>December 8, 2023</small> { id="4.47.0" }
|
### 4.47.0 <small>December 8, 2023</small> { id="4.47.0" }
|
||||||
|
|
||||||
- Added support for staying on page when switching languages
|
- Added support for staying on page when switching languages
|
||||||
|
@ -18,4 +18,4 @@
|
|||||||
# 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.
|
||||||
|
|
||||||
__version__ = "9.5.1"
|
__version__ = "9.5.2"
|
||||||
|
@ -32,7 +32,7 @@
|
|||||||
<link rel="alternate" type="application/rss+xml" title="{{ lang.t('rss.updated') }}" href="{{ 'feed_rss_updated.xml' | url }}">
|
<link rel="alternate" type="application/rss+xml" title="{{ lang.t('rss.updated') }}" href="{{ 'feed_rss_updated.xml' | url }}">
|
||||||
{% endif %}
|
{% endif %}
|
||||||
<link rel="icon" href="{{ config.theme.favicon | url }}">
|
<link rel="icon" href="{{ config.theme.favicon | url }}">
|
||||||
<meta name="generator" content="mkdocs-{{ mkdocs_version }}, mkdocs-material-9.5.1">
|
<meta name="generator" content="mkdocs-{{ mkdocs_version }}, mkdocs-material-9.5.2">
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
{% block htmltitle %}
|
{% block htmltitle %}
|
||||||
{% if page.meta and page.meta.title %}
|
{% if page.meta and page.meta.title %}
|
||||||
|
4
package-lock.json
generated
4
package-lock.json
generated
@ -1,12 +1,12 @@
|
|||||||
{
|
{
|
||||||
"name": "mkdocs-material",
|
"name": "mkdocs-material",
|
||||||
"version": "9.5.1",
|
"version": "9.5.2",
|
||||||
"lockfileVersion": 2,
|
"lockfileVersion": 2,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "mkdocs-material",
|
"name": "mkdocs-material",
|
||||||
"version": "9.5.1",
|
"version": "9.5.2",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"clipboard": "^2.0.11",
|
"clipboard": "^2.0.11",
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "mkdocs-material",
|
"name": "mkdocs-material",
|
||||||
"version": "9.5.1",
|
"version": "9.5.2",
|
||||||
"description": "Documentation that simply works",
|
"description": "Documentation that simply works",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"mkdocs",
|
"mkdocs",
|
||||||
|
Loading…
Reference in New Issue
Block a user