import { createSignal, onMount } from "solid-js"; import { apiGetVersion } from "../../functions/api" function About() { const [version, setVersion] = createSignal(''); const [link, setLink] = createSignal(''); onMount(async () => { const v = await apiGetVersion(); setVersion(v); setLink("https://github.com/aceberg/WatchYourLAN/releases/tag/"+v); }); return (
About ({version()})
Swagger API docs /swagger/index.html
Local node-bootstrap URL local themes and fonts (optional). If empty, the app will pull everything from cdn
Shoutrrr URL provides notifications to Discord, Email, Gotify, Telegram and other services. Link to documentation
Interfaces one or more, space separated
Timeout (seconds) time between scans
Args for arp-scan pass your own arguments to arp-scan. Enable debug log level to see resulting command. (Example: -r 1). See docs for more
Arp Strings can setup scans for vlans, docker0 and etcetera. See docs for more
Trim History remove history after (hours)
PG Connect URL address to connect to PostgreSQL DB. (Example: postgres://username:password@192.168.0.1:5432/dbname?sslmode=disable). Full list of URL parameters here
) } export default About