mirror of
https://github.com/squidfunk/mkdocs-material.git
synced 2024-11-23 23:21:00 +01:00
Prepare 5.0.0 release
This commit is contained in:
parent
4848c7dd41
commit
9842c941c6
25
CHANGELOG
25
CHANGELOG
@ -1,14 +1,31 @@
|
||||
mkdocs-material 4.6.3 (2020-02-14)
|
||||
mkdocs-material-5.0.0 (2020-04-07)
|
||||
|
||||
* Reactive architecture – try app.dialog$.next("Hi!") in the console
|
||||
* Instant loading – make Material behave like a Single Page Application
|
||||
* Improved CSS customization with CSS variables – set your brand's colors
|
||||
* Improved CSS resilience, e.g. proper sidebar locking for customized headers
|
||||
* Improved icon integration and configuration – now including over 5k icons
|
||||
* Added possibility to use any icon for logo, repository and social links
|
||||
* Search UI does not freeze anymore (moved to web worker)
|
||||
* Search index built only once when using instant loading
|
||||
* Improved extensible keyboard handling
|
||||
* Support for prebuilt search indexes
|
||||
* Support for displaying stars and forks for GitLab repositories
|
||||
* Support for scroll snapping of sidebars and search results
|
||||
* Reduced HTML and CSS footprint due to deprecation of IE support
|
||||
* Slight facelifting of some UI elements (Admonitions, tables, ...)
|
||||
|
||||
mkdocs-material-4.6.3 (2020-02-14)
|
||||
|
||||
* Removed optional third-party plugins from requirements.txt
|
||||
* Updated Docker image to contain all supported third-party plugins
|
||||
|
||||
mkdocs-material 4.6.2 (2020-02-08)
|
||||
mkdocs-material-4.6.2 (2020-02-08)
|
||||
|
||||
* Added Romanian translations
|
||||
* Fixed #1451: Inconsistent spacing for fenced code blocks
|
||||
|
||||
mkdocs-material 4.6.1 (2020-02-08)
|
||||
mkdocs-material-4.6.1 (2020-02-08)
|
||||
|
||||
* Fixed #1324: Metadata author only rendering first character
|
||||
* Fixed #1393: Set tabindex to 0 for skip to content link
|
||||
@ -16,7 +33,7 @@ mkdocs-material 4.6.1 (2020-02-08)
|
||||
* Fixed errors in Japanese translations
|
||||
* Improved Google Lighthouse score
|
||||
|
||||
mkdocs-material 4.6.0 (2019-12-11)
|
||||
mkdocs-material-4.6.0 (2019-12-11)
|
||||
|
||||
* Added support for mkdocs-git-revision-date-localized-plugin
|
||||
* Fixed invalid character in Google Fonts URL
|
||||
|
@ -18,6 +18,23 @@ pip show mkdocs-material
|
||||
|
||||
## Changelog
|
||||
|
||||
### 5.0.0 <small>_ April 7, 2020</small>
|
||||
|
||||
* Reactive architecture – try `app.dialog$.next("Hi!")` in the console
|
||||
* Instant loading – make Material behave like a Single Page Application
|
||||
* Improved CSS customization with CSS variables – set your brand's colors
|
||||
* Improved CSS resilience, e.g. proper sidebar locking for customized headers
|
||||
* Improved icon integration and configuration – now including over 5k icons
|
||||
* Added possibility to use any icon for logo, repository and social links
|
||||
* Search UI does not freeze anymore (moved to web worker)
|
||||
* Search index built only once when using instant loading
|
||||
* Improved extensible keyboard handling
|
||||
* Support for prebuilt search indexes
|
||||
* Support for displaying stars and forks for GitLab repositories
|
||||
* Support for scroll snapping of sidebars and search results
|
||||
* Reduced HTML and CSS footprint due to deprecation of Internet Explorer support
|
||||
* Slight facelifting of some UI elements (Admonitions, tables, ...)
|
||||
|
||||
### 4.6.3 <small>_ February 14, 2020</small>
|
||||
|
||||
* Removed optional third-party plugins from `requirements.txt`
|
||||
|
@ -29,7 +29,7 @@
|
||||
<meta name="author" content="{{ config.site_author }}">
|
||||
{% endif %}
|
||||
<link rel="shortcut icon" href="{{ config.theme.favicon | url }}">
|
||||
<meta name="generator" content="mkdocs-{{ mkdocs_version }}, mkdocs-material-5.0.0rc4">
|
||||
<meta name="generator" content="mkdocs-{{ mkdocs_version }}, mkdocs-material-5.0.0">
|
||||
{% 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": "5.0.0rc4",
|
||||
"version": "5.0.0",
|
||||
"lockfileVersion": 1,
|
||||
"requires": true,
|
||||
"dependencies": {
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "mkdocs-material",
|
||||
"version": "5.0.0rc4",
|
||||
"version": "5.0.0",
|
||||
"description": "A Material Design theme for MkDocs",
|
||||
"keywords": [
|
||||
"mkdocs",
|
||||
|
@ -22,4 +22,4 @@
|
||||
mkdocs>=1.1
|
||||
Pygments>=2.4
|
||||
markdown>=3.2
|
||||
pymdown-extensions>=7.0b2
|
||||
pymdown-extensions>=7.0
|
||||
|
Loading…
Reference in New Issue
Block a user