summaryrefslogtreecommitdiffstatshomepage
path: root/docs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--docs/changelog.rst17
-rw-r--r--docs/conf.py5
-rw-r--r--docs/setup.rst4
-rw-r--r--docs/usage/reading.rst4
4 files changed, 26 insertions, 4 deletions
diff --git a/docs/changelog.rst b/docs/changelog.rst
index 0426a5d..2b4d130 100644
--- a/docs/changelog.rst
+++ b/docs/changelog.rst
@@ -1,12 +1,25 @@
Changelog
=========
+0.2.0
+-----
+
+- Update to Svelecte 4. See :commit:`f530348de4aa5db05eff44c801af6251200372cf`.
+- The reader now shows loading indicators if loading takes too long. See
+ :commit:`d297c6310a6a4db8dd7cc3efe6ff59620deadcc0`.
+- The reader now preloads the surrounding pages automatically. See
+ :commit:`4d710514f5d7931bfd0673c6d44c5a1d725a5cd3`.
+- The reader now shows a simple page indicator. See
+ :commit:`ed4f65804c8aef47367241d57caa5ac39fe0ce8f`.
+- The reader now supports switching to the first or last page using the
+ ``Home`` and ``End`` keys respectively. See
+ :commit:`4e6425585be1e9f2e2b9bc6dc5a5d3ba0f611d27`.
+
0.1.1
-----
- Use ``float`` instead of ``int`` in the GraphQL schema for the Archive size.
- See `ddeeb37
- <https://git.oriole.systems/hircine/commit/?id=ddeeb372250409da1f31a0522fb715e552c1f450>`_.
+ See :commit:`ddeeb372250409da1f31a0522fb715e552c1f450`.
0.1.0 "Satanic Satyr"
---------------------
diff --git a/docs/conf.py b/docs/conf.py
index 53eac6b..a3d9bdc 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -11,6 +11,7 @@ copyright = "2022-2024, Wolfgang Müller"
extensions = [
"sphinx.ext.autodoc",
"sphinx.ext.intersphinx",
+ "sphinx_issues",
]
templates_path = ["_templates"]
exclude_patterns = []
@@ -29,3 +30,7 @@ intersphinx_mapping = {
"python": ("https://docs.python.org/3", None),
"packaging": ("https://packaging.python.org/en/latest", None),
}
+
+issues_default_group_project = "/hircine"
+issues_commit_uri = "https://git.oriole.systems/{project}/commit/?id={commit}"
+issues_commit_prefix = ""
diff --git a/docs/setup.rst b/docs/setup.rst
index bc91f6f..af0cc36 100644
--- a/docs/setup.rst
+++ b/docs/setup.rst
@@ -43,7 +43,7 @@ Installation
``VENVDIR``.
Once the environment is set up, download the `latest wheel
-<https://hircine.oriole.systems/dist/hircine-0.1.1-py3-none-any.whl>`_ and
+<https://hircine.oriole.systems/dist/hircine-0.2.0-py3-none-any.whl>`_ and
install it using `pip <https://pip.pypa.io/en/stable/>`_:
.. code-block:: console
@@ -55,7 +55,7 @@ Now the ``hircine`` command is available from within your shell:
.. code-block:: console
(.venv) $ hircine version
- hircine 0.1.1 "Satanic Satyr"
+ hircine 0.2.0 "Satanic Satyr"
.. important::
diff --git a/docs/usage/reading.rst b/docs/usage/reading.rst
index f48e4c6..5f8b60c 100644
--- a/docs/usage/reading.rst
+++ b/docs/usage/reading.rst
@@ -37,6 +37,10 @@ Additionally, the following keyboard shortcuts are available:
+-------------+ |
| Backspace | |
+-------------+----------------------------------------------------+
+| Home | Go to first page. |
++-------------+----------------------------------------------------+
+| End | Go to last page. |
++-------------+----------------------------------------------------+
Editing when reading
--------------------