From d0eb4fd1d7955a731c8f2e22efac0d24a5a83e24 Mon Sep 17 00:00:00 2001 From: Daphne Demekas Date: Mon, 22 Jan 2024 09:30:48 -0700 Subject: [PATCH] new release number and releases nodes --- .gitignore | 6 +++++- RELEASE_NOTES.md | 9 +++++---- diplomat/__init__.py | 2 +- 3 files changed, 11 insertions(+), 6 deletions(-) diff --git a/.gitignore b/.gitignore index b68162c..5fcefde 100644 --- a/.gitignore +++ b/.gitignore @@ -16,4 +16,8 @@ docs/venv/ docs/ENV/ # Ignore pycache files... -**/__pycache__/ \ No newline at end of file +**/__pycache__/ + +.DS_Store + +*.zip diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index e01ef3b..796eb8f 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -1,5 +1,6 @@ Changes for this version of DIPLOMAT: - - Fixed installation process for DIPLOMAT with SLEAP on windows by adding keras dependency. - - Added support for changing some UI appearance settings to DIPLOMAT's supervised and tweak UI. - - Make SLEAP frontend error out unless a user explicitly passes a number of outputs parameter. - - Improved point rendering in the UI (proper alpha transparency support and smoother point rendering). \ No newline at end of file + - Added new memory mode hybrid and set it to the default + - Added a save to disk button to the UI which saves frames to disk when in memory mode + - New configuration file with fixes for the CPU conda environment + - Rename CLI commands from supervised / unsupervised / track / restore to track_and_interact / track / track_with / interact + - Minor UI bug fixes \ No newline at end of file diff --git a/diplomat/__init__.py b/diplomat/__init__.py index aaadacd..db43578 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.0.9" +__version__ = "0.1.0" # Can be used by functions to determine if diplomat was invoked through it's CLI interface. CLI_RUN = False