I don't yet understand what the prefix information in the settings.toml should look like.
owntags/
βββ application/
βββ keys/
βββ prefix-1.keyfile # Car1
βββ prefix-2.keyfile # Car2
βββ prefix-2.keyfile # Unicorn
βββ prefix-2.keyfile # Dragon
@settings.toml
[tag_options.prefix prefix-1]
[tag_options.prefix prefix-2]
[tag_options.prefix prefix-3]
[tag_options.prefix prefix-4]
tag_name = "prefix-1" # Car1
tag_name = "prefix-2" # Car2
tag_name = "prefix-3" # Unicorn
tag_name = "prefix-4" # Dragon
or should it look like this?
owntags/
βββ application/
βββ keys/
βββ car1.keyfile
βββ car2.keyfile
βββ unicorn.keyfile
βββ dragon.keyfile
@settings.toml
[tag_options.prefix]
tag_name = "car1"
location = true
waypoint = false
timestamp = 1000000001
radius = false
[tag_options.prefix]
tag_name = "car2"
location = true
waypoint = false
timestamp = 1000000001
radius = false
[tag_options.prefix]
tag_name = "unicorn"
location = true
waypoint = false
timestamp = 1000000001
radius = false
[tag_options.prefix]
tag_name = "dragon"
location = true
waypoint = false
timestamp = 1000000001
radius = false
I don't yet understand what the prefix information in the settings.toml should look like.
@settings.toml
or should it look like this?
@settings.toml