Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat. replace 'appdirs' (unmaintained) with 'platformdirs' #185

Merged
merged 1 commit into from
May 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
Change Log
==========

## Version 19 (in development)

Changes:

* The dependency on `appdirs`, which has become unmaintained, has been replaced
with `plaformdirs` (184).


## Version 18 (2023-11-09)

Fixed:
Expand Down
4 changes: 2 additions & 2 deletions INSTALL.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ Runtime requirements:

Optional run-time dependencies:

* [appdirs] (for saving your preferences, strongly recommended)
* [platformdirs] (for saving your preferences, strongly recommended)
* [NSM] (for NSM session management support)

The run-time Python dependencies are checked by meson when setting up the
Expand Down Expand Up @@ -129,7 +129,7 @@ The wheel can be installed with `python -m pip install dist/jack_mixer-*.whl`.
[pip]: https://pypi.org/project/pip
[pycairo]: https://pypi.org/project/pycairo/
[PyGObject]: https://pypi.org/project/PyGObject/
[appdirs]: https://pypi.org/project/appdirs/
[platformdirs]: https://pypi.org/project/platformdirs/
[PEP-517]: https://www.python.org/dev/peps/pep-0517/
[pyproject.toml]: ./pyproject.toml
[standard meson options]: https://mesonbuild.com/Builtin-options.html
Expand Down
4 changes: 2 additions & 2 deletions data/locale/jack_mixer-de.po
Original file line number Diff line number Diff line change
Expand Up @@ -400,8 +400,8 @@ msgid "Use system setting"
msgstr "Systemeinstellung benutzen"

#: jack_mixer/gui.py:70
msgid "Cannot load appdirs. "
msgstr "Kann appdirs nicht laden. "
msgid "Cannot load platformdirs. "
msgstr "Kann platformdirs nicht laden. "

#: jack_mixer/gui.py:71
msgid "Your preferences will not be preserved across jack_mixer invocations."
Expand Down
4 changes: 2 additions & 2 deletions data/locale/jack_mixer-es.po
Original file line number Diff line number Diff line change
Expand Up @@ -411,8 +411,8 @@ msgid "Use system setting"
msgstr "Utilizar configuración del sistema"

#: jack_mixer/gui.py:70
msgid "Cannot load appdirs. "
msgstr "No se pudo cargar appdirs. "
msgid "Cannot load platformdirs. "
msgstr "No se pudo cargar platformdirs. "

#: jack_mixer/gui.py:71
msgid "Your preferences will not be preserved across jack_mixer invocations."
Expand Down
Loading