From 10b2be3d54453793176822ac18a7c4b31164b4c9 Mon Sep 17 00:00:00 2001 From: Scott Lamb Date: Wed, 10 Mar 2021 17:53:29 -0800 Subject: [PATCH] changelog, including upcoming 0.6.2 --- CHANGELOG.md | 31 +++++++++++++++++++++++++++++++ server/Cargo.toml | 2 +- 2 files changed, 32 insertions(+), 1 deletion(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..b336435 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,31 @@ +# Moonfire NVR change log + +Below are some highlights in each release. For a full description of all +changes, see Git history. + +Each release is tagged in Git and on the Docker repository +[`scottlamb/moonfire-nvr`](https://hub.docker.com/r/scottlamb/moonfire-nvr). + +## `v0.6.2` (in progress) + +* Fix panics when a stream's PTS has extreme jumps (#113) +* Improve logging. Console log output is now color-coded. ffmpeg errors + and panics are now logged in the same way as other messages. +* Fix an error that could prevent the `moonfire-nvr check --delete-orphan-rows` + command from actually deleting rows. + +## `v0.6.1` + +* Improve the server's error messages on the console and in logs. +* Switch the UI build from the `yarn` package manager to `npm`. + This makes Moonfire NVR a bit easier to build from scratch. +* Extend the `moonfire-nvr check` command to clean up several problems that + can be caused by filesystem corruption. +* Set the page size to 16 KiB on `moonfire-nvr init` and + `moonfire-nvr upgrade`. This improves performance. +* Fix mangled favicons (#105) + +## `v0.6.0` + +This is the first tagged version and first Docker image release. I chose the +version number 0.6.0 to match the current schema version 6. diff --git a/server/Cargo.toml b/server/Cargo.toml index b582898..5866974 100644 --- a/server/Cargo.toml +++ b/server/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "moonfire-nvr" -version = "0.6.1" +version = "0.6.2-dev" authors = ["Scott Lamb "] edition = "2018" license-file = "../LICENSE.txt"