1. 17 Aug, 2021 2 commits
  2. 06 Aug, 2021 2 commits
  3. 05 Aug, 2021 6 commits
  4. 02 Aug, 2021 1 commit
  5. 30 Jul, 2021 1 commit
  6. 16 Jul, 2021 2 commits
  7. 23 Jun, 2021 2 commits
  8. 31 May, 2021 2 commits
  9. 26 May, 2021 2 commits
  10. 25 May, 2021 2 commits
  11. 24 May, 2021 1 commit
  12. 22 May, 2021 3 commits
  13. 19 May, 2021 1 commit
  14. 18 May, 2021 1 commit
  15. 17 May, 2021 1 commit
  16. 26 Apr, 2021 2 commits
  17. 15 Apr, 2021 1 commit
  18. 13 Mar, 2021 1 commit
  19. 10 Mar, 2021 1 commit
    • bitkeeper's avatar
      Added cross-origin header to http headers of the http output. · c08a8581
      bitkeeper authored
      The current http output doesn't provide a header for cross-origin support. This prevents to use the mpd http stream directly from an other webapplication due the origin from the webpage differs from then the audio stream.
      
      The fix is to add the following header to the http response:
      Access-Control-Allow-Origin: *
      c08a8581
  20. 05 Mar, 2021 2 commits
  21. 04 Mar, 2021 3 commits
    • Shen-Ta Hsieh's avatar
      src/output: add algorithm for finding usable AudioFormat · da642b28
      Shen-Ta Hsieh authored
      * Use PcmExport for 24bit packed output
      da642b28
    • Érico Rolim's avatar
      time/ISO8601: don't use glibc extension in strptime. · 8d80280a
      Érico Rolim authored
      Per the manual for strptime, %F is equivalent %Y-%m-%d, so use that
      directly.
      8d80280a
    • Érico Rolim's avatar
      storage/plugins/CurlStorage: don't use glibc extension in · c95e3dc0
      Érico Rolim authored
      ParseTimePoint.
      
      %Z is a glibc extension to strptime, and is a no-op there, due to the
      mapping between timezone names and their definition (especially when the
      name comes from a different machine) being ambiguous / impossible.  Time
      in HTTP headers is guaranteed to be UTC.
      
      Passing an unknown format to strptime() implementations that don't
      support it will generally cause them to return NULL, which will lead to
      ParseTimePoint throwing an exception and ParseTimeStamp using an
      unnecessary fallback.
      
      Since the timezone name goes at the end of the string, we don't need to
      use %Z to skip it (could be an issue in a different time stamp format),
      so simply removing %Z works best.
      c95e3dc0
  22. 22 Feb, 2021 1 commit