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
250b6a3d
Commit
250b6a3d
authored
Feb 03, 2018
by
Max Kellermann
Browse files
Options
Browse Files
Download
Plain Diff
Merge tag 'v0.20.16'
release v0.20.16
parents
73ddbcc8
975a4ae8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
29 additions
and
7 deletions
+29
-7
NEWS
NEWS
+6
-1
AndroidManifest.xml
android/AndroidManifest.xml
+2
-2
libs.py
python/build/libs.py
+2
-2
Iso9660ArchivePlugin.cxx
src/archive/plugins/Iso9660ArchivePlugin.cxx
+5
-0
Queue.hxx
src/db/update/Queue.hxx
+4
-0
Service.cxx
src/db/update/Service.cxx
+1
-1
Init.cxx
src/lib/upnp/Init.cxx
+5
-1
PulseOutputPlugin.cxx
src/output/plugins/PulseOutputPlugin.cxx
+4
-0
No files found.
NEWS
View file @
250b6a3d
...
...
@@ -25,9 +25,14 @@ ver 0.21 (not yet released)
- sndio: new mixer plugin
* require GCC 5.0
ver 0.20.16 (not yet released)
ver 0.20.16 (2018/02/03)
* output
- pulse: fix crash during auto-detection
* database
- simple: fix search within mount points
- upnp: enable IPv6
* archive
- iso9660: libcdio 2.0 compatibility
* fix crash in debug build on Haiku and other operating systems
ver 0.20.15 (2018/01/05)
...
...
android/AndroidManifest.xml
View file @
250b6a3d
...
...
@@ -2,8 +2,8 @@
<manifest
xmlns:android=
"http://schemas.android.com/apk/res/android"
package=
"org.musicpd"
android:installLocation=
"auto"
android:versionCode=
"1
4
"
android:versionName=
"0.20.1
5
"
>
android:versionCode=
"1
5
"
android:versionName=
"0.20.1
6
"
>
<uses-sdk
android:minSdkVersion=
"9"
android:targetSdkVersion=
"17"
/>
...
...
python/build/libs.py
View file @
250b6a3d
...
...
@@ -339,8 +339,8 @@ ffmpeg = FfmpegProject(
)
curl
=
AutotoolsProject
(
'http://curl.haxx.se/download/curl-7.5
7
.0.tar.xz'
,
'
f5f6fd3c72b7b8389969f4fb671ed8532fa9b5bb7a5cae7ca89bc1cea45c7878
'
,
'http://curl.haxx.se/download/curl-7.5
8
.0.tar.xz'
,
'
6a813875243609eb75f37fa72044e4ad618b55ec15a4eafdac2df6a7e800e3e3
'
,
'lib/libcurl.a'
,
[
'--disable-shared'
,
'--enable-static'
,
...
...
src/archive/plugins/Iso9660ArchivePlugin.cxx
View file @
250b6a3d
...
...
@@ -113,7 +113,12 @@ Iso9660ArchiveFile::Visit(char *path, size_t length, size_t capacity,
visitor
.
VisitArchiveEntry
(
path
+
1
);
}
}
#if LIBCDIO_VERSION_NUM >= 20000
iso9660_filelist_free
(
entlist
);
#else
_cdio_list_free
(
entlist
,
true
);
#endif
}
static
std
::
unique_ptr
<
ArchiveFile
>
...
...
src/db/update/Queue.hxx
View file @
250b6a3d
...
...
@@ -49,6 +49,10 @@ struct UpdateQueueItem {
bool
IsDefined
()
const
{
return
id
!=
0
;
}
void
Clear
()
{
id
=
0
;
}
};
class
UpdateQueue
{
...
...
src/db/update/Service.cxx
View file @
250b6a3d
...
...
@@ -250,7 +250,7 @@ UpdateService::RunDeferred() noexcept
delete
walk
;
walk
=
nullptr
;
next
=
UpdateQueueItem
();
next
.
Clear
();
idle_add
(
IDLE_UPDATE
);
...
...
src/lib/upnp/Init.cxx
View file @
250b6a3d
...
...
@@ -34,7 +34,11 @@ static unsigned upnp_ref;
static
void
DoInit
()
{
auto
code
=
UpnpInit
(
0
,
0
);
#ifdef UPNP_ENABLE_IPV6
auto
code
=
UpnpInit2
(
nullptr
,
0
);
#else
auto
code
=
UpnpInit
(
nullptr
,
0
);
#endif
if
(
code
!=
UPNP_E_SUCCESS
)
throw
FormatRuntimeError
(
"UpnpInit() failed: %s"
,
UpnpGetErrorMessage
(
code
));
...
...
src/output/plugins/PulseOutputPlugin.cxx
View file @
250b6a3d
...
...
@@ -26,6 +26,7 @@
#include "../OutputAPI.hxx"
#include "mixer/MixerList.hxx"
#include "mixer/plugins/PulseMixerPlugin.hxx"
#include "util/ScopeExit.hxx"
#include "Log.hxx"
#include <pulse/thread-mainloop.h>
...
...
@@ -854,7 +855,10 @@ PulseOutput::TestDefaultDevice()
try
{
const
ConfigBlock
empty
;
PulseOutput
po
(
empty
);
po
.
Enable
();
AtScopeExit
(
&
po
)
{
po
.
Disable
();
};
po
.
WaitConnection
();
return
true
;
}
catch
(...)
{
return
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