Skip to content
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
13 changes: 11 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,18 +13,23 @@ Highlighting:
https://docs.github.com/assets/cb-41128/mw-1440/images/help/writing/alerts-rendered.webp

> [!NOTE]
>
> Highlights information that users should take into account, even when skimming.

> [!TIP]
>
> Optional information to help a user be more successful.

> [!IMPORTANT]
>
> Crucial information necessary for users to succeed.

> [!WARNING]
>
> Urgent info that needs immediate user attention to avoid problems.

> [!CAUTION]
>
> Advised about risks or negative outcomes of certain actions.
-->

Expand All @@ -44,6 +49,8 @@ Section Order:

<!-- Your changes go here -->

## [5.1.0] - 2026-08-04

> [!IMPORTANT]
>
> **This version needs Alliance Auth v5.2.0 or newer!**
Expand All @@ -55,7 +62,8 @@ Section Order:

- Use `pk` instead of `id` when referring to the primary key of a model instance, since `id` is not guaranteed to be the primary key in Django.
- Migrated to Alliance Auth proxy models for `Permission`, `User` and `Group`
- CSS modernized
- CSS modernized (If you have an older browser that can't handle the new CSS, update your browser…)
- Translations updated

## [5.0.1] - 2026-07-07

Expand Down Expand Up @@ -1133,5 +1141,6 @@ And restart your supervisor.
[4.2.0]: https://github.com/ppfeufer/aa-sov-timer/compare/v4.1.0...v4.2.0 "v4.2.0"
[5.0.0]: https://github.com/ppfeufer/aa-sov-timer/compare/v4.2.0...v5.0.0 "v5.0.0"
[5.0.1]: https://github.com/ppfeufer/aa-sov-timer/compare/v5.0.0...v5.0.1 "v5.0.1"
[5.1.0]: https://github.com/ppfeufer/aa-sov-timer/compare/v5.0.1...v5.1.0 "v5.1.0"
[alliance auth 3.0.0 release notes]: https://gitlab.com/allianceauth/allianceauth/-/tags/v3.0.0 "Alliance Auth 3.0.0 release notes"
[in development]: https://github.com/ppfeufer/aa-sov-timer/compare/v5.0.1...HEAD "In Development"
[in development]: https://github.com/ppfeufer/aa-sov-timer/compare/v5.1.0...HEAD "In Development"
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ Make sure you're in the virtual environment (venv) of your Alliance Auth install
Then install the latest version:

```shell
pip install aa-sov-timer==5.0.1
pip install aa-sov-timer==5.1.0
```

#### Step 2: Update Your AA Settings<a name="step-2-update-your-aa-settings"></a>
Expand Down Expand Up @@ -168,7 +168,7 @@ Once you have completed all previous steps, restart your AA supervisor service t
Add the app to your `conf/requirements.txt`:

```text
aa-sov-timer==5.0.1
aa-sov-timer==5.1.0
```

#### Step 2: Update Your AA Settings<a name="step-2-update-your-aa-settings-1"></a>
Expand Down Expand Up @@ -265,7 +265,7 @@ Then run the following commands from your AA project directory (the one that
contains `manage.py`).

```shell
pip install aa-sov-timer==5.0.1
pip install aa-sov-timer==5.1.0

python manage.py collectstatic
python manage.py migrate
Expand All @@ -278,7 +278,7 @@ Finally, restart your AA supervisor service.
To update your existing installation of AA Sovereignty Timer, all you need to do is to update the respective line in your `conf/requirements.txt` file to the latest version.

```text
aa-sov-timer==5.0.1
aa-sov-timer==5.1.0
```

Now rebuild your containers and restart them:
Expand Down
Binary file modified aa-sov-timer-models.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion sovtimer/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# Django
from django.utils.translation import gettext_lazy as _

__version__ = "5.0.1"
__version__ = "5.1.0"
__title__ = "Sovereignty Timer"
__title_translated__ = _("Sovereignty Timer")

Expand Down
14 changes: 7 additions & 7 deletions sovtimer/locale/django.pot
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: AA Sov Timer 5.0.1\n"
"Project-Id-Version: AA Sov Timer 5.1.0\n"
"Report-Msgid-Bugs-To: https://github.com/ppfeufer/aa-sov-timer/issues\n"
"POT-Creation-Date: 2026-07-07 10:23+0200\n"
"POT-Creation-Date: 2026-08-04 06:48+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
Expand All @@ -35,23 +35,23 @@ msgstr ""
msgid "Alliances"
msgstr ""

#: sovtimer/models.py:161
#: sovtimer/models.py:159
msgid "Sovereignty structure"
msgstr ""

#: sovtimer/models.py:162
#: sovtimer/models.py:160
msgid "Sovereignty structures"
msgstr ""

#: sovtimer/models.py:242
#: sovtimer/models.py:240
msgid "Sov Hub defense"
msgstr ""

#: sovtimer/models.py:270
#: sovtimer/models.py:268
msgid "Sovereignty campaign"
msgstr ""

#: sovtimer/models.py:271
#: sovtimer/models.py:269
msgid "Sovereignty campaigns"
msgstr ""

Expand Down
Loading