Skip to content

Commit a488106

Browse files
committed
chore: update CHANGELOG.md
1 parent ea97894 commit a488106

2 files changed

Lines changed: 69 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,22 @@
1616
* Fix "dataChanged() called with an invalid index range" warning
1717
[#15937](https://github.com/mixxxdj/mixxx/pull/15937)
1818
[#14610](https://github.com/mixxxdj/mixxx/issues/14610)
19+
* History: allow track file export [#16074](https://github.com/mixxxdj/mixxx/pull/16074)
20+
* Column: avoid conditional jump that depends on uninitialized memory [#16052](https://github.com/mixxxdj/mixxx/pull/16052)
21+
* History: prevent deletion of current history after purging tracks [#15991](https://github.com/mixxxdj/mixxx/pull/15991)
22+
* Tracks: improve performance when restoring large track selections [#15973](https://github.com/mixxxdj/mixxx/pull/15973)
1923

2024
### Effects
2125

2226
* White Noise: remove DC offset [#15979](https://github.com/mixxxdj/mixxx/pull/15979)
2327
* White Noise: improve gain responds [#15949](https://github.com/mixxxdj/mixxx/pull/15949)
2428
* Echo: fix out of bounds read [#15985](https://github.com/mixxxdj/mixxx/pull/15985)
29+
* Echo: fix ramping of the send and feedback parameters [#16006](https://github.com/mixxxdj/mixxx/pull/16006)
2530
* QuickEffect: fix crackling noise when switching
2631
[#15796](https://github.com/mixxxdj/mixxx/pull/15796)
2732
[#15794](https://github.com/mixxxdj/mixxx/issues/15794)
33+
* Glitch: remove unnecessary cast to integer [#16068](https://github.com/mixxxdj/mixxx/pull/16068)
34+
* Reverb: fix ramping of the send parameter [#16001](https://github.com/mixxxdj/mixxx/pull/16001)
2835

2936
### Controller Mappings
3037

@@ -47,8 +54,13 @@
4754

4855
* Fix scratching with keylock enabled and mapping using scracht2 [#15845](https://github.com/mixxxdj/mixxx/pull/15845)
4956
* AudioUnit: fix crash due to off-by-one error in parameter syncing [#15919](https://github.com/mixxxdj/mixxx/pull/15919)
57+
* AudioUnit: fix startup crash by loading out-of-process [#16106](https://github.com/mixxxdj/mixxx/pull/16106)
5058
* FX units: resolve issue preventing use on all samplers [#15971](https://github.com/mixxxdj/mixxx/pull/15971)
5159
* AutoDJ: fix wrong use of [Auto DJ] -> [AutoDJ] [#16009](https://github.com/mixxxdj/mixxx/pull/16009)
60+
* Fix false positive "First sound has been moved!" warnings log message [#16054](https://github.com/mixxxdj/mixxx/pull/16054)
61+
* Beats: fix imprecise iterator computation
62+
[#13262](https://github.com/mixxxdj/mixxx/pull/13262)
63+
[#16086](https://github.com/mixxxdj/mixxx/pull/16086)
5264

5365
### Preferences
5466

@@ -69,6 +81,7 @@
6981
* Add Flatpak packaging files
7082
[#15695](https://github.com/mixxxdj/mixxx/pull/15695)
7183
[#15922](https://github.com/mixxxdj/mixxx/pull/15922)
84+
[#15935](https://github.com/mixxxdj/mixxx/pull/15935)
7285
* Fail early if not running from Visual Studio environment [#14623](https://github.com/mixxxdj/mixxx/pull/14623)
7386
* Make Debian non-free optional [#15895](https://github.com/mixxxdj/mixxx/pull/15895)
7487
* Debian: remove 'qml6-module-qtquick-nativestyle [#15771](https://github.com/mixxxdj/mixxx/pull/15771)
@@ -86,6 +99,10 @@
8699
* Retire Ubuntu Plucky Puffin 25.04 [#15926](https://github.com/mixxxdj/mixxx/pull/15926)
87100
* chore(deps): bump azure/trusted-signing-action from 1.0.0 to 1.1.0 [#15990](https://github.com/mixxxdj/mixxx/pull/15990)
88101
* Num deck streamline [#14112](https://github.com/mixxxdj/mixxx/pull/14112)
102+
* Update eslint plugin diff
103+
[#16091](https://github.com/mixxxdj/mixxx/pull/16091)
104+
[#16049](https://github.com/mixxxdj/mixxx/pull/16049)
105+
* build: Fix invalid elseif syntax in Apple platform checks [#16058](https://github.com/mixxxdj/mixxx/pull/16058)
89106

90107
## [2.5.4](https://github.com/mixxxdj/mixxx/milestone/51) (2025-12-14)
91108

res/linux/org.mixxx.Mixxx.metainfo.xml

Lines changed: 52 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@
9696
Do not edit it manually.
9797
-->
9898
<releases>
99-
<release version="2.5.5" type="development" date="2026-02-23" timestamp="1771867075">
99+
<release version="2.5.5" type="development" date="2026-03-05" timestamp="1772747251">
100100
<description>
101101
<p>
102102
Library
@@ -122,6 +122,22 @@
122122
#15937
123123
#14610
124124
</li>
125+
<li>
126+
History: allow track file export
127+
#16074
128+
</li>
129+
<li>
130+
Column: avoid conditional jump that depends on uninitialized memory
131+
#16052
132+
</li>
133+
<li>
134+
History: prevent deletion of current history after purging tracks
135+
#15991
136+
</li>
137+
<li>
138+
Tracks: improve performance when restoring large track selections
139+
#15973
140+
</li>
125141
</ul>
126142
<p>
127143
Effects
@@ -139,11 +155,23 @@
139155
Echo: fix out of bounds read
140156
#15985
141157
</li>
158+
<li>
159+
Echo: fix ramping of the send and feedback parameters
160+
#16006
161+
</li>
142162
<li>
143163
QuickEffect: fix crackling noise when switching
144164
#15796
145165
#15794
146166
</li>
167+
<li>
168+
Glitch: remove unnecessary cast to integer
169+
#16068
170+
</li>
171+
<li>
172+
Reverb: fix ramping of the send parameter
173+
#16001
174+
</li>
147175
</ul>
148176
<p>
149177
Controller Mappings
@@ -194,6 +222,10 @@
194222
AudioUnit: fix crash due to off-by-one error in parameter syncing
195223
#15919
196224
</li>
225+
<li>
226+
AudioUnit: fix startup crash by loading out-of-process
227+
#16106
228+
</li>
197229
<li>
198230
FX units: resolve issue preventing use on all samplers
199231
#15971
@@ -202,6 +234,15 @@
202234
AutoDJ: fix wrong use of [Auto DJ] -&gt; [AutoDJ]
203235
#16009
204236
</li>
237+
<li>
238+
Fix false positive "First sound has been moved!" warnings log message
239+
#16054
240+
</li>
241+
<li>
242+
Beats: fix imprecise iterator computation
243+
#13262
244+
#16086
245+
</li>
205246
</ul>
206247
<p>
207248
Preferences
@@ -239,6 +280,7 @@
239280
Add Flatpak packaging files
240281
#15695
241282
#15922
283+
#15935
242284
</li>
243285
<li>
244286
Fail early if not running from Visual Studio environment
@@ -304,6 +346,15 @@
304346
Num deck streamline
305347
#14112
306348
</li>
349+
<li>
350+
Update eslint plugin diff
351+
#16091
352+
#16049
353+
</li>
354+
<li>
355+
build: Fix invalid elseif syntax in Apple platform checks
356+
#16058
357+
</li>
307358
</ul>
308359
</description>
309360
</release>

0 commit comments

Comments
 (0)