Skip to content

Commit

Permalink
release 0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
schettino72 committed May 26, 2019
1 parent 1c52703 commit 81444cf
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 9 deletions.
2 changes: 1 addition & 1 deletion CHANGES
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Changes
=======


0.4.0 (*unreleased*)
0.4.0 (*2019-05-27*)
====================

- fix reading cached toctree data
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
A modern responsive theme for python's [Sphinx](http://www.sphinx-doc.org) documentation generator.

See it in action on Press Theme own [website](https://schettino72.github.io/sphinx_press_site/)
See it in action on Press Theme own [website](https://schettino72.github.io/sphinx_press_site/)


This theme is based on [VuePress](https://vuepress.vuejs.org/).
It uses [Vue.js](https://vuejs.org/) & [Stylus](http://stylus-lang.com/) managed by
[webpack](https://webpack.js.org/) (through [vue-cli](https://cli.vuejs.org/)).


**Press** theme is still in **BETA**, some core Sphinx features still not available.
**Press** theme is still in **BETA**.
Contributions are welcome.

## Usage
Expand Down
3 changes: 1 addition & 2 deletions docs/source/about.rst
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ See details on `Sphinx theming docs <http://www.sphinx-doc.org/en/master/theming
Status
======

**Press** theme is still in **BETA**, some core Sphinx features
still not available.
**Press** theme is still in **BETA**.

Contributions are welcome.
1 change: 1 addition & 0 deletions docs/source/who.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ Who is using **Press** Theme
If you this theme please add your site below:


- `doit <https://pydoit.org>`_
- `Crudcast <https://crudcast.readthedocs.io/en/latest/>`_
- `Friendly ML Tutorial <https://aunnnn.github.io/ml-tutorial/html/index.html>`_
- `Kube Control <https://ktl.leftxs.org/>`_
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setup(
name='sphinx_press_theme',
version='0.4.dev0',
version='0.4.0',
url='https://schettino72.github.io/sphinx_press_site/',
license='MIT',
author='Eduardo Naufel Schettino <schetino72>',
Expand Down
2 changes: 1 addition & 1 deletion sphinx_press_theme/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from sphinx import addnodes
from sphinx.util.osutil import relative_uri

__version__ = (0, 3, 0)
__version__ = (0, 4, 0)


class SimpleTocTreeCollector(EnvironmentCollector):
Expand Down
8 changes: 6 additions & 2 deletions sphinx_press_theme/layout.html
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,8 @@
{%- block extrahead %} {% endblock %}
</head>

<body><div id="app" class="theme-container" :class="pageClasses">
<body>
<div id="app" class="theme-container" :class="pageClasses">
{%- block container %}
{%- block header %}{%- include "util/navbar.html" %}{% endblock %}

Expand Down Expand Up @@ -83,5 +84,8 @@
</page>

{%- endblock container %}
</div></body>
</div>
{% block footer_scripts %}
{% endblock %}
</body>
</html>

0 comments on commit 81444cf

Please sign in to comment.