GitHub bot: fix linting issues (nobuild)

This commit is contained in:
github-actions
2025-07-04 23:57:06 +00:00
parent 1629d4e9ac
commit b26ad7fe26
6 changed files with 68 additions and 50 deletions

View File

@@ -1,99 +1,152 @@
## 20250508 (05-07-2025)
- Update to latest version from tphakala/birdnet-go (changelog : https://github.com/tphakala/birdnet-go/releases)
## 20250419 (17-05-2025)
- Update to latest version from tphakala/birdnet-go (changelog : https://github.com/tphakala/birdnet-go/releases)
## 20250427-7 (15-05-2025)
- Breaking change: COMMAND addon option removed. Please instead use the config.yaml to define the RTSP feeds
- Use entrypoint
## 20250427-2 (27-04-2025)
- Minor bugs fixed
## 20250427 (27-04-2025)
- Minor bugs fixed
## 20250316 (26-04-2025)
- Update to latest version from tphakala/birdnet-go (changelog : https://github.com/tphakala/birdnet-go/releases)
## 0.6.4-3 (07-04-2025)
- Minor bugs fixed
## 0.6.4-2 (30-03-2025)
- Minor bugs fixed
## 0.6.4 (17-03-2025)
- Minor bugs fixed
## 0.6.3 (15-03-2025)
- Update to latest version from tphakala/birdnet-go (changelog : https://github.com/tphakala/birdnet-go/releases)
## 0.6.2-2 (21-02-2025)
- Minor bugs fixed
## 0.6.2 (21-02-2025)
- Update to latest version from tphakala/birdnet-go (changelog : https://github.com/tphakala/birdnet-go/releases)
## 20250126-2 (21-02-2025)
- Minor bugs fixed
## 20250126 (15-02-2025)
- Update to latest version from tphakala/birdnet-go (changelog : https://github.com/tphakala/birdnet-go/releases)
## 0.6.0-nightly-20250124 (25-01-2025)
- Minor bugs fixed
## 0.6.0-4 (21-01-2025)
- Fix sounds play
- Correct sqlite for //
## 0.6.0 (18-01-2025)
- Update to latest version from tphakala/birdnet-go (changelog : https://github.com/tphakala/birdnet-go/releases)
## 20250103-10 (17-01-2025)
- 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 (11-01-2025)
- Update to latest version from tphakala/birdnet-go (changelog : https://github.com/tphakala/birdnet-go/releases)
## 25-4 (29-12-2024)
- Fixed https://github.com/alexbelgium/hassio-addons/issues/1687
## 25-3 (28-12-2024)
- avx2 support added by @tphakala
## 25-2 (21-12-2024)
- Minor bugs fixed
## 25 (21-12-2024)
- Update to latest version from tphakala/birdnet-go (changelog : https://github.com/tphakala/birdnet-go/releases)
## 0.5.5-11 (22-10-2024)
- Minor bugs fixed
## 0.5.5-10 (30-09-2024)
- Minor bugs fixed
## 0.5.5-9 (06-07-2024)
- Correct indentation issue
## 0.5.5-8 (03-07-2024)
- New option : set the audio clip directory from addon options
## 0.5.5-2 (25-06-2024)
- Minor bugs fixed
## 0.5.5 (22-06-2024)
- Update to latest version from tphakala/birdnet-go (changelog : https://github.com/tphakala/birdnet-go/releases)
## 0.5.5 (20-06-2024)
- Minor bugs fixed
## 0.5.3-3 (07-06-2024)
- Minor bugs fixed
## 0.5.3-2 (07-06-2024)
- Minor bugs fixed
## 0.5.3 (26-05-2024)
- Minor bugs fixed
## 0.5.2 (04-05-2024)
- Minor bugs fixed
## 0.5.1-4 (23-04-2024)
- Feat : provide mariadb information in the startup log to allow its usage
## 0.5.1-3 (23-04-2024)
- Feat : Allow mounting of SMB and local drives to store the audio clips on an external drive
## 0.5.1 (22-04-2024)
- Initial build

View File

@@ -1,8 +1,5 @@
{
"arch": [
"aarch64",
"amd64"
],
"arch": ["aarch64", "amd64"],
"audio": true,
"codenotary": "alexandrep.github@gmail.com",
"description": "Realtime BirdNET soundscape analyzer",
@@ -77,11 +74,7 @@
"ingress": true,
"ingress_stream": true,
"init": false,
"map": [
"addon_config:rw",
"media:rw",
"share:rw"
],
"map": ["addon_config:rw", "media:rw", "share:rw"],
"name": "Birdnet-go",
"options": {
"BIRDSONGS_FOLDER": "/config/clips"
@@ -94,10 +87,7 @@
"ports_description": {
"8080/tcp": "Web ui"
},
"privileged": [
"SYS_ADMIN",
"DAC_READ_SEARCH"
],
"privileged": ["SYS_ADMIN", "DAC_READ_SEARCH"],
"schema": {
"ALSA_CARD": "int?",
"BIRDSONGS_FOLDER": "str?",
@@ -108,10 +98,7 @@
"localdisks": "str?",
"networkdisks": "str?"
},
"services": [
"mysql:want",
"mqtt:want"
],
"services": ["mysql:want", "mqtt:want"],
"slug": "birdnet-go",
"udev": true,
"url": "https://github.com/alexbelgium/hassio-addons/tree/master/birdnet-go",