Appdaemon lat/long to string (#608)

* Appdaemon lat/long to string

* Allow only digits and dot

* Add app_key validation [firefly]

* ff3 version bump
This commit is contained in:
Stavros Kois
2021-06-29 16:09:32 +03:00
committed by GitHub
parent 09292a3d38
commit 1297f2cb06
4 changed files with 11 additions and 6 deletions
+1 -1
View File
@@ -26,4 +26,4 @@ name: appdaemon
sources:
- https://github.com/AppDaemon/appdaemon
type: application
version: 3.1.7
version: 3.1.8
@@ -123,15 +123,17 @@ questions:
label: "Latitude"
description: "Latitude of your home assistant instance"
schema:
type: int
default: 0
type: string
default: ""
valid_chars: "0-9."
required: true
- variable: LONGITUDE
label: "Longitude"
description: "Longitude of your home assistant instance"
schema:
type: int
default: 0
type: string
default: ""
valid_chars: "0-9."
required: true
- variable: ELEVATION
label: "Elevation"
+1 -1
View File
@@ -27,4 +27,4 @@ name: fireflyiii
sources:
- https://github.com/firefly-iii/firefly-iii/
type: application
version: 4.2.4
version: 4.2.5
@@ -104,6 +104,9 @@ questions:
schema:
type: string
default: ""
min_length: 32
max_length: 32
valid_chars: "a-zA-Z0-9"
required: true
- variable: UMASK
label: "UMASK"