Commit graph

9323 commits

Author SHA1 Message Date
Zsin Skri
45aa75a4ef document util.command_output return value change
After commit `30395911 util.command_output: return stderr, too`,
`command_output` returns a tuple of stdout and stderr. Document that change by
adding a changelog entry and add a usage note to `command_output`'s docstring.
2019-07-15 11:39:30 +02:00
Zsin Skri
30395911e2 util.command_output: return stderr, too
Return a namedtuple CommandOutput(stdout, stderr) instead of just stdout from
util.command_ouput, allowing separate access to stdout and stderr.

This change is required by the ffmpeg replaygain backend (GitHub
PullRequest #3056) as ffmpeg's ebur128 filter outputs only to stderr.
2019-07-14 18:32:59 +02:00
Adrian Sampson
f39cff71d3 Revert "Travis: re-enable Python 3.8"
This reverts commit 0d44d31913.

Apparently, 0.15.5 (which contains the 3.8 fix) is not actually released
yet. Oops!
2019-07-05 09:50:05 -04:00
Adrian Sampson
0d44d31913 Travis: re-enable Python 3.8
The Werkzeug issue on 3.8 seems to have been fixed:
https://github.com/pallets/werkzeug/issues/1551
2019-07-05 09:09:33 -04:00
Adrian Sampson
ca4b101ef4 Changelog for #3322 (fix #465) 2019-07-01 17:24:12 -04:00
Adrian Sampson
e39341b282 Merge pull request #3322 from thedevilisinthedetails/master
465 discogs: Fetch a few more metadata fields
2019-07-01 17:22:50 -04:00
Peter
1b4124931b Trigger 2019-07-01 21:17:19 +02:00
Peter
ad67d70818 removing empty string 2019-07-01 21:05:31 +02:00
Peter
0cd46dab77 fixing per review comments 2019-07-01 21:04:35 +02:00
Peter
dd7e932a9a removing print log 2019-06-30 14:34:13 +02:00
Peter
6ae73546e5 Trigger 2019-06-30 14:09:31 +02:00
Peter
e196c1dae6 fixing test 2019-06-30 13:54:38 +02:00
Peter
510276f653 fixing test 2019-06-30 13:44:13 +02:00
Peter
8bf9d75f66 fixing test 2019-06-30 12:50:36 +02:00
Peter
0e2e2dfec3 adding additional discogs attrributes 2019-06-30 12:22:22 +02:00
Peter
e9dd226b93 fixing test 2019-06-30 12:06:38 +02:00
Adrian Sampson
23c9f87142 Typography (#3319) 2019-06-28 09:24:15 -04:00
Adrian Sampson
394a50a354
Merge pull request #3319 from justinmayer/patch-1
Convert plugin skips previously-converted files
2019-06-28 09:22:59 -04:00
Justin Mayer
9e5c45d6dd
Convert plugin skips previously-converted files
Clarifies documentation so it's clear that one can run `beet convert` without fearing that previously-converted files will be needlessly re-converted.
2019-06-28 14:47:38 +02:00
Adrian Sampson
090711eeb2 Changelog for #3318 2019-06-27 22:49:56 -04:00
Adrian Sampson
73f8edd116 Simplify force check (#3318) 2019-06-27 22:44:57 -04:00
Adrian Sampson
0726123e41 Move PROBE_FIELD to module scope (#3318) 2019-06-27 22:43:18 -04:00
Adrian Sampson
cca6c49784 Merge pull request #3318 from SusannaMaria/absubmit-improvements
Absubmit improvements
2019-06-27 22:41:23 -04:00
Susanna Maria
b20516e552 Small improvement of code doc 2019-06-26 20:29:17 +02:00
Susanna Maria
cab97c58d4 Pep8 drives me sometimes crazy 2019-06-25 20:57:43 +02:00
Susanna Maria
932d18a838 Pep8 error ... 2019-06-25 20:37:12 +02:00
Susanna Maria
f254b33c6e Findings from PR 2019-06-25 20:22:26 +02:00
Susanna Maria
2bfc7723fa Fix findings from travis-ci 2019-06-23 18:01:21 +02:00
Susanna Maria
6e179d86e6 Pep8 bugfix 2019-06-23 17:43:40 +02:00
Susanna Maria
f99b4841df Better documentation 2019-06-23 17:04:43 +02:00
Susanna Maria
0242176b40 Why binary import of json? 2019-06-23 16:59:33 +02:00
Susanna Maria
1643eea3f5 Parameter handling 2019-06-23 13:04:17 +02:00
Susanna Maria
b64059b173
Merge pull request #3 from beetbox/master
bump
2019-06-23 10:56:35 +02:00
Adrian Sampson
d959f8d89b
Merge pull request #3316 from SusannaMaria/mosaic-plugin-external
external mosaic plugin
2019-06-22 09:12:29 -07:00
Susanna Maria
43d7446df7 Right listing of mosaic plugin 2019-06-22 17:44:18 +02:00
Susanna Maria
2477443e58 Add mosaic plugin 2019-06-22 17:01:43 +02:00
Susanna Maria
5a3cea2b8e
Merge pull request #2 from beetbox/master
Merge with head repository
2019-06-22 14:02:19 +02:00
Adrian Sampson
55c2b2912c Refine changelog for #3314 2019-06-20 17:23:51 -04:00
Adrian Sampson
0ca2283d25 Merge pull request #3314 from zsinskri/r128-tag-q78
replaygain: fix #3311
2019-06-20 17:22:07 -04:00
Zsin Skri
299cd01437 changelog: fix storage format in R128_ALBUM_GAIN 2019-06-20 22:15:22 +02:00
Zsin Skri
a7e2de2499 require mediafile 0.2.0
mediafile 0.2.0 includes the changes used by commit f645400. Update setup.py to
reflect that new version requirement.
2019-06-20 12:50:11 +02:00
Zsin Skri
f645400c5e replaygain: adapt to mediafile commit 95e569a
Since commit 95e569a, mediafile takes care of the float -> Q7.8 conversion in
R128 GAIN tags by itself.

From `store_album_r128_gain` this conversion was already missing, remove it from
`store_track_r128_gain`, too.

fixes #3311
2019-06-18 23:17:38 +02:00
Peter
90cf579ee3 adding genre, released_date and discogs_release_id 2019-06-16 21:55:35 +02:00
Adrian Sampson
3bdbaecc3a
Merge pull request #3307 from beetbox/arcresu-patch-2
docs: mention mpdstats needs to be running
2019-06-11 11:56:05 -04:00
Adrian Sampson
7dd0ed77f9 Merge pull request #3302 from Holzhaus/fix-3301
beetsplug/importadded: Add missing path kwarg to update_after_write_time()
2019-06-11 11:50:36 -04:00
Jan Holthuis
7e4a80133e docs: Add changelog entry for #3301 fix 2019-06-11 13:47:47 +02:00
Carl Suster
bf26e2cc7e
docs: mention mpdstats needs to be running
Clarify that `mpdstats` is an MPD client and needs to be running all the time to collect statistics.

See https://discourse.beets.io/t/mpdstats-requirements/796
2019-06-11 18:34:33 +10:00
Adrian Sampson
a94e4b0473 Changelog for #3251 2019-06-10 13:28:01 -04:00
Adrian Sampson
ed30a7aed2 Merge pull request #3251 from thedevilisinthedetails/master
#2579 Adding styles to discogs plugin
2019-06-10 13:26:09 -04:00
Peter
34c28529a0 Trigger 2019-06-10 16:41:41 +02:00