diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index 419dab1..9b1ef0e 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -2,7 +2,7 @@ name: Bug report about: Create a report to help us improve title: '' -labels: bug +labels: '' assignees: '' --- @@ -25,4 +25,15 @@ A clear and concise description of what you expected to happen. If applicable, add screenshots to help explain your problem. **Additional context** -Add any other context about the problem here. +Add any other context about the problem or your installation here. + +**Your build** +The hardware on which BirdNET-Pi is running goes here. + +**Code or log snippets** +``` +Paste your +log output +or +code here +``` diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md deleted file mode 100644 index bbcbbe7..0000000 --- a/.github/ISSUE_TEMPLATE/feature_request.md +++ /dev/null @@ -1,20 +0,0 @@ ---- -name: Feature request -about: Suggest an idea for this project -title: '' -labels: '' -assignees: '' - ---- - -**Is your feature request related to a problem? Please describe.** -A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] - -**Describe the solution you'd like** -A clear and concise description of what you want to happen. - -**Describe alternatives you've considered** -A clear and concise description of any alternative solutions or features you've considered. - -**Additional context** -Add any other context or screenshots about the feature request here. diff --git a/README.md b/README.md index 2eec803..eabfb85 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,6 @@ Check out birds from around the world - [Öringe, Tyresö, Sweden](https://tyreso.birdnetpi.com)
- [Murrysville, Pennsylvania, United States](https://murrysvillepa.birdnetpi.com) - [Berowra, New South Wales, Australia](https://berowra.birdnetpi.com) -- [Fairview, Tennessee, United States](https://fairviewtennessee.birdnetpi.com) - [Dundas, Ontario, Canada](https://dundasontario.birdnetpi.com) - [Bungendore, New South Wales, Australia](https://bungendorensw.birdnetpi.com) - [Rivers Bend, Ohio, United States](https://riversbendoh.birdnetpi.com) diff --git a/scripts/advanced.php b/scripts/advanced.php index fa7c31b..7640091 100644 --- a/scripts/advanced.php +++ b/scripts/advanced.php @@ -251,7 +251,7 @@ if (file_exists('./scripts/thisrun.txt')) {

When the disk becomes full, you can choose to 'purge' old files to make room for new ones or 'keep' your data and stop all services instead.
Note: you can exclude specific files from 'purge' on the Recordings page.


-

Set Audio Card to 'default' to use PulseAudio (always recommended), or an ALSA recognized sound card device from the output of `aplay -L`.

+

Set Audio Card to 'default' to use PulseAudio (always recommended), or an ALSA recognized sound card device from the output of `arecord -L`. Choose the `dsnoop` device if it is available


Set Channels to the number of channels supported by your sound card. 32 max.

diff --git a/scripts/install_services.sh b/scripts/install_services.sh index 0000a31..5855ed2 100755 --- a/scripts/install_services.sh +++ b/scripts/install_services.sh @@ -417,6 +417,15 @@ chown_things() { chown -R $USER:$USER $HOME/Bird* } +increase_caddy_timeout() { + mkdir /etc/systemd/system/caddy.service.d + cat << EOF > /etc/systemd/system/caddy.service.d/override.conf +[Service] +TimeoutSec=300s +EOF + systemctl daemon-reload +} + install_services() { set_hostname update_etc_hosts @@ -439,6 +448,7 @@ install_services() { install_livestream_service install_cleanup_cron install_weekly_cron + increase_caddy_timeout create_necessary_dirs generate_BirdDB diff --git a/scripts/overview.php b/scripts/overview.php index 86e14c2..e434795 100644 --- a/scripts/overview.php +++ b/scripts/overview.php @@ -261,6 +261,10 @@ body::-webkit-scrollbar {
"; @@ -332,7 +336,7 @@ window.setInterval(function(){ // image or audio didn't load for some reason, force a refresh in 5 seconds loadDetectionIfNewExists(); } -}, *1000); +}, *1000); function loadFiveMostRecentDetections() { const xhttp = new XMLHttpRequest();