diff --git a/CHANGELOG b/CHANGELOG index 3646922f9232fe887d8fe47a7bb003a047f40db0..21239439c9a8e0f857851df990f2b0a709ca74b4 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,4 +1,4 @@ -mkdocs-material-0.x.x (2016-xx-xx) +mkdocs-material-0.1.2 (2016-02-16) * Fixed styles for deep navigational hierarchies * Fixed webfont delivery problem when hosted in subdirectories diff --git a/bower.json b/bower.json index 58111606ee4d00cf04832223f406805010f79a24..5e5fc5f7b2300bf369c8e5858fca1541b920d68a 100644 --- a/bower.json +++ b/bower.json @@ -1,6 +1,6 @@ { "name": "mkdocs-material", - "version": "0.1.1", + "version": "0.1.2", "description": "A material design theme for MkDocs", "homepage": "http://squidfunk.github.io/mkdocs-material/", "authors": [ diff --git a/docs/getting-started.md b/docs/getting-started.md index dba642f56e978329a8df1936b64414a2616db2f6..9574c5631fef47ff65f32cb26f11818e3236bf0d 100644 --- a/docs/getting-started.md +++ b/docs/getting-started.md @@ -116,7 +116,8 @@ extra: If you want to change the fonts or colors - you are lucky. The Material theme is built with a sophisticated asset pipeline. See -[this article](/customization) for more information on advanced customization. +[this article](customization.md) for more information on advanced +customization. ## Extensions @@ -174,8 +175,13 @@ This will print the following: !!! note Nothing to see here, move along. -The Material template adds a light color for the `note` class and a red color -for the `warning` class. More colors can be freely defined. +The Material template adds a neutral color for the `note` class and a red color +for the `warning` class. + +!!! warning + You shall not pass. + +More colors can be freely defined. ## Full example @@ -186,7 +192,7 @@ Below is a full example configuration for a mkdocs.yml: site_name: 'My Project' site_description: 'A short description of my project' site_author: 'John Doe' -site_url: 'https://github.com/my-github-handle/my-project' +site_url: 'https://my-github-handle.github.io/my-project' # Repository repo_name: 'GitHub' diff --git a/docs/images/logo.png b/docs/images/logo.png index 6faca5f64e6a3a834eb38c0e45bc7205d86c3041..573aca13809a9a29d2065d7146fa9989d5199e00 100644 Binary files a/docs/images/logo.png and b/docs/images/logo.png differ diff --git a/docs/index.md b/docs/index.md index d106ec0fb74b3581ee965fe8432733e1ec72e8fd..f6fc12fec9574511e67edce534703e010211f584 100644 --- a/docs/index.md +++ b/docs/index.md @@ -7,7 +7,7 @@ Google's [material design][] guidelines. MkDocs is an excellent static site documentation generator that is meant for building good looking project documentation. - + This theme is **optimized for all sorts of devices** and is built from scratch without any bloated Javascript or CSS Frameworks with **only 24kb of JS and @@ -24,8 +24,8 @@ browsers. - Well-tested and **optimized CSS and Javascript**, including a cross-browser fixed/sticky header, a drawer that even works without Javascript using - the `checkbox:checked` hack with fallbacks, **responsive tables** that scroll - when the screen is too small and **well-defined print styles**. + the `:checked` hack with fallbacks, **responsive tables** that scroll when + the screen is too small and **well-defined print styles**. - Extra configuration options like **project logo**, links to the authors **GitHub and Twitter accounts** and display of the **amount of stars** the @@ -38,7 +38,7 @@ browsers. - **Web application capability** on iOS - when the page is saved to the homescreen, it behaves and looks like a native application. -See the [getting started guide](/getting-started) for instructions how to get +See the [getting started guide](getting-started.md) for instructions how to get it up and running. [material design]: https://www.google.com/design/spec/material-design diff --git a/mkdocs.yml b/mkdocs.yml index e3d57f9e3650be24ee935dfb0e3f6831a8a93548..ebc2ab6b05c0b475cd8c7720b7587656185acd57 100755 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -36,7 +36,7 @@ theme_dir: material # Options extra: - version: 0.1.1 + version: 0.1.2 logo: images/logo.png font: text: Ubuntu diff --git a/package.json b/package.json index 53de0467dc264767ddfff15e5d94c38dd9b226ac..90bd35f189c79f3295f9f19ffbc85c897741bffd 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "mkdocs-material", - "version": "0.1.1", + "version": "0.1.2", "description": "A material design theme for MkDocs", "homepage": "http://squidfunk.github.io/mkdocs-material/", "authors": [ diff --git a/setup.py b/setup.py index f90f2e5001d08202e145a3e6e8c9bc10ca97483a..ab2043347506c7dfe85c007b2c031fe3a0d53851 100644 --- a/setup.py +++ b/setup.py @@ -23,7 +23,7 @@ from setuptools import setup, find_packages # Package description setup( name = 'mkdocs-material', - version = '0.1.1', + version = '0.1.2', url = 'http://squidfunk.github.io/mkdocs-material/', license = 'MIT', description = 'A material design theme for MkDocs',