prepare v0.7.4
This commit is contained in:
parent
18f29f8bdb
commit
13bfb76855
|
@ -6,9 +6,11 @@ changes, see Git history.
|
||||||
Each release is tagged in Git and on the Docker repository
|
Each release is tagged in Git and on the Docker repository
|
||||||
[`scottlamb/moonfire-nvr`](https://hub.docker.com/r/scottlamb/moonfire-nvr).
|
[`scottlamb/moonfire-nvr`](https://hub.docker.com/r/scottlamb/moonfire-nvr).
|
||||||
|
|
||||||
## unreleased
|
## 0.7.4 (2022-04-13)
|
||||||
|
|
||||||
* upgrade to Retina 0.3.9, improving camera interop and diagnostics
|
* upgrade to Retina 0.3.9, improving camera interop and diagnostics.
|
||||||
|
Fixes [#213](https://github.com/scottlamb/moonfire-nvr/issues/213),
|
||||||
|
[#209](https://github.com/scottlamb/moonfire-nvr/issues/209).
|
||||||
* [#217](https://github.com/scottlamb/moonfire-nvr/issues/217): no longer
|
* [#217](https://github.com/scottlamb/moonfire-nvr/issues/217): no longer
|
||||||
drop the connection to the camera when it changes video parameters, instead
|
drop the connection to the camera when it changes video parameters, instead
|
||||||
continuing the run seamlessly.
|
continuing the run seamlessly.
|
||||||
|
|
|
@ -35,7 +35,7 @@ There's no support yet for motion detection, no https/TLS support (you'll
|
||||||
need a proxy server, as described [here](guide/secure.md)), and only a
|
need a proxy server, as described [here](guide/secure.md)), and only a
|
||||||
console-based (rather than web-based) configuration UI.
|
console-based (rather than web-based) configuration UI.
|
||||||
|
|
||||||
Moonfire NVR is currently at version 0.7.3. Until version 1.0, there will be no
|
Moonfire NVR is currently at version 0.7.4. Until version 1.0, there will be no
|
||||||
compatibility guarantees: configuration and storage formats may change from
|
compatibility guarantees: configuration and storage formats may change from
|
||||||
version to version. There is an [upgrade procedure](guide/schema.md) but it is
|
version to version. There is an [upgrade procedure](guide/schema.md) but it is
|
||||||
not for the faint of heart.
|
not for the faint of heart.
|
||||||
|
|
|
@ -85,7 +85,7 @@ own_uid_is_privileged = true
|
||||||
# Set your timezone here.
|
# Set your timezone here.
|
||||||
tz="America/Los_Angeles"
|
tz="America/Los_Angeles"
|
||||||
|
|
||||||
image_name="scottlamb/moonfire-nvr:v0.7.2"
|
image_name="scottlamb/moonfire-nvr:v0.7.4"
|
||||||
container_name="moonfire-nvr"
|
container_name="moonfire-nvr"
|
||||||
common_docker_run_args=(
|
common_docker_run_args=(
|
||||||
--mount=type=bind,source=/var/lib/moonfire-nvr,destination=/var/lib/moonfire-nvr
|
--mount=type=bind,source=/var/lib/moonfire-nvr,destination=/var/lib/moonfire-nvr
|
||||||
|
|
|
@ -1040,7 +1040,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "moonfire-db"
|
name = "moonfire-db"
|
||||||
version = "0.7.3"
|
version = "0.7.4"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"base64",
|
"base64",
|
||||||
"blake3",
|
"blake3",
|
||||||
|
@ -1080,7 +1080,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "moonfire-nvr"
|
name = "moonfire-nvr"
|
||||||
version = "0.7.3"
|
version = "0.7.4"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"base64",
|
"base64",
|
||||||
"blake3",
|
"blake3",
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "moonfire-nvr"
|
name = "moonfire-nvr"
|
||||||
version = "0.7.3"
|
version = "0.7.4"
|
||||||
authors = ["Scott Lamb <slamb@slamb.org>"]
|
authors = ["Scott Lamb <slamb@slamb.org>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
resolver = "2"
|
resolver = "2"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "moonfire-db"
|
name = "moonfire-db"
|
||||||
version = "0.7.3"
|
version = "0.7.4"
|
||||||
authors = ["Scott Lamb <slamb@slamb.org>"]
|
authors = ["Scott Lamb <slamb@slamb.org>"]
|
||||||
readme = "../README.md"
|
readme = "../README.md"
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
|
|
Loading…
Reference in New Issue