Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
mpd
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Иван Мажукин
mpd
Commits
5b74ed6b
Commit
5b74ed6b
authored
Apr 23, 2019
by
Max Kellermann
Browse files
Options
Browse Files
Download
Plain Diff
Merge tag 'v0.21.8'
release v0.21.8
parents
ccc58f2a
cabcbb05
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
15 additions
and
7 deletions
+15
-7
NEWS
NEWS
+4
-1
protocol.rst
doc/protocol.rst
+5
-2
libs.py
python/build/libs.py
+2
-2
SmbclientInputPlugin.cxx
src/input/plugins/SmbclientInputPlugin.cxx
+4
-2
No files found.
NEWS
View file @
5b74ed6b
...
...
@@ -8,7 +8,9 @@ ver 0.22 (not yet released)
- ffmpeg: new plugin based on FFmpeg's libavfilter library
- hdcd: new plugin based on FFmpeg's "af_hdcd" for HDCD playback
ver 0.21.8 (not yet released)
ver 0.21.8 (2019/04/23)
* input
- smbclient: download to buffer instead of throttling transfer
* output
- httpd: add missing mutex lock
- httpd: fix use-after-free bug
...
...
@@ -18,6 +20,7 @@ ver 0.21.8 (not yet released)
* fix build failure with GCC 9
* fix build failure with -Ddatabase=false
* systemd: add user socket unit
* doc: "list file" is deprecated
ver 0.21.7 (2019/04/03)
* input
...
...
doc/protocol.rst
View file @
5b74ed6b
...
...
@@ -873,8 +873,7 @@ The music database
:command:`list {TYPE} {FILTER} [group {GROUPTYPE}]`
Lists unique tags values of the specified type.
``TYPE`` can be any tag supported by
:program:`MPD` or
*file*.
:program:`MPD`.
Additional arguments may specify a :ref:`filter <filter_syntax>`.
The *group* keyword may be used
...
...
@@ -885,6 +884,10 @@ The music database
list album group albumartist
``list file`` was implemented in an early :program:`MPD` version,
but does not appear to make a lot of sense. It still works (to
avoid breaking compatibility), but is deprecated.
.. _command_listall:
:command:`listall [URI]`
...
...
python/build/libs.py
View file @
5b74ed6b
...
...
@@ -392,7 +392,7 @@ libnfs = AutotoolsProject(
)
boost
=
BoostProject
(
'http://downloads.sourceforge.net/project/boost/boost/1.
69.0/boost_1_69
_0.tar.bz2'
,
'
8f32d4617390d1c2d16f26a27ab60d97807b35440d45891fa340fc2648b04406
'
,
'http://downloads.sourceforge.net/project/boost/boost/1.
70.0/boost_1_70
_0.tar.bz2'
,
'
430ae8354789de4fd19ee52f3b1f739e1fba576f0aded0897c3c2bc00fb38778
'
,
'include/boost/version.hpp'
,
)
src/input/plugins/SmbclientInputPlugin.cxx
View file @
5b74ed6b
...
...
@@ -22,6 +22,7 @@
#include "lib/smbclient/Mutex.hxx"
#include "../InputStream.hxx"
#include "../InputPlugin.hxx"
#include "../MaybeBufferedInputStream.hxx"
#include "PluginUnavailable.hxx"
#include "system/Error.hxx"
#include "util/ASCII.hxx"
...
...
@@ -112,8 +113,9 @@ input_smbclient_open(const char *uri,
throw
MakeErrno
(
e
,
"smbc_fstat() failed"
);
}
return
std
::
make_unique
<
SmbclientInputStream
>
(
uri
,
mutex
,
ctx
,
fd
,
st
);
return
std
::
make_unique
<
MaybeBufferedInputStream
>
(
std
::
make_unique
<
SmbclientInputStream
>
(
uri
,
mutex
,
ctx
,
fd
,
st
));
}
size_t
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment