Skip to content
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

Closed
This pull request is big! We’re only showing the most recent 250 commits.

Commits on Apr 22, 2015

  1. Fix the build on OS X.

    rryan committed Apr 22, 2015
    Configuration menu
    Copy the full SHA
    90a5e44 View commit details
    Browse the repository at this point in the history
  2. Merge pull request mixxxdj#411 from uklotzde/NewSoundSourceAPI

    New SoundSource/AudioSource API
    rryan committed Apr 22, 2015
    Configuration menu
    Copy the full SHA
    9b4fbf6 View commit details
    Browse the repository at this point in the history

Commits on Apr 23, 2015

  1. Configuration menu
    Copy the full SHA
    a95a67b View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    92fdfa7 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    014f479 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    a6b7a5d View commit details
    Browse the repository at this point in the history
  5. improved sound quality

    jercaianu committed Apr 23, 2015
    Configuration menu
    Copy the full SHA
    c08f96c View commit details
    Browse the repository at this point in the history
  6. Merge pull request mixxxdj#562 from uklotzde/SoundSourceMediaFoundati…

    …onBuild
    
    Fix Windows build (SoundSourceMediaFoundation)
    rryan committed Apr 23, 2015
    Configuration menu
    Copy the full SHA
    dea506e View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    8ba7373 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    933cc4f View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    c1e8cae View commit details
    Browse the repository at this point in the history

Commits on Apr 24, 2015

  1. Merge pull request mixxxdj#564 from daschuer/mp3samplerate

    mp3: Workaround for different sample rates in on file
    daschuer committed Apr 24, 2015
    Configuration menu
    Copy the full SHA
    acd8201 View commit details
    Browse the repository at this point in the history
  2. 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.
    rryan committed Apr 24, 2015
    Configuration menu
    Copy the full SHA
    cfaf6db View commit details
    Browse the repository at this point in the history
  3. Merge pull request mixxxdj#565 from rryan/extaudiofile

    Add "stabilization read" to MP3 seeks in SoundSourceCoreAudio.
    rryan committed Apr 24, 2015
    Configuration menu
    Copy the full SHA
    30120ce View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    fe02d65 View commit details
    Browse the repository at this point in the history

Commits on Apr 25, 2015

  1. Configuration menu
    Copy the full SHA
    6d9c259 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    18d7ec3 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    4a2023a View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    26949dc View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    1b07544 View commit details
    Browse the repository at this point in the history
  6. 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.
    uklotzde committed Apr 25, 2015
    Configuration menu
    Copy the full SHA
    b7d9985 View commit details
    Browse the repository at this point in the history
  7. Separate code paths for reading mono/stereo MP3 data

    Slightly more code, but hopefully easier to understand.
    uklotzde committed Apr 25, 2015
    Configuration menu
    Copy the full SHA
    e003d06 View commit details
    Browse the repository at this point in the history
  8. Merge pull request mixxxdj#568 from uklotzde/MP3ChannelAndDecodingFix

    MP3 channel and decoding fix
    daschuer committed Apr 25, 2015
    Configuration menu
    Copy the full SHA
    65e96f5 View commit details
    Browse the repository at this point in the history

Commits on Apr 26, 2015

  1. 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     }
    uklotzde committed Apr 26, 2015
    Configuration menu
    Copy the full SHA
    1e5b3e7 View commit details
    Browse the repository at this point in the history
  2. 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     }
    uklotzde committed Apr 26, 2015
    Configuration menu
    Copy the full SHA
    6c68b61 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    813c8d5 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    6df1803 View commit details
    Browse the repository at this point in the history

Commits on Apr 27, 2015

  1. Configuration menu
    Copy the full SHA
    322271f View commit details
    Browse the repository at this point in the history
  2. Merge pull request mixxxdj#569 from uklotzde/FixCoverityWarningsForSo…

    …undSources
    
    Fix coverity warnings for new SoundSources
    rryan committed Apr 27, 2015
    Configuration menu
    Copy the full SHA
    bb1f9f7 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    fc62fe9 View commit details
    Browse the repository at this point in the history

Commits on Apr 28, 2015

  1. 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.
    uklotzde committed Apr 28, 2015
    Configuration menu
    Copy the full SHA
    2444c45 View commit details
    Browse the repository at this point in the history
  2. missing coef

    demos committed Apr 28, 2015
    Configuration menu
    Copy the full SHA
    8f68828 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    59558c6 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    3bfa4a7 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    81ed54d View commit details
    Browse the repository at this point in the history
  6. Merge pull request mixxxdj#571 from uklotzde/TagWritingFixes

    Writing Tags: Handle inaccessible tags correctly
    daschuer committed Apr 28, 2015
    Configuration menu
    Copy the full SHA
    bfc533d View commit details
    Browse the repository at this point in the history

Commits on Apr 29, 2015

  1. beginning of period unit switch

    demos committed Apr 29, 2015
    Configuration menu
    Copy the full SHA
    8f21d1f View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    77302f9 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    b5f198b View commit details
    Browse the repository at this point in the history
  4. fix Windows build

    default-kramer committed Apr 29, 2015
    Configuration menu
    Copy the full SHA
    7bb4223 View commit details
    Browse the repository at this point in the history

Commits on Apr 30, 2015

  1. Configuration menu
    Copy the full SHA
    3912d6a View commit details
    Browse the repository at this point in the history
  2. Merge pull request mixxxdj#572 from default-kramer/fixWindowsBuild

    fix Windows build
    rryan committed Apr 30, 2015
    Configuration menu
    Copy the full SHA
    8f7d0c8 View commit details
    Browse the repository at this point in the history

Commits on May 1, 2015

  1. Configuration menu
    Copy the full SHA
    5e628e8 View commit details
    Browse the repository at this point in the history

Commits on May 3, 2015

  1. Configuration menu
    Copy the full SHA
    45192dd View commit details
    Browse the repository at this point in the history
  2. the delay moves with the sound

    demos committed May 3, 2015
    Configuration menu
    Copy the full SHA
    d39935b View commit details
    Browse the repository at this point in the history
  3. cleaning

    demos committed May 3, 2015
    Configuration menu
    Copy the full SHA
    3b52cbb View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    f45d729 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    452dc28 View commit details
    Browse the repository at this point in the history

Commits on May 4, 2015

  1. Configuration menu
    Copy the full SHA
    34c4d9e View commit details
    Browse the repository at this point in the history

Commits on May 5, 2015

  1. Configuration menu
    Copy the full SHA
    fcd8203 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    99e9700 View commit details
    Browse the repository at this point in the history

Commits on May 6, 2015

  1. Configuration menu
    Copy the full SHA
    aaeea04 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    62e7a3c View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    7145bcc View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    33f8d3e View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    e720807 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    5294551 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    9e2e6b7 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    8665514 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    00f358c View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    519919a View commit details
    Browse the repository at this point in the history
  11. Merge pull request mixxxdj#577 from uklotzde/AudioSourceApiCleanup

    AudioSource API Code Cleanup
    rryan committed May 6, 2015
    Configuration menu
    Copy the full SHA
    c3a7ab5 View commit details
    Browse the repository at this point in the history

Commits on May 7, 2015

  1. Configuration menu
    Copy the full SHA
    20cfcd4 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    b5de6e2 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    9819302 View commit details
    Browse the repository at this point in the history

Commits on May 10, 2015

  1. Configuration menu
    Copy the full SHA
    4d96003 View commit details
    Browse the repository at this point in the history
  2. add enginefilterpanesingle

    daschuer committed May 10, 2015
    Configuration menu
    Copy the full SHA
    a7bf3d4 View commit details
    Browse the repository at this point in the history

Commits on May 11, 2015

  1. Configuration menu
    Copy the full SHA
    fd3e33c View commit details
    Browse the repository at this point in the history
  2. Use ramped value for delay

    daschuer committed May 11, 2015
    Configuration menu
    Copy the full SHA
    17d8fa4 View commit details
    Browse the repository at this point in the history

Commits on May 12, 2015

  1. Configuration menu
    Copy the full SHA
    24eabfb View commit details
    Browse the repository at this point in the history

Commits on May 14, 2015

  1. Merge branch '1.12'

    Conflicts:
    	src/test/mixxxtest.cpp
    ywwg committed May 14, 2015
    Configuration menu
    Copy the full SHA
    4588677 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    c597263 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    e40c574 View commit details
    Browse the repository at this point in the history
  4. 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.
    uklotzde committed May 14, 2015
    Configuration menu
    Copy the full SHA
    525205c View commit details
    Browse the repository at this point in the history
  5. 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.
    uklotzde committed May 14, 2015
    Configuration menu
    Copy the full SHA
    c005701 View commit details
    Browse the repository at this point in the history

Commits on May 15, 2015

  1. Configuration menu
    Copy the full SHA
    e2dfe93 View commit details
    Browse the repository at this point in the history

Commits on May 16, 2015

  1. Configuration menu
    Copy the full SHA
    a52f1ea View commit details
    Browse the repository at this point in the history
  2. 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.
    uklotzde committed May 16, 2015
    Configuration menu
    Copy the full SHA
    e175a4e View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    a0fec6a View commit details
    Browse the repository at this point in the history
  4. Fix FFmpeg build

    uklotzde committed May 16, 2015
    Configuration menu
    Copy the full SHA
    e12dae4 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    094b9b5 View commit details
    Browse the repository at this point in the history
  6. added tanh

    jercaianu committed May 16, 2015
    Configuration menu
    Copy the full SHA
    bb5b6f7 View commit details
    Browse the repository at this point in the history

Commits on May 17, 2015

  1. clipped only feedback

    jercaianu committed May 17, 2015
    Configuration menu
    Copy the full SHA
    9c2ce17 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    c71c878 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    569134d View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    5ecaa8f View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    ba6187f View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    6ba1702 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    956028c View commit details
    Browse the repository at this point in the history

Commits on May 18, 2015

  1. Configuration menu
    Copy the full SHA
    2dd3797 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    d4c3b9d View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    e4287ae View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    9571e62 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    8d3e7f0 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    5e4cb83 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    8bc8e3c View commit details
    Browse the repository at this point in the history

Commits on May 19, 2015

  1. Configuration menu
    Copy the full SHA
    df2a577 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    e7d9df4 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    af1b0b1 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    ca576a5 View commit details
    Browse the repository at this point in the history
  5. Merge pull request #2 from daschuer/pan_effect_stereo

    pan delay per sample with linear stretching
    demos committed May 19, 2015
    Configuration menu
    Copy the full SHA
    eb59046 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    5246f9f View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    8ca6499 View commit details
    Browse the repository at this point in the history
  8. Merge pull request mixxxdj#586 from uklotzde/CachingReaderPartialChun…

    …kRead
    
    CachingReaderWorker: Don't discard partially read chunks
    daschuer committed May 19, 2015
    Configuration menu
    Copy the full SHA
    4773565 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    cd9bb73 View commit details
    Browse the repository at this point in the history
  10. Changed RateRange to RateRangeDecimal

    Markus Klösges committed May 19, 2015
    Configuration menu
    Copy the full SHA
    78fda50 View commit details
    Browse the repository at this point in the history

Commits on May 20, 2015

  1. Use plugin file name filter only for Apple OS X

    At least this is how it works in 1.12.
    uklotzde committed May 20, 2015
    Configuration menu
    Copy the full SHA
    7fcd712 View commit details
    Browse the repository at this point in the history
  2. Keep ComboBoxRateRange and add some more sane values, plus allow any

    setting in the config file
    Markus Klösges committed May 20, 2015
    Configuration menu
    Copy the full SHA
    39b83a8 View commit details
    Browse the repository at this point in the history
  3. Limit Rate to 90% max and better labels

    Markus Klösges committed May 20, 2015
    Configuration menu
    Copy the full SHA
    cbecdad View commit details
    Browse the repository at this point in the history
  4. Surround * and / with spaces

    Markus Klösges committed May 20, 2015
    Configuration menu
    Copy the full SHA
    b299fec View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    97370f0 View commit details
    Browse the repository at this point in the history
  6. Merge pull request mixxxdj#560 from jercaianu/phaser

    phaser effect
    daschuer committed May 20, 2015
    Configuration menu
    Copy the full SHA
    731b49b View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    158519a View commit details
    Browse the repository at this point in the history
  8. Change getter name: getFileName() -> getFilePath()

    The corresponding Qt function name is actually misleading.
    uklotzde committed May 20, 2015
    Configuration menu
    Copy the full SHA
    7e85dac View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    76455e9 View commit details
    Browse the repository at this point in the history
  10. 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.
    uklotzde committed May 20, 2015
    Configuration menu
    Copy the full SHA
    1da53f3 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    c4814f2 View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    ca42ce2 View commit details
    Browse the repository at this point in the history

Commits on May 21, 2015

  1. pausable period

    demos committed May 21, 2015
    Configuration menu
    Copy the full SHA
    28211ab View commit details
    Browse the repository at this point in the history
  2. Merge pull request mixxxdj#588 from MK-42/rateAsDecimal

    Changed RateRange to RateRangeDecimal
    daschuer committed May 21, 2015
    Configuration menu
    Copy the full SHA
    d528693 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    b327563 View commit details
    Browse the repository at this point in the history

Commits on May 22, 2015

  1. Configuration menu
    Copy the full SHA
    6bb4f0b View commit details
    Browse the repository at this point in the history
  2. period will not be fixed anymore if the effect is in enabling state o…

    …r the position change is ramped
    demos committed May 22, 2015
    Configuration menu
    Copy the full SHA
    9f6c5ef View commit details
    Browse the repository at this point in the history
  3. period will not be fixed anymore if the effect is in enabling state o…

    …r the position change is ramped
    demos committed May 22, 2015
    Configuration menu
    Copy the full SHA
    e315b75 View commit details
    Browse the repository at this point in the history
  4. 2 Configuration menu
    Copy the full SHA
    6c3a095 View commit details
    Browse the repository at this point in the history

Commits on May 23, 2015

  1. 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.
    uklotzde committed May 23, 2015
    Configuration menu
    Copy the full SHA
    55d4c77 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    c8d90f8 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    3738041 View commit details
    Browse the repository at this point in the history

Commits on May 24, 2015

  1. Configuration menu
    Copy the full SHA
    e61f10e View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    a9febe1 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    57610a7 View commit details
    Browse the repository at this point in the history

Commits on May 26, 2015

  1. Configuration menu
    Copy the full SHA
    3f854c1 View commit details
    Browse the repository at this point in the history

Commits on May 28, 2015

  1. Highlight Crates a Track is in. Still some work to do

    Markus Klösges committed May 28, 2015
    Configuration menu
    Copy the full SHA
    eb5cf7e View commit details
    Browse the repository at this point in the history
  2. Rename delegate according to his function

    Markus Klösges committed May 28, 2015
    Configuration menu
    Copy the full SHA
    3832e41 View commit details
    Browse the repository at this point in the history
  3. Fix indentation

    uklotzde committed May 28, 2015
    Configuration menu
    Copy the full SHA
    3ed413b View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    15fcd2a View commit details
    Browse the repository at this point in the history
  5. Restore deleted comment

    uklotzde committed May 28, 2015
    Configuration menu
    Copy the full SHA
    cba8770 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    f82e497 View commit details
    Browse the repository at this point in the history

Commits on May 29, 2015

  1. Configuration menu
    Copy the full SHA
    b8224b0 View commit details
    Browse the repository at this point in the history
  2. Highlighting crates the selected track is in works now

    Markus Klösges committed May 29, 2015
    Configuration menu
    Copy the full SHA
    dccb519 View commit details
    Browse the repository at this point in the history
  3. Some minor code-style fixes

    Markus Klösges committed May 29, 2015
    Configuration menu
    Copy the full SHA
    c48d33a View commit details
    Browse the repository at this point in the history
  4. Added comment to CrateHighlightDelegate::initStyleOption

    Markus Klösges committed May 29, 2015
    Configuration menu
    Copy the full SHA
    a096fb6 View commit details
    Browse the repository at this point in the history
  5. Added highlighting of playlists

    Markus Klösges committed May 29, 2015
    Configuration menu
    Copy the full SHA
    ca3f011 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    34ce420 View commit details
    Browse the repository at this point in the history
  7. Ignore QModelIndex's that don't have TreeItem internal pointers in Cr…

    …ateHighlightDelegate.
    rryan committed May 29, 2015
    Configuration menu
    Copy the full SHA
    5d09cfa View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    915c682 View commit details
    Browse the repository at this point in the history
  9. Merge pull request #1 from rryan/sidebar-highlight

    Sidebar highlight fixes.
    MK-42 committed May 29, 2015
    Configuration menu
    Copy the full SHA
    f2fb6bf View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    8f27dc3 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    4dbc7ac View commit details
    Browse the repository at this point in the history
  12. Clean up used memory

    Markus Klösges committed May 29, 2015
    Configuration menu
    Copy the full SHA
    d9c3db3 View commit details
    Browse the repository at this point in the history
  13. fix missing signals

    Markus Klösges committed May 29, 2015
    Configuration menu
    Copy the full SHA
    29cd09a View commit details
    Browse the repository at this point in the history
  14. Clear selected Playlists/Crates on viewChange

    Markus Klösges committed May 29, 2015
    Configuration menu
    Copy the full SHA
    dc1f573 View commit details
    Browse the repository at this point in the history

Commits on May 30, 2015

  1. Remove CrateHighlightDelegate.

    rryan committed May 30, 2015
    Configuration menu
    Copy the full SHA
    dbb60d8 View commit details
    Browse the repository at this point in the history
  2. Add bold attribute to TreeItem.

    rryan committed May 30, 2015
    Configuration menu
    Copy the full SHA
    6552667 View commit details
    Browse the repository at this point in the history
  3. Restore LibraryFeature::trackSelected signal.

    I think this was why we had to add signals to each individual feature.
    rryan committed May 30, 2015
    Configuration menu
    Copy the full SHA
    d6692f0 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    89e3ad3 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    986013d View commit details
    Browse the repository at this point in the history
  6. Populate TreeItem state when re-building the child model.

    This supports bolding/unbolding the playlist/crate when a track is added/removed.
    rryan committed May 30, 2015
    Configuration menu
    Copy the full SHA
    939428f View commit details
    Browse the repository at this point in the history

Commits on May 31, 2015

  1. Merge pull request #2 from rryan/sidebar-highlight

    Some fixes.
    MK-42 committed May 31, 2015
    Configuration menu
    Copy the full SHA
    4a75b85 View commit details
    Browse the repository at this point in the history

Commits on Jun 2, 2015

  1. Configuration menu
    Copy the full SHA
    76349e3 View commit details
    Browse the repository at this point in the history

Commits on Jun 3, 2015

  1. 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.
    rryan committed Jun 3, 2015
    Configuration menu
    Copy the full SHA
    55381bf View commit details
    Browse the repository at this point in the history
  2. Fetch playlist / crate membership set on track selection.

    Avoids repeatedly asking the DAO for pair-wise membership (requires
    linear hash table lookups).
    rryan committed Jun 3, 2015
    Configuration menu
    Copy the full SHA
    1176128 View commit details
    Browse the repository at this point in the history

Commits on Jun 4, 2015

  1. Configuration menu
    Copy the full SHA
    05eaa7e View commit details
    Browse the repository at this point in the history
  2. Delete redundant DEBUG_ASSERT

    Empty file names are handled gracefully by SoundSourceProxy.
    uklotzde committed Jun 4, 2015
    Configuration menu
    Copy the full SHA
    835189c View commit details
    Browse the repository at this point in the history
  3. Fix type mismatch.

    rryan committed Jun 4, 2015
    Configuration menu
    Copy the full SHA
    b0785ce View commit details
    Browse the repository at this point in the history
  4. Add move constructor / move assignment operator for SampleBuffer.

    Fixes the build for -std=c++0x.
    rryan committed Jun 4, 2015
    Configuration menu
    Copy the full SHA
    dcbe3b9 View commit details
    Browse the repository at this point in the history
  5. Enable -std=c++11 support.

    rryan committed Jun 4, 2015
    1 Configuration menu
    Copy the full SHA
    03f9b20 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    fb6bdca View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    c6a45e6 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    e21a476 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    9252d7d View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    6e26a18 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    c69dc41 View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    62e3fe7 View commit details
    Browse the repository at this point in the history

Commits on Jun 5, 2015

  1. Merge pull request mixxxdj#604 from uklotzde/SampleBufferMoveConstruc…

    …torFix
    
    Fix move constructor of SampleBuffer
    rryan committed Jun 5, 2015
    Configuration menu
    Copy the full SHA
    c46a421 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    5785703 View commit details
    Browse the repository at this point in the history
  3. Use C+11 override keyword

    uklotzde committed Jun 5, 2015
    Configuration menu
    Copy the full SHA
    c4fdd0a View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    9ae9f84 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    0e916ff View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    4f39074 View commit details
    Browse the repository at this point in the history
  7. Merge pull request mixxxdj#578 from uklotzde/SoundSourcePluginUrlFile…

    …NameFix
    
    SoundSource Plugin API: Version 8
    rryan committed Jun 5, 2015
    Configuration menu
    Copy the full SHA
    c4532a0 View commit details
    Browse the repository at this point in the history
  8. Fix c++11 TODO.

    rryan committed Jun 5, 2015
    Configuration menu
    Copy the full SHA
    82cb866 View commit details
    Browse the repository at this point in the history

Commits on Jun 9, 2015

  1. Configuration menu
    Copy the full SHA
    47068e5 View commit details
    Browse the repository at this point in the history
  2. Fix memory leak in NotNode

    uklotzde committed Jun 9, 2015
    Configuration menu
    Copy the full SHA
    de065de View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    650c9eb View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    ccd2c21 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    9bfc07d View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    19bc77d View commit details
    Browse the repository at this point in the history
  7. Fix (or comment) fragile design of Numeric-/DurationFilterNode

    Virtual member functions should not be called from within the constructor!
    uklotzde committed Jun 9, 2015
    Configuration menu
    Copy the full SHA
    bfacf89 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    98cf2b2 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    d6ec183 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    3d83bea View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    735676c View commit details
    Browse the repository at this point in the history

Commits on Jun 10, 2015

  1. Remove QColor::darker call.

    Since it does not mutate its instance it has no effect.
    rryan committed Jun 10, 2015
    Configuration menu
    Copy the full SHA
    61d3c60 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    12ee732 View commit details
    Browse the repository at this point in the history
  3. 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.
    rryan committed Jun 10, 2015
    Configuration menu
    Copy the full SHA
    35c29dc View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    56f5864 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    2480715 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    b639bc7 View commit details
    Browse the repository at this point in the history
  7. Remove use of deprecated (in c++11) register keyword.

    The generated assembly with and without is identical in EngineFilterBessel4/8.
    rryan committed Jun 10, 2015
    Configuration menu
    Copy the full SHA
    eca1adc View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    41c5fa5 View commit details
    Browse the repository at this point in the history
  9. Don't call TreeItemModel::setData in a loop.

    This caused severe performance issues since it triggered a repaint on every loop
    iteration.
    rryan committed Jun 10, 2015
    Configuration menu
    Copy the full SHA
    de3e581 View commit details
    Browse the repository at this point in the history
  10. Merge pull request mixxxdj#617 from rryan/sidebar-highlight

    Highlight Crates a Track is in
    rryan committed Jun 10, 2015
    Configuration menu
    Copy the full SHA
    4a103da View commit details
    Browse the repository at this point in the history

Commits on Jun 11, 2015

  1. Merge pull request mixxxdj#614 from uklotzde/QueryNodeRefactoring

    QueryNode: Memory leak fix + refactoring
    rryan committed Jun 11, 2015
    Configuration menu
    Copy the full SHA
    926ea8a View commit details
    Browse the repository at this point in the history

Commits on Jun 14, 2015

  1. 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.
    uklotzde committed Jun 14, 2015
    Configuration menu
    Copy the full SHA
    a07f61c View commit details
    Browse the repository at this point in the history
  2. 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.
    uklotzde committed Jun 14, 2015
    Configuration menu
    Copy the full SHA
    88e111b View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    c11149d View commit details
    Browse the repository at this point in the history

Commits on Jun 15, 2015

  1. Configuration menu
    Copy the full SHA
    dfe8772 View commit details
    Browse the repository at this point in the history

Commits on Jun 16, 2015

  1. 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
    uklotzde committed Jun 16, 2015
    Configuration menu
    Copy the full SHA
    dd0fec9 View commit details
    Browse the repository at this point in the history

Commits on Jun 17, 2015

  1. Merge pull request mixxxdj#628 from uklotzde/Merge1.12ToMaster

    Resolve merge conflicts from 1.12 to master
    daschuer committed Jun 17, 2015
    Configuration menu
    Copy the full SHA
    ab53f56 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    084c879 View commit details
    Browse the repository at this point in the history

Commits on Jun 21, 2015

  1. Configuration menu
    Copy the full SHA
    d762b39 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    5b6d4cc View commit details
    Browse the repository at this point in the history

Commits on Jun 22, 2015

  1. Configuration menu
    Copy the full SHA
    490b9a0 View commit details
    Browse the repository at this point in the history

Commits on Jun 29, 2015

  1. Configuration menu
    Copy the full SHA
    afb21ed View commit details
    Browse the repository at this point in the history

Commits on Jun 30, 2015

  1. Configuration menu
    Copy the full SHA
    cf1031a View commit details
    Browse the repository at this point in the history
  2. Replace NULL with nullptr

    uklotzde committed Jun 30, 2015
    Configuration menu
    Copy the full SHA
    b43dce5 View commit details
    Browse the repository at this point in the history
  3. Add missing nullptr check

    uklotzde committed Jun 30, 2015
    Configuration menu
    Copy the full SHA
    e0f217e View commit details
    Browse the repository at this point in the history
  4. Merge pull request mixxxdj#626 from uklotzde/CachingReaderAvoidUnnece…

    …ssarySeeking
    
    Fix outstanding SoundSource issues
    daschuer committed Jun 30, 2015
    Configuration menu
    Copy the full SHA
    c390cba View commit details
    Browse the repository at this point in the history

Commits on Jul 6, 2015

  1. Configuration menu
    Copy the full SHA
    1b7ca1d View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    1a3a770 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    65e0ef5 View commit details
    Browse the repository at this point in the history
  4. Changed CO show_library_tab_small to show_library in LateNight.

    This lets the view menu check option work in all circumstances.
    ferranpujolcamins committed Jul 6, 2015
    Configuration menu
    Copy the full SHA
    977d541 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    76a6627 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    4851621 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    7a69e8a View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    e7a2585 View commit details
    Browse the repository at this point in the history
  9. LateNight: crossfader can now be hidden.

    Added "Show crossfader" check option to view menu.
    ferranpujolcamins committed Jul 6, 2015
    Configuration menu
    Copy the full SHA
    5985074 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    0dca0a6 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    4e24639 View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    46520d5 View commit details
    Browse the repository at this point in the history

Commits on Jul 7, 2015

  1. 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.
    ferranpujolcamins committed Jul 7, 2015
    Configuration menu
    Copy the full SHA
    00adfbf View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    3f2f6cf View commit details
    Browse the repository at this point in the history

Commits on Jul 8, 2015

  1. Configuration menu
    Copy the full SHA
    6ea5d0d View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    ac5f959 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    52a5d4d View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    8627bbf View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    39e1858 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    e98d517 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    f2aa3f2 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    2bceb6a View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    0371b9a View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    45fdbe1 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    c45dfa5 View commit details
    Browse the repository at this point in the history
  12. Updated keyboard shortcuts. The coverart shortcut is broken for all l…

    …ocales except spanish, russian and italian.
    ferranpujolcamins committed Jul 8, 2015
    Configuration menu
    Copy the full SHA
    7f07bf5 View commit details
    Browse the repository at this point in the history
  13. LateNight: Changed show spinny button for crossfader assign button.

    Swapped it by quantize button so the layout is like on the sampler decks.
    ferranpujolcamins committed Jul 8, 2015
    Configuration menu
    Copy the full SHA
    ed21205 View commit details
    Browse the repository at this point in the history
  14. 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.
    ferranpujolcamins committed Jul 8, 2015
    Configuration menu
    Copy the full SHA
    905db48 View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    35b32fc View commit details
    Browse the repository at this point in the history

Commits on Jul 11, 2015

  1. Merge remote-tracking branch 'upstream/1.12' into skin-layout-revamp-dev

    Conflicts:
    	res/skins/LateNight/mixer.xml
    ferranpujolcamins committed Jul 11, 2015
    Configuration menu
    Copy the full SHA
    7df692a View commit details
    Browse the repository at this point in the history

Commits on Jul 20, 2015

  1. Configuration menu
    Copy the full SHA
    b73bd08 View commit details
    Browse the repository at this point in the history