Skip to content

Commit

Permalink
chore: fix pre-commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Swiftb0y committed Aug 15, 2024
1 parent cd0bb84 commit 3640f90
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions CHANGELOG.md.backup
Original file line number Diff line number Diff line change
Expand Up @@ -515,7 +515,7 @@
[#4806](https://github.com/mixxxdj/mixxx/pull/4806)
[#11873](https://github.com/mixxxdj/mixxx/pull/11873)
[#11872](https://github.com/mixxxdj/mixxx/issues/11872)
* Add support for overriding analyzis settings about variable/constant BPM on a per-track basis [#10931](https://github.com/mixxxdj/mixxx/pull/10931)
* Add support for overriding analysis settings about variable/constant BPM on a per-track basis [#10931](https://github.com/mixxxdj/mixxx/pull/10931)
* Add menu for looking up track metadata at Discogs, SoundCloud and LastFM [#4772](https://github.com/mixxxdj/mixxx/pull/4772) [#4836](https://github.com/mixxxdj/mixxx/pull/4836)
* Add "Delete Track Files" action, does "Move to Trash" with Qt >= 5.15
[#4560](https://github.com/mixxxdj/mixxx/pull/4560)
Expand Down Expand Up @@ -1349,7 +1349,7 @@
[#11327](https://github.com/mixxxdj/mixxx/issues/11327)
* LateNight: brighter fx parameter buttons
[#11397](https://github.com/mixxxdj/mixxx/pull/11397)
* Fix drift in analyzis data after exporting metadata to MP3 files with ID3v1.1 tags
* Fix drift in analysis data after exporting metadata to MP3 files with ID3v1.1 tags
[#11168](https://github.com/mixxxdj/mixxx/pull/11168)
[#11159](https://github.com/mixxxdj/mixxx/issues/11159)
* Fix broadcasting using Opus encoding
Expand Down Expand Up @@ -1740,7 +1740,7 @@
* Add controller mapping for Denon MC7000 [#2546](https://github.com/mixxxdj/mixxx/pull/2546)
* Add controller mapping for Stanton DJC.4 [#2607](https://github.com/mixxxdj/mixxx/pull/2607)
* Fix broadcasting via broadcast/recording input [#9959](https://github.com/mixxxdj/mixxx/issues/9959) [#2743](https://github.com/mixxxdj/mixxx/pull/2743)
* Only apply ducking gain in manual ducking mode when talkover is enabed [#7668](https://github.com/mixxxdj/mixxx/issues/7668) [#8995](https://github.com/mixxxdj/mixxx/issues/8995) [#8795](https://github.com/mixxxdj/mixxx/issues/8795) [#2759](https://github.com/mixxxdj/mixxx/pull/2759)
* Only apply ducking gain in manual ducking mode when talkover is enabled [#7668](https://github.com/mixxxdj/mixxx/issues/7668) [#8995](https://github.com/mixxxdj/mixxx/issues/8995) [#8795](https://github.com/mixxxdj/mixxx/issues/8795) [#2759](https://github.com/mixxxdj/mixxx/pull/2759)
* Ignore MIDI Clock Messages (0xF8) because they are not usable in Mixxx and inhibited the screensaver [#2786](https://github.com/mixxxdj/mixxx/pull/2786)

## [2.2.3](https://launchpad.net/mixxx/+milestone/2.2.3) (2019-11-24)
Expand Down
2 changes: 1 addition & 1 deletion src/effects/visibleeffectslist.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ void VisibleEffectsList::readEffectsXml(
for (const EffectManifestPointer& pManifest : std::as_const(manifests)) {
if (!visibleEffects.contains(pManifest) &&
!hiddenEffects.contains(pManifest)) {
// pre-pend so un-hidden effects are discoverable
// prepend so un-hidden effects are discoverable
visibleEffects.prepend(pManifest);
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/test/looping_control_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1253,7 +1253,7 @@ TEST_F(LoopingControlTest, LoopResizeUsingAnchor) {

ProcessBuffer();

// The loop is resized its end oint this time
// The loop is resized and its end joint this time
EXPECT_FRAMEPOS_EQ_CONTROL(mixxx::audio::FramePos{175}, m_pLoopStartPoint);
EXPECT_FRAMEPOS_EQ_CONTROL(mixxx::audio::FramePos{625}, m_pLoopEndPoint);
ProcessBuffer();
Expand Down

0 comments on commit 3640f90

Please sign in to comment.