Thanks, I figured it was Alsa, Linux or something low level. Thought I'd 
ask.

-Jamie

On 06/11/2015 01:51 AM, mixxx-devel-requ...@lists.sourceforge.net wrote:
> Send Mixxx-devel mailing list submissions to
>       mixxx-devel@lists.sourceforge.net
>
> To subscribe or unsubscribe via the World Wide Web, visit
>       https://lists.sourceforge.net/lists/listinfo/mixxx-devel
> or, via email, send a message with subject or body 'help' to
>       mixxx-devel-requ...@lists.sourceforge.net
>
> You can reach the person managing the list at
>       mixxx-devel-ow...@lists.sourceforge.net
>
> When replying, please edit your Subject line so it is more specific
> than "Re: Contents of Mixxx-devel digest..."
>
>
> Today's Topics:
>
>     1. Re: Rane SL4 Support (Sean M. Pappalardo - D.J. Pegasus)
>     2. Re: Rane SL4 Support (Be)
>     3. Re: formating source Code with clang-format (Daniel Sch?rmann)
>     4. wiki overhaul (Be)
>     5. Re: travis-ci restart (S?bastien BLAISOT)
>
>
> ----------------------------------------------------------------------
>
> Message: 1
> Date: Wed, 10 Jun 2015 11:22:40 -0700
> From: "Sean M. Pappalardo - D.J. Pegasus" <spappala...@mixxx.org>
> Subject: Re: [Mixxx-devel] Rane SL4 Support
> To: mixxx-devel@lists.sourceforge.net
> Message-ID: <55788070.4010...@mixxx.org>
> Content-Type: text/plain; charset="windows-1252"
>
>
>
> On 06/10/2015 11:03 AM, Jamie Carranza wrote:
>> Hi, I'm not a developer but have much interest in using a Rane SL-4 on a
>> Linux system.  Would it help to donate one to Mixxx developers to help
>> get it working on Linux?  I have one I'd be willing to give up if so.
>>
>> Or is the issue with Alsa or Pulseaudio not supporting the device?
> Exactly: since Mixxx uses any devices the OS supports, you'll want to
> talk to the ALSA team about adding a driver for your audio device.
>
> Sincerely,
> Sean M. Pappalardo
> "D.J. Pegasus"
> Mixxx Developer - Controller Specialist
>
> -------------- next part --------------
> A non-text attachment was scrubbed...
> Name: smime.p7s
> Type: application/pkcs7-signature
> Size: 4255 bytes
> Desc: S/MIME Cryptographic Signature
>
> ------------------------------
>
> Message: 2
> Date: Wed, 10 Jun 2015 14:02:09 -0500
> From: Be <b...@gmx.com>
> Subject: Re: [Mixxx-devel] Rane SL4 Support
> To: mixxx-devel@lists.sourceforge.net
> Message-ID: <557889b1.9050...@gmx.com>
> Content-Type: text/plain; charset=windows-1252; format=flowed
>
> I posted on alsa-devel about this a few months ago and got no response.
> I emailed Mark Hills, the xwax developer, who wrote the driver quirk for
> the old SL1 (a USB 1.1 device; the SL2/3/4 series is USB 2.0). He
> responded to me initially but I never heard back from him after that. I
> posted on this list and Tuuka Pasanen said he would be interested in
> writing a driver. I setup a Windows 7 VM with KVM/QEMU on my laptop,
> plugged in my friends' SL4, and recorded the raw USB traffic with
> Wireshark on GNU/Linux (outside of the VM). I sent that data to Tuuka
> but I haven't heard anything about it in a while.
>
> I don't own an SL2, SL3, or SL4 (and am not really interested in owning
> one), but I'd love to see Linux support this common DJ hardware.
>
> On 06/10/2015 01:03 PM, Jamie Carranza wrote:
>> Hi, I'm not a developer but have much interest in using a Rane SL-4 on a
>> Linux system.  Would it help to donate one to Mixxx developers to help
>> get it working on Linux?  I have one I'd be willing to give up if so.
>>
>> Or is the issue with Alsa or Pulseaudio not supporting the device?
>>
>> -Jamie
>>
>>
>>
>> ------------------------------------------------------------------------------
>> _______________________________________________
>> Get Mixxx, the #1 Free MP3 DJ Mixing software Today
>> http://mixxx.org
>>
>>
>> Mixxx-devel mailing list
>> Mixxx-devel@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/mixxx-devel
>>
>
>
> ------------------------------
>
> Message: 3
> Date: Wed, 10 Jun 2015 23:23:33 +0200
> From: Daniel Sch?rmann <dasch...@mixxx.org>
> Subject: Re: [Mixxx-devel] formating source Code with clang-format
> To: Max Linke <max_li...@gmx.de>
> Cc: mixxx-devel <mixxx-devel@lists.sourceforge.net>
> Message-ID: <5578aad5.7030...@mixxx.org>
> Content-Type: text/plain; charset=utf-8; format=flowed
>
> Hi,
>
> I have played a bit with clang-format and it turns out that
> we need
>
> AlwaysBreakBeforeMultilineStrings: false
> ColumnLimit: 0
>
> To fix most cluttering the issues.
>
> But now we have a new one:
> Double indentation fails in certain palaces.
>
>
>
>
> Am 10.06.2015 um 17:01 schrieb Max Linke:
>>
>> On 06/10/2015 04:16 PM, Daniel Sch?rmann wrote:
>>> Which version of clang-format do you use?
>>> Can this be a bug like this:
>>> https://github.com/travisjeffery/ClangFormat-Xcode/issues/81
>>>
>>> Can you give an example where ColumnLimit: 0 fails?
>> I use clang-format-3.6
>>
>>
>>>      QLayout* pLayout = NULL;
>>> -    if (context.hasNode(node, "Layout")) {
>>> -        QString layout = context.selectString(node, "Layout");
>>> -        if (layout == "vertical") {
>>> +    if (context.hasNode(node,
>>> +                        "Layout")) {
>>> +        QString layout = context.selectString(node,
>>> +                                              "Layout");
>>> +        if (layout ==
>>> +            "vertical") {
>>>               pLayout = new QVBoxLayout();
>>> -        } else if (layout == "horizontal") {
>>> +        } else if (layout ==
>>> +                   "horizontal") {
>>>               pLayout = new QHBoxLayout();
>>> -        } else if (layout == "stacked") {
>>> +        } else if (layout ==
>>> +                   "stacked") {
>>
>> This doesn't happen if I set the column limit to 80
>
>
>
> ------------------------------
>
> Message: 4
> Date: Wed, 10 Jun 2015 17:01:26 -0500
> From: Be <b...@gmx.com>
> Subject: [Mixxx-devel] wiki overhaul
> To: Too Many DJs <mixxx-devel@lists.sourceforge.net>
> Message-ID: <5578b3b6.4050...@gmx.com>
> Content-Type: text/plain; charset=utf-8; format=flowed
>
> I have started overhauling the wiki. Take a look and feel free to edit.
>
> On the front page, I:
> * moved the info about GSoC to its own page,
> * moved the links to old meeting minutes to their own page,
> * removed the outdated and confusing link about the Hercules driver,
> * updated the manual link to the current online manual, and
> * reorganized a lot of other links.
> On other pages, I:
> * added Crossfade to the page about live GNU/Linux distros
> * removed outdated info about MixxxOS
> * added info about Native Instruments Traktor controllers to the
> hardware compatibility page
> * updated compilation instructions for Fedora.
> * updated info about using two sound cards in the FAQ
>
> To do:
> * Rewrite beginner's guide considering info that is already in manual. I
> am also working on revising the manual, especially chapter 3.
> * Add prices to hardware compatibility tables
> * Update info about controllers where info is available
> * Organize sound cards on hardware compatibility page into a table with
> info about each OS and the capabilities of the hardware
> * add more sound cards
> * undicate which controllers bundle sound cards
>
>
>
> ------------------------------
>
> Message: 5
> Date: Thu, 11 Jun 2015 10:51:00 +0200
> From: S?bastien BLAISOT <mi...@blaisot.org>
> Subject: Re: [Mixxx-devel] travis-ci restart
> To: S?bastien BLAISOT <mi...@blaisot.org>
> Cc: mixxx-devel <mixxx-devel@lists.sourceforge.net>
> Message-ID: <43859d3ceb3981cb3eadbe2cd3c2b...@blaisot.org>
> Content-Type: text/plain; charset="utf-8"
>
>   
>
> Hi all,
>
> I have 2 consecutive builds that failed in travis-ci in the EngineBuffer
> tests. Not at the same place (stalled builds killed by travis-ci) (Pull
> Request 606).
>
> https://travis-ci.org/mixxxdj/mixxx/builds/66159337
>
> https://travis-ci.org/mixxxdj/mixxx/builds/66339484
>
> I can see no relation between this two commits and engineBuffer
>
> I have compiled Mixxx on my computr without problem (and it builds fine
> under travis-ci but the tests are failing).
>
> I don't know what to do with that. can somebody take a look at that ?
>
> ---
> S?bastien Blaisot
>
> Le 10/06/2015 09:44, S?bastien BLAISOT a ?crit :
>
>> Hi,
>>
>> I have a failed (stalled) build in travis-ci on PR606 (last commit). I 
>> suspect a temporary problem on travis-ci.
>>
>> Is there a way to restart travis-ci compilation other than pushing a new 
>> commit ?
>>
>> Thanks,
>>
>> -- 
>> S?bastien Blaisot
>>
>> ------------------------------------------------------------------------------
>>
>> _______________________________________________
>> Get Mixxx, the #1 Free MP3 DJ Mixing software Today
>> http://mixxx.org [1]
>>
>> Mixxx-devel mailing list
>> Mixxx-devel@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/mixxx-devel [2]
>   
>
> Links:
> ------
> [1] http://mixxx.org
> [2] https://lists.sourceforge.net/lists/listinfo/mixxx-devel
> -------------- next part --------------
> An HTML attachment was scrubbed...
>
> ------------------------------
>
> ------------------------------------------------------------------------------
>
>
> ------------------------------
>
> _______________________________________________
> Get Mixxx, the #1 Free MP3 DJ software Today
> http://mixxx.org
>
> Mixxx-devel mailing list
> Mixxx-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/mixxx-devel
>
>
> End of Mixxx-devel Digest, Vol 109, Issue 35
> ********************************************


------------------------------------------------------------------------------
_______________________________________________
Get Mixxx, the #1 Free MP3 DJ Mixing software Today
http://mixxx.org


Mixxx-devel mailing list
Mixxx-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mixxx-devel

Reply via email to