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
84784bad
Commit
84784bad
authored
Jan 03, 2020
by
Max Kellermann
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'v0.21.x'
parents
5990e46d
756560ea
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
50 additions
and
3 deletions
+50
-3
.travis.yml
.travis.yml
+44
-0
NEWS
NEWS
+3
-0
AndroidManifest.xml
android/AndroidManifest.xml
+2
-2
Compiler.h
src/util/Compiler.h
+1
-1
No files found.
.travis.yml
View file @
84784bad
...
...
@@ -23,6 +23,50 @@ matrix:
env
:
-
MATRIX_EVAL="export PATH=\$HOME/.local/bin:\$PATH"
# Ubuntu Bionic (18.04) with GCC 7 on big-endian
-
os
:
linux
arch
:
s390x
dist
:
bionic
addons
:
apt
:
sources
:
-
sourceline
:
'
ppa:deadsnakes/ppa'
# for Python 3.7 (required by Meson)
packages
:
-
libgtest-dev
-
libboost-dev
-
python3.6
-
python3-urllib3
-
ninja-build
before_install
:
-
wget https://bootstrap.pypa.io/get-pip.py
-
/usr/bin/python3.6 get-pip.py --user
install
:
-
/usr/bin/python3.6 $HOME/.local/bin/pip install --user meson
env
:
-
MATRIX_EVAL="export PATH=\$HOME/.local/bin:\$PATH"
# Ubuntu Bionic (18.04) with GCC 7 on ARM64
-
os
:
linux
arch
:
arm64
dist
:
bionic
addons
:
apt
:
sources
:
-
sourceline
:
'
ppa:deadsnakes/ppa'
# for Python 3.7 (required by Meson)
packages
:
-
libgtest-dev
-
libboost-dev
-
python3.6
-
python3-urllib3
-
ninja-build
before_install
:
-
wget https://bootstrap.pypa.io/get-pip.py
-
/usr/bin/python3.6 get-pip.py --user
install
:
-
/usr/bin/python3.6 $HOME/.local/bin/pip install --user meson
env
:
-
MATRIX_EVAL="export PATH=\$HOME/.local/bin:\$PATH"
# Ubuntu Trusty (16.04) with GCC 6
-
os
:
linux
dist
:
trusty
...
...
NEWS
View file @
84784bad
...
...
@@ -30,6 +30,9 @@ ver 0.22 (not yet released)
* switch to C++17
- GCC 7 or clang 4 (or newer) recommended
ver 0.21.19 (not yet released)
* fix build failure with clang 10
ver 0.21.18 (2019/12/24)
* protocol
- work around Mac OS X bug in the ISO 8601 parser
...
...
android/AndroidManifest.xml
View file @
84784bad
...
...
@@ -2,8 +2,8 @@
<manifest
xmlns:android=
"http://schemas.android.com/apk/res/android"
package=
"org.musicpd"
android:installLocation=
"auto"
android:versionCode=
"4
1
"
android:versionName=
"0.21.1
8
"
>
android:versionCode=
"4
2
"
android:versionName=
"0.21.1
9
"
>
<uses-sdk
android:minSdkVersion=
"21"
android:targetSdkVersion=
"26"
/>
...
...
src/util/Compiler.h
View file @
84784bad
...
...
@@ -145,7 +145,7 @@
#if GCC_CHECK_VERSION(7,0)
#define gcc_fallthrough __attribute__((fallthrough))
#elif CLANG_CHECK_VERSION(10,0)
#elif CLANG_CHECK_VERSION(10,0)
&& defined(__cplusplus)
#define gcc_fallthrough [[fallthrough]]
#else
#define gcc_fallthrough
...
...
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