It's beta 2 time! This time is also available a binary package for Ubuntu users.
Main changes: * config option 'jack transport buffer offset' for ardour bug * fix broken lead / lag * several fixes into soundlibrary import * download class now supports http redirect correctly * config option 'adjust beatcounter offset' to get exact results with different hardware * new statusbar message to display longer messages than 30 chars
Does anybody had a success even compiling windows version with scons? I had a fully working system with qmake, but now scons gives errors for missing zlib.h (even filemon shows that scons/cl.exe finds it)
I think those are better readable then "&&". And you make less errors then using "&&", because you don't have to mess around with forgetting an "&" and mistakingly typing "&" instead of "&&". Why are you asking? Are there any problems with that on windows?
Yes, compile errors :-). This is actually the first time in ~15 years of C/C++ coding I see use of and and or instead of && and ||.. And the readability of them... IMO coders can see && or || more easily than and and or... (This is funny to write and and or or all the time :-)
i suppose this happenend because i've a strong python-background ( and using "and" in python is pretty normal)..
Look here for more infos:
http://en.wikipedia.org/wiki/Operators_in_C_and_C%2B%2B ( last paragraph ). But it's no problem to replace them with "&&" and "||" if the MS compilers don't like the synonyms..