From 74e5d4b2e4abbb6c816569b87c291a61f52d2018 Mon Sep 17 00:00:00 2001 From: George Glidden-Handgis <47768122+georgeglidden@users.noreply.github.com> Date: Fri, 14 Jun 2024 13:06:31 -0700 Subject: [PATCH] version 0.1.7 fixes a bug causing sidebar colors not to be updated when the colormap is changed in the settings dropdown. --- RELEASE_NOTES.md | 2 +- diplomat/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index e7ad82f..c9c1f25 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -1,2 +1,2 @@ Changes for this version of DIPLOMAT: - - Fixed a bug in assignment that induced very high rates of swapping between bodies. The Hungarian algorithm is now implemented by linear_sum_assignment from scipy.optimize, defined locally due to dependency issues. This reverts a previous change that implemented the Hungarian algorithm with numba routines. +- sidebar radiobutton label colors now update with video label colors when the colormap is changed in settings menu. diff --git a/diplomat/__init__.py b/diplomat/__init__.py index 4502c0f..b37417c 100644 --- a/diplomat/__init__.py +++ b/diplomat/__init__.py @@ -2,7 +2,7 @@ A tool providing multi-animal tracking capabilities on top of other Deep learning based tracking software. """ -__version__ = "0.1.6" +__version__ = "0.1.7" # Can be used by functions to determine if diplomat was invoked through it's CLI interface. CLI_RUN = False