diff options
Diffstat (limited to '')
-rw-r--r-- | docs/source/conf.py | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/docs/source/conf.py b/docs/source/conf.py index 3a2d8f2..4f94dba 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -229,7 +229,6 @@ lexers['custsqlite'] = CustSqliteLexer(startinline=True) # coming with Sphinx (named 'sphinx.ext.*') or your custom ones. extensions = [ 'sphinx.ext.coverage', - "sphinx_rtd_theme", 'sphinx_copybutton', 'sphinx-jsonschema', 'sphinx-prompt', @@ -257,9 +256,9 @@ copyright = u'2023, Tim Stack' # built documents. # # The short X.Y version. -version = '0.11' +version = '0.12' # The full version, including alpha/beta/rc tags. -release = '0.11.1' +release = '0.12.1' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. @@ -299,7 +298,7 @@ pygments_style = 'sphinx' # The theme to use for HTML and HTML Help pages. See the documentation for # a list of builtin themes. -html_theme = 'sphinx_rtd_theme' +html_theme = 'furo' # Theme options are theme-specific and customize the look and feel of a theme # further. For a list of options available for each theme, see the @@ -312,7 +311,7 @@ html_theme_options = { # The name for this set of Sphinx documents. If None, it defaults to # "<project> v<release> documentation". -# html_title = None +html_title = f"lnav v{release}" # A shorter title for the navigation bar. Default is the same as html_title. # html_short_title = None |