Skip to content
This repository has been archived by the owner on Oct 13, 2024. It is now read-only.

Commit

Permalink
ci: use rolling releases
Browse files Browse the repository at this point in the history
  • Loading branch information
ReenigneArcher committed Nov 11, 2023
1 parent 308d1fa commit 547953e
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 122 deletions.
118 changes: 0 additions & 118 deletions CHANGELOG.md

This file was deleted.

18 changes: 17 additions & 1 deletion docs/source/about/changelog.rst
Original file line number Diff line number Diff line change
@@ -1 +1,17 @@
.. mdinclude:: ../../../CHANGELOG.md
Changelog
=========

.. only:: epub

You can view the changelog in the
`online version <https://github.com/LizardByte/Themerr-plex/changelog/CHANGELOG.md>`_.

.. only:: html

.. raw:: html

<script type="module" src="https://md-block.verou.me/md-block.js"></script>
<md-block
hmin="2"
src="https://raw.githubusercontent.com/LizardByte/Themerr-plex/changelog/CHANGELOG.md">
</md-block>
14 changes: 11 additions & 3 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
# standard imports
from datetime import datetime
import os
import re
import sys


Expand Down Expand Up @@ -37,8 +36,8 @@
author = 'ReenigneArcher'

# The full version, including alpha/beta/rc tags
with open(os.path.join(root_dir, 'CHANGELOG.md'), 'r') as f:
version = re.search(r"\[((\d+)\.(\d+)\.(\d+))]", str(f.read())).group(1)
# https://docs.readthedocs.io/en/stable/reference/environment-variables.html#envvar-READTHEDOCS_VERSION
version = os.getenv('READTHEDOCS_VERSION', 'dirty')


# -- General configuration ---------------------------------------------------
Expand Down Expand Up @@ -80,6 +79,15 @@
# so a file named "default.css" will overwrite the builtin "default.css".
# html_static_path = ['_static']

# These paths are either relative to html_static_path
# or fully qualified paths (eg. https://...)
# html_css_files = [
# 'css/custom.css',
# ]
html_js_files = [
'js/custom.js',
]

# The theme to use for HTML and HTML Help pages. See the documentation for
# a list of builtin themes.
html_theme = 'sphinx_rtd_theme'
Expand Down

0 comments on commit 547953e

Please sign in to comment.