mirror of
https://github.com/alexbelgium/hassio-addons.git
synced 2026-09-10 11:49:09 +02:00
* docs(birdnet-go-dev): document the first-daily-consensus setting Adds a "Fork-only settings" section to the add-on README covering the first-daily-detection consensus rule from alexbelgium/birdnet-go#63, which this build compiles in because merge-prs.sh merges every open non-draft PR on the fork. The section leads with what the setting does NOT affect, because "requires two models to confirm" reads as far more invasive than it is: it is inert on a single-model install (the default), on bats and non-bird sound classes, on species not known to every active bird model, and when a dynamic threshold has already lowered the bar. Without that list a user reasonably concludes the add-on will start dropping detections. Also qualifies the header's "everything below is identical to the standard add-on" claim, which the new section would otherwise contradict. Docs only; no add-on behaviour changes. Version bumped so Supervisor offers the rebuild. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com> * docs(birdnet-go-dev): correct the first-daily-consensus wording Copilot, Codex and CodeRabbit each independently flagged the same three inaccuracies on PR #3056. Verified each against merge-prs.sh and the alexbelgium/birdnet-go implementation before fixing. - The "disappears once merged upstream" claim was backwards. merge-prs.sh syncs the fork's main with upstream BEFORE applying open PRs, so a PR that merges upstream stays in every future build via that sync step - it only stops being fork-only. Only a PR closed without merging drops out. - "Every later detection... behaves exactly as today" undersold the rule. Every attempt for a species is held to the two-model bar until one is accepted, not just the first attempt - confirmed by reading firstDailyGateApplies, which re-evaluates every detection against the same memo until acceptedToday is true. - "known to every active bird model" is decided per audio source (speciesSharedByActiveBirdModels scopes to sourceModelIDs, which comes from AnalysisBuffers(sourceID)), not add-on-wide across every source. Docs only. validate.sh passes, no new lint findings. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com> --------- Co-authored-by: Claude <noreply@anthropic.com>
22 KiB
22 KiB
20260909.7 (10-09-2026)
- Correct the "first daily detection consensus" README section (review feedback on PR #3056): a merged-upstream setting stays in the build rather than disappearing, every attempt for a species is held back until one is accepted rather than only the first, and the "known to every active bird model" exemption is scoped per audio source, matching the implementation.
20260909.6 (10-09-2026)
- Document the fork-only "first daily detection consensus" setting (alexbelgium/birdnet-go#63): requires a second model to confirm each bird species' first detection of the day. Off by default; no behaviour change unless enabled.
20260909.5 (09-09-2026)
- Minor bugs fixed
20260909.4 (09-09-2026)
- Minor bugs fixed
20260909.3 (09-09-2026)
- Minor bugs fixed
20260909.2 (09-09-2026)
- Minor bugs fixed
20260909 (09-09-2026)
- Minor bugs fixed
20260908.2 (08-09-2026)
- Minor bugs fixed
20260908.1 (08-09-2026)
- Synced with upstream birdnet-go (4 commits); re-merges the open fork PRs, adding fork PR #62 (reanalyze a clip with every loaded model + one-click correction)
20260908 (08-09-2026)
- Synced with upstream birdnet-go (7 commits); re-merges the open fork PRs
20260907 (07-09-2026)
- Rebuild: re-merges the open fork PRs, picking up the updated fork PR #57
20260901.4 (01-09-2026)
- Minor bugs fixed
20260901.3 (01-09-2026)
- Rebuild: live spectrogram in Currently Hearing now uses the same SoX recipe, palette and 2:1 ratio as the detection spectrograms, with a kHz axis overlay (fork PR #61)
20260901.2 (01-09-2026)
- Rebuild: re-merges the open fork PRs, adding a static SoX spectrogram of the chunk being analysed to the Currently Hearing card (fork PR #61)
20260901.1 (01-09-2026)
- Minor bugs fixed
20260901 (01-09-2026)
- Synced with upstream birdnet-go (7 commits, incl. Go 1.27 upgrade); build image bumped to golang:1.27-trixie to match; resolved merge conflict in fork PR #6
20260829.2 (29-08-2026)
- Minor bugs fixed
20260829.1 (29-08-2026)
- Minor bugs fixed
20260829 (29-08-2026)
- Minor bugs fixed
20260828.2 (28-08-2026)
- Synced with upstream birdnet-go; fork PR #57 updated
20260828.1 (28-08-2026)
- Synced with upstream birdnet-go; resolved merge conflict in fork PR #6
20260828 (28-08-2026)
- Minor bugs fixed
20260826.1 (26-08-2026)
- Synced with upstream birdnet-go; new/updated PRs pending in fork
20260826 (26-08-2026)
- Minor bugs fixed
20260729.1 (2026-08-01)
- Version renamed from
source-20260729.1, which Home Assistant could not order and therefore could not reliably offer as an update: every number of the previous version is kept, as a section of its own. The addon itself and the upstream version it tracks are unchanged
source-20260729.1 (29-07-2026)
- Minor bugs fixed
source-20260717 (17-07-2026)
- Minor bugs fixed
source-20260716.02 (16-07-2026)
- Minor bugs fixed
source-20260716 (16-07-2026)
- Minor bugs fixed
source-20260714 (14-07-2026)
- Minor bugs fixed
source-20260709 (09-07-2026)
- Minor bugs fixed
source-20260708-4 (08-07-2026)
- Minor bugs fixed
source-20260708-3 (08-07-2026)
- Minor bugs fixed
source-20260708-2 (08-07-2026)
- Minor bugs fixed
source-20260708 (08-07-2026)
- Minor bugs fixed
source-20260706-update (06-07-2026)
- Minor bugs fixed
source-20260706 (06-07-2026)
- Minor bugs fixed
source-20260705-3 (05-07-2026)
- Harden the
output.sqlite.pathrewrite added for the persistence fix: reject paths containing..traversal segments (sharedvalidate_safe_pathcheck), and create the destination's parent directory under/configwhen the relative path includes a subdirectory (e.g.db/birdnet.db), since SQLite does not create missing parent directories itself.
source-20260705-2 (05-07-2026)
- Fix detections/database not persisting across restarts on a fresh install: upstream's default
config.yamlshipsoutput.sqlite.path: birdnet.db(relative) explicitly, so the missing-only (//=) seeding introduced previously never rewrote it to an absolute path. A relative path resolves against the app's ephemeral working directory, so the database was silently recreated empty on every restart. Any relativeoutput.sqlite.pathis now rewritten to live under the persistent/configon startup; values already set to an absolute path are left untouched. (https://github.com/tphakala/birdnet-go/discussions/3774)
source-20260705 (05-07-2026)
- Minor bugs fixed
source-2026070 (05-07-2026)
- Minor bugs fixed
source-20260703 (03-07-2026)
- Minor bugs fixed
source-20260702-em (02-07-2026)
- Minor bugs fixed
source-20260702-2 (02-07-2026)
- Minor bugs fixed
source-20260701 (01-07-2026)
- Minor bugs fixed
source-20260629-3 (29-06-2026)
- Minor bugs fixed
source-20260629-2 (29-06-2026)
- Minor bugs fixed
source-20260629 (29-06-2026)
- Minor bugs fixed
source-20260627-v3 (28-06-2026)
- Minor bugs fixed
source-20260627-v2 (27-06-2026)
- Minor bugs fixed
source-20260627 (27-06-2026)
- Minor bugs fixed
source-20260626-5 (26-06-2026)
- Minor bugs fixed
source-20260626-4 (26-06-2026)
- Minor bugs fixed
source-20260626-3 (26-06-2026)
- Minor bugs fixed
source-20260626 (26-06-2026)
- Minor bugs fixed
source-20260625-14 (26-06-2026)
- Minor bugs fixed
source-20260625-13 (25-06-2026)
- Minor bugs fixed
source-20260625-12 (25-06-2026)
- Minor bugs fixed
source-20260625-11 (25-06-2026)
- Minor bugs fixed
source-20260625-10 (25-06-2026)
- Minor bugs fixed
source-20260625-5 (25-06-2026)
- Minor bugs fixed
source-20260625-4 (25-06-2026)
- Minor bugs fixed
source-20260625-3 (25-06-2026)
- Minor bugs fixed
source-20260625-2 (25-06-2026)
- Minor bugs fixed
source-20260625 (25-06-2026)
- Minor bugs fixed
source-20260624-6 (24-06-2026)
- Minor bugs fixed
source-20260624-5 (24-06-2026)
- Minor bugs fixed
source-20260624-4 (24-06-2026)
- Minor bugs fixed
source-20260624-3 (24-06-2026)
- Minor bugs fixed
source-20260624-2 (24-06-2026)
- Minor bugs fixed
source-20260623-3 (23-06-2026)
- Minor bugs fixed
source-20260623-2 (23-06-2026)
- Minor bugs fixed
source-20260623 (23-06-2026)
- Minor bugs fixed
source-20260622 (23-06-2026)
- Minor bugs fixed
source-20260621-5 (22-06-2026)
- Minor bugs fixed
source-20260621-4 (22-06-2026)
- Minor bugs fixed
source-20260621-3 (22-06-2026)
- Minor bugs fixed
source-20260621-2 (22-06-2026)
- Minor bugs fixed
source-20260621-1 (21-06-2026)
- Fix OpenVINO load failure: bundle oneTBB (libtbb.so.12) from OpenVINO 3rdparty libs so libopenvino_c.so resolves at runtime
source-20260620-13 (21-06-2026)
- Minor bugs fixed
source-20260620-12 (21-06-2026)
- Minor bugs fixed
source-20260620-11 (21-06-2026)
- Minor bugs fixed
source-20260620-10 (21-06-2026)
- Minor bugs fixed
source-20260620-7 (21-06-2026)
- Minor bugs fixed
source-20260620-6 (21-06-2026)
- Minor bugs fixed
source-20260620-5 (21-06-2026)
- Minor bugs fixed
source-20260620-4 (21-06-2026)
- Minor bugs fixed
source-20260620-3 (21-06-2026)
- Minor bugs fixed
source-20260620-2 (21-06-2026)
- Minor bugs fixed
source-20260620 (21-06-2026)
- Minor bugs fixed
source-20260619-8 (20-06-2026)
- Minor bugs fixed
source-20260619-7 (20-06-2026)
- Minor bugs fixed
source-20260619-6 (20-06-2026)
- Minor bugs fixed
source-20260619-5 (20-06-2026)
- Minor bugs fixed
source-20260619-4 (20-06-2026)
- Minor bugs fixed
source-20260619-3 (20-06-2026)
- Minor bugs fixed
source-20260619-2 (20-06-2026)
- Minor bugs fixed
source-20260619 (20-06-2026)
- Minor bugs fixed
source-20260618-3 (18-06-2026)
- Minor bugs fixed
source-20260618-2 (18-06-2026)
- Minor bugs fixed
source-20260617-4 (18-06-2026)
- Minor bugs fixed
source-20260617-3 (17-06-2026)
- Minor bugs fixed
source-20260617-2 (17-06-2026)
- Minor bugs fixed
source-20260617 (17-06-2026)
- Minor bugs fixed
source-20260616-2 (16-06-2026)
- Minor bugs fixed
source-20260616 (16-06-2026)
- Minor bugs fixed
source-20260615bats (15-06-2026)
- Minor bugs fixed
source-20260615 (15-06-2026)
- Minor bugs fixed
source-20260614-2 (14-06-2026)
- Minor bugs fixed
source-20260614 (14-06-2026)
- Minor bugs fixed
source-20260613 (13-06-2026)
- Minor bugs fixed
source-20260612-4 (13-06-2026)
- Minor bugs fixed
source-20260612-3 (12-06-2026)
- Minor bugs fixed
source-20260612-2 (12-06-2026)
- Minor bugs fixed
source-20260612 (12-06-2026)
- Minor bugs fixed
source-20260610-9 (11-06-2026)
- Minor bugs fixed
source-20260610-8 (11-06-2026)
- Minor bugs fixed
source-20260610-7 (11-06-2026)
- Minor bugs fixed
source-20260610-6 (11-06-2026)
- Minor bugs fixed
source-20260610-5 (11-06-2026)
- Minor bugs fixed
source-20260610-4 (10-06-2026)
- Minor bugs fixed
source-20260610-3 (10-06-2026)
- Minor bugs fixed
source-20260610-2 (10-06-2026)
- Minor bugs fixed
source-20260610 (10-06-2026)
- Minor bugs fixed
source-20260608-8 (09-06-2026)
- Minor bugs fixed
source-20260608-7 (09-06-2026)
- Minor bugs fixed
source-20260608-6 (08-06-2026)
- Minor bugs fixed
source-20260608-5 (08-06-2026)
- Minor bugs fixed
source-20260608-4 (08-06-2026)
- Minor bugs fixed
source-20260608-3 (08-06-2026)
- Minor bugs fixed
source-20260608-2 (08-06-2026)
- Minor bugs fixed
source-20260608 (08-06-2026)
- Minor bugs fixed
source-20260607-4 (07-06-2026)
- Minor bugs fixed
source-20260607-3 (07-06-2026)
- Minor bugs fixed
source-20260607-2 (07-06-2026)
- Minor bugs fixed
source-20260607 (07-06-2026)
- Test variant of the birdnet-go add-on that compiles BirdNET-Go from the
alexbelgium/birdnet-gofork instead of pulling the prebuiltghcr.io/tphakala/birdnet-goimage. - At build time,
merge-prs.shsyncs the fork'smainwith thetphakala/birdnet-goupstream and merges every open non-draft ("in review") pull request on the fly, so the resulting binary is upstream main + all work currently under review. - Home Assistant integration layers (nginx ingress, modules, init scripts, options handling) are identical to the standard birdnet-go add-on.
- Published as a separate image (
ghcr.io/alexbelgium/birdnet-go-source-{arch}) so it never overwrites the production add-on image. - Fix (
01-structure.sh): create the absoluteBIRDSONGS_FOLDERtarget (e.g. the default/config/clips) before migrating clips from a legacy/data/clips, so upgrades with existing recordings no longer abort startup underset -e.
nightly-20260601-2 (03-06-2026)
- Minor bugs fixed
nightly-20260601 (2026-06-01)
- Update to latest version from tphakala/birdnet-go (changelog : https://github.com/tphakala/birdnet-go/releases)
nightly-20260524 (2026-05-30)
- Update to latest version from tphakala/birdnet-go (changelog : https://github.com/tphakala/birdnet-go/releases)
nightly-20260429-405 (2026-05-30)
- Update to latest version from tphakala/birdnet-go (changelog : https://github.com/tphakala/birdnet-go/releases)
nightly-20260525-3 (28-05-2026)
- New
mqtt_auto_configaddon option (defaultfalse). Whentrueand the Home Assistant MQTT addon is active,realtime.mqtt.{enabled,broker,username,password}are written directly toconfig.yamlon every restart. Whenfalsebut Mosquitto is detected, the addon still logs the broker details and reminds you about the option — nothing is written. - New
mariadb_auto_configaddon option (defaultfalse). Whentrueand the Home Assistant MariaDB addon is active,output.mysql.*is filled in andoutput.sqlite.enabledis set tofalse. Whenfalsebut MariaDB is detected, the addon logs the credentials and reminds you about the option. - Breaking:
output.sqlite.pathandlogging.file_output.*are now seeded only when missing fromconfig.yaml(previously overwritten every restart). Values changed through the BirdNET-Go UI or by hand-editingconfig.yamlnow survive container restarts. If you relied onLOG_MAX_SIZE_MB/LOG_MAX_AGE_DAYSaddon options to override an existing setting inconfig.yaml, remove the existing key fromconfig.yamlor edit it directly — the option will only be applied on first run. - Breaking (UI only): The nginx ingress reverse-proxy no longer rewrites HTML
href/src/actionattributes; upstream BirdNET-Go handles those itself viaX-Ingress-Path. JavaScript string-literal rewrites are unchanged. Please file an issue if you see broken images, links, or forms in the ingress UI after upgrade. - Fix database-migration restore: the timestamped backup created during a
BIRDSONGS_FOLDERchange was being written to the script's working directory and looked up under a fresh timestamp on restore, so a SQL failure left the user unable to recover. Backup path is now absolute and reused for restore. - Harden the
BIRDSONGS_FOLDERSQL/YAML path substitution: paths containing characters outside[A-Za-z0-9._/-]are now rejected up front instead of being interpolated raw into the SQL UPDATE statement. - Tolerate a missing internet connection on first boot: if the default
config.yamlcannot be downloaded from GitHub, the init script now seeds an empty YAML document so the addon-defaults block populates a usable config (rather than aborting the script on the nextyqcall underset -e). - Warn (without failing the build) if the upstream
entrypoint.shpatch target drifts in a new nightly. - Remove a dead nginx upstream definition that pointed at an unused port.
nightly-20260525-2 (26-05-2026)
- Suppress noisy startup logs: silence
chmod /dev/snderrors on the read-only HA mount, and hide unavailable ALSA plugins (JACK, OSS, dsnoop) from device enumeration so libjack and pcm_oss/dsnoop probes no longer print at launch. ALSA overrides are written to/root/.asoundrc(since/etc/asound.confis read-only in this environment). - Allow advanced users to override the ALSA config by dropping a custom
asound.confinto the addon config folder. - Add LOG_MAX_SIZE_MB and LOG_MAX_AGE_DAYS addon options to manage log storage size
- Automatically trim log files exceeding configured age on startup
nightly-20260525 (26-05-2026)
- Minor bugs fixed
nightly-20260511-414-2 (22-05-2026)
- Minor bugs fixed
nightly-20260511-414 (2026-05-16)
- Update to latest version from tphakala/birdnet-go (changelog : https://github.com/tphakala/birdnet-go/releases)
nightly-20260429-405 (2026-05-02)
- Update to latest version from tphakala/birdnet-go (changelog : https://github.com/tphakala/birdnet-go/releases)
nightly-20260321-397 (2026-03-26)
- Update to latest version from tphakala/birdnet-go (changelog : https://github.com/tphakala/birdnet-go/releases)
nightly-20260315 (2026-03-21)
- Update to latest version from tphakala/birdnet-go (changelog : https://github.com/tphakala/birdnet-go/releases)
nightly-20260311 (2026-03-14)
- Update to latest version from tphakala/birdnet-go (changelog : https://github.com/tphakala/birdnet-go/releases)
nightly-20260118-2 (17-02-2026)
- Minor bugs fixed
nightly-20260118 (2026-01-21)
- Update to latest version from tphakala/birdnet-go (changelog : https://github.com/tphakala/birdnet-go/releases)
nightly-20260113 (2026-01-14)
- Update to latest version from tphakala/birdnet-go (changelog : https://github.com/tphakala/birdnet-go/releases)
nightly-20260111 (2026-01-12)
- Update to latest version from tphakala/birdnet-go (changelog : https://github.com/tphakala/birdnet-go/releases)
nightly-20260110 (2026-01-10)
- Update to latest version from tphakala/birdnet-go (changelog : https://github.com/tphakala/birdnet-go/releases)
nightly-20251223-2 (2025-12-27)
- Minor bugs fixed
nightly-20251224 (2025-12-24)
- Minor bugs fixed
nightly-20251223 (2025-12-23)
- Update to latest version from tphakala/birdnet-go (changelog : https://github.com/tphakala/birdnet-go/releases)
nightly-20251214 (2025-12-20)
-
Update to latest version from tphakala/birdnet-go (changelog : https://github.com/tphakala/birdnet-go/releases)
-
Added support for configuring extra environment variables via the
env_varsadd-on option alongside config.yaml. See https://github.com/alexbelgium/hassio-addons/wiki/Add-Environment-variables-to-your-Addon-2 for details. -
Preserve the microphone selected in the BirdNET-Go UI unless the
homeassistant_microphoneoption explicitly forces the default device.
"nightly-20251028" (2025-11-01)
- Minor bugs fixed
nightly-20251028 (2025-11-01)
- Update to latest version from tphakala/birdnet-go (changelog : https://github.com/tphakala/birdnet-go/releases)
"nightly-20251012" (2025-10-18)
- Minor bugs fixed
nightly-20251012 (2025-10-18)
- Update to latest version from tphakala/birdnet-go (changelog : https://github.com/tphakala/birdnet-go/releases)
nightly-20251008 (2025-10-11)
- Update to latest version from tphakala/birdnet-go (changelog : https://github.com/tphakala/birdnet-go/releases)
nightly-20250904_6 (2025-09-17)
- New option "homeassistant_microphone". If set to true, will use homeassistant's microphone by setting the audio_card to "default". Please use the addon options to select the device to which "default" is allocated
nightly-20250904 (2025-09-06)
- Update to latest version from tphakala/birdnet-go (changelog : https://github.com/tphakala/birdnet-go/releases)
nightly-20250826 (2025-08-30)
- Update to latest version from tphakala/birdnet-go (changelog : https://github.com/tphakala/birdnet-go/releases)
nightly-20250813 (2025-08-16)
- Update to latest version from tphakala/birdnet-go (changelog : https://github.com/tphakala/birdnet-go/releases)
nightly-20250805 (2025-08-09)
- Update to latest version from tphakala/birdnet-go (changelog : https://github.com/tphakala/birdnet-go/releases)
nightly-20250731-4 (2025-08-04)
- Minor bugs fixed
nightly-20250731-3 (2025-08-04)
- Minor bugs fixed
nightly-20250731-2 (2025-08-02)
- Minor bugs fixed
nightly-20250731 (2025-08-01)
- Update to latest version from tphakala/birdnet-go (changelog : https://github.com/tphakala/birdnet-go/releases)
nightly-20250730 (2025-07-30)
- Minor bugs fixed
nightly-20250725-2 (2025-07-28)
- Fix /asset path
- Added 9090 telemetry port
nightly-20250725 (2025-07-25)
- Update to latest version from tphakala/birdnet-go (changelog : https://github.com/tphakala/birdnet-go/releases)
nightly-20250710 (2025-07-12)
- Update to latest version from tphakala/birdnet-go (changelog : https://github.com/tphakala/birdnet-go/releases)
20250710 (2025-07-12)
- Update to latest version from tphakala/birdnet-go (changelog : https://github.com/tphakala/birdnet-go/releases)
20250704 (2025-07-07)
- Minor bugs fixed
20250508 (2025-07-05)
- Update to latest version from tphakala/birdnet-go (changelog : https://github.com/tphakala/birdnet-go/releases)
20250419 (2025-05-17)
- Update to latest version from tphakala/birdnet-go (changelog : https://github.com/tphakala/birdnet-go/releases)
20250427-7 (2025-05-15)
- Breaking change: COMMAND addon option removed. Please instead use the config.yaml to define the RTSP feeds
- Use entrypoint
20250427-2 (2025-04-27)
- Minor bugs fixed
20250427 (2025-04-27)
- Minor bugs fixed
20250316 (2025-04-26)
- Update to latest version from tphakala/birdnet-go (changelog : https://github.com/tphakala/birdnet-go/releases)
0.6.4-3 (2025-04-07)
- Minor bugs fixed
0.6.4-2 (2025-03-30)
- Minor bugs fixed
0.6.4 (2025-03-17)
- Minor bugs fixed
0.6.3 (2025-03-15)
- Update to latest version from tphakala/birdnet-go (changelog : https://github.com/tphakala/birdnet-go/releases)
0.6.2-2 (2025-02-21)
- Minor bugs fixed
0.6.2 (2025-02-21)
- Update to latest version from tphakala/birdnet-go (changelog : https://github.com/tphakala/birdnet-go/releases)
20250126-2 (2025-02-21)
- Minor bugs fixed
20250126 (2025-02-15)
- Update to latest version from tphakala/birdnet-go (changelog : https://github.com/tphakala/birdnet-go/releases)
0.6.0-nightly-20250124 (2025-01-25)
- Minor bugs fixed
0.6.0-4 (2025-01-21)
- Fix sounds play
- Correct sqlite for //
0.6.0 (2025-01-18)
- Update to latest version from tphakala/birdnet-go (changelog : https://github.com/tphakala/birdnet-go/releases)
20250103-10 (2025-01-17)
- BREAKING CHANGE : improve implementation of addon options such as Birdsongs folder. Please check the log at first start if anything is different than you expected
- WARNING : your files will move to the new Birdsongs folder in case of change
- WARNING : your db will be modified in case of Birdsongs folder change to still allow access to files. A backup will always be created
- Fix ingress issues
20250103 (2025-01-11)
- Update to latest version from tphakala/birdnet-go (changelog : https://github.com/tphakala/birdnet-go/releases)
25-4 (2024-12-29)
25-3 (2024-12-28)
- avx2 support added by @tphakala
25-2 (2024-12-21)
- Minor bugs fixed
25 (2024-12-21)
- Update to latest version from tphakala/birdnet-go (changelog : https://github.com/tphakala/birdnet-go/releases)
0.5.5-11 (2024-10-22)
- Minor bugs fixed
0.5.5-10 (2024-09-30)
- Minor bugs fixed
0.5.5-9 (2024-07-06)
- Correct indentation issue
0.5.5-8 (2024-07-03)
- New option : set the audio clip directory from addon options
0.5.5-2 (2024-06-25)
- Minor bugs fixed
0.5.5 (2024-06-22)
- Update to latest version from tphakala/birdnet-go (changelog : https://github.com/tphakala/birdnet-go/releases)
0.5.5 (2024-06-20)
- Minor bugs fixed
0.5.3-3 (2024-06-07)
- Minor bugs fixed
0.5.3-2 (2024-06-07)
- Minor bugs fixed
0.5.3 (2024-05-26)
- Minor bugs fixed
0.5.2 (2024-05-04)
- Minor bugs fixed
0.5.1-4 (2024-04-23)
- Feat : provide mariadb information in the startup log to allow its usage
0.5.1-3 (2024-04-23)
- Feat : Allow mounting of SMB and local drives to store the audio clips on an external drive
0.5.1 (2024-04-22)
- Initial build