mirror of
https://github.com/scottlamb/moonfire-nvr.git
synced 2025-04-01 10:13:43 -04:00
parent
841e06e354
commit
8e8b48b906
@ -6,12 +6,15 @@ 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.5 (2022-05-09)
|
||||||
|
|
||||||
* [#219](https://github.com/scottlamb/moonfire-nvr/issues/219): fix
|
* [#219](https://github.com/scottlamb/moonfire-nvr/issues/219): fix
|
||||||
live stream failing with `ws close: 1006` on URLs with port numbers.
|
live stream failing with `ws close: 1006` on URLs with port numbers.
|
||||||
* build Docker images with link-time optimization.
|
* build Docker images with link-time optimization.
|
||||||
* bump minimum Rust version to 1.60.
|
* bump minimum Rust version to 1.60.
|
||||||
|
* [#224](https://github.com/scottlamb/moonfire-nvr/issues/224): upgrade to
|
||||||
|
Retina 0.3.10, improving compatibility with OMNY M5S2A 2812 cameras that
|
||||||
|
send invalid `rtptime` values.
|
||||||
|
|
||||||
## 0.7.4 (2022-04-13)
|
## 0.7.4 (2022-04-13)
|
||||||
|
|
||||||
|
@ -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.4. Until version 1.0, there will be no
|
Moonfire NVR is currently at version 0.7.5. 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.4"
|
image_name="scottlamb/moonfire-nvr:v0.7.5"
|
||||||
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
|
||||||
|
8
server/Cargo.lock
generated
8
server/Cargo.lock
generated
@ -1029,7 +1029,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "moonfire-db"
|
name = "moonfire-db"
|
||||||
version = "0.7.4"
|
version = "0.7.5"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"base64",
|
"base64",
|
||||||
"blake3",
|
"blake3",
|
||||||
@ -1069,7 +1069,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "moonfire-nvr"
|
name = "moonfire-nvr"
|
||||||
version = "0.7.4"
|
version = "0.7.5"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"base64",
|
"base64",
|
||||||
"blake3",
|
"blake3",
|
||||||
@ -1654,9 +1654,9 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "retina"
|
name = "retina"
|
||||||
version = "0.3.9"
|
version = "0.3.10"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "df90aca400866f8b1327902f7c9e93ab17f195c36b7e06b804e8acd3a79bbe41"
|
checksum = "01358b10b0e442f1cbe1417a888698c88969bfef230290c0aaec65228238a8ca"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"base64",
|
"base64",
|
||||||
"bitreader",
|
"bitreader",
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "moonfire-nvr"
|
name = "moonfire-nvr"
|
||||||
version = "0.7.4"
|
version = "0.7.5"
|
||||||
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.4"
|
version = "0.7.5"
|
||||||
authors = ["Scott Lamb <slamb@slamb.org>"]
|
authors = ["Scott Lamb <slamb@slamb.org>"]
|
||||||
readme = "../README.md"
|
readme = "../README.md"
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user