diff --git a/.bumpversion.cfg b/.bumpversion.cfg index adf75b6..f2e9ec0 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.8.2 +current_version = 0.8.3 commit = True tag = True diff --git a/CHANGELOG.md b/CHANGELOG.md index 580dd2a..72e9140 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,19 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.8.3] - 2022-12-08 +### Added +- Now logs timezone settings for both the host and NVR +- Color logging is now optional and defaults to disabled (to match previous behaviour before v0.8.0) +- Ability to configure download buffer size (bumped default up to 512MiB) +- Event IDs to upload/download logging + +### Fixed +- Log spam when lots of events are missing, this will now only occur if the logging level is set to `EXTRA_DEBUG` (-vv) +- corrected logging not showing smart detection types +- The application no longer stalls when a video is downloaded larger than the available buffer size +- Ability to set the least verbose logging for the docker container + ## [0.8.2] - 2022-12-05 ### Fixed - Fixed issue where command output was being returned with added indentation intended for logging only diff --git a/Dockerfile b/Dockerfile index 4f303f6..df83b00 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,7 +8,7 @@ LABEL maintainer="ep1cman" WORKDIR /app -COPY dist/unifi_protect_backup-0.8.2.tar.gz sdist.tar.gz +COPY dist/unifi_protect_backup-0.8.3.tar.gz sdist.tar.gz RUN \ echo "**** install build packages ****" && \ diff --git a/pyproject.toml b/pyproject.toml index 3d14ae8..71cfb55 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [tool] [tool.poetry] name = "unifi_protect_backup" -version = "0.8.2" +version = "0.8.3" homepage = "https://github.com/ep1cman/unifi-protect-backup" description = "Python tool to backup unifi event clips in realtime." authors = ["sebastian.goscik "] diff --git a/unifi_protect_backup/__init__.py b/unifi_protect_backup/__init__.py index d2266e2..37d563e 100644 --- a/unifi_protect_backup/__init__.py +++ b/unifi_protect_backup/__init__.py @@ -2,7 +2,7 @@ __author__ = """sebastian.goscik""" __email__ = 'sebastian@goscik.com' -__version__ = '0.8.2' +__version__ = '0.8.3' # from .unifi_protect_backup import UnifiProtectBackup from .downloader import VideoDownloader