v1.2.0
This commit is contained in:
parent
6ceaa5abfa
commit
9deee838c9
2
Cargo.lock
generated
2
Cargo.lock
generated
@ -204,7 +204,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "restream"
|
name = "restream"
|
||||||
version = "1.1.0"
|
version = "1.2.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"anyhow",
|
"anyhow",
|
||||||
"clap",
|
"clap",
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "restream"
|
name = "restream"
|
||||||
version = "1.1.0"
|
version = "1.2.0"
|
||||||
authors = ["Rien Maertens <rien.maertens@posteo.be>"]
|
authors = ["Rien Maertens <rien.maertens@posteo.be>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
|
|
||||||
|
@ -1,5 +1,8 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
|
# Current reStream.sh version
|
||||||
|
version="1.2.0"
|
||||||
|
|
||||||
# default values for arguments
|
# default values for arguments
|
||||||
remarkable="10.11.99.1" # remarkable connected through USB
|
remarkable="10.11.99.1" # remarkable connected through USB
|
||||||
landscape=true # rotate 90 degrees to the right
|
landscape=true # rotate 90 degrees to the right
|
||||||
@ -15,6 +18,10 @@ unsecure_connection=false # Establish a unsecure connection that is faster
|
|||||||
# loop through arguments and process them
|
# loop through arguments and process them
|
||||||
while [ $# -gt 0 ]; do
|
while [ $# -gt 0 ]; do
|
||||||
case "$1" in
|
case "$1" in
|
||||||
|
-v | --version)
|
||||||
|
echo "reStream version: v$version"
|
||||||
|
exit
|
||||||
|
;;
|
||||||
-p | --portrait)
|
-p | --portrait)
|
||||||
landscape=false
|
landscape=false
|
||||||
shift
|
shift
|
||||||
|
Loading…
x
Reference in New Issue
Block a user