Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

PR: Update MDI to 4.5.95 #126

Merged
merged 1 commit into from
Oct 28, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ The following prefixes are currently available to use:

- `ei` prefix holds [**Elusive Icons** 2.0 with its 304 icons](http://elusiveicons.com/icons/).

- `mdi` prefix holds [**Material Design Icons** 4.4.95 with its 4495 icons.](https://cdn.materialdesignicons.com/4.4.95/)
- `mdi` prefix holds [**Material Design Icons** 4.5.95 with its 4595 icons.](https://cdn.materialdesignicons.com/4.5.95/)

### Examples

Expand Down
4 changes: 2 additions & 2 deletions UPDATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,13 +39,13 @@ with open('charmap.json', 'w') as file:
To update _Material Design Icons_, you must:

- download ttf from https://github.com/Templarian/MaterialDesign-Webfont
- regenerate the json charmap with the `materialdesignicons.css` file.
- regenerate the json charmap with the `materialdesignicons.css` file from https://raw.githubusercontent.com/Templarian/MaterialDesign-Webfont/master/css/materialdesignicons.css

```Python
import re
import json

with open('css/materialdesignicons.css', 'r') as fp:
with open('materialdesignicons.css', 'r') as fp:
rawcss = fp.read()

charmap = {}
Expand Down
4 changes: 2 additions & 2 deletions docs/source/usage.rst
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ The following prefixes are currently available to use:

- ``ei`` prefix holds `Elusive Icons 2.0 with its 304 icons`_.

- ``mdi`` prefix holds `Material Design Icons 4.4.95 with its 4495
- ``mdi`` prefix holds `Material Design Icons 4.5.95 with its 4595
icons.`_

.. _FontAwesome: https://fontawesome.com
Expand All @@ -31,7 +31,7 @@ The following prefixes are currently available to use:
.. _414 icons of various brands.: https://fontawesome.com/icons?d=gallery&s=brands&v=5.0.0,5.0.1,5.0.2,5.0.3,5.0.4,5.0.5,5.0.6,5.0.7,5.0.8,5.0.9,5.0.10,5.0.11,5.0.12,5.0.13,5.1.0,5.1.1,5.2.0,5.3.0,5.3.1,5.4.0,5.4.1,5.4.2,5.5.0,5.6.0,5.6.1,5.6.3&m=free
.. _FA 4.7 version with its 675 icons: https://fontawesome.com/v4.7.0/icons/
.. _Elusive Icons 2.0 with its 304 icons: http://elusiveicons.com/icons/
.. _Material Design Icons 4.4.95 with its 4495 icons.: https://cdn.materialdesignicons.com/4.4.95/
.. _Material Design Icons 4.5.95 with its 4595 icons.: https://cdn.materialdesignicons.com/4.5.95/

Examples
~~~~~~~~
Expand Down
Loading