mirror of
https://github.com/scottlamb/moonfire-nvr.git
synced 2024-12-26 07:05:56 -05:00
prep v0.7.7
This commit is contained in:
parent
02ac1a5570
commit
cff832e646
@ -11,7 +11,7 @@ upgrades, e.g. `0.6.x` -> `0.7.x`. The config file format and
|
|||||||
[API](ref/api.md) currently have no stability guarantees, so they may change
|
[API](ref/api.md) currently have no stability guarantees, so they may change
|
||||||
even on minor releases, e.g. `0.7.5` -> `0.7.6`.
|
even on minor releases, e.g. `0.7.5` -> `0.7.6`.
|
||||||
|
|
||||||
## unreleased
|
## 0.7.7 (2023-08-03)
|
||||||
|
|
||||||
* fix [#289](https://github.com/scottlamb/moonfire-nvr/issues/289): crash on
|
* fix [#289](https://github.com/scottlamb/moonfire-nvr/issues/289): crash on
|
||||||
pressing the `Add` button in the sample file directory dialog
|
pressing the `Add` button in the sample file directory dialog
|
||||||
|
@ -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.6. Until version 1.0, there will be no
|
Moonfire NVR is currently at version 0.7.7. 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 @@ ownUidIsPrivileged = true
|
|||||||
# Set your timezone here.
|
# Set your timezone here.
|
||||||
tz="America/Los_Angeles"
|
tz="America/Los_Angeles"
|
||||||
|
|
||||||
image_name="scottlamb/moonfire-nvr:v0.7.6"
|
image_name="scottlamb/moonfire-nvr:v0.7.7"
|
||||||
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
|
||||||
|
4
server/Cargo.lock
generated
4
server/Cargo.lock
generated
@ -1055,7 +1055,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "moonfire-db"
|
name = "moonfire-db"
|
||||||
version = "0.7.6"
|
version = "0.7.7"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"base64",
|
"base64",
|
||||||
"blake3",
|
"blake3",
|
||||||
@ -1092,7 +1092,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "moonfire-nvr"
|
name = "moonfire-nvr"
|
||||||
version = "0.7.6"
|
version = "0.7.7"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"base64",
|
"base64",
|
||||||
"blake3",
|
"blake3",
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "moonfire-nvr"
|
name = "moonfire-nvr"
|
||||||
version = "0.7.6"
|
version = "0.7.7"
|
||||||
authors = ["Scott Lamb <slamb@slamb.org>"]
|
authors = ["Scott Lamb <slamb@slamb.org>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
resolver = "2"
|
resolver = "2"
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "moonfire-db"
|
name = "moonfire-db"
|
||||||
version = "0.7.6"
|
version = "0.7.7"
|
||||||
authors = ["Scott Lamb <slamb@slamb.org>"]
|
authors = ["Scott Lamb <slamb@slamb.org>"]
|
||||||
readme = "../README.md"
|
readme = "../README.md"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
|
Loading…
Reference in New Issue
Block a user