diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml deleted file mode 100644 index 402b03c23..000000000 --- a/.github/FUNDING.yml +++ /dev/null @@ -1,12 +0,0 @@ -# These are supported funding model platforms - -github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2] -patreon: # Replace with a single Patreon username -open_collective: # Replace with a single Open Collective username -ko_fi: # Replace with a single Ko-fi username -tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel -community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry -liberapay: MaxK -issuehunt: # Replace with a single IssueHunt username -otechie: # Replace with a single Otechie username -custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2'] diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index b8af47cad..2335fe225 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -18,5 +18,9 @@ about: Create a bug report +## Configuration + + + ## Log diff --git a/.github/ISSUE_TEMPLATE/question.md b/.github/ISSUE_TEMPLATE/question.md deleted file mode 100644 index f476047ae..000000000 --- a/.github/ISSUE_TEMPLATE/question.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -name: Question -about: Ask a question about MPD ---- - - -## Question diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 004ea3530..6977c2c98 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -41,7 +41,8 @@ jobs: key: linux - name: Install dependencies run: | - sudo apt install -y --no-install-recommends \ + sudo apt-get update + sudo apt-get install -y --no-install-recommends \ g++-10 libfmt-dev libboost-dev \ libgtest-dev \ libpcre2-dev \ diff --git a/NEWS b/NEWS index f6991dd9a..8d90cc9c6 100644 --- a/NEWS +++ b/NEWS @@ -11,6 +11,8 @@ ver 0.24 (not yet released) * tags - new tag "Mood" +ver 0.23.8 (not yet released) + ver 0.23.7 (2022/05/09) * database - upnp: support pupnp 1.14 diff --git a/src/apple/Throw.cxx b/src/apple/Throw.cxx index 9f6fd7a58..9bc27b7d0 100644 --- a/src/apple/Throw.cxx +++ b/src/apple/Throw.cxx @@ -31,6 +31,7 @@ #include "ErrorRef.hxx" #include "StringRef.hxx" +#include #include namespace Apple { @@ -57,8 +58,8 @@ ThrowOSStatus(OSStatus status, const char *_msg) const Apple::StringRef cfstr(cferr.CopyDescription()); char msg[1024]; - strcpy(msg, _msg); - size_t length = strlen(msg); + std::strcpy(msg, _msg); + size_t length = std::strlen(msg); cfstr.GetCString(msg + length, sizeof(msg) - length); throw std::runtime_error(msg);