Skip to content

Releases: ppfeufer/aa-intel-tool

4.1.1

Choose a tag to compare

@ppfeufer ppfeufer released this 06 Jul 21:06
d4ff349

[4.1.1] - 2026-07-06

Added

  • Support for Python 3.14

Changed

  • Translations updated

What's Changed

Full Changelog: v4.1.0...v4.1.1

4.1.0

Choose a tag to compare

@ppfeufer ppfeufer released this 24 Jun 09:16
d156d81

[4.1.0] - 2026-06-24

Fixed

  • Unexpected argument corp_id
  • alliance_name cannot be NULL

What's Changed

Full Changelog: v4.0.0...v4.1.0

4.0.0

Choose a tag to compare

@ppfeufer ppfeufer released this 07 Jun 10:24
215cbaa

[4.0.0] - 2026-06-07

Important

This version needs Alliance Auth v5!

Please make sure to update your Alliance Auth instance before you install this
version, otherwise an update to Alliance Auth will be pulled in unsupervised.

Changed

  • Some minor responsiveness improvements to the result tables

Removed

  • Support for Alliance Auth v4

What's Changed

Full Changelog: v3.1.0...v4.0.0

3.1.0

Choose a tag to compare

@ppfeufer ppfeufer released this 02 Jun 12:12
508baad

[3.1.0] - 2026-06-02

Fixed

  • Grammar - No space before ellipsis

Changed

  • Modular providers
  • Translations updated

What's Changed

Full Changelog: v3.0.2...v3.1.0

3.0.2

Choose a tag to compare

@ppfeufer ppfeufer released this 05 May 13:56
42a8e15

[3.0.2] - 2026-05-05

Changed

  • Translations updated

Miscellaneous

  • Ready for Alliance Auth v5

What's Changed

Full Changelog: v3.0.1...v3.0.2

3.0.1

Choose a tag to compare

@ppfeufer ppfeufer released this 07 Apr 16:20
ac217b4

[3.0.1] - 2026-04-07

Changed

  • Translations updated

What's Changed

Full Changelog: v3.0.0...v3.0.1

3.0.0

Choose a tag to compare

@ppfeufer ppfeufer released this 26 Feb 11:27
ccb4785

[3.0.0] - 2026-02-26

Warning

This version includes a dependency change, so please make sure to read the update
instructions carefully before updating to this version, otherwise, the app will
not work properly.

Fixed

  • context["parser_title"] being set at the wrong time

Changed

  • Replace eveuniverse with either SDE or ESI calls

Update Instructions

After installing this version, modify your INSTALLED_APPS in your local.py (or
conf/local.py for Docker installations):

INSTALLED_APPS = [
    # ...
    "eve_sde",  # Only if not already added for another app
    "aa_intel_tool",  # This one should already be in there
    # ...
]

# This line is right below the `INSTALLED_APPS` list, and only if not already added for another app
INSTALLED_APPS = ["modeltranslation"] + INSTALLED_APPS

Add the following new task to ensure the SDE data is kept up to date, if you haven't already added it for another app:

if "eve_sde" in INSTALLED_APPS:
    # Run at 12:00 UTC each day
    CELERYBEAT_SCHEDULE["EVE SDE :: Check for SDE Updates"] = {
        "task": "eve_sde.tasks.check_for_sde_updates",
        "schedule": crontab(minute="0", hour="12"),
    }

Migrate and populate SDE:

python manage.py migrate eve_sde
python manage.py esde_load_sde

Migare the app and run static collection:

python manage.py migrate aa_intel_tool
python manage.py collectstatic --noinput

What's Changed

Full Changelog: v2.13.1...v3.0.0

2.13.1

Choose a tag to compare

@ppfeufer ppfeufer released this 03 Feb 11:36
163cab2

[2.13.1] - 2026-02-03

Changed

  • Dicts to Enum where applicable
  • Translations updated

What's Changed

Full Changelog: v2.13.0...v2.13.1

2.13.0

Choose a tag to compare

@ppfeufer ppfeufer released this 22 Jan 23:00
94ea20c

[2.13.0] - 2026-01-22

Important

This version is utilising features that are only available in Alliance Auth >= 4.12.0.
Please make sure to update your Alliance Auth instance before installing this version,
otherwise, an update to Alliance Auth will be pulled in unsupervised.

Changed

  • Switched to DataTables 2 provided by Alliance Auth, instead of bundling it ourselves
  • Minimum requirements:
    • Alliance Auth >= 4.12.0

What's Changed

Full Changelog: v2.12.1...v2.13.0

2.12.1

Choose a tag to compare

@ppfeufer ppfeufer released this 05 Jan 20:46
8d65f94

[2.12.1] - 2026-01-05

Changed

  • Translations updated

What's Changed

Full Changelog: v2.12.0...v2.12.1