Skip to content

Commit e1cf87b

Browse files
committed
Prepare 0.1.2 release
1 parent 075d144 commit e1cf87b

File tree

8 files changed

+19
-13
lines changed

8 files changed

+19
-13
lines changed

CHANGELOG

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
mkdocs-material-0.x.x (2016-xx-xx)
1+
mkdocs-material-0.1.2 (2016-02-16)
22

33
* Fixed styles for deep navigational hierarchies
44
* Fixed webfont delivery problem when hosted in subdirectories

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "mkdocs-material",
3-
"version": "0.1.1",
3+
"version": "0.1.2",
44
"description": "A material design theme for MkDocs",
55
"homepage": "http://squidfunk.github.io/mkdocs-material/",
66
"authors": [

docs/getting-started.md

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,8 @@ extra:
116116

117117
If you want to change the fonts or colors - you are lucky. The Material theme
118118
is built with a sophisticated asset pipeline. See
119-
[this article](/customization) for more information on advanced customization.
119+
[this article](customization.md) for more information on advanced
120+
customization.
120121

121122
## Extensions
122123

@@ -174,8 +175,13 @@ This will print the following:
174175
!!! note
175176
Nothing to see here, move along.
176177

177-
The Material template adds a light color for the `note` class and a red color
178-
for the `warning` class. More colors can be freely defined.
178+
The Material template adds a neutral color for the `note` class and a red color
179+
for the `warning` class.
180+
181+
!!! warning
182+
You shall not pass.
183+
184+
More colors can be freely defined.
179185

180186
## Full example
181187

@@ -186,7 +192,7 @@ Below is a full example configuration for a mkdocs.yml:
186192
site_name: 'My Project'
187193
site_description: 'A short description of my project'
188194
site_author: 'John Doe'
189-
site_url: 'https://github.com/my-github-handle/my-project'
195+
site_url: 'https://my-github-handle.github.io/my-project'
190196
191197
# Repository
192198
repo_name: 'GitHub'

docs/images/logo.png

15.4 KB
Loading

docs/index.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Google's [material design][] guidelines. MkDocs is an excellent static site
77
documentation generator that is meant for building good looking project
88
documentation.
99

10-
![Material Screenshot](/images/screen.png)
10+
![Material Screenshot](images/screen.png)
1111

1212
This theme is **optimized for all sorts of devices** and is built from scratch
1313
without any bloated Javascript or CSS Frameworks with **only 24kb of JS and
@@ -24,8 +24,8 @@ browsers.
2424

2525
- Well-tested and **optimized CSS and Javascript**, including a cross-browser
2626
fixed/sticky header, a drawer that even works without Javascript using
27-
the `checkbox:checked` hack with fallbacks, **responsive tables** that scroll
28-
when the screen is too small and **well-defined print styles**.
27+
the `:checked` hack with fallbacks, **responsive tables** that scroll when
28+
the screen is too small and **well-defined print styles**.
2929

3030
- Extra configuration options like **project logo**, links to the authors
3131
**GitHub and Twitter accounts** and display of the **amount of stars** the
@@ -38,7 +38,7 @@ browsers.
3838
- **Web application capability** on iOS - when the page is saved to the
3939
homescreen, it behaves and looks like a native application.
4040

41-
See the [getting started guide](/getting-started) for instructions how to get
41+
See the [getting started guide](getting-started.md) for instructions how to get
4242
it up and running.
4343

4444
[material design]: https://www.google.com/design/spec/material-design

mkdocs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ theme_dir: material
3636

3737
# Options
3838
extra:
39-
version: 0.1.1
39+
version: 0.1.2
4040
logo: images/logo.png
4141
font:
4242
text: Ubuntu

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "mkdocs-material",
3-
"version": "0.1.1",
3+
"version": "0.1.2",
44
"description": "A material design theme for MkDocs",
55
"homepage": "http://squidfunk.github.io/mkdocs-material/",
66
"authors": [

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
# Package description
2424
setup(
2525
name = 'mkdocs-material',
26-
version = '0.1.1',
26+
version = '0.1.2',
2727
url = 'http://squidfunk.github.io/mkdocs-material/',
2828
license = 'MIT',
2929
description = 'A material design theme for MkDocs',

0 commit comments

Comments
 (0)