From 6abbd38798b22b572d45023fb9c19a00d25b6ad0 Mon Sep 17 00:00:00 2001 From: Patrick McGuire <60325264+mcguirepr89@users.noreply.github.com> Date: Thu, 15 Dec 2022 06:50:37 -0500 Subject: [PATCH 1/9] Update issue templates --- .github/ISSUE_TEMPLATE/bug_report.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index 419dab1..12281bb 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,7 @@ 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. From 8cbcece7b9306db7a44d744372c169780d6d2054 Mon Sep 17 00:00:00 2001 From: Patrick McGuire <60325264+mcguirepr89@users.noreply.github.com> Date: Thu, 15 Dec 2022 07:15:58 -0500 Subject: [PATCH 2/9] Update issue templates --- .github/ISSUE_TEMPLATE/feature_request.md | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 .github/ISSUE_TEMPLATE/feature_request.md 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. From b8e77f0dea05bba5528a3a93adcee3854e4a9202 Mon Sep 17 00:00:00 2001 From: Patrick McGuire <60325264+mcguirepr89@users.noreply.github.com> Date: Thu, 15 Dec 2022 07:54:56 -0500 Subject: [PATCH 3/9] Update install_services.sh --- scripts/install_services.sh | 10 ++++++++++ 1 file changed, 10 insertions(+) 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 From c5c993cf611819fd8f98fde6894bec3c33ea86f5 Mon Sep 17 00:00:00 2001 From: ehpersonal38 <103586016+ehpersonal38@users.noreply.github.com> Date: Thu, 15 Dec 2022 14:14:39 -0500 Subject: [PATCH 4/9] Update overview.php --- scripts/overview.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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 {
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 `aplay -L`. Choose the `dsnoop` device if it is available
Set Channels to the number of channels supported by your sound card. 32 max.
From 5df0210df4c1d09ab2b19dcc36fa7bfcbba0f79c Mon Sep 17 00:00:00 2001 From: Patrick McGuire <60325264+mcguirepr89@users.noreply.github.com> Date: Fri, 16 Dec 2022 05:51:26 -0500 Subject: [PATCH 8/9] `aplay` -> `arecord` --- scripts/advanced.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/advanced.php b/scripts/advanced.php index 387098c..1c9a0bf 100644 --- a/scripts/advanced.php +++ b/scripts/advanced.php @@ -5,7 +5,7 @@ error_reporting(E_ERROR); if (file_exists('./scripts/thisrun.txt')) { $config = parse_ini_file('./scripts/thisrun.txt'); } elseif (file_exists('firstrun.ini')) { - $config = parse_ini_file('firstrun.ini'); + $config = parse_ini_file('firstrun.ini');r } $caddypwd = $config['CADDY_PWD']; @@ -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`. Choose the `dsnoop` device if it is available
+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.
From f6a07cacddfe191df400b966b6ae5910243af5ec Mon Sep 17 00:00:00 2001 From: Patrick McGuire <60325264+mcguirepr89@users.noreply.github.com> Date: Fri, 16 Dec 2022 06:06:43 -0500 Subject: [PATCH 9/9] typo --- scripts/advanced.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/advanced.php b/scripts/advanced.php index 1c9a0bf..7640091 100644 --- a/scripts/advanced.php +++ b/scripts/advanced.php @@ -5,7 +5,7 @@ error_reporting(E_ERROR); if (file_exists('./scripts/thisrun.txt')) { $config = parse_ini_file('./scripts/thisrun.txt'); } elseif (file_exists('firstrun.ini')) { - $config = parse_ini_file('firstrun.ini');r + $config = parse_ini_file('firstrun.ini'); } $caddypwd = $config['CADDY_PWD'];