summaryrefslogtreecommitdiffstats
path: root/src
AgeCommit message (Collapse)Author
2021-01-12lp1911196: Do no print a warning if fonts directory is missingJan Holthuis
On Linux, the `fonts/` directory might not exist if Mixxx was installed via package manager. You might say "this is a hack" and you'd be right. Ideally, a skin should request what font it needs, then we check if that font is available in the Qt Font Database, and if not, we try to load it from the `fonts/` directory. This is just a band-aid. See this for details: - https://bugs.launchpad.net/mixxx/+bug/1911196 - https://github.com/mixxxdj/mixxx/pull/3458#discussion_r545470642
2021-01-12Merge pull request #3551 from Holzhaus/musicbrainz-crcDaniel Schürmann
musicbrainz: Rename crc.c to crc.cpp
2021-01-11musicbrainz: Rename crc.c to crc.cppJan Holthuis
Fixes this build warning: [ 49%] Building C object CMakeFiles/mixxx-lib.dir/src/musicbrainz/crc.c.o cc1: warning: command-line option ‘-Woverloaded-virtual’ is valid for C++/ObjC++ but not for C
2021-01-11Merge pull request #3484 from ronso0/pref-icon-colorJan Holthuis
Preferences: choose dark or light icons depending on OS theme
2021-01-11Merge remote-tracking branch 'mixxx/2.3' into pref-icon-colorronso0
# Conflicts: # res/mixxx.qrc # src/preferences/dialog/dlgpreferencepage.h # src/preferences/dialog/dlgpreferences.cpp
2021-01-11dlgpreferences: use 'p' pointer prefixronso0
2021-01-11move dlgpreferencepage to src/preferences/dialog/ronso0
2021-01-11Preferences: choose dark or light icons depending to OS theme...ronso0
dark foreground text color > dark icons, light text > light icons
2021-01-10Stop when hitting cue while plaing in DENON mode, fixes a regression since #3344Daniel Schürmann
2021-01-09Merge pull request #3519 from uklotzde/networktaskDaniel Schürmann
Networking tasks: Split classes / validate request URLs / Bugfixes
2021-01-09Use r-value references only for constructionUwe Klotz
...and remove redundant std::move() invocations.
2021-01-09WebTask: Fix reading of status code from aborted repliesUwe Klotz
2021-01-09Merge pull request #3532 from Holzhaus/serato-markers-roundtrip-fixesDaniel Schürmann
Serato Markers Roundtrip Fixes
2021-01-09Merge pull request #3512 from Swiftb0y/fix_knob_touchscreen_interactionDaniel Schürmann
Fix broken knob interaction on touchscreens
2021-01-08WebTask: Ignore missing Content-Type header for empty repliesUwe Klotz
2021-01-08Move network error handling from NetworkTask into WebTaskUwe Klotz
...and provide the response content if available.
2021-01-08CueInfo: Add isLocked convenience methodJan Holthuis
2021-01-08SeratoMarkers: Add comments about parsing failuresJan Holthuis
2021-01-08CueInfo: Add comment regarding flags storage to header fileJan Holthuis
2021-01-08Fix wrong signalUwe Klotz
2021-01-08Merge pull request #3485 from ronso0/combobox-noneJan Holthuis
Preferences / Effect widgets: use '---' placeholder instead of 'None'
2021-01-07TagFetcher: Fix cancelation of AcoustId/MusicBrainz subtasksUwe Klotz
2021-01-07Do not try to read from failed network repliesUwe Klotz
Fixes QIODevice::read (QNetworkReplyHttpImpl): device not open
2021-01-07WebTask: Fix more state transitions for edge casesUwe Klotz
2021-01-07WebTask: Add missing return statementUwe Klotz
2021-01-07Pref. EQ, WEffectSelector: update combobox commentsronso0
2021-01-07WebTask: Send an aborted signal when task not startedUwe Klotz
2021-01-07Swap function return type and out parameterUwe Klotz
2021-01-07WebTask: Clarify handling of delayed network responsesUwe Klotz
2021-01-07Merge pull request #3540 from Holzhaus/remove-unused-headerBe
SoundSourceModPlug: Remove unused unistd.h header file
2021-01-07SoundSourceModPlug: Remove unused unistd.h header fileJan Holthuis
Apparently this isn't needed and it breaks the build on Windows.
2021-01-06Preferences > Sound Hardware: display '---' when no sound device is selectedronso0
2021-01-06Preferences > Sound Hardware: display '---' for 'No sound API'ronso0
2021-01-06Effect widgets/EQ preferences: display '---' when no effect is loadedronso0
2021-01-06CMake: Use new-style protobuf_generate functionJan Holthuis
2021-01-06WebTask: Trigger regular abort handling after client-side timeoutUwe Klotz
2021-01-06Merge pull request #3464 from ronso0/pref-link-colorJan Holthuis
Preferences/About: draw links with a more readable color, improve defs_urls usage
2021-01-06SeratoMarkers: Ignore isLocked for non-loop cuesJan Holthuis
2021-01-06preference pages: create hyperlink color only on demandronso0
2021-01-06Merge pull request #3525 from daschuer/trackmodelUwe Klotz
Trackmodel: Make some functions const and remove unused implementations
2021-01-05SeratoTagsTest: Add high-level Markers2 roundtrip testJan Holthuis
2021-01-05SeratoTagsTest: Add high-level Markers_ roundtrip testJan Holthuis
2021-01-05SeratoMarkers2: Add support for CueFlag::LockedJan Holthuis
2021-01-05SeratoMarkers: Add support for CueFlag::LockedJan Holthuis
2021-01-05CueInfo: Add support for flagsJan Holthuis
2021-01-05track/serato: Export loops with fixed colorJan Holthuis
2021-01-05string.h: make coloredLinkString() a free functionronso0
2021-01-05DlgPrefRecord: validate user input for recordings directoryBe
2021-01-05DlgPrefRecord: fix initialization of default settings pathBe
RecordingManager::setRecordingDir depends on the ConfigObject being set, otherwise it will try to initialize with an empty path.
2021-01-05Merge branch '2.3' of git@github.com:mixxxdj/mixxx.git into networktaskUwe Klotz