Commit Graph

1992 Commits

Author SHA1 Message Date
Michael Wiencek
dbe900b0b7 Remove py2app hacks that are no longer necessary (using 0.7.4) 2013-05-24 23:02:53 -07:00
Michael Wiencek
55b457fcfc Kill tab character
This is what I get for using an unconfigured gVim on Windows.
2013-05-24 22:43:03 -05:00
Michael Wiencek
ddc5dbebc9 Make the previous commit actually work... 2013-05-24 22:37:52 -05:00
Michael Wiencek
d9a7988052 Include Qt accessibility plugin in the windows build 2013-05-24 21:24:59 -05:00
Michael Wiencek
6585b3762c Improve accessibility descriptions for the main panels 2013-05-24 21:00:31 -05:00
Michael Wiencek
5afe42f1f9 run build_ui on ui/options_tags.ui 2013-05-24 14:59:15 -05:00
Michael Wiencek
3e6d253213 Merge branch 'master' of github.com:musicbrainz/picard into sophist_options_tags 2013-05-24 14:58:30 -05:00
Michael Wiencek
e57e70a826 Merge pull request #101 from Sophist-UK/sophist_ignore_fpcalc_discid
Add *.exe to ignore list
2013-05-24 08:04:32 -07:00
Michael Wiencek
9ef74b5273 don't call setKerning, change groupbox names 2013-05-24 09:24:03 -05:00
Michael Wiencek
734b18cdf9 Fix tab order in metadata options 2013-05-23 12:26:33 -07:00
Michael Wiencek
61f0d8876a Allow tab access to toolbar, set tab order 2013-05-22 12:25:46 -05:00
Sophist
b81ded5bc9 Switch to *.exe (with new line at end) as recommended by Lukas 2013-05-22 13:31:01 +01:00
Sophist
436ef0bd42 Switch to *.exe as recommended by Lukas 2013-05-22 13:29:23 +01:00
Sophist
a85b8db0d9 Resequence ID3v1/2 fields in Options / Options / Tags
Resequenced ID3v2 fields so that they are together with ID3v1 fields
following - previously ID3v2 fields were split with an ID3v1 field
inbetween, This is less confusing to the user.
2013-05-22 13:02:27 +01:00
Sophist
baa671916d Add fpcalc.exe and discid.dll to ignore list
fpcalc and discid.dll are put in the development directories when you
build the development environment according to the instructions on the
musicbrainz web site - and they should not form part of the repo.
2013-05-22 12:57:03 +01:00
Sophist
036a78e02d Revert "Add fpcalc.exe and discid.dll to ignore list"
This reverts commit b5d48b5f95.
2013-05-22 12:35:41 +01:00
Sophist
b5d48b5f95 Add fpcalc.exe and discid.dll to ignore list
fpcalc and discid.dll are put in the development directories when you
build the development environment according to the instructions on the
musicbrainz web site - and they should not form part of the repo.
2013-05-22 12:10:30 +01:00
Michael Wiencek
9002d1b6c4 Use QXmlStreamReader instead of (the deprecated) QtXml
QtXml isn't maintained and is removed from Qt 5.
2013-05-21 01:43:49 -05:00
Michael Wiencek
b41555f912 Save files in order (again) 2013-05-18 13:04:06 -05:00
Michael Wiencek
e16b2533c2 Fix "vocal vocals" bug in performer: tag 2013-04-25 23:30:22 -05:00
Wieland Hoffmann
49bacdebd3 Merge branch 'master' of https://github.com/brainz34/picard 2013-04-24 16:05:59 +02:00
Wieland Hoffmann
ef08815348 Update NEWS.txt 2013-04-24 10:53:46 +02:00
Wieland Hoffmann
cd84dafe1d Merge branch 'version-info' of https://github.com/phw/picard 2013-04-24 10:47:56 +02:00
Philipp Wolfer
0d8f9b6078 Fixed exception in about dialog when libdiscid is not installed at all.
Signed-off-by: Philipp Wolfer <ph.wolfer@gmail.com>
2013-04-24 08:31:53 +02:00
Philipp Wolfer
d6e83a2963 Display version information for PyQt, Mutagen and libdiscid in about dialog. 2013-04-23 21:46:11 +02:00
Wieland Hoffmann
8afb747323 PICARD-296: Cover file is saved repeatedly
If overwrite was enabled, the else suite was executed which saved the
cover file once for each track of an album even if there was only one
file. Check if the filesize is the same as that of the file we're trying
to save - if it is, don't save the file again.
2013-04-22 13:03:03 +02:00
Wieland Hoffmann
e374c6db8f Add a note about unrecommended libdiscid versions 2013-04-17 12:12:39 +02:00
Wieland Hoffmann
a53509d182 Merge branch 'sparse_read' of https://github.com/JonnyJD/picard 2013-04-17 12:12:33 +02:00
brainz34
8bbb67c62c Fix: load_cluster() does not find existing cluster.
`load_cluster()` uses "artist" for looking up existing clusters, but
Cluster does not have a meta-data item "artist".

This bug does not show up when clustering all files at once (which
will be the case most times), as in this case a single cluster will be
calculated and only looked up once. But when clustering files in two
steps, a second cluster will be generated as the first one will not be
found.

Signed-off-by: brainz34 <brainz34@musicbrainz.org>
2013-04-15 11:53:42 +02:00
Michael Wiencek
a3fa949e29 Fix a rare TypeError in the metadatabox 2013-04-14 00:08:10 -05:00
Michael Wiencek
0b8600098b Merge pull request #92 from brainz34/master
Fix: Global plugins are overwriting User-plugins.
2013-04-12 12:04:55 -07:00
Michael Wiencek
63431b152d Merge pull request #74 from mwiencek/master
Load TXXX frames that conflict with Picard tags into the ~id3:TXXX namespace
2013-04-11 14:02:56 -07:00
brainz34
cccc1a3c1a Fix: Global plugins are overwriting User-plugins.
Since the global plugins (from picard/plugins) have been read *after*
the ones in user-plugindir, plugins got overwritten if they have the same
name. Now the user-plugindir is read after the globel one, thus the
user plugins are overwriting the global plugins -- which is more
appropriate.

Signed-off-by: brainz34 <brainz34@musicbrainz.org>
2013-04-11 21:23:42 +02:00
Wieland Hoffmann
243eed13b8 addrelease: initialize discnumber_shift outside the loop 2013-04-10 10:39:51 +02:00
Johannes Dewender
ecde567839 PICARD-415 make lookup faster again
read_sparse is available starting with libdiscid 0.5.0.
The performance problem appears starting with 0.3.0 in general
and 0.3.1 for Linux.
2013-04-07 13:18:39 +02:00
Wieland Hoffmann
5ab5d01bab Hide unsupported files in the file browser
This fixes PICARD-395 because unsupported files are not shown anymore.
2013-04-03 12:06:26 +02:00
Wieland Hoffmann
d381048216 addrelease: Try harder to seed the RE properly
Disc numbers <= 0 were previously changed to values lower than 0 which
caused the RE to crash. Fix this by using the lowest disc number of the
cluster (which is somewhat sorted) to figure out the difference between
that disc number and 0 and use that number to change all disc number to
be 0-based while preserving their order.
2013-04-03 11:50:07 +02:00
Michael Wiencek
5a9d76589a preserved_tags ignores the first tag in the list 2013-03-31 10:10:45 -05:00
Michael Wiencek
670179bd0c remove dupe NEWS item 2013-03-30 20:57:49 -05:00
Lukáš Lalinský
ca10fcf223 Merge branch 'master' of github.com:musicbrainz/picard 2013-03-30 19:30:11 +01:00
Lukáš Lalinský
03ece714e4 Increase version number, update changelog 2013-03-30 19:11:01 +01:00
Michael Wiencek
2206202fb9 fix case-sensitivity issues reading TXXX frames 2013-02-17 15:18:44 -06:00
Michael Wiencek
df70db3c11 Merge branch 'master' of github.com:musicbrainz/picard into mwiencek-master 2013-02-17 14:36:54 -06:00
Michael Wiencek
eae8782238 PICARD-399: clicking an album should always expand it
caused by de521c
2013-02-17 14:29:19 -06:00
Michael Wiencek
71cc8b037f Add %_releasegroup% and %_releasegroupcomment%
For access to the name and disambiguation, respectively.
2013-02-08 23:43:46 -06:00
Lukáš Lalinský
d083fce8fd Use only the duration from fpcalc (for consistency) 2013-02-07 21:26:20 +01:00
Wieland Hoffmann
15dbbc9e2e Don't enable "other versions" if more than one album is selected 2013-02-04 16:37:15 +01:00
Wieland Hoffmann
6196648446 Only create caa_node if it exits in the xml 2013-02-04 15:54:19 +01:00
Wieland Hoffmann
760ae6dba2 Don't download the CAA index.json when no types are enabled 2013-02-03 19:46:39 +01:00
Wieland Hoffmann
0870df0a8b Use CAA information when only 2 or 1 image types are enabled. 2013-02-03 19:42:57 +01:00