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
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,12 @@ Section Order:

<!-- Your changes go here -->

## [3.3.0] - 2025-12-02

### Changed

- Ajax call refactored
- Translations updated

### Removed

Expand Down Expand Up @@ -903,5 +906,6 @@ And restart your supervisor.
[3.1.0]: https://github.com/ppfeufer/aa-sov-timer/compare/v3.0.0...v3.1.0 "v3.1.0"
[3.2.0]: https://github.com/ppfeufer/aa-sov-timer/compare/v3.1.0...v3.2.0 "v3.2.0"
[3.2.1]: https://github.com/ppfeufer/aa-sov-timer/compare/v3.2.0...v3.2.1 "v3.2.1"
[3.3.0]: https://github.com/ppfeufer/aa-sov-timer/compare/v3.2.1...v3.3.0 "v3.3.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/v3.2.1...HEAD "In Development"
[in development]: https://github.com/ppfeufer/aa-sov-timer/compare/v3.3.0...HEAD "In Development"
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,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==3.2.1
pip install aa-sov-timer==3.3.0
```

#### Step 2: Update Your AA Settings<a name="step-2-update-your-aa-settings"></a>
Expand Down Expand Up @@ -129,7 +129,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==3.2.1
aa-sov-timer==3.3.0
```

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

```shell
pip install aa-sov-timer==3.2.1
pip install aa-sov-timer==3.3.0

python manage.py collectstatic
python manage.py migrate
Expand All @@ -215,7 +215,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==3.2.1
aa-sov-timer==3.3.0
```

Now rebuild your containers and restart them:
Expand Down
7 changes: 0 additions & 7 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

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__ = "3.2.1"
__version__ = "3.3.0"
__title__ = "Sovereignty Timer"
__title_translated__ = _("Sovereignty Timer")

Expand Down
4 changes: 2 additions & 2 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 3.2.1\n"
"Project-Id-Version: AA Sov Timer 3.3.0\n"
"Report-Msgid-Bugs-To: https://github.com/ppfeufer/aa-sov-timer/issues\n"
"POT-Creation-Date: 2025-11-25 08:50+0100\n"
"POT-Creation-Date: 2025-12-02 08:28+0100\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 Down
Loading