Skip to content

bayanat v1.2

Compare
Choose a tag to compare
@sjacgit sjacgit released this 23 Mar 22:00
· 38 commits to main since this release
  • Data import tool to import video and image files in bulk from local folders
  • Change Actor to Bulletin relationship type to multi
  • PDF viewer
  • Fixed a bug with mixed content in Locations
  • Fixed a bug with password change for users
  • Fixed a bug with pages number in Labels dashboard
  • Fixed a bug with removing a related Actor from an Incident

To upgrade from v1.1, you'll need to run the following in PostgreSQL terminal:

alter table atob alter COLUMN related_as type integer[] using ARRAY[related_as];
update atob set related_as = '{}' where related_as='{NULL}';

This is to accommodate Actor to Bulletin relationship changes and migrate any existing relationships.

A new system package needs to be installed:

sudo apt install libimage-exiftool-perl

And requirements need to be updated:

cd bayanat
virtualenv env -p python3
source env/bin/activate
pip3 install -r requirements.txt