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
f6e428ac
Commit
f6e428ac
authored
Apr 24, 2017
by
Max Kellermann
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'v0.20.x'
parents
45fbafae
7b7fb5ac
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
12 additions
and
9 deletions
+12
-9
NEWS
NEWS
+4
-0
user.xml
doc/user.xml
+1
-1
libs.py
python/build/libs.py
+2
-2
Directory.hxx
src/db/plugins/simple/Directory.hxx
+1
-1
PcmDecoderPlugin.cxx
src/decoder/plugins/PcmDecoderPlugin.cxx
+2
-1
RoarOutputPlugin.cxx
src/output/plugins/RoarOutputPlugin.cxx
+0
-2
FileInfo.hxx
src/storage/FileInfo.hxx
+1
-1
ScopeExit.hxx
src/util/ScopeExit.hxx
+1
-1
No files found.
NEWS
View file @
f6e428ac
...
...
@@ -7,6 +7,10 @@ ver 0.21 (not yet released)
* output
- alsa: non-blocking mode
ver 0.20.7 (not yet released)
* database
- simple: fix false positive directory loop detection with NFS
ver 0.20.6 (2017/03/10)
* input
- curl: fix headers after HTTP redirect to Shoutcast server
...
...
doc/user.xml
View file @
f6e428ac
...
...
@@ -4080,7 +4080,7 @@ run</programlisting>
(logical "and") can be used to select portions of
the format string depending on the existing tag
values. Example:
<parameter>
~/.mpd/recorder/[%title|%name%].ogg
</parameter>
<parameter>
~/.mpd/recorder/[%title
%
|%name%].ogg
</parameter>
(use the "name" tag if no title exists)
</para>
</entry>
...
...
python/build/libs.py
View file @
f6e428ac
...
...
@@ -36,8 +36,8 @@ flac = AutotoolsProject(
)
zlib
=
ZlibProject
(
'http://zlib.net/zlib-1.2.
8
.tar.xz'
,
'
28f1205d8dd2001f26fec1e8c2cebe37
'
,
'http://zlib.net/zlib-1.2.
11
.tar.xz'
,
'
4ff941449631ace0d4d203e3483be9dbc9da454084111f97ea0a2114e19bf066
'
,
'lib/libz.a'
,
)
...
...
src/db/plugins/simple/Directory.hxx
View file @
f6e428ac
...
...
@@ -86,7 +86,7 @@ struct Directory {
Directory
*
const
parent
;
time_t
mtime
=
0
;
u
nsigned
inode
=
0
,
device
=
0
;
u
int64_t
inode
=
0
,
device
=
0
;
const
std
::
string
path
;
...
...
src/decoder/plugins/PcmDecoderPlugin.cxx
View file @
f6e428ac
...
...
@@ -43,7 +43,8 @@ FillBuffer(DecoderClient &client, InputStream &is, B &buffer)
{
buffer
.
Shift
();
auto
w
=
buffer
.
Write
();
assert
(
!
w
.
IsEmpty
());
if
(
w
.
IsEmpty
())
return
true
;
size_t
nbytes
=
decoder_read
(
client
,
is
,
w
.
data
,
w
.
size
);
if
(
nbytes
==
0
&&
is
.
LockIsEOF
())
...
...
src/output/plugins/RoarOutputPlugin.cxx
View file @
f6e428ac
...
...
@@ -287,8 +287,6 @@ roar_tag_convert(TagType type, bool *is_uuid)
case
TAG_MUSICBRAINZ_ALBUMID
:
case
TAG_MUSICBRAINZ_ALBUMARTISTID
:
case
TAG_MUSICBRAINZ_TRACKID
:
*
is_uuid
=
true
;
return
"HASH"
;
case
TAG_MUSICBRAINZ_RELEASETRACKID
:
*
is_uuid
=
true
;
return
"HASH"
;
...
...
src/storage/FileInfo.hxx
View file @
f6e428ac
...
...
@@ -50,7 +50,7 @@ struct StorageFileInfo {
* Device id and inode number. 0 means unknown / not
* applicable.
*/
u
nsigned
device
,
inode
;
u
int64_t
device
,
inode
;
StorageFileInfo
()
=
default
;
...
...
src/util/ScopeExit.hxx
View file @
f6e428ac
...
...
@@ -45,7 +45,7 @@ public:
explicit
ScopeExitGuard
(
F
&&
f
)
:
F
(
std
::
forward
<
F
>
(
f
))
{}
ScopeExitGuard
(
ScopeExitGuard
&&
src
)
:
F
(
std
::
move
(
src
))
{
:
F
(
std
::
move
(
src
))
,
enabled
(
src
.
enabled
)
{
src
.
enabled
=
false
;
}
...
...
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