diff options
author | Wolfgang Müller | 2025-04-02 18:42:04 +0200 |
---|---|---|
committer | Wolfgang Müller | 2025-04-02 18:42:04 +0200 |
commit | 9b08134370c3f218d7d0a2ae001943f13095dbc8 (patch) | |
tree | f08b658d811094335cb18d9ee5cc27addb59c582 | |
parent | cb1fde27abff3c46ec227a575d6764d593b9c99e (diff) | |
download | hircine-9b08134370c3f218d7d0a2ae001943f13095dbc8.tar.gz |
-rw-r--r-- | docs/changelog.rst | 11 | ||||
-rw-r--r-- | docs/setup.rst | 4 | ||||
-rw-r--r-- | frontend/package-lock.json | 4 | ||||
-rw-r--r-- | frontend/package.json | 2 | ||||
-rw-r--r-- | pyproject.toml | 2 |
5 files changed, 17 insertions, 6 deletions
diff --git a/docs/changelog.rst b/docs/changelog.rst index f9e755f..35afb2b 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -1,6 +1,17 @@ Changelog ========= +0.4.3 +----- + +- Comic cards now have the covers aligned to the left. This is especially + useful for double-page covers which now show more relevant content. See + :commit:`f720d55f7a5a0f7a353adcb5a060ec731486965e`. +- URLs may now also be excluded. See + :commit:`cf9801172a175e3580d07729c14778ededf6fcda`. +- Further miscellaneous internal improvements. For the full list of changes, + see `the 0.4.3 log <https://git.oriole.systems/hircine/log/?qt=range&q=0.4.2..0.4.3>`_. + 0.4.2 ----- diff --git a/docs/setup.rst b/docs/setup.rst index 3eaeed6..d39098d 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.4.2-py3-none-any.whl>`_ and +<https://hircine.oriole.systems/dist/hircine-0.4.3-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.4.2 "Profligate Pixie" + hircine 0.4.3 "Profligate Pixie" .. important:: diff --git a/frontend/package-lock.json b/frontend/package-lock.json index 08d65f4..f9d7570 100644 --- a/frontend/package-lock.json +++ b/frontend/package-lock.json @@ -1,12 +1,12 @@ { "name": "hircine", - "version": "0.4.2", + "version": "0.4.3", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "hircine", - "version": "0.4.2", + "version": "0.4.3", "license": "ISC", "dependencies": { "@jsonurl/jsonurl": "^1.1.8", diff --git a/frontend/package.json b/frontend/package.json index c826e1b..a9b3920 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -1,6 +1,6 @@ { "name": "hircine", - "version": "0.4.2", + "version": "0.4.3", "license": "ISC", "private": true, "scripts": { diff --git a/pyproject.toml b/pyproject.toml index 8e75701..2a7e7c2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "hircine" -version = "0.4.2" +version = "0.4.3" description = "A web-based comic organizer" authors = ["Wolfgang Müller <wolf@oriole.systems>"] license = "ISC" |