Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/readthedocs/sphinx_rtd_theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnthony Johnson <aj@ohess.org>2015-09-16 00:20:40 +0300
committerAnthony Johnson <aj@ohess.org>2015-09-16 00:20:40 +0300
commit84b5075f5b8a272b9a6d2689c551a947383bfda7 (patch)
tree929466418e329ec9a944fa328d2486f5647deeef
parent173cdfc14057e003b3bc1b63dd0cb3c3d9004280 (diff)
parent1234f126d852e13fdb5fab009ab84a680ce9a501 (diff)
Merge branch 'rc-0.1.9'0.1.9
-rw-r--r--README.rst16
-rw-r--r--bower.json2
-rw-r--r--sphinx_rtd_theme/__init__.py2
3 files changed, 18 insertions, 2 deletions
diff --git a/README.rst b/README.rst
index 94acd20..f700ffe 100644
--- a/README.rst
+++ b/README.rst
@@ -64,6 +64,22 @@ conf.py file:
Changelog
=========
+v0.1.9
+------
+
+* Intermittent scrollbar visibility bug fixed. This change introduces a
+ backwards incompatible change to the theme's layout HTML. This should only be
+ a problem for derivative themes that have overridden styling of nav elements
+ using direct decendant selectors. See `#215`_ for more information.
+* Safari overscroll bug fixed
+* Version added to the nav header
+* Revision id was added to the documentation footer if you are using RTD
+* An extra block, ``extrafooter`` was added to allow extra content in the
+ document footer block
+* Fixed modernizr URL
+* Small display style changes on code blocks, figure captions, and nav elements
+
+.. _#215: https://github.com/snide/sphinx_rtd_theme/pull/215
v0.1.8
------
diff --git a/bower.json b/bower.json
index bef4ee0..1c15151 100644
--- a/bower.json
+++ b/bower.json
@@ -1,6 +1,6 @@
{
"name": "sphinx-rtd-theme",
- "version": "0.1.7",
+ "version": "0.1.9",
"homepage": "https://github.com/snide/wyrm",
"authors": [
"Dave Snider <dave.snider@gmail.com>"
diff --git a/sphinx_rtd_theme/__init__.py b/sphinx_rtd_theme/__init__.py
index 95ddc52..88ddcce 100644
--- a/sphinx_rtd_theme/__init__.py
+++ b/sphinx_rtd_theme/__init__.py
@@ -5,7 +5,7 @@ From https://github.com/ryan-roemer/sphinx-bootstrap-theme.
"""
import os
-VERSION = (0, 1, 8)
+VERSION = (0, 1, 9)
__version__ = ".".join(str(v) for v in VERSION)
__version_full__ = __version__