summaryrefslogtreecommitdiffstats
path: root/res/schema.xml
diff options
context:
space:
mode:
authorNino Miškić-Pletenac <nino.mip@gmail.com>2018-05-03 02:03:00 +0200
committerNino Miškić-Pletenac <nino.mip@gmail.com>2018-05-03 02:03:00 +0200
commit416bc0886821e35310f791c16a16a4259ef7b662 (patch)
treea00fa3d28a695d7871b4053b0d2e7c64e840cf4a /res/schema.xml
parent8c01dd0a1ff911fb3062a0ae171bb5f210f47303 (diff)
parenteb9edc4676d8e8184fa7c7bdef8d14c0bec0a19f (diff)
Merge branch 'master' into silencedetection
Diffstat (limited to 'res/schema.xml')
-rw-r--r--res/schema.xml18
1 files changed, 15 insertions, 3 deletions
diff --git a/res/schema.xml b/res/schema.xml
index 8a61cbce47..8b9040538e 100644
--- a/res/schema.xml
+++ b/res/schema.xml
@@ -386,7 +386,7 @@ METADATA
<revision version="24" min_compatible="3">
<description>
Add cover art support. Default source is UNKNOWN and default type is NONE.
- See library/coverart.h.
+ <!-- See library/coverart.h. -->
</description>
<sql>
ALTER TABLE library ADD COLUMN coverart_source INTEGER DEFAULT 0;
@@ -419,7 +419,7 @@ METADATA
<revision version="27" min_compatible="3">
<description>
Add cue color support. Default color is #FF0000.
- See library/dao/cue.h.
+ <!-- See track/cue.h. -->
</description>
<sql>
<!-- Default color is #FFFF0000 (in base 10) -->
@@ -428,8 +428,20 @@ METADATA
</revision>
<revision version="28" min_compatible="3">
<description>
+ Reset replay gain info for all FLAC files after fixing a decoding bug in version 2.1.0.
+ <!-- The value of 'replaygain_peak' is not yet calculated by any Mixxx analyzer, -->
+ <!-- so we should leave it untouched and don't need to reset it here! -->
+ <!-- See also: https://bugs.launchpad.net/mixxx/+bug/1766042 -->
+ </description>
+ <sql>
+ <!-- Reset replay gain to default value -->
+ UPDATE library SET replaygain=0.0 WHERE filetype='flac' COLLATE NOCASE;
+ </sql>
+ </revision>
+ <revision version="29" min_compatible="3">
+ <description>
Add source to cue. Default is MANUAL.
- See library/dao/cue.h.
+ <!-- See track/cue.h. -->
</description>
<sql>
ALTER TABLE cues ADD COLUMN source INTEGER DEFAULT 2 NOT NULL;