Tuesday, 2015-06-30

*** yann-kaelig has quit IRC00:36
*** ColaEuphoria has quit IRC03:05
*** LAbot has joined #lv207:37
*** LAbot has joined #lv207:54
*** ricardocrudo_ has quit IRC09:22
*** falktx has joined #lv209:26
*** ricardocrudo_ has joined #lv209:36
*** NickSB2 has quit IRC13:14
*** rncbc_jolla has joined #lv213:31
*** HarryHaaren has joined #lv213:33
*** edogawa has quit IRC14:08
falktxthere's some issues with fil4.lv2 ui14:28
falktxthe total size of the atoms it sends isn't correct14:29
falktxor maybe it is, and carla is the wrong one14:31
rgareusfalktx: I've updated it recently14:36
rgareusfalktx: I'm just preparing a new release14:36
rgareusit's only relevant if you display the spectrum and use buffer sizes >= 2048 though14:39
falktxthis seems like a different issue14:39
rgareusmh scratch that14:40
rgareusit asked for 33120 (mono)     which is   8192*4  (raw audio) +  352 (state + padding)14:40
rgareusnow it asks for 65888  bytes   ( 16384 * sizeof(float)  + 352)14:41
falktxI think I found a bug in carla too anyway14:43
rgareusgood :) because I don't have an explanation.14:44
rgareusjalv.gtk -g    prints the data fine14:44
rgareusfalktx: how is carla involved there anyway?  it just has to pass the data on as-is.14:45
falktxwell, that's what I'm investigating14:45
falktxthe base64 chunk has a bit more data than it should14:45
falktx7bytes more14:46
rgareusaah so you base64 encode it and send it off to a different machine or process14:46
falktxyes14:46
falktxit's ui bridges14:46
rgareusmaybe base64 padding?14:47
falktxthe returned data, converted to binary, has 7 bytes more than it should14:48
falktxthe base64 encoded size doesn't matter. it will never be the same14:48
rgareusfalktx: will you be around later to check a new release with your fancy validation script?14:48
* rgareus goes to get some ice-cream and then it's release-time.14:48
falktxrgareus: sure14:49
falktxrgareus: is your fil4.lv2 dsp->ui message a string?14:50
falktxoh wow, the data I send in the pipe is different than what I receive14:55
rgareusfalktx: no it's raw audio data (as float array) for the most part15:00
rgareusand a few ints15:00
falktxthe received data has this extra base64 chars: "AAAAAAAAAAA"15:01
falktxwhich afaik it's empty data15:01
falktxhmmm15:01
*** rncbc_jolla has quit IRC15:02
rgareusif unconnected yes, all zeros  like  http://pastebin.com/g3sEqbEz15:02
rgareusa period size of zero's15:02
rgareussisco.lv2 will be the same (or very similar, the URIs are different of course)15:05
falktxI consider this a serious bug...15:05
falktxsomething is wrong in carla15:05
falktxperhaps the base64 code15:05
rgareusNULL termination bug?15:06
falktxnah, I added a test in there. a local conversion works. it's the data being sent15:06
rgareusstring vs raw binary maybe15:06
rgareusendianess?15:06
falktxrgareus: the issue is that the base64 string I send through the pipe doesn't match the one I receive15:06
rgareusok. so it's the pipe really15:07
falktxsomething in the pipe code yes15:07
falktxwhen handling big data15:08
rgareussocket() ?15:08
falktxpipe+write15:08
rgareushttps://github.com/falkTX/Carla/blob/master/source/bridges-ui/CarlaBridgeUI.cpp ?15:09
rgareusoh unix pipes.. those have a limited size15:09
falktxhttps://github.com/falkTX/Carla/blob/master/source/utils/CarlaPipeUtils.cpp15:09
rgareusfalktx: is the base64 data line separated?15:14
falktxyes15:14
falktx\n get converted into \r15:14
falktxand when received \r is converted to \n, and \n handled as end15:15
rgareusso less than 253 chars per line  ( + \r + NULL)15:15
rgareusso that CarlaPipeCommon::_readline()   gets it15:15
falktxhmmf. that "pData->tmpStr += pData->tmpBuf;" seems wrong15:17
falktxoh, nah, that's rght15:17
falktxtmpStr and tmpBuf. similar names, different purposes15:18
rgareusyes I was just going to say the same15:18
falktxline 1081 seems wrong though15:18
rgareus1041 and 105215:18
rgareusonly works if the data is really a string15:19
falktxit is a string15:19
falktxconst char*15:19
rgareus1081https://github.com/falkTX/Carla/blob/master/source/utils/CarlaPipeUtils.cpp#L1081  ?15:19
falktxheh, already changed the code15:20
falktx1049 https://github.com/falkTX/Carla/blob/master/source/utils/CarlaPipeUtils.cpp#L104915:20
falktxthat's the line that I think is wrong15:20
falktxthe old data is not cleared15:20
falktxso it's appending the data that was still in the last buffer15:20
rgareusfalktx: what is the idea behind this  0 .. 0xfe loop?   why not simply directly append every byte to pData->tmpStr ?15:25
falktxthat would reallocate too much15:26
falktxthis prevents the constant realloc for every byte, does it for every 0xff bytes intead15:26
rgareushow bout simply double the allocation size every time?  instead of realloc  byte by byte?15:27
*** gianMOD has joined #lv215:30
*** ventosus has joined #lv215:36
*** edogawa has joined #lv216:06
falktxI think I see it16:08
falktxthere's 1 byte added everytime it cycles through the 0xff stack16:09
*** edogawa has quit IRC16:09
*** gianMOD has quit IRC16:10
*** sigma6 has quit IRC16:10
falktxrgareus: woot, found the issue!16:15
falktxrgareus: thanks for making plugins I can finally stress-test my code with :D16:15
rgareusfalktx: you're welcome... and likewise  thanks for making these plugins work with carla..17:02
rgareusfalktx: http://gareus.org/misc/x42-plugins/x42-plugins-20150630.tar.xz   still hot.17:04
falktxhot hot hot17:04
rgareusi just started testing17:04
rgareusnow with jack-apps + OSC support (so you need liblo)17:05
rgareusLV2 integer / enum  + float issues  should be fixed  and LV2 versions everywhere,  I hope17:06
rgareusbut if you[r script] find some issues. I'll fix and re-roll.17:08
*** ricardocrudo_ has quit IRC17:09
*** rncbc has joined #lv217:11
falktxlet's try it then17:12
falktxbrb17:13
*** NickSB2 has joined #lv217:33
falktxrgareus: it fails to build17:57
falktx./gui/sisco.c:41:17: error: ‘LV2S’ is not a namespace-name17:57
falktx using namespace LV2S;17:57
falktx./gui/sisco.c:2128:32: error: invalid conversion from ‘const float*’ to ‘float*’ [-fpermissive]17:57
falktx     ui->src[channel]->inp_data = data17:57
rgareusfalktx: what compiler is that?17:58
falktxrgareus: using gcc-4.917:58
falktxI have 5.0, 4.8 and others if you want me to try17:58
rgareusit builds with 4.7.2  and clang17:58
rgareusfalktx: there's a   g++  gui/sisco.c     and that ".c" file includes some c++.  weird thing. the compiler should not bother about the file extension17:59
falktxthe compiler will bother18:00
rgareus-x c++18:00
falktxI had that error before with some cpp vs mm file for obj-c18:00
falktxdebian testing has gcc-4.7 but no g++-4.7 :(18:00
rgareusg++ (Debian 4.7.2-5) 4.7.218:01
rgareushang on a sec, I'll try another machine18:01
rgareusthat has not changed since the last release, so I wonder why it fails now18:01
falktxtrying gcc4.8..18:02
falktx../robtk/jackwrap.c:1516:115: warning: ignoring return value of ‘int system(const char*)’, declared with attribute warn_unused_result [-Wunused-result]18:02
falktxrgareus: exactly the same issues with gcc-4.818:02
rgareusg++-4.9_4.9.2-19  works for debian18:06
rgareushttps://buildd.debian.org/status/fetch.php?pkg=x42-plugins&arch=arm64&ver=20150530-1&stamp=143311290818:06
rgareusthat's the last release, but this stuff has not changed18:06
rgareusoops arm18:06
rgareushttps://buildd.debian.org/status/fetch.php?pkg=x42-plugins&arch=i386&ver=20150530-1&stamp=143311301718:07
* rgareus tries 64bit debian/testing gcc 4.9.218:08
rgareusI'm wary of 4.9  here are a couple of bugs18:08
rgareusit reports false positive -Warray-bounds18:08
falktxrgareus: I don't think that's the same. your code has issues18:09
rgareusfalktx: compiles just fine18:09
falktxwith 4.8?18:09
*** artfwo has quit IRC18:10
rgareusfalktx: I tried 4.9.2 and 4.7.218:10
rgareusfalktx: no 4.8 here18:10
falktxrgareus: with resampling on?18:11
rgareusand except for the  -Warray-bounds   not a single warning18:11
falktxoh I see18:11
falktxyou include zita-resampler in your own code18:11
falktxit conflicts with the system installed one18:12
rgareusnope. it's in a dedicated namespace18:12
rgareusand included with single quotes18:12
falktxI mean, the includes conflict18:12
falktxit's using the system one18:13
falktxrgareus: I pass -I/opt/kxstudio/include to CFLAGS since zita has no pkg-config file18:13
rgareusfalktx: do you patch it to use <zita-resampler/resampler.h>  instead of  "./zita-resampler/resampler.h" ?18:13
rgareusthe code is not identical either18:13
falktxno18:13
falktxbut -I/opt is the same as your -I.18:14
rgareusmmh18:14
rgareusthat would explain it18:14
falktxI need the zita-resampler installed for convo18:14
rgareusthe code in sisco and meters.lv2 is changed to not do any high-freq smoothing,  same as with goniometer.18:15
rgareusfons didn't want to merge this18:15
falktxmaybe "-isystem /opt/kxstudio/include" will do18:15
falktxrgareus: debian will not like this...18:15
rgareusfalktx: debian is fine with it.18:15
falktxyou sure? they always complain about library code duplication18:16
rgareusthey complained about the big /generated/ textures :)18:16
rgareusyes, I discussed this at length with the ftp-masters18:16
falktxalright, this works18:17
rgareusI made a good case for this case18:17
falktx-isystem vs -I is what I needed18:17
rgareusnice18:17
rgareusfalktx: I was going to suggest to just change the include order18:17
falktxI can't18:17
rgareusodd that it wasn't a prblem in the past18:17
falktxI pass that in the cflags18:17
falktxyou're the one that has to fix this18:18
rgareusyeah,18:18
falktxadd the -I. after cflags18:18
*** artfwo has joined #lv218:18
rgareusI just need to find where :)18:18
falktxrgareus: http://kxstudio.sourceforge.net/paste/P1M4S18:18
rgareushas no short name ?18:19
falktxyes18:19
falktxit's a new thing :)18:19
falktxI'm using doap:shortname for now, but I don't think it's valid18:20
falktxI'll discuss a possible lv2:shortname when drobilla gets online18:20
rgareusgiven our recent discussions.  float port are a Major Project -    so doap is fine :)18:20
falktxso dope! :)18:21
falktxbut nah, sord_validate doesn't like it18:21
rgareus   "port 'In' has no short name"18:21
falktxlv2:name exists for a reason18:21
rgareuscan it be sorter?18:21
rgareusshorter, even18:21
falktxno18:21
falktxshort name might be the same as the full name18:22
falktxsaying shorter implies that is, yeah, shorter18:22
falktxwhich is not always true18:22
rgareusbut anyway as soon as there's lv2:shortname    it's a good thing to have18:22
rgareusmaybe the warning can only appear if there's no lv2:shortname  and lv2:name is > 8 chars18:22
* rgareus fixes the errors18:22
rgareusfalktx: b_overdrive, b_reverb, b_synth b_whirl  are from setBfree18:23
rgareusthey're not part of the x42-plugins18:23
falktxoh ok18:23
falktxI just ran ctrl+r that had sisco18:24
rgareusso there's no errors. YAY18:24
rgareusresonance value is an integer18:24
falktx"plugin description is missing"18:25
rgareusthat's a warning.18:25
rgareusI'll fix those.18:26
rgareusfalktx: the other plugins...  are not listed. is that expected?18:26
rgareussurely they should have   "has no short name"  warnings18:27
falktxah yes, little script error18:27
rgareuslv2ls | grep gareus | grep -v "\/b_"18:28
rgareusare all x42-plugins18:28
falktxlet me remove the short name warnings to make it clearer18:29
falktxstill quite to do I see...18:33
rgareuslv2:description  is also wrong for a plugin isn't it?18:33
*** gianMOD has joined #lv218:33
rgareusrdfs:comment is for plugin doc18:33
falktxthere'218:33
falktxdescription for a small text18:33
falktxcomment for the full stuff18:33
falktxrgareus: http://kxstudio.sourceforge.net/Paste/repo/26WrI18:33
rgareusI thought it's for markuped documentation of LV2 itself18:34
*** ricardocrudo has joined #lv218:35
falktxthen we need something else18:39
rgareusfalktx: thanks.  lots of warnings to sort out, still.. I'm on it18:39
falktxthe purpose is to get a "subtitle" for the plugin18:39
falktxssj71 was the one to suggest lv2:description18:39
falktxbut there is no such thing as lv2:description in http://lv2plug.in/ns/lv2core/#description18:39
rgareusaah I mixed it up with LV2_CORE__documentation18:41
falktxssj71: where did you get the idea of lv2:description from?18:43
falktxit's not in the headers either18:43
falktxsomehow I though it existed, and that it made perfect sense...18:43
rgareusfalktx: where is that CFLAGS change needed   in convo.lv2   or in sisco & meters?18:52
falktxsisco18:52
rgareusCXXFLAGS probably18:52
falktxyes18:52
*** yann-kaelig has joined #lv218:52
rgareusfalktx: so I change      $(CFLAGS) -I.     to     -I. $(CFLAGS)18:52
falktxthe other way around18:53
falktx" -I. $(CFLAGS)" to  "$(CFLAGS) -I."18:53
falktxI think18:53
falktxtbh I don't really know what takes preference18:53
falktxthe first or the latest...18:53
falktxbut I believe is the latest18:54
rgareusit's currently $(CFLAGS) -I.18:54
falktxon sisco?18:54
rgareusand first listed should be first18:54
falktxit should be CXXFLAGS18:54
rgareushttps://github.com/x42/sisco.lv2/blob/master/Makefile#L3018:54
rgareusfalktx: yeah that's a small problem. I never intended there to be any C++ code.  and the robtk and the Makefiles are not made for it..   until I came accros zita-resampler18:55
*** ventosus has left #lv218:57
*** gianMOD has quit IRC19:31
*** ColaEuphoria has joined #lv219:49
rgareusfalktx: let's continue over here..19:52
falktxok19:52
rgareusfalktx: odd. I have no idea about the -I issue19:52
rgareusfalktx: can you pastebin the make output?19:52
rgareusif there's -I. first now.19:53
falktxignore that. you can worry about it later19:53
falktxalmost no warnings now!19:54
falktxrgareus: http://kxstudio.sourceforge.net/Paste/repo/WrX4X19:54
rgareusaah I missed the dr14stereo . only updated the mono.19:58
rgareusthere were too many warnings in the last report..19:58
rgareusthose will be easy now.19:58
*** gianMOD has joined #lv220:05
ssj71falktx: lv2:description came from pure ignorance. :) I also thought about lv2: tooltip20:10
ssj71rgareus: I have a c wrapper for zita resampler if you want20:11
ssj71;https://github.com/ssj71/infamousPlugins/blob/7a7fc97887096de5f63f0d1fce86eb9d6a310dbb/src/LushLife/c_resampler.cpp20:13
rgareusfalktx: again same URL:  http://gareus.org/misc/x42-plugins/x42-plugins-20150630.tar.xz (sha1 23a89fbf9b752b0bc7c67fa78e38fe3fe62f5fe8)20:13
rgareusfalktx: if all goes well there should be no more errors & warnings.20:13
rgareusfalktx: wait. I made a mistake (packaging this)20:14
falktxexcept the shortnames...20:14
falktxmy time for ice cream!20:15
rgareusI scream, you scream, we all scream for ice cream.20:19
falktxnot here. public place20:20
rgareusok last but not least. before 0701.    81b9d5f9d78a8a0a661c7ec1e65c38e2e262eea5  x42-plugins-20150630.tar.xz20:23
falktx../robtk/jackwrap.c:1516:115: warning: ignoring return value of ‘int system(const char*)’, declared with attribute warn_unused_result [-Wunused-result]20:25
falktx...UI_gl.so were not linked against libglib-2.0.so.0 (they use none of the library's symbols)20:26
falktxwarning: package could avoid a useless dependency if debian/x42-plugins/usr/lib/lv2/convo.lv2/convoLV2.so was not linked against librt.so.1 (it uses none of the library's symbols)20:26
falktxoh that's me, ignore the last one :)20:26
rgareusas-needed20:27
rgareusI suppose you can add that to LDFLAGS20:27
rgareusIDK if it's good pratice to add -Wl,--as-needed  unconditionally. I suppose I could check if the compiler/linker supports it20:28
falktxoh so pretty!20:29
falktxrgareus: http://kxstudio.sourceforge.net/Paste/repo/UiGZC :D20:29
rgareuswooooho.20:29
rgareusnow the same for setBfree (I'm almost through there)20:29
rgareusbut tomorrow20:30
falktxtime for release?20:30
rgareusbalance.lv2  & convo.lv2 are not listed20:31
rgareusnor is onsettrigger.lv2 and xfade.lv220:31
falktxI need bundle names20:32
rgareusnot URIs?20:33
falktxnope20:33
rgareusmake install DESTDIR=/tmp/xxxxxx42/20:33
falktxthere's too much uris20:33
falktxrgareus: http://kxstudio.sourceforge.net/Paste/repo/2KQs820:33
rgareusawwww20:33
rgareusmmh so that   (void) system (...)      trick no longer works to fool the compiler20:36
rgareusinteresting20:36
falktxyou found that too20:36
falktxnow I use a temp var20:37
falktxint ignore = stuff();20:37
rgareusthen you get a warning   unused variable20:37
falktx(void)ignore;20:37
rgareusaah20:37
rgareuswell, dunno if that's really worth it20:37
rgareusafter all  the compiler has a point. either way.20:37
rgareusall right,   now convo.lv2 and xfade.lv2 also have a description21:09
rgareusagain same url  this time sha1sum   b0ea9605a0bb492208860a9da774f144167e59b621:10
falktxrgareus: http://kxstudio.sourceforge.net/Paste/repo/Qd2Ig21:18
falktx\o/21:18
falktxrgareus: anything else? looks good enough for release now :P21:19
rgareusfalktx: looks good to me now21:20
rgareusonsettrigger.lv2 is missing21:20
rgareusbut that's a half baked one anyway21:20
rgareusmixtri.lv2  as well21:21
falktxhmm21:21
rgareusand nodelay.lv221:21
rgareusnow that I think of it onsettrigger.lv2  is halfway towards HarryHaaren's question earlier21:22
falktxrgareus: http://kxstudio.sourceforge.net/Paste/repo/psqCn21:22
falktxwhat we say to new releases? not today21:22
rgareusfalktx: next time21:22
rgareusfalktx: they're not really big issues anyway.21:22
falktxso... to relase or not to release? that's the quesion21:23
rgareusrelease21:23
rgareusit's just before midnight  last chance to keep 2015063021:23
falktxyou have 37 minutes21:24
falktx3621:24
HarryHaarenrgareus, re onsettrigger.lv2, thanks for the mention. The need for it seems to have blown over.. but I'll still build it into Buska21:24
rgareusmmh actually my server is UTC.  2h left21:24
rgareusHarryHaaren: it's a quick/dirty hack.21:24
rgareussuperdirty  for superdirt^221:24
falktxbut GMT is +1 now afaik21:25
rgareusHarryHaaren: it's not using aubio21:25
HarryHaarenah nice - then I'll defo look into it21:25
rgareusmy IRC client (running on said server) says 21:2521:25
falktxHarryHaaren: shall I try the crazy validator on your plugins? :P21:25
falktxHarryHaaren: http://kxstudio.sourceforge.net/Paste/repo/hNzsX21:27
falktxI skipped fabla221:27
HarryHaarenwhat is the "crazy validator"?21:28
HarryHaarenhm, if that's all then I'm positively surprised :)21:29
falktxit was just artyfx and sorcer21:29
* HarryHaaren nods21:30
falktxHarryHaaren: license, comment and version are requirements for mod. so you'll need them21:30
HarryHaarenwell i may as well fix the rest too right ;)21:30
falktxsure21:31
HarryHaarenfalk: is there an easy way to script / test this stuff? sord_validate is one of the command lines i've not hacked into CMake yet..21:31
falktxHarryHaaren: do you have the latest lilv svn? with my sord patch?21:31
falktxyou'll need that first21:31
HarryHaarennope21:31
* HarryHaaren is on debian stable - so lots of old stuff here :)21:31
falktxyou can use the kxstudio repos21:32
falktxeverything already working as-is21:32
falktxHarryHaaren: the "new" mod-sdk now copies all the data files when generating a modgui21:32
falktxso you can create now and edit as you wish21:32
HarryHaarenyep, i'm working on a new ArtyFX release.. 3 UI's finished today21:34
HarryHaarena few more to go, and some more AVTK stuff etc21:34
rgareusHarryHaaren: falktx is now the LV2 high inquistor.21:38
rgareus.. to go along with the malevolent LV2 dictator.21:38
falktxI think we needed one21:39
falktxlots of mistakes in the lv2 world need correction21:39
rgareusyes21:39
rgareustook me half a day to fix most  and still a few warnings left21:40
* HarryHaaren will have a look at those TTL errors once I have a decent playlist of music on21:41
falktxrgareus: but now you can brag about this21:41
falktxyou defeated the malevolent dictator and high inquistor21:41
falktxquite a feat21:41
*** ricardocrudo_ has joined #lv221:41
rgareuslong live the LV2 revolution!21:42
rgareusuhm rebellion21:42
* rgareus preparse for Episode 5: lv2:description strikes back21:43
falktxfirst there's Episode 4: All your shortnames are belong to us21:44
falktxbut I want to discuss it with drobilla first21:44
falktxfirst21:44
HarryHaarenlol21:44
falktxwith all these changes I end up not playing any portal2 today21:45
*** ricardocrudo has quit IRC21:46
falktxrgareus: will you still do a new tarball? I can wait a few more minutes before going home :)21:49
rgareusfalktx: ok. give me 3 mins.21:52
rgareusonsettrigger ttl fixed21:53
rgareustagging21:53
rgareusfalktx: done21:55
rgareussha1 793818b54f42490d6d2a3696b7d6e3df2445f7f221:55
HarryHaarenfalktx, do you have an example for "version"?21:56
* HarryHaaren checked meters.lv2, but its @VERSION@ -ed21:56
* HarryHaaren doesn't wanna grok a load of Waf just to get an example of a rdf : version; string21:57
rgareuslv2:microVersion 15 ;lv2:minorVersion 1545 ;21:57
rgareusHarryHaaren: note. that there is a strict  even/odd  convention for both21:57
HarryHaaren@falk, is this version stuff documented somewhere? I'm not gonna be the only confused dev out there :)21:58
rgareushttp://lv2plug.in/ns/lv2core/#minorVersion21:58
rgareusand http://lv2plug.in/ns/lv2core/#microVersion21:58
rgareusa more realistic example is      lv2:microVersion 0 ;   lv2:minorVersion 2 ;22:00
rgareusFWIW, those are top-level tags.   like  doap:name22:03
HarryHaarenok, so a released plugins starts with lv2:minorVersion 2; lv2:microVersion 0;22:04
HarryHaarenand bumps micro on bugfixes, minor bumps on port-additions (with connectionOptional etc)22:05
rgareusat the very least22:06
falktxmicro needs pair-stable rule too?22:06
falktxnot just the minor?22:06
rgareusthere's nothing in the doc that says one can't bump the version ad lib.22:06
rgareusyes both minor and micro need to be even  for stable22:07
*** gianMOD has quit IRC22:07
rgareussomewhat over-designed22:07
HarryHaarenso microVersion should start at 2 aswell?? that seems crazy..22:08
HarryHaarenis 0 an even number? :/22:08
HarryHaarenits not odd.. but it also can't be divided by 222:08
rgareusthe schema I adoped:  if it's a git-tagged version   lv2:microVersion 0;     if not   take the number of commits since tag  * 2 + 1 -> odd number22:08
HarryHaarenmicro 0; here so22:09
HarryHaarenon release anyway22:09
rgareusthat even/odd numbering schema is a bit outdated in these days22:10
HarryHaarenwhat keeps you busy atm rgar? anything exciting?22:15
rgareusno22:20
rgareushow about youreself?22:20
rgareuswell, fixing ardour bugs, and undermining the LV2 empire keeps me busy.  some linuxaudio.org server maintenance.. usual stuff. hardly exciting.22:22
rgareusit's too hot for serious work22:22
HarryHaarenapart from fixing TTL? Im going to an open-mic night tomorrow, deciding on bringing the MOD or not..22:24
HarryHaarenand I been toying around with my install here to optimize keyboard shortcuts. Still not 100% percent happy, but getting there22:24
HarryHaarenfixing up the AVTK uis for ArtyFX is taking the rest of my time atm22:24
HarryHaarenttl stuff fixed. Gonna relax for the evening. Night guys!22:35
*** HarryHaaren has quit IRC22:35
falktxrgareus: your 3 minutes are up22:44
rgareusfalktx: uhm I posted it about 1h ago :)22:45
falktxerr22:45
rgareus50 mins to be exact22:45
falktxrgareus: you forgot to ping me22:45
rgareus21:55 < rgareus> falktx: done22:45
rgareus21:55 < rgareus> sha1 793818b54f42490d6d2a3696b7d6e3df2445f7f222:45
falktxdamn it, I need sleep22:45
rgareusn/m22:46
falktxI'll do that before going home though22:46
falktxI got busy fixing the modgui-embed to work again22:46
rgareusI need to write an annoucement email, too22:46
rgareusmeters.lv2 has some major performance improvement (particularly EBUr128 and the gonometer)22:46
rgareusproper partial exposure22:47
falktxoh, almost there22:50
falktxrgareus: http://kxstudio.sourceforge.net/Paste/repo/yMH2N22:50
rgareusoh dear22:51
* rgareus needs to sleep too22:51
rgareusat least no more errors22:51
falktxwell, that does it for me today22:59
falktxgnight22:59
*** falktx has quit IRC23:00
*** ssj71 has quit IRC23:07
*** rncbc has quit IRC23:51
*** ricardocrudo__ has joined #lv223:54
*** ricardocrudo_ has quit IRC23:57

Generated by irclog2html.py 2.13.0 by Marius Gedminas - find it at mg.pov.lt!