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:
@@ -26,4 +26,4 @@ name: appdaemon
|
|||||||
sources:
|
sources:
|
||||||
- https://github.com/AppDaemon/appdaemon
|
- https://github.com/AppDaemon/appdaemon
|
||||||
type: application
|
type: application
|
||||||
version: 3.1.7
|
version: 3.1.8
|
||||||
|
|||||||
@@ -123,15 +123,17 @@ questions:
|
|||||||
label: "Latitude"
|
label: "Latitude"
|
||||||
description: "Latitude of your home assistant instance"
|
description: "Latitude of your home assistant instance"
|
||||||
schema:
|
schema:
|
||||||
type: int
|
type: string
|
||||||
default: 0
|
default: ""
|
||||||
|
valid_chars: "0-9."
|
||||||
required: true
|
required: true
|
||||||
- variable: LONGITUDE
|
- variable: LONGITUDE
|
||||||
label: "Longitude"
|
label: "Longitude"
|
||||||
description: "Longitude of your home assistant instance"
|
description: "Longitude of your home assistant instance"
|
||||||
schema:
|
schema:
|
||||||
type: int
|
type: string
|
||||||
default: 0
|
default: ""
|
||||||
|
valid_chars: "0-9."
|
||||||
required: true
|
required: true
|
||||||
- variable: ELEVATION
|
- variable: ELEVATION
|
||||||
label: "Elevation"
|
label: "Elevation"
|
||||||
|
|||||||
@@ -27,4 +27,4 @@ name: fireflyiii
|
|||||||
sources:
|
sources:
|
||||||
- https://github.com/firefly-iii/firefly-iii/
|
- https://github.com/firefly-iii/firefly-iii/
|
||||||
type: application
|
type: application
|
||||||
version: 4.2.4
|
version: 4.2.5
|
||||||
|
|||||||
@@ -104,6 +104,9 @@ questions:
|
|||||||
schema:
|
schema:
|
||||||
type: string
|
type: string
|
||||||
default: ""
|
default: ""
|
||||||
|
min_length: 32
|
||||||
|
max_length: 32
|
||||||
|
valid_chars: "a-zA-Z0-9"
|
||||||
required: true
|
required: true
|
||||||
- variable: UMASK
|
- variable: UMASK
|
||||||
label: "UMASK"
|
label: "UMASK"
|
||||||
|
|||||||
Reference in New Issue
Block a user