Skip to content

Commit

Permalink
0.5.5
Browse files Browse the repository at this point in the history
  • Loading branch information
QuantumEntangledAndy committed Mar 3, 2023
1 parent 70e6217 commit 4fcaf4d
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "neolink"
description = "A standards-compliant bridge to Reolink IP cameras"
version = "0.5.4"
version = "0.5.5"
authors = ["George Hilliard <[email protected]>", "Andrew King <[email protected]>"]
edition = "2018"
default-run = "neolink"
Expand All @@ -17,7 +17,7 @@ test = false
bench = false

[dependencies]
neolink_core = { path = "crates/core", version = "0.5.4" }
neolink_core = { path = "crates/core", version = "0.5.5" }
aes = "0.6"
cfb-mode = "0.6"
cookie-factory = "0.3"
Expand Down
14 changes: 14 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ with additional features not yet in upstream master.
- Protocol more closely follows offical reolink format
- Possibly can handle more simulatenous connections
- More ways to connect to the camera. Including Relaying through reolink servers
- Camera battery levels can be displayed in the log

## Installation

Expand Down Expand Up @@ -159,6 +160,19 @@ Then start the rtsp server as usual:
./neolink rtsp --config=neolink.toml
```

### Battery Levels

If you have a battery camera and would like to see the battery messages in the log
add the following to your config

```toml
[[cameras]]
# Usual camera options like uid etc
print_format = "Human"
```

You can also print into xml format with `print_format = "Xml"` which can then be passed
by a script for processing.

### Docker

Expand Down
2 changes: 1 addition & 1 deletion crates/core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "neolink_core"
description = "Core services and structure for Reolink IP cameras"
version = "0.5.4"
version = "0.5.5"
authors = ["George Hilliard <[email protected]>", "Andrew King <[email protected]>"]
edition = "2018"

Expand Down

0 comments on commit 4fcaf4d

Please sign in to comment.