Skip to content

Commit

Permalink
v1.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
chrissimpkins committed Sep 30, 2020
1 parent 1b6357e commit 06284c7
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
## Changelog

### v1.0.5

- fixed: long menu scrolling bug with base.css and base.min.css updates (#94)

### v1.0.4

- fixed: default highlightjs support is supposed to be active by default and is not supposed to require configuration in the `mkdocs.yml` file. This behavior was restored after recent changes. highlightjs support can be removed by setting `theme > highlightjs` to `false`.
Expand Down
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ Then navigate to the root of your project directory:

Download the Cinder theme archive by clicking the button below.

<a href="https://github.com/chrissimpkins/cinder/archive/v1.0.4.zip"><button type="button" class="btn btn-success"><i class="fas fa-cloud-download-alt fa-3x"></i> </br> <span style="font-size:20px;">Download Cinder</span></button></a>
<a href="https://github.com/chrissimpkins/cinder/archive/v1.0.5.zip"><button type="button" class="btn btn-success"><i class="fas fa-cloud-download-alt fa-3x"></i> </br> <span style="font-size:20px;">Download Cinder</span></button></a>

Unpack the contents of the archive into a directory named `cinder` at the top level of your MkDocs project directory.

Expand Down
8 changes: 6 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from setuptools import setup, find_packages

VERSION = "1.0.4"
VERSION = "1.0.5"


setup(
Expand All @@ -13,6 +13,10 @@
author_email="[email protected]",
packages=find_packages(),
include_package_data=True,
entry_points={"mkdocs.themes": ["cinder = cinder",]},
entry_points={
"mkdocs.themes": [
"cinder = cinder",
]
},
zip_safe=False,
)

0 comments on commit 06284c7

Please sign in to comment.