-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Skin layout revamp dev #639
Skin layout revamp dev #639
Commits on Apr 22, 2015
-
Configuration menu - View commit details
-
Copy full SHA for 90a5e44 - Browse repository at this point
Copy the full SHA 90a5e44View commit details -
Merge pull request mixxxdj#411 from uklotzde/NewSoundSourceAPI
New SoundSource/AudioSource API
Configuration menu - View commit details
-
Copy full SHA for 9b4fbf6 - Browse repository at this point
Copy the full SHA 9b4fbf6View commit details
Commits on Apr 23, 2015
-
Configuration menu - View commit details
-
Copy full SHA for a95a67b - Browse repository at this point
Copy the full SHA a95a67bView commit details -
Configuration menu - View commit details
-
Copy full SHA for 92fdfa7 - Browse repository at this point
Copy the full SHA 92fdfa7View commit details -
Configuration menu - View commit details
-
Copy full SHA for 014f479 - Browse repository at this point
Copy the full SHA 014f479View commit details -
Configuration menu - View commit details
-
Copy full SHA for a6b7a5d - Browse repository at this point
Copy the full SHA a6b7a5dView commit details -
Configuration menu - View commit details
-
Copy full SHA for c08f96c - Browse repository at this point
Copy the full SHA c08f96cView commit details -
Merge pull request mixxxdj#562 from uklotzde/SoundSourceMediaFoundati…
…onBuild Fix Windows build (SoundSourceMediaFoundation)
Configuration menu - View commit details
-
Copy full SHA for dea506e - Browse repository at this point
Copy the full SHA dea506eView commit details -
Configuration menu - View commit details
-
Copy full SHA for 8ba7373 - Browse repository at this point
Copy the full SHA 8ba7373View commit details -
Configuration menu - View commit details
-
Copy full SHA for 933cc4f - Browse repository at this point
Copy the full SHA 933cc4fView commit details -
Configuration menu - View commit details
-
Copy full SHA for c1e8cae - Browse repository at this point
Copy the full SHA c1e8caeView commit details
Commits on Apr 24, 2015
-
Merge pull request mixxxdj#564 from daschuer/mp3samplerate
mp3: Workaround for different sample rates in on file
Configuration menu - View commit details
-
Copy full SHA for acd8201 - Browse repository at this point
Copy the full SHA acd8201View commit details -
Add "stabilization read" to seeks for MP3s in SoundSourceCoreAudio.
SoundSourceProxyTest.seekForward was failing on OSX due to cover-test.mp3 not producing accurate samples on a seek. It seems this is related to the MP3 decoder not being "primed" right after a seek. To compensate for this, we seek backwards 29 MP3 frames (same as in SoundSourceMp3) and read forward. The test passes now but it would be ideal if we had a reliable way to determine the right amount to read on a per-file basis from ExtAudioFile directly (in case other formats need pre-fetching). I'm following up with Apple support for help here.
Configuration menu - View commit details
-
Copy full SHA for cfaf6db - Browse repository at this point
Copy the full SHA cfaf6dbView commit details -
Merge pull request mixxxdj#565 from rryan/extaudiofile
Add "stabilization read" to MP3 seeks in SoundSourceCoreAudio.
Configuration menu - View commit details
-
Copy full SHA for 30120ce - Browse repository at this point
Copy the full SHA 30120ceView commit details -
Configuration menu - View commit details
-
Copy full SHA for fe02d65 - Browse repository at this point
Copy the full SHA fe02d65View commit details
Commits on Apr 25, 2015
-
Configuration menu - View commit details
-
Copy full SHA for 6d9c259 - Browse repository at this point
Copy the full SHA 6d9c259View commit details -
Configuration menu - View commit details
-
Copy full SHA for 18d7ec3 - Browse repository at this point
Copy the full SHA 18d7ec3View commit details -
Configuration menu - View commit details
-
Copy full SHA for 4a2023a - Browse repository at this point
Copy the full SHA 4a2023aView commit details -
Configuration menu - View commit details
-
Copy full SHA for 26949dc - Browse repository at this point
Copy the full SHA 26949dcView commit details -
Configuration menu - View commit details
-
Copy full SHA for 1b07544 - Browse repository at this point
Copy the full SHA 1b07544View commit details -
Fix libMAD error handling for MP3 decoding
The decoding functions do NOT return the actual error code!! Instead the error code must be read from mad_stream if the decoding functions returned != 0. This caused some really ugly sounds at the beginning of some MP3 files, because frames were not skipped as suppossed to be.
Configuration menu - View commit details
-
Copy full SHA for b7d9985 - Browse repository at this point
Copy the full SHA b7d9985View commit details -
Separate code paths for reading mono/stereo MP3 data
Slightly more code, but hopefully easier to understand.
Configuration menu - View commit details
-
Copy full SHA for e003d06 - Browse repository at this point
Copy the full SHA e003d06View commit details -
Merge pull request mixxxdj#568 from uklotzde/MP3ChannelAndDecodingFix
MP3 channel and decoding fix
Configuration menu - View commit details
-
Copy full SHA for 65e96f5 - Browse repository at this point
Copy the full SHA 65e96f5View commit details
Commits on Apr 26, 2015
-
Fix Coverity warning for SoundSourceSndFile
*** CID 61970: Uninitialized members (UNINIT_CTOR) /src/sources/soundsourcesndfile.cpp: 17 in Mixxx::SoundSourceSndFile::SoundSourceSndFile(QUrl)() 11 return list; 12 } 13 14 SoundSourceSndFile::SoundSourceSndFile(QUrl url) 15 : SoundSource(url), 16 m_pSndFile(NULL) { >>> CID 61970: Uninitialized members (UNINIT_CTOR) >>> Non-static class member field "m_sfInfo.seekable" is not initialized in this constructor nor in any functions that it calls. 17 } 18 19 SoundSourceSndFile::~SoundSourceSndFile() { 20 close(); 21 }
Configuration menu - View commit details
-
Copy full SHA for 1e5b3e7 - Browse repository at this point
Copy the full SHA 1e5b3e7View commit details -
Fix Coverity warning for SoundSourceMp3
*** CID 61968: Uninitialized members (UNINIT_CTOR) /src/sources/soundsourcemp3.cpp: 163 in Mixxx::SoundSourceMp3::SoundSourceMp3(QUrl)() 157 m_fileSize(0), 158 m_pFileData(NULL), 159 m_avgSeekFrameCount(0), 160 m_curFrameIndex(kFrameIndexMin), 161 m_madSynthCount(0) { 162 m_seekFrameList.reserve(kSeekFrameListCapacity); >>> CID 61968: Uninitialized members (UNINIT_CTOR) >>> Non-static class member field "m_madSynth.pcm" is not initialized in this constructor nor in any functions that it calls. 163 } 164 165 SoundSourceMp3::~SoundSourceMp3() { 166 close(); 167 }
Configuration menu - View commit details
-
Copy full SHA for 6c68b61 - Browse repository at this point
Copy the full SHA 6c68b61View commit details -
Configuration menu - View commit details
-
Copy full SHA for 813c8d5 - Browse repository at this point
Copy the full SHA 813c8d5View commit details -
Configuration menu - View commit details
-
Copy full SHA for 6df1803 - Browse repository at this point
Copy the full SHA 6df1803View commit details
Commits on Apr 27, 2015
-
Configuration menu - View commit details
-
Copy full SHA for 322271f - Browse repository at this point
Copy the full SHA 322271fView commit details -
Merge pull request mixxxdj#569 from uklotzde/FixCoverityWarningsForSo…
…undSources Fix coverity warnings for new SoundSources
Configuration menu - View commit details
-
Copy full SHA for bb1f9f7 - Browse repository at this point
Copy the full SHA bb1f9f7View commit details -
Configuration menu - View commit details
-
Copy full SHA for fc62fe9 - Browse repository at this point
Copy the full SHA fc62fe9View commit details
Commits on Apr 28, 2015
-
Do not segfault when writing tags into files with inaccessible tags
Observed for some .m4a files when TagLib failed to access (read/write) the existing MP4 tag.
Configuration menu - View commit details
-
Copy full SHA for 2444c45 - Browse repository at this point
Copy the full SHA 2444c45View commit details -
Configuration menu - View commit details
-
Copy full SHA for 8f68828 - Browse repository at this point
Copy the full SHA 8f68828View commit details -
Merge branch 'pan_effect_stereo' of https://github.com/demos/mixxx in…
…to pan_effect_stereo
Configuration menu - View commit details
-
Copy full SHA for 59558c6 - Browse repository at this point
Copy the full SHA 59558c6View commit details -
Configuration menu - View commit details
-
Copy full SHA for 3bfa4a7 - Browse repository at this point
Copy the full SHA 3bfa4a7View commit details -
Configuration menu - View commit details
-
Copy full SHA for 81ed54d - Browse repository at this point
Copy the full SHA 81ed54dView commit details -
Merge pull request mixxxdj#571 from uklotzde/TagWritingFixes
Writing Tags: Handle inaccessible tags correctly
Configuration menu - View commit details
-
Copy full SHA for bfc533d - Browse repository at this point
Copy the full SHA bfc533dView commit details
Commits on Apr 29, 2015
-
Configuration menu - View commit details
-
Copy full SHA for 8f21d1f - Browse repository at this point
Copy the full SHA 8f21d1fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 77302f9 - Browse repository at this point
Copy the full SHA 77302f9View commit details -
Configuration menu - View commit details
-
Copy full SHA for b5f198b - Browse repository at this point
Copy the full SHA b5f198bView commit details -
Configuration menu - View commit details
-
Copy full SHA for 7bb4223 - Browse repository at this point
Copy the full SHA 7bb4223View commit details
Commits on Apr 30, 2015
-
Configuration menu - View commit details
-
Copy full SHA for 3912d6a - Browse repository at this point
Copy the full SHA 3912d6aView commit details -
Merge pull request mixxxdj#572 from default-kramer/fixWindowsBuild
fix Windows build
Configuration menu - View commit details
-
Copy full SHA for 8f7d0c8 - Browse repository at this point
Copy the full SHA 8f7d0c8View commit details
Commits on May 1, 2015
-
Configuration menu - View commit details
-
Copy full SHA for 5e628e8 - Browse repository at this point
Copy the full SHA 5e628e8View commit details
Commits on May 3, 2015
-
Configuration menu - View commit details
-
Copy full SHA for 45192dd - Browse repository at this point
Copy the full SHA 45192ddView commit details -
Configuration menu - View commit details
-
Copy full SHA for d39935b - Browse repository at this point
Copy the full SHA d39935bView commit details -
Configuration menu - View commit details
-
Copy full SHA for 3b52cbb - Browse repository at this point
Copy the full SHA 3b52cbbView commit details -
Configuration menu - View commit details
-
Copy full SHA for f45d729 - Browse repository at this point
Copy the full SHA f45d729View commit details -
Fix error in CachingReader::read that prevent seeking into preroll, f…
…ixes Bug #1450260
Configuration menu - View commit details
-
Copy full SHA for 452dc28 - Browse repository at this point
Copy the full SHA 452dc28View commit details
Commits on May 4, 2015
-
Configuration menu - View commit details
-
Copy full SHA for 34c4d9e - Browse repository at this point
Copy the full SHA 34c4d9eView commit details
Commits on May 5, 2015
-
Configuration menu - View commit details
-
Copy full SHA for fcd8203 - Browse repository at this point
Copy the full SHA fcd8203View commit details -
Configuration menu - View commit details
-
Copy full SHA for 99e9700 - Browse repository at this point
Copy the full SHA 99e9700View commit details
Commits on May 6, 2015
-
Configuration menu - View commit details
-
Copy full SHA for aaeea04 - Browse repository at this point
Copy the full SHA aaeea04View commit details -
Configuration menu - View commit details
-
Copy full SHA for 62e7a3c - Browse repository at this point
Copy the full SHA 62e7a3cView commit details -
Configuration menu - View commit details
-
Copy full SHA for 7145bcc - Browse repository at this point
Copy the full SHA 7145bccView commit details -
Configuration menu - View commit details
-
Copy full SHA for 33f8d3e - Browse repository at this point
Copy the full SHA 33f8d3eView commit details -
Configuration menu - View commit details
-
Copy full SHA for e720807 - Browse repository at this point
Copy the full SHA e720807View commit details -
Configuration menu - View commit details
-
Copy full SHA for 5294551 - Browse repository at this point
Copy the full SHA 5294551View commit details -
Configuration menu - View commit details
-
Copy full SHA for 9e2e6b7 - Browse repository at this point
Copy the full SHA 9e2e6b7View commit details -
Configuration menu - View commit details
-
Copy full SHA for 8665514 - Browse repository at this point
Copy the full SHA 8665514View commit details -
Configuration menu - View commit details
-
Copy full SHA for 00f358c - Browse repository at this point
Copy the full SHA 00f358cView commit details -
Configuration menu - View commit details
-
Copy full SHA for 519919a - Browse repository at this point
Copy the full SHA 519919aView commit details -
Merge pull request mixxxdj#577 from uklotzde/AudioSourceApiCleanup
AudioSource API Code Cleanup
Configuration menu - View commit details
-
Copy full SHA for c3a7ab5 - Browse repository at this point
Copy the full SHA c3a7ab5View commit details
Commits on May 7, 2015
-
Configuration menu - View commit details
-
Copy full SHA for 20cfcd4 - Browse repository at this point
Copy the full SHA 20cfcd4View commit details -
Configuration menu - View commit details
-
Copy full SHA for b5de6e2 - Browse repository at this point
Copy the full SHA b5de6e2View commit details -
Configuration menu - View commit details
-
Copy full SHA for 9819302 - Browse repository at this point
Copy the full SHA 9819302View commit details
Commits on May 10, 2015
-
Configuration menu - View commit details
-
Copy full SHA for 4d96003 - Browse repository at this point
Copy the full SHA 4d96003View commit details -
Configuration menu - View commit details
-
Copy full SHA for a7bf3d4 - Browse repository at this point
Copy the full SHA a7bf3d4View commit details
Commits on May 11, 2015
-
Configuration menu - View commit details
-
Copy full SHA for fd3e33c - Browse repository at this point
Copy the full SHA fd3e33cView commit details -
Configuration menu - View commit details
-
Copy full SHA for 17d8fa4 - Browse repository at this point
Copy the full SHA 17d8fa4View commit details
Commits on May 12, 2015
-
Configuration menu - View commit details
-
Copy full SHA for 24eabfb - Browse repository at this point
Copy the full SHA 24eabfbView commit details
Commits on May 14, 2015
-
Configuration menu - View commit details
-
Copy full SHA for 4588677 - Browse repository at this point
Copy the full SHA 4588677View commit details -
Configuration menu - View commit details
-
Copy full SHA for c597263 - Browse repository at this point
Copy the full SHA c597263View commit details -
Configuration menu - View commit details
-
Copy full SHA for e40c574 - Browse repository at this point
Copy the full SHA e40c574View commit details -
New streamlined SoundSource plugin API version 8
A simple C++ API that reduces the chance of memory leaks that were imminent in the previous C/C++ version. Error handling and logging in SoundSourceProxy while loading plugins has been improved.
Configuration menu - View commit details
-
Copy full SHA for 525205c - Browse repository at this point
Copy the full SHA 525205cView commit details -
Allow CachingReaderWorker to return partially read chunks
This might happen for corrupt/truncated files. Currently there is no special case handling in CachingReader. Partially (= incomplete) read chunks are simply treated like successfully (= complete) read chunks. Without this fix the CachingReader tried to read the remaining samples in the last chunk of a corrupt MP3 file over and over.
Configuration menu - View commit details
-
Copy full SHA for c005701 - Browse repository at this point
Copy the full SHA c005701View commit details
Commits on May 15, 2015
-
Configuration menu - View commit details
-
Copy full SHA for e2dfe93 - Browse repository at this point
Copy the full SHA e2dfe93View commit details
Commits on May 16, 2015
-
Configuration menu - View commit details
-
Copy full SHA for a52f1ea - Browse repository at this point
Copy the full SHA a52f1eaView commit details -
Introduce SoundSourceProvider interface
SoundSourceProvider is a generic interface that will implemented both by plugin libraries as well as built-in sound sources. This will simplify the selection of an appropriate SoundSource in SoundSourceProxy and is useful for future extensions like selecting one out of multiple providers for each file type.
Configuration menu - View commit details
-
Copy full SHA for e175a4e - Browse repository at this point
Copy the full SHA e175a4eView commit details -
Configuration menu - View commit details
-
Copy full SHA for a0fec6a - Browse repository at this point
Copy the full SHA a0fec6aView commit details -
Configuration menu - View commit details
-
Copy full SHA for e12dae4 - Browse repository at this point
Copy the full SHA e12dae4View commit details -
Configuration menu - View commit details
-
Copy full SHA for 094b9b5 - Browse repository at this point
Copy the full SHA 094b9b5View commit details -
Configuration menu - View commit details
-
Copy full SHA for bb5b6f7 - Browse repository at this point
Copy the full SHA bb5b6f7View commit details
Commits on May 17, 2015
-
Configuration menu - View commit details
-
Copy full SHA for 9c2ce17 - Browse repository at this point
Copy the full SHA 9c2ce17View commit details -
Configuration menu - View commit details
-
Copy full SHA for c71c878 - Browse repository at this point
Copy the full SHA c71c878View commit details -
Configuration menu - View commit details
-
Copy full SHA for 569134d - Browse repository at this point
Copy the full SHA 569134dView commit details -
Configuration menu - View commit details
-
Copy full SHA for 5ecaa8f - Browse repository at this point
Copy the full SHA 5ecaa8fView commit details -
Configuration menu - View commit details
-
Copy full SHA for ba6187f - Browse repository at this point
Copy the full SHA ba6187fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 6ba1702 - Browse repository at this point
Copy the full SHA 6ba1702View commit details -
Configuration menu - View commit details
-
Copy full SHA for 956028c - Browse repository at this point
Copy the full SHA 956028cView commit details
Commits on May 18, 2015
-
Configuration menu - View commit details
-
Copy full SHA for 2dd3797 - Browse repository at this point
Copy the full SHA 2dd3797View commit details -
Configuration menu - View commit details
-
Copy full SHA for d4c3b9d - Browse repository at this point
Copy the full SHA d4c3b9dView commit details -
Configuration menu - View commit details
-
Copy full SHA for e4287ae - Browse repository at this point
Copy the full SHA e4287aeView commit details -
Configuration menu - View commit details
-
Copy full SHA for 9571e62 - Browse repository at this point
Copy the full SHA 9571e62View commit details -
Configuration menu - View commit details
-
Copy full SHA for 8d3e7f0 - Browse repository at this point
Copy the full SHA 8d3e7f0View commit details -
Configuration menu - View commit details
-
Copy full SHA for 5e4cb83 - Browse repository at this point
Copy the full SHA 5e4cb83View commit details -
Configuration menu - View commit details
-
Copy full SHA for 8bc8e3c - Browse repository at this point
Copy the full SHA 8bc8e3cView commit details
Commits on May 19, 2015
-
Configuration menu - View commit details
-
Copy full SHA for df2a577 - Browse repository at this point
Copy the full SHA df2a577View commit details -
Configuration menu - View commit details
-
Copy full SHA for e7d9df4 - Browse repository at this point
Copy the full SHA e7d9df4View commit details -
Configuration menu - View commit details
-
Copy full SHA for af1b0b1 - Browse repository at this point
Copy the full SHA af1b0b1View commit details -
Configuration menu - View commit details
-
Copy full SHA for ca576a5 - Browse repository at this point
Copy the full SHA ca576a5View commit details -
Merge pull request #2 from daschuer/pan_effect_stereo
pan delay per sample with linear stretching
Configuration menu - View commit details
-
Copy full SHA for eb59046 - Browse repository at this point
Copy the full SHA eb59046View commit details -
Merge branch 'daschuer_filterpansingle_for_autopan' of https://github…
….com/demos/mixxx into pan_effect_stereo
Configuration menu - View commit details
-
Copy full SHA for 5246f9f - Browse repository at this point
Copy the full SHA 5246f9fView commit details -
Merge branch 'pan_effect_stereo' of https://github.com/demos/mixxx in…
…to pan_effect_stereo
Configuration menu - View commit details
-
Copy full SHA for 8ca6499 - Browse repository at this point
Copy the full SHA 8ca6499View commit details -
Merge pull request mixxxdj#586 from uklotzde/CachingReaderPartialChun…
…kRead CachingReaderWorker: Don't discard partially read chunks
Configuration menu - View commit details
-
Copy full SHA for 4773565 - Browse repository at this point
Copy the full SHA 4773565View commit details -
Configuration menu - View commit details
-
Copy full SHA for cd9bb73 - Browse repository at this point
Copy the full SHA cd9bb73View commit details -
Changed RateRange to RateRangeDecimal
Markus Klösges committedMay 19, 2015 Configuration menu - View commit details
-
Copy full SHA for 78fda50 - Browse repository at this point
Copy the full SHA 78fda50View commit details
Commits on May 20, 2015
-
Use plugin file name filter only for Apple OS X
At least this is how it works in 1.12.
Configuration menu - View commit details
-
Copy full SHA for 7fcd712 - Browse repository at this point
Copy the full SHA 7fcd712View commit details -
Keep ComboBoxRateRange and add some more sane values, plus allow any
setting in the config file
Markus Klösges committedMay 20, 2015 Configuration menu - View commit details
-
Copy full SHA for 39b83a8 - Browse repository at this point
Copy the full SHA 39b83a8View commit details -
Limit Rate to 90% max and better labels
Markus Klösges committedMay 20, 2015 Configuration menu - View commit details
-
Copy full SHA for cbecdad - Browse repository at this point
Copy the full SHA cbecdadView commit details -
Markus Klösges committed
May 20, 2015 Configuration menu - View commit details
-
Copy full SHA for b299fec - Browse repository at this point
Copy the full SHA b299fecView commit details -
Name new config RateRangePercent and rename slot/variables accordingly
Markus Klösges committedMay 20, 2015 Configuration menu - View commit details
-
Copy full SHA for 97370f0 - Browse repository at this point
Copy the full SHA 97370f0View commit details -
Configuration menu - View commit details
-
Copy full SHA for 731b49b - Browse repository at this point
Copy the full SHA 731b49bView commit details -
Configuration menu - View commit details
-
Copy full SHA for 158519a - Browse repository at this point
Copy the full SHA 158519aView commit details -
Change getter name: getFileName() -> getFilePath()
The corresponding Qt function name is actually misleading.
Configuration menu - View commit details
-
Copy full SHA for 7e85dac - Browse repository at this point
Copy the full SHA 7e85dacView commit details -
Configuration menu - View commit details
-
Copy full SHA for 76455e9 - Browse repository at this point
Copy the full SHA 76455e9View commit details -
Add a TODO note about network shares
According to the documentation of QUrl::isLocalFile()/toLocalFile() network shares are handled in the same way as before, i.e. they are considered to be local files with all consequences.
Configuration menu - View commit details
-
Copy full SHA for 1da53f3 - Browse repository at this point
Copy the full SHA 1da53f3View commit details -
Configuration menu - View commit details
-
Copy full SHA for c4814f2 - Browse repository at this point
Copy the full SHA c4814f2View commit details -
Configuration menu - View commit details
-
Copy full SHA for ca42ce2 - Browse repository at this point
Copy the full SHA ca42ce2View commit details
Commits on May 21, 2015
-
Configuration menu - View commit details
-
Copy full SHA for 28211ab - Browse repository at this point
Copy the full SHA 28211abView commit details -
Merge pull request mixxxdj#588 from MK-42/rateAsDecimal
Changed RateRange to RateRangeDecimal
Configuration menu - View commit details
-
Copy full SHA for d528693 - Browse repository at this point
Copy the full SHA d528693View commit details -
Configuration menu - View commit details
-
Copy full SHA for b327563 - Browse repository at this point
Copy the full SHA b327563View commit details
Commits on May 22, 2015
-
Configuration menu - View commit details
-
Copy full SHA for 6bb4f0b - Browse repository at this point
Copy the full SHA 6bb4f0bView commit details -
period will not be fixed anymore if the effect is in enabling state o…
…r the position change is ramped
Configuration menu - View commit details
-
Copy full SHA for 9f6c5ef - Browse repository at this point
Copy the full SHA 9f6c5efView commit details -
period will not be fixed anymore if the effect is in enabling state o…
…r the position change is ramped
Configuration menu - View commit details
-
Copy full SHA for e315b75 - Browse repository at this point
Copy the full SHA e315b75View commit details -
2
Configuration menu - View commit details
-
Copy full SHA for 6c3a095 - Browse repository at this point
Copy the full SHA 6c3a095View commit details
Commits on May 23, 2015
-
Streamline the MetadataSource interface
Usually both metadata and cover art should be parsed at once. Optional parameters are used if only one or the other is needed. A single virtual function covers all those use cases.
Configuration menu - View commit details
-
Copy full SHA for 55d4c77 - Browse repository at this point
Copy the full SHA 55d4c77View commit details -
Configuration menu - View commit details
-
Copy full SHA for c8d90f8 - Browse repository at this point
Copy the full SHA c8d90f8View commit details -
Configuration menu - View commit details
-
Copy full SHA for 3738041 - Browse repository at this point
Copy the full SHA 3738041View commit details
Commits on May 24, 2015
-
Configuration menu - View commit details
-
Copy full SHA for e61f10e - Browse repository at this point
Copy the full SHA e61f10eView commit details -
Configuration menu - View commit details
-
Copy full SHA for a9febe1 - Browse repository at this point
Copy the full SHA a9febe1View commit details -
Configuration menu - View commit details
-
Copy full SHA for 57610a7 - Browse repository at this point
Copy the full SHA 57610a7View commit details
Commits on May 26, 2015
-
Configuration menu - View commit details
-
Copy full SHA for 3f854c1 - Browse repository at this point
Copy the full SHA 3f854c1View commit details
Commits on May 28, 2015
-
Highlight Crates a Track is in. Still some work to do
Markus Klösges committedMay 28, 2015 Configuration menu - View commit details
-
Copy full SHA for eb5cf7e - Browse repository at this point
Copy the full SHA eb5cf7eView commit details -
Rename delegate according to his function
Markus Klösges committedMay 28, 2015 Configuration menu - View commit details
-
Copy full SHA for 3832e41 - Browse repository at this point
Copy the full SHA 3832e41View commit details -
Configuration menu - View commit details
-
Copy full SHA for 3ed413b - Browse repository at this point
Copy the full SHA 3ed413bView commit details -
Configuration menu - View commit details
-
Copy full SHA for 15fcd2a - Browse repository at this point
Copy the full SHA 15fcd2aView commit details -
Configuration menu - View commit details
-
Copy full SHA for cba8770 - Browse repository at this point
Copy the full SHA cba8770View commit details -
Configuration menu - View commit details
-
Copy full SHA for f82e497 - Browse repository at this point
Copy the full SHA f82e497View commit details
Commits on May 29, 2015
-
Configuration menu - View commit details
-
Copy full SHA for b8224b0 - Browse repository at this point
Copy the full SHA b8224b0View commit details -
Highlighting crates the selected track is in works now
Markus Klösges committedMay 29, 2015 Configuration menu - View commit details
-
Copy full SHA for dccb519 - Browse repository at this point
Copy the full SHA dccb519View commit details -
Markus Klösges committed
May 29, 2015 Configuration menu - View commit details
-
Copy full SHA for c48d33a - Browse repository at this point
Copy the full SHA c48d33aView commit details -
Added comment to CrateHighlightDelegate::initStyleOption
Markus Klösges committedMay 29, 2015 Configuration menu - View commit details
-
Copy full SHA for a096fb6 - Browse repository at this point
Copy the full SHA a096fb6View commit details -
Added highlighting of playlists
Markus Klösges committedMay 29, 2015 Configuration menu - View commit details
-
Copy full SHA for ca3f011 - Browse repository at this point
Copy the full SHA ca3f011View commit details -
Another aproach for Repainting preventing the selection to move
Markus Klösges committedMay 29, 2015 Configuration menu - View commit details
-
Copy full SHA for 34ce420 - Browse repository at this point
Copy the full SHA 34ce420View commit details -
Ignore QModelIndex's that don't have TreeItem internal pointers in Cr…
…ateHighlightDelegate.
Configuration menu - View commit details
-
Copy full SHA for 5d09cfa - Browse repository at this point
Copy the full SHA 5d09cfaView commit details -
Configuration menu - View commit details
-
Copy full SHA for 915c682 - Browse repository at this point
Copy the full SHA 915c682View commit details -
Merge pull request #1 from rryan/sidebar-highlight
Sidebar highlight fixes.
Configuration menu - View commit details
-
Copy full SHA for f2fb6bf - Browse repository at this point
Copy the full SHA f2fb6bfView commit details -
Holding Track-Crate relation in memory for faster highlighting
Markus Klösges committedMay 29, 2015 Configuration menu - View commit details
-
Copy full SHA for 8f27dc3 - Browse repository at this point
Copy the full SHA 8f27dc3View commit details -
Holding Track-Playlist relation in memory for faster highlighting
Markus Klösges committedMay 29, 2015 Configuration menu - View commit details
-
Copy full SHA for 4dbc7ac - Browse repository at this point
Copy the full SHA 4dbc7acView commit details -
Markus Klösges committed
May 29, 2015 Configuration menu - View commit details
-
Copy full SHA for d9c3db3 - Browse repository at this point
Copy the full SHA d9c3db3View commit details -
Markus Klösges committed
May 29, 2015 Configuration menu - View commit details
-
Copy full SHA for 29cd09a - Browse repository at this point
Copy the full SHA 29cd09aView commit details -
Clear selected Playlists/Crates on viewChange
Markus Klösges committedMay 29, 2015 Configuration menu - View commit details
-
Copy full SHA for dc1f573 - Browse repository at this point
Copy the full SHA dc1f573View commit details
Commits on May 30, 2015
-
Configuration menu - View commit details
-
Copy full SHA for dbb60d8 - Browse repository at this point
Copy the full SHA dbb60d8View commit details -
Configuration menu - View commit details
-
Copy full SHA for 6552667 - Browse repository at this point
Copy the full SHA 6552667View commit details -
Restore LibraryFeature::trackSelected signal.
I think this was why we had to add signals to each individual feature.
Configuration menu - View commit details
-
Copy full SHA for d6692f0 - Browse repository at this point
Copy the full SHA d6692f0View commit details -
Configuration menu - View commit details
-
Copy full SHA for 89e3ad3 - Browse repository at this point
Copy the full SHA 89e3ad3View commit details -
Populate playlist and crate TreeItems with bold attribute when track …
…selection changes.
Configuration menu - View commit details
-
Copy full SHA for 986013d - Browse repository at this point
Copy the full SHA 986013dView commit details -
Populate TreeItem state when re-building the child model.
This supports bolding/unbolding the playlist/crate when a track is added/removed.
Configuration menu - View commit details
-
Copy full SHA for 939428f - Browse repository at this point
Copy the full SHA 939428fView commit details
Commits on May 31, 2015
-
Configuration menu - View commit details
-
Copy full SHA for 4a75b85 - Browse repository at this point
Copy the full SHA 4a75b85View commit details
Commits on Jun 2, 2015
-
Configuration menu - View commit details
-
Copy full SHA for 76349e3 - Browse repository at this point
Copy the full SHA 76349e3View commit details
Commits on Jun 3, 2015
-
Swap key/value pairing of crate/playlist membership cache in CrateDAO…
…/PlaylistDAO. Also add a method to fetch all the playlists/crates a track is in.
Configuration menu - View commit details
-
Copy full SHA for 55381bf - Browse repository at this point
Copy the full SHA 55381bfView commit details -
Fetch playlist / crate membership set on track selection.
Avoids repeatedly asking the DAO for pair-wise membership (requires linear hash table lookups).
Configuration menu - View commit details
-
Copy full SHA for 1176128 - Browse repository at this point
Copy the full SHA 1176128View commit details
Commits on Jun 4, 2015
-
Configuration menu - View commit details
-
Copy full SHA for 05eaa7e - Browse repository at this point
Copy the full SHA 05eaa7eView commit details -
Empty file names are handled gracefully by SoundSourceProxy.
Configuration menu - View commit details
-
Copy full SHA for 835189c - Browse repository at this point
Copy the full SHA 835189cView commit details -
Configuration menu - View commit details
-
Copy full SHA for b0785ce - Browse repository at this point
Copy the full SHA b0785ceView commit details -
Add move constructor / move assignment operator for SampleBuffer.
Fixes the build for -std=c++0x.
Configuration menu - View commit details
-
Copy full SHA for dcbe3b9 - Browse repository at this point
Copy the full SHA dcbe3b9View commit details -
1
Configuration menu - View commit details
-
Copy full SHA for 03f9b20 - Browse repository at this point
Copy the full SHA 03f9b20View commit details -
Configuration menu - View commit details
-
Copy full SHA for fb6bdca - Browse repository at this point
Copy the full SHA fb6bdcaView commit details -
Configuration menu - View commit details
-
Copy full SHA for c6a45e6 - Browse repository at this point
Copy the full SHA c6a45e6View commit details -
Configuration menu - View commit details
-
Copy full SHA for e21a476 - Browse repository at this point
Copy the full SHA e21a476View commit details -
Configuration menu - View commit details
-
Copy full SHA for 9252d7d - Browse repository at this point
Copy the full SHA 9252d7dView commit details -
Configuration menu - View commit details
-
Copy full SHA for 6e26a18 - Browse repository at this point
Copy the full SHA 6e26a18View commit details -
Configuration menu - View commit details
-
Copy full SHA for c69dc41 - Browse repository at this point
Copy the full SHA c69dc41View commit details -
Configuration menu - View commit details
-
Copy full SHA for 62e3fe7 - Browse repository at this point
Copy the full SHA 62e3fe7View commit details
Commits on Jun 5, 2015
-
Merge pull request mixxxdj#604 from uklotzde/SampleBufferMoveConstruc…
…torFix Fix move constructor of SampleBuffer
Configuration menu - View commit details
-
Copy full SHA for c46a421 - Browse repository at this point
Copy the full SHA c46a421View commit details -
Configuration menu - View commit details
-
Copy full SHA for 5785703 - Browse repository at this point
Copy the full SHA 5785703View commit details -
Configuration menu - View commit details
-
Copy full SHA for c4fdd0a - Browse repository at this point
Copy the full SHA c4fdd0aView commit details -
Configuration menu - View commit details
-
Copy full SHA for 9ae9f84 - Browse repository at this point
Copy the full SHA 9ae9f84View commit details -
Configuration menu - View commit details
-
Copy full SHA for 0e916ff - Browse repository at this point
Copy the full SHA 0e916ffView commit details -
Configuration menu - View commit details
-
Copy full SHA for 4f39074 - Browse repository at this point
Copy the full SHA 4f39074View commit details -
Merge pull request mixxxdj#578 from uklotzde/SoundSourcePluginUrlFile…
…NameFix SoundSource Plugin API: Version 8
Configuration menu - View commit details
-
Copy full SHA for c4532a0 - Browse repository at this point
Copy the full SHA c4532a0View commit details -
Configuration menu - View commit details
-
Copy full SHA for 82cb866 - Browse repository at this point
Copy the full SHA 82cb866View commit details
Commits on Jun 9, 2015
-
Add public domain std::make_unique shim from Brandon Streiff.
Taken from: https://github.com/bstreiff/cppbits Thank you @bstreiff!
Configuration menu - View commit details
-
Copy full SHA for 47068e5 - Browse repository at this point
Copy the full SHA 47068e5View commit details -
Configuration menu - View commit details
-
Copy full SHA for de065de - Browse repository at this point
Copy the full SHA de065deView commit details -
Configuration menu - View commit details
-
Copy full SHA for 650c9eb - Browse repository at this point
Copy the full SHA 650c9ebView commit details -
Configuration menu - View commit details
-
Copy full SHA for ccd2c21 - Browse repository at this point
Copy the full SHA ccd2c21View commit details -
Configuration menu - View commit details
-
Copy full SHA for 9bfc07d - Browse repository at this point
Copy the full SHA 9bfc07dView commit details -
Configuration menu - View commit details
-
Copy full SHA for 19bc77d - Browse repository at this point
Copy the full SHA 19bc77dView commit details -
Fix (or comment) fragile design of Numeric-/DurationFilterNode
Virtual member functions should not be called from within the constructor!
Configuration menu - View commit details
-
Copy full SHA for bfacf89 - Browse repository at this point
Copy the full SHA bfacf89View commit details -
Configuration menu - View commit details
-
Copy full SHA for 98cf2b2 - Browse repository at this point
Copy the full SHA 98cf2b2View commit details -
Configuration menu - View commit details
-
Copy full SHA for d6ec183 - Browse repository at this point
Copy the full SHA d6ec183View commit details -
Configuration menu - View commit details
-
Copy full SHA for 3d83bea - Browse repository at this point
Copy the full SHA 3d83beaView commit details -
Configuration menu - View commit details
-
Copy full SHA for 735676c - Browse repository at this point
Copy the full SHA 735676cView commit details
Commits on Jun 10, 2015
-
Since it does not mutate its instance it has no effect.
Configuration menu - View commit details
-
Copy full SHA for 61d3c60 - Browse repository at this point
Copy the full SHA 61d3c60View commit details -
Configuration menu - View commit details
-
Copy full SHA for 12ee732 - Browse repository at this point
Copy the full SHA 12ee732View commit details -
Use QDomNodeList::count instead of length.
In Qt5 QDomNodeList::length changed from unsigned int to int. To avoid compiler warnings when using one or the other use count.
Configuration menu - View commit details
-
Copy full SHA for 35c29dc - Browse repository at this point
Copy the full SHA 35c29dcView commit details -
Configuration menu - View commit details
-
Copy full SHA for 56f5864 - Browse repository at this point
Copy the full SHA 56f5864View commit details -
Configuration menu - View commit details
-
Copy full SHA for 2480715 - Browse repository at this point
Copy the full SHA 2480715View commit details -
Configuration menu - View commit details
-
Copy full SHA for b639bc7 - Browse repository at this point
Copy the full SHA b639bc7View commit details -
Remove use of deprecated (in c++11) register keyword.
The generated assembly with and without is identical in EngineFilterBessel4/8.
Configuration menu - View commit details
-
Copy full SHA for eca1adc - Browse repository at this point
Copy the full SHA eca1adcView commit details -
Configuration menu - View commit details
-
Copy full SHA for 41c5fa5 - Browse repository at this point
Copy the full SHA 41c5fa5View commit details -
Don't call TreeItemModel::setData in a loop.
This caused severe performance issues since it triggered a repaint on every loop iteration.
Configuration menu - View commit details
-
Copy full SHA for de3e581 - Browse repository at this point
Copy the full SHA de3e581View commit details -
Merge pull request mixxxdj#617 from rryan/sidebar-highlight
Highlight Crates a Track is in
Configuration menu - View commit details
-
Copy full SHA for 4a103da - Browse repository at this point
Copy the full SHA 4a103daView commit details
Commits on Jun 11, 2015
-
Merge pull request mixxxdj#614 from uklotzde/QueryNodeRefactoring
QueryNode: Memory leak fix + refactoring
Configuration menu - View commit details
-
Copy full SHA for 926ea8a - Browse repository at this point
Copy the full SHA 926ea8aView commit details
Commits on Jun 14, 2015
-
CachingReader: Always read complete chunks
Fixes the following assertion: DEBUG ASSERT: "0 == (hint.sample % CachingReaderWorker::kChunkChannels)" in file src/cachingreader.cpp, line 492 The calculation of chunk offsets relies on chunks with a constant size. Only the last chunk might be smaller than all others. The worker now fills the chunks with silence if the data has been read partially.
Configuration menu - View commit details
-
Copy full SHA for a07f61c - Browse repository at this point
Copy the full SHA a07f61cView commit details -
CachingŔeaderWorker: Don't seek beyond EOF
Because of reasons I don't know processChunkReadRequest() is called periodically even while the track is not playing. Unnecessary seek operations on the SoundSource should be avoided for if the frame index is out of range or beyond the end of the file.
Configuration menu - View commit details
-
Copy full SHA for 88e111b - Browse repository at this point
Copy the full SHA 88e111bView commit details -
Configuration menu - View commit details
-
Copy full SHA for c11149d - Browse repository at this point
Copy the full SHA c11149dView commit details
Commits on Jun 15, 2015
-
Configuration menu - View commit details
-
Copy full SHA for dfe8772 - Browse repository at this point
Copy the full SHA dfe8772View commit details
Commits on Jun 16, 2015
-
Merge branch '1.12' of https://github.com/mixxxdj/mixxx.git into Merg…
…e1.12ToMaster # Conflicts: # src/library/searchquery.h # src/library/searchquery.cpp # src/main.cpp # src/soundsourcemodplug.cpp # src/test/coverartcache_test.cpp # src/test/soundproxy_test.cpp
Configuration menu - View commit details
-
Copy full SHA for dd0fec9 - Browse repository at this point
Copy the full SHA dd0fec9View commit details
Commits on Jun 17, 2015
-
Merge pull request mixxxdj#628 from uklotzde/Merge1.12ToMaster
Resolve merge conflicts from 1.12 to master
Configuration menu - View commit details
-
Copy full SHA for ab53f56 - Browse repository at this point
Copy the full SHA ab53f56View commit details -
Configuration menu - View commit details
-
Copy full SHA for 084c879 - Browse repository at this point
Copy the full SHA 084c879View commit details
Commits on Jun 21, 2015
-
Configuration menu - View commit details
-
Copy full SHA for d762b39 - Browse repository at this point
Copy the full SHA d762b39View commit details -
Configuration menu - View commit details
-
Copy full SHA for 5b6d4cc - Browse repository at this point
Copy the full SHA 5b6d4ccView commit details
Commits on Jun 22, 2015
-
Configuration menu - View commit details
-
Copy full SHA for 490b9a0 - Browse repository at this point
Copy the full SHA 490b9a0View commit details
Commits on Jun 29, 2015
-
Configuration menu - View commit details
-
Copy full SHA for afb21ed - Browse repository at this point
Copy the full SHA afb21edView commit details
Commits on Jun 30, 2015
-
Configuration menu - View commit details
-
Copy full SHA for cf1031a - Browse repository at this point
Copy the full SHA cf1031aView commit details -
Configuration menu - View commit details
-
Copy full SHA for b43dce5 - Browse repository at this point
Copy the full SHA b43dce5View commit details -
Configuration menu - View commit details
-
Copy full SHA for e0f217e - Browse repository at this point
Copy the full SHA e0f217eView commit details -
Merge pull request mixxxdj#626 from uklotzde/CachingReaderAvoidUnnece…
…ssarySeeking Fix outstanding SoundSource issues
Configuration menu - View commit details
-
Copy full SHA for c390cba - Browse repository at this point
Copy the full SHA c390cbaView commit details
Commits on Jul 6, 2015
-
Removed layout option buttons from the top of LateNight.
Centered the clock.
Configuration menu - View commit details
-
Copy full SHA for 1b7ca1d - Browse repository at this point
Copy the full SHA 1b7ca1dView commit details -
Configuration menu - View commit details
-
Copy full SHA for 1a3a770 - Browse repository at this point
Copy the full SHA 1a3a770View commit details -
Configuration menu - View commit details
-
Copy full SHA for 65e0ef5 - Browse repository at this point
Copy the full SHA 65e0ef5View commit details -
Changed CO show_library_tab_small to show_library in LateNight.
This lets the view menu check option work in all circumstances.
Configuration menu - View commit details
-
Copy full SHA for 977d541 - Browse repository at this point
Copy the full SHA 977d541View commit details -
Configuration menu - View commit details
-
Copy full SHA for 76a6627 - Browse repository at this point
Copy the full SHA 76a6627View commit details -
Configuration menu - View commit details
-
Copy full SHA for 4851621 - Browse repository at this point
Copy the full SHA 4851621View commit details -
Configuration menu - View commit details
-
Copy full SHA for 7a69e8a - Browse repository at this point
Copy the full SHA 7a69e8aView commit details -
Configuration menu - View commit details
-
Copy full SHA for e7a2585 - Browse repository at this point
Copy the full SHA e7a2585View commit details -
LateNight: crossfader can now be hidden.
Added "Show crossfader" check option to view menu.
Configuration menu - View commit details
-
Copy full SHA for 5985074 - Browse repository at this point
Copy the full SHA 5985074View commit details -
Configuration menu - View commit details
-
Copy full SHA for 0dca0a6 - Browse repository at this point
Copy the full SHA 0dca0a6View commit details -
Configuration menu - View commit details
-
Copy full SHA for 4e24639 - Browse repository at this point
Copy the full SHA 4e24639View commit details -
Configuration menu - View commit details
-
Copy full SHA for 46520d5 - Browse repository at this point
Copy the full SHA 46520d5View commit details
Commits on Jul 7, 2015
-
LateNight: Library always visible when skin is med or full size.
The library has been disconnected from show_library CO when the lower half of the skin is either in full or med mode. This makes sense since there's always enough space for the library in both modes, even if the samplers, the fx chains and/or the mics are visible. The library has been changed to minimum expanding height to accomodate to the height of visible sections samplers, fx and/or mic. These changes also solve the library not showing up on Mixxx start if the samplers, fx or mics were selected on the small mode when Mixxx exit.
Configuration menu - View commit details
-
Copy full SHA for 00adfbf - Browse repository at this point
Copy the full SHA 00adfbfView commit details -
Configuration menu - View commit details
-
Copy full SHA for 3f2f6cf - Browse repository at this point
Copy the full SHA 3f2f6cfView commit details
Commits on Jul 8, 2015
-
Configuration menu - View commit details
-
Copy full SHA for 6ea5d0d - Browse repository at this point
Copy the full SHA 6ea5d0dView commit details -
Configuration menu - View commit details
-
Copy full SHA for ac5f959 - Browse repository at this point
Copy the full SHA ac5f959View commit details -
Configuration menu - View commit details
-
Copy full SHA for 52a5d4d - Browse repository at this point
Copy the full SHA 52a5d4dView commit details -
Configuration menu - View commit details
-
Copy full SHA for 8627bbf - Browse repository at this point
Copy the full SHA 8627bbfView commit details -
Configuration menu - View commit details
-
Copy full SHA for 39e1858 - Browse repository at this point
Copy the full SHA 39e1858View commit details -
Configuration menu - View commit details
-
Copy full SHA for e98d517 - Browse repository at this point
Copy the full SHA e98d517View commit details -
Configuration menu - View commit details
-
Copy full SHA for f2aa3f2 - Browse repository at this point
Copy the full SHA f2aa3f2View commit details -
Configuration menu - View commit details
-
Copy full SHA for 2bceb6a - Browse repository at this point
Copy the full SHA 2bceb6aView commit details -
Configuration menu - View commit details
-
Copy full SHA for 0371b9a - Browse repository at this point
Copy the full SHA 0371b9aView commit details -
Configuration menu - View commit details
-
Copy full SHA for 45fdbe1 - Browse repository at this point
Copy the full SHA 45fdbe1View commit details -
Configuration menu - View commit details
-
Copy full SHA for c45dfa5 - Browse repository at this point
Copy the full SHA c45dfa5View commit details -
Updated keyboard shortcuts. The coverart shortcut is broken for all l…
…ocales except spanish, russian and italian.
Configuration menu - View commit details
-
Copy full SHA for 7f07bf5 - Browse repository at this point
Copy the full SHA 7f07bf5View commit details -
LateNight: Changed show spinny button for crossfader assign button.
Swapped it by quantize button so the layout is like on the sampler decks.
Configuration menu - View commit details
-
Copy full SHA for ed21205 - Browse repository at this point
Copy the full SHA ed21205View commit details -
Shade: switched to common show/hide control for both spinnies.
Removed the show/hide spinny deck button and replaced for xFader assign. Swaped position of xFader assign button and quantize button.
Configuration menu - View commit details
-
Copy full SHA for 905db48 - Browse repository at this point
Copy the full SHA 905db48View commit details -
Configuration menu - View commit details
-
Copy full SHA for 35b32fc - Browse repository at this point
Copy the full SHA 35b32fcView commit details
Commits on Jul 11, 2015
-
Merge remote-tracking branch 'upstream/1.12' into skin-layout-revamp-dev
Conflicts: res/skins/LateNight/mixer.xml
Configuration menu - View commit details
-
Copy full SHA for 7df692a - Browse repository at this point
Copy the full SHA 7df692aView commit details
Commits on Jul 20, 2015
-
Configuration menu - View commit details
-
Copy full SHA for b73bd08 - Browse repository at this point
Copy the full SHA b73bd08View commit details