Re: [LMMS-devel] Building LMMS for OSX

2014-04-06 Thread Tres Finocchiaro
> > have you tried asking on the mac or macosx irc channels on freenode? No I have not. As a mac and IRC user yourself, and also someone who has volunteered on several occasions to spearhead this initiative, I invite you. By all means, please do ask on freenode. :) I had a few more minutes to

Re: [LMMS-devel] Building LMMS for OSX

2014-04-06 Thread Jonathan Aquilina
have you tried asking on the mac or macosx irc channels on freenode? On Mon, Apr 7, 2014 at 4:48 AM, Tres Finocchiaro wrote: > > Feeling a bit lost... :\ > > There isn't a chance this is a 32-bit vs. 64-bit issue right? Probably > not > > This article about Oracle's TOra client I think exp

Re: [LMMS-devel] Building LMMS for OSX

2014-04-06 Thread Tres Finocchiaro
Feeling a bit lost... :\ There isn't a chance this is a 32-bit vs. 64-bit issue right? Probably not This article about Oracle's TOra client I think explains it best... Our very own MacPorts helper RyanDesigns is the one helping out the OP... https://github.com/SOCI/soci/issues/89 I'll quot

[LMMS-devel] Bandlimited oscillator helper functions/classes

2014-04-06 Thread Vesa
So here's another thing I've been thinking about. The same way we currently have the Oscillator helper functions for producing waveforms in oscillator.h, I was thinking of writing some functions for acquiring bandlimited waveforms. These would work the same way as the regular oscillator inline fu

Re: [LMMS-devel] Proposal: Fitting UI elements to be used in Qt Designer

2014-04-06 Thread Vesa
On 04/06/2014 11:51 PM, Tobias Doerffel wrote: > I think messing with pointers always should be avoided as often as > possible. In this specific case, it IMHO adds no value. Using pointers > here increases code complexity and makes things more crash-prone. > QColor is a very light-weight class (bas

Re: [LMMS-devel] Proposal: Fitting UI elements to be used in Qt Designer

2014-04-06 Thread Tobias Doerffel
I think messing with pointers always should be avoided as often as possible. In this specific case, it IMHO adds no value. Using pointers here increases code complexity and makes things more crash-prone. QColor is a very light-weight class (basically it's just an enumeration and a union of 5 16-bit

Re: [LMMS-devel] Proposal: Fitting UI elements to be used in Qt Designer

2014-04-06 Thread Vesa
On 04/06/2014 11:12 PM, Tobias Doerffel wrote: > 2014-04-05 13:44 GMT+02:00 Vesa : >>> QColor lineColor() const; >>> void setlineColor( const QColor & _c ); >>> ... >>> QColor * m_lineColor; //!< unused yet >>> ... >>> Q_PROPERTY(QColor lineColor READ lineColor WRITE setline

Re: [LMMS-devel] Website download link updates

2014-04-06 Thread Tobias Doerffel
Nothing except releases/files are harder to find but that's probably just a question of putting proper links at our website etc. Toby -- ___ LMMS-devel mailing list LMMS-devel@l

Re: [LMMS-devel] Building LMMS for OSX

2014-04-06 Thread Jonathan Aquilina
Tres ask on macosx channe! On freenode On 6 Apr 2014 22:17, "Tobias Doerffel" wrote: > No, I'm sorry, never seen such errors before. > > Toby > -- ___ LMMS-devel mailing list LM

Re: [LMMS-devel] Website download link updates

2014-04-06 Thread Lukas W.
Again: Before spending money on hosting, could someone tell me: What's wrong with GitHub? 2014-04-05 21:39 GMT+02:00 Jonathan Aquilina : > Exactly if we have a form of income I would before worrying about any > hosting at this point consider setting up a foundation or something, but > what we need

Re: [LMMS-devel] Building LMMS for OSX

2014-04-06 Thread Tobias Doerffel
No, I'm sorry, never seen such errors before. Toby -- ___ LMMS-devel mailing list LMMS-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/lmms-devel

Re: [LMMS-devel] Website download link updates

2014-04-06 Thread Tobias Doerffel
2014-04-05 21:39 GMT+02:00 Jonathan Aquilina : > Exactly if we have a form of income I would before worrying about any > hosting at this point consider setting up a foundation or something, but > what we need to decide is where the foundation is going to be setup. Yeah I'm sorry for not having rep

Re: [LMMS-devel] Proposal: Fitting UI elements to be used in Qt Designer

2014-04-06 Thread Tobias Doerffel
2014-04-05 13:44 GMT+02:00 Vesa : >> QColor lineColor() const; >> void setlineColor( const QColor & _c ); >> ... >> QColor * m_lineColor; //!< unused yet >> ... >> Q_PROPERTY(QColor lineColor READ lineColor WRITE setlineColor) >> >> So this is the same as for outerColor. Is

Re: [LMMS-devel] lmms 1.0.1 bug fix release

2014-04-06 Thread Tobias Doerffel
Hi, So far we got only very few fixes since 1.0: https://github.com/LMMS/lmms/commits/stable-1.0 It's mainly the OS X stuff, coding style improvements/cleanups and other compat stuff. The only thing I'd consider critical are the CAPS fixes (https://github.com/LMMS/lmms/commit/5b29142c284c68d3a7

Re: [LMMS-devel] Sample-exactness ideas

2014-04-06 Thread grejppi
Sounds like what LV2 is doing with its CV ports. This is a good idea. Vesa kirjoitti Sun Apr 06 2014 12:19:47 GMT+0300 (EEST): > Tell me does the following make sense: > > - AutomatableModel contains a pointer to a buffer > - When a controller is connected to a model, it gets passed that buffer >

[LMMS-devel] Sample-exactness ideas

2014-04-06 Thread Vesa
Tell me does the following make sense: - AutomatableModel contains a pointer to a buffer - When a controller is connected to a model, it gets passed that buffer pointer - new buffer is created at connection time (deleted when connection is disconnected) - Every period, the controller writes the co