Aa-intel-tool

Latest version: v2.6.1

Safety actively analyzes 722032 Python packages for vulnerabilities to keep your Python projects secure.

Scan your dependencies

Page 4 of 6

1.0.1

This version is purely to push changes in the README to Pypi.

Fixed

- Some little whoopsies in README

1.0.0

**First Public Release**

Added

- MySQL script to drop the DB tables

Fixed

- Pilots in fleet count on fleet composition result page
- Missing semicolons in JavaScripts
- JS function attribute name
- Translations cleaned up

Changed

- Migrations from Alpha-versions reset

Update Instructions for Updating From an Alpha-Version

> **Note**
>
> If you have installed one of the Alpa-Versions before, make sure to follow these
> instructions **before** you update to this version. If you install this app for the
> very first time, feel free to happily ignore this section.

Remove the Migrations and DB Tables

During the alpha phase a number of DB migrations accumulated, which is, for obvious
reasons, not ideal for the first public version to have. So, they need to be reset.
This will happen in 2 steps.

From Django

Run the following command in your virtual environment:

shell
python manage.py migrate aa_intel_tool zero --fake


This will remove the migration information from Django.

From Your MySQL Database

Now you need to remove the DB tables. This needs to be done to make sure the new
migration runs without issues. Don't worry, this is not hard at all, I've prepared a
little something for you.

All you need to do is, log in to your MySQL server from your console. and select the
Alliance Auth DB.

Log in:

shell
mysql -h localhost -u allianceserver -p


Switch to the `alliance_auth` DB:

mysql
USE alliance_auth;


Now copy/paste the following:

mysql
SET FOREIGN_KEY_CHECKS=0;
DROP TABLE IF EXISTS aa_intel_tool_scandata;
DROP TABLE IF EXISTS aa_intel_tool_scan;
SET FOREIGN_KEY_CHECKS=1;


Once done, exit out of your MySQL server and run the update as usual.

0.0.1alpha.14

Hopefully the last one before official release …

Added

- Fleet composition scan as intel type

Changed

- Moved template designation to `SUPPORTED_INTEL_TYPES` constant
- Translation files updated

0.0.1alpha.13

Added

- `fetchAjaxData` function introduced to our JS framework

0.0.1alpha.12

Added

- Upwell structures on grid to D-Scan result page
- Deployables on grid to D-Scan result page
- Pos / Pos Modules on grid to D-Scan result page
- Destination system to Ansiblex Jump Gate in D-Scan

Changed

- Chat list parser re-enabled. See Warning in [README.md](https://github.com/ppfeufer/aa-intel-tool/blob/master/README.md#settings) (=> Settings).

0.0.1alpha.11

Changed

- Sticky highlight in D-Scan tables re-introduced
- "On grid" detection for Upwell structures improved
- Only show a D-Scan table when there is actual data available

Page 4 of 6

© 2025 Safety CLI Cybersecurity Inc. All Rights Reserved.