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
496f43e2
Commit
496f43e2
authored
Nov 04, 2019
by
Max Kellermann
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'v0.21.x'
parents
3f443726
d659c7df
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
26 additions
and
12 deletions
+26
-12
NEWS
NEWS
+5
-0
AndroidManifest.xml
android/AndroidManifest.xml
+2
-2
meson.build
meson.build
+4
-1
libs.py
python/build/libs.py
+4
-4
SongUpdate.cxx
src/SongUpdate.cxx
+2
-2
meson.build
src/lib/sqlite/meson.build
+6
-1
meson.build
src/neighbor/meson.build
+1
-1
JackOutputPlugin.cxx
src/output/plugins/JackOutputPlugin.cxx
+2
-1
No files found.
NEWS
View file @
496f43e2
...
...
@@ -32,6 +32,11 @@ ver 0.22 (not yet released)
* switch to C++17
- GCC 7 or clang 4 (or newer) recommended
ver 0.21.17 (not yet released)
* outputs
- jack: mark ports as terminal
* fix build failure with -Ddatabase=false
ver 0.21.16 (2019/10/16)
* queue
- fix relative destination offset when moving a range
...
...
android/AndroidManifest.xml
View file @
496f43e2
...
...
@@ -2,8 +2,8 @@
<manifest
xmlns:android=
"http://schemas.android.com/apk/res/android"
package=
"org.musicpd"
android:installLocation=
"auto"
android:versionCode=
"
39
"
android:versionName=
"0.21.1
6
"
>
android:versionCode=
"
40
"
android:versionName=
"0.21.1
7
"
>
<uses-sdk
android:minSdkVersion=
"21"
android:targetSdkVersion=
"26"
/>
...
...
meson.build
View file @
496f43e2
...
...
@@ -401,8 +401,11 @@ endif
if archive_glue_dep.found()
sources += [
'src/TagArchive.cxx',
'src/db/update/Archive.cxx',
]
if enable_database
sources += ['src/db/update/Archive.cxx']
endif
endif
if is_windows
...
...
python/build/libs.py
View file @
496f43e2
...
...
@@ -112,8 +112,8 @@ liblame = AutotoolsProject(
)
ffmpeg
=
FfmpegProject
(
'http://ffmpeg.org/releases/ffmpeg-4.2.tar.xz'
,
'
023f10831a97ad93d798f53a3640e55cd564abfeba807ecbe8524dac4fedecd5
'
,
'http://ffmpeg.org/releases/ffmpeg-4.2.
1.
tar.xz'
,
'
cec7c87e9b60d174509e263ac4011b522385fd0775292e1670ecc1180c9bb6d4
'
,
'lib/libavcodec.a'
,
[
'--disable-shared'
,
'--enable-static'
,
...
...
@@ -341,8 +341,8 @@ ffmpeg = FfmpegProject(
)
curl
=
AutotoolsProject
(
'http://curl.haxx.se/download/curl-7.6
5.3
.tar.xz'
,
'
f2d98854813948d157f6a91236ae34ca4a1b4cb302617cebad263d79b0235fea
'
,
'http://curl.haxx.se/download/curl-7.6
6.0
.tar.xz'
,
'
dbb48088193016d079b97c5c3efde8efa56ada2ebf336e8a97d04eb8e2ed98c1
'
,
'lib/libcurl.a'
,
[
'--disable-shared'
,
'--enable-static'
,
...
...
src/SongUpdate.cxx
View file @
496f43e2
...
...
@@ -87,8 +87,6 @@ Song::UpdateFile(Storage &storage)
return
true
;
}
#endif
#ifdef ENABLE_ARCHIVE
SongPtr
...
...
@@ -130,6 +128,8 @@ Song::UpdateFileInArchive(ArchiveFile &archive) noexcept
#endif
#endif
/* ENABLE_DATABASE */
bool
DetachedSong
::
LoadFile
(
Path
path
)
{
...
...
src/lib/sqlite/meson.build
View file @
496f43e2
sqlite_dep = dependency('sqlite3', version: '>= 3.7.3', required: get_option('sqlite'))
if enable_database
sqlite_dep = dependency('sqlite3', version: '>= 3.7.3', required: get_option('sqlite'))
else
sqlite_dep = dependency('', required: false)
endif
conf.set('ENABLE_SQLITE', sqlite_dep.found())
if not sqlite_dep.found()
subdir_done()
...
...
src/neighbor/meson.build
View file @
496f43e2
if not get_option('neighbor')
if not get_option('neighbor')
or not enable_database
conf.set('ENABLE_NEIGHBOR_PLUGINS', false)
neighbor_glue_dep = dependency('', required: false)
subdir_done()
...
...
src/output/plugins/JackOutputPlugin.cxx
View file @
496f43e2
...
...
@@ -405,10 +405,11 @@ JackOutput::Connect()
jack_on_info_shutdown
(
client
,
OnShutdown
,
this
);
for
(
unsigned
i
=
0
;
i
<
num_source_ports
;
++
i
)
{
unsigned
long
portflags
=
JackPortIsOutput
|
JackPortIsTerminal
;
ports
[
i
]
=
jack_port_register
(
client
,
source_ports
[
i
].
c_str
(),
JACK_DEFAULT_AUDIO_TYPE
,
JackPortIsOutput
,
0
);
portflags
,
0
);
if
(
ports
[
i
]
==
nullptr
)
{
Disconnect
();
throw
FormatRuntimeError
(
"Cannot register output port
\"
%s
\"
"
,
...
...
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