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 Oct 30, 2023
1 parent f311246 commit a90c2d3
Show file tree
Hide file tree
Showing 3 changed files with 29 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>
15 changes: 12 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,9 @@
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)
# Read the Docs will handle this automatically
# https://docs.readthedocs.io/en/stable/reference/environment-variables.html#envvar-READTHEDOCS_VERSION
version = 'dirty'


# -- General configuration ---------------------------------------------------
Expand Down Expand Up @@ -80,6 +80,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 a90c2d3

Please sign in to comment.