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
07e0a31d
Commit
07e0a31d
authored
5 years ago
by
Max Kellermann
Browse files
Options
Browse Files
Download
Plain Diff
Merge tag 'v0.21.20'
release v0.21.20
parents
36a67827
f24bcc7f
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
3 deletions
+5
-3
.travis.yml
.travis.yml
+1
-1
NEWS
NEWS
+2
-1
ArgParser.cxx
src/protocol/ArgParser.cxx
+1
-1
meson.build
test/meson.build
+1
-0
No files found.
.travis.yml
View file @
07e0a31d
...
@@ -148,7 +148,7 @@ install:
...
@@ -148,7 +148,7 @@ install:
# belonging to nss. You can unlink it" during gtest install
# belonging to nss. You can unlink it" during gtest install
-
test "$TRAVIS_OS_NAME" != "osx" || brew unlink nss
-
test "$TRAVIS_OS_NAME" != "osx" || brew unlink nss
-
test "$TRAVIS_OS_NAME" != "osx" || brew install
--HEAD
https://gist.githubusercontent.com/Kronuz/96ac10fbd8472eb1e7566d740c4034f8/raw/gtest.rb
-
test "$TRAVIS_OS_NAME" != "osx" || brew install https://gist.githubusercontent.com/Kronuz/96ac10fbd8472eb1e7566d740c4034f8/raw/gtest.rb
before_script
:
before_script
:
-
ccache -s
-
ccache -s
...
...
This diff is collapsed.
Click to expand it.
NEWS
View file @
07e0a31d
...
@@ -35,11 +35,12 @@ ver 0.22 (not yet released)
...
@@ -35,11 +35,12 @@ ver 0.22 (not yet released)
* switch to C++17
* switch to C++17
- GCC 7 or clang 4 (or newer) recommended
- GCC 7 or clang 4 (or newer) recommended
ver 0.21.20 (
not yet released
)
ver 0.21.20 (
2020/02/16
)
* decoder
* decoder
- audiofile, ffmpeg, sndfile: handle MIME type "audio/wav"
- audiofile, ffmpeg, sndfile: handle MIME type "audio/wav"
- ffmpeg: fix playback of AIFF and TTA
- ffmpeg: fix playback of AIFF and TTA
- vorbis, opus: fix seeking in small files
- vorbis, opus: fix seeking in small files
* fix backwards seeking on ARM (and other non-x86 CPUs)
ver 0.21.19 (2020/01/17)
ver 0.21.19 (2020/01/17)
* configuration
* configuration
...
...
This diff is collapsed.
Click to expand it.
src/protocol/ArgParser.cxx
View file @
07e0a31d
...
@@ -175,5 +175,5 @@ SignedSongTime
...
@@ -175,5 +175,5 @@ SignedSongTime
ParseCommandArgSignedSongTime
(
const
char
*
s
)
ParseCommandArgSignedSongTime
(
const
char
*
s
)
{
{
auto
value
=
ParseCommandArgFloat
(
s
);
auto
value
=
ParseCommandArgFloat
(
s
);
return
SongTime
::
FromS
(
value
);
return
S
ignedS
ongTime
::
FromS
(
value
);
}
}
This diff is collapsed.
Click to expand it.
test/meson.build
View file @
07e0a31d
...
@@ -6,6 +6,7 @@ if compiler.get_id() == 'gcc'
...
@@ -6,6 +6,7 @@ if compiler.get_id() == 'gcc'
gtest_compile_args += [
gtest_compile_args += [
'-Wno-suggest-attribute=format',
'-Wno-suggest-attribute=format',
'-Wno-suggest-attribute=noreturn',
'-Wno-suggest-attribute=noreturn',
'-Wno-missing-declarations',
]
]
endif
endif
...
...
This diff is collapsed.
Click to expand it.
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