Wednesday, 2015-11-04

*** olinuxx has quit IRC00:37
*** nikitamog has joined #kxstudio02:27
*** wolftune has quit IRC02:57
*** wolftune has joined #kxstudio03:17
*** Yruama_Lairba has quit IRC03:31
*** ArturShaik has joined #kxstudio03:47
*** lasconic_ has joined #kxstudio04:08
*** wolftune has quit IRC04:08
*** lasconic has quit IRC04:11
*** lasconic_ is now known as lasconic04:13
*** wolftune has joined #kxstudio04:20
*** spectromas has quit IRC04:28
*** wolftune has quit IRC04:44
*** gkm has joined #kxstudio06:16
*** gkm_ has joined #kxstudio06:18
*** gkm has quit IRC06:21
*** gkm_ has quit IRC06:36
*** harryup has joined #kxstudio06:52
*** falktx has joined #kxstudio07:04
*** harryup has quit IRC07:04
*** falktx has quit IRC07:19
*** nikitamog has quit IRC08:02
*** falktx has joined #kxstudio08:14
plasmahey falktx08:32
plasmaguten morgen :)08:33
falktxno german please08:33
plasmacompiling carla-git on arch right now to use it in jack for mixxx vst chain08:33
plasmaok08:33
plasmaok08:33
plasmawell, why is it carla-git 1.9.6.r307.g2062b70-108:33
plasmaisnt there 2.0 beta4?08:33
plasmaor is this another branch then?08:33
falktxI didn't made that package08:34
falktxbut the git version is more recent than beta408:34
falktxI need to do a new beta, but don't have the time right now. next month I'll release everything08:34
plasmabut carla-git 1.9.6.r307.g2062b70-1 doesnt seem recent08:34
plasmaok :)08:35
plasmafalktx: he just seems to use the normal git tree?08:35
plasmasource=("$pkgname"::'git://github.com/falkTX/Carla.git')08:35
plasmaCompiling zynaddsubfx-src.cpp08:36
plasmazynaddsubfx-src.cpp:71:55: schwerwiegender Fehler: zynaddsubfx/Containers/MultiPseudoStack.cpp: Datei oder Verzeichnis nicht gefunden08:36
plasmaKompilierung beendet.08:36
plasmaok fails anyway...08:36
plasma:/08:36
falktxheh, forgot about those08:41
falktxplasma: fixed now08:41
plasmayep looks like08:48
plasmafuck, /home full again08:57
plasma:D08:57
*** olinuxx has joined #kxstudio08:58
*** fpiesik has joined #kxstudio09:15
damo22falktx: what would be involved to make sliders like these in DPF? http://i.imgur.com/kQxWrYE.png09:26
falktxexactly like that?09:30
falktxshould be easy enough with nanovg09:30
damo22falktx: with editable digits09:30
falktxeditable?09:30
damo22like, click on the number and accept keyboard number entry09:31
damo22enter key to finish09:31
falktxa bit more work, but doable09:32
falktxdo, if you want something like that09:32
damo22falktx: reason i ask, i want to create some really sick plugins for ardour built-in09:32
falktxput this in your UI header file09:33
falktx#include "NanoVG.hpp"09:33
falktxthen in your ui class definition, add this:09:33
falktxNanoVG nanovg;09:33
falktxrename the var if you want09:33
falktxwith that you get access to all the nanovg stuff inside your base widget09:35
damo22okay09:35
falktxI use nanovg for text in mverb09:36
falktxthe code is here https://github.com/falkTX/DPF-Plugins/blob/master/plugins/MVerb/DistrhoUIMVerb.cpp#L23109:36
damo22sweet09:37
falktxdamo22: dejavu sans font is included in dpf already, you can re-use it if you want, or add your own font09:37
falktxdamo22: the entire docs for nanovg is here https://distrho.github.io/DPF/classNanoVG.html09:39
damo22great job09:40
falktxwhen you get to it let me know09:42
falktxthe text stuff needs an initial call in the constructor09:42
falktxit will depend on the font you want to use09:43
*** gkm has joined #kxstudio09:45
*** orngjce223 has quit IRC09:57
*** bill-auger has quit IRC09:57
*** bill-auger has joined #kxstudio09:58
*** olinuxx has quit IRC10:38
*** olinuxx has joined #kxstudio10:54
*** fpiesik has quit IRC11:34
*** fpiesik has joined #kxstudio11:35
*** gkm has quit IRC12:15
*** fpiesik has quit IRC13:07
damo22falktx: how do i load the default dejavu-sans font?13:08
*** fpiesik has joined #kxstudio13:09
*** BitPuffin has joined #kxstudio13:14
damo22if (fNanoText.findFont("DejaVuSans") == -1) { printf("no font?\n"); }13:14
*** fpiesik has quit IRC13:14
*** tjingboem has joined #kxstudio13:15
*** Yruama_Lairba has joined #kxstudio13:36
falktxlet me see13:40
falktxdamo22: I'll have to make some small code changes to expose that, just a minute13:51
*** tjingboem has quit IRC14:08
Yruama_Lairbahello14:14
holsteino/14:14
falktxhi14:16
falktxdamo22: done, do a pull14:17
falktxdamo22: so, now you should..14:20
falktx1. add a "NanoVG::FontId" in your ui class variables14:20
falktx2. add "nanovg.loadSharedResources(); fontId = nanovg.findFont(NANOVG_DEJAVU_SANS_TTF);" in the constructor14:21
falktxdamo22: that's it14:21
falktxwith that you can use 'nanovg.fontFaceId(myfontid);' and it will use the internal dejavu sans font14:22
damo22thanks14:22
damo22falktx: just one last error undefined reference to `DGL::NanoVG::loadSharedResources()'14:27
falktxdo a make clean14:27
falktxI tested this with mverb, so it should work14:28
damo22works14:29
damo22i got a number on zamcomp showing the output level :D14:30
falktx:D14:30
*** designbybeck_ has joined #kxstudio14:45
*** designbybeck_ has joined #kxstudio14:49
damo22falktx: what should i call a widget that is like a slider but loads a background image and moves a translucent bar over the top like a meter?14:52
damo22(its draggable and settable)14:52
*** BitPuffin has quit IRC14:54
falktxdamo22: oh don't ask me, I'm terrible at naming things14:54
*** GngrDr3dm4n has joined #kxstudio16:04
*** wolftune has joined #kxstudio16:05
*** falktx` has joined #kxstudio16:53
*** falktx has quit IRC16:53
*** ArturShaik has quit IRC17:04
*** ArturShaik has joined #kxstudio17:17
*** nikitamog has joined #kxstudio17:31
funrephi, carla is supposed to support VST but im unsure how to import OxeFM into it17:33
falktx`copy the *.so file somewhere17:34
falktx`tell carla where to find it (via settings, paths, vst)17:34
falktx`do add-plugin, refresh, scan17:35
funrepups i crashed17:38
funrepso i added the folder to the .so in configuration but it still doesnt find it17:38
funrepand when i browse to it i just get that it cant read it when i click the .so file17:38
*** flexus has joined #kxstudio17:39
falktx`what so file is there17:43
falktx`is that17:43
funrepoxevst32.so17:43
funrepand 6417:43
falktx`if you're using kxstudio that's already in the repos17:44
falktx`and you should use the repo version instead17:44
funrepi have installed it from the repos17:45
funrepbut it doesnt show up17:45
falktx`run carla in a terminal and see if it prints anything suspicious after scanning17:45
falktx`also you might want to report the bug here https://github.com/falkTX/Carla/issues17:45
falktx`later17:45
*** falktx` has quit IRC17:45
funreponly errors about Jack not working (because i use alsa)17:46
funrepit is installed on the system but carla doesnt seem to find it :(18:02
funrepnow it found it18:03
funrepstrange, perhaps it didnt refreshed fully18:03
*** rncbc has joined #kxstudio18:06
*** bill-auger has quit IRC18:11
*** grobda24 has joined #kxstudio18:23
*** tjingboem has joined #kxstudio18:25
*** unicornjedi has joined #kxstudio18:30
*** HarryHaaren has joined #kxstudio18:47
*** ArturShaik has quit IRC18:57
*** rncbc has quit IRC19:03
*** rncbc has joined #kxstudio19:06
*** orngjce223 has joined #kxstudio19:15
*** gkm has joined #kxstudio19:23
*** tjingboem has quit IRC19:36
*** unicornjedi has quit IRC19:40
*** HarryHaaren has quit IRC19:52
*** tjingboem has joined #kxstudio19:54
*** falktx has joined #kxstudio20:00
*** grobda24 has quit IRC20:41
*** gkm has quit IRC21:05
*** gkm has joined #kxstudio21:07
*** tjingboem has quit IRC21:17
*** nikitamog has quit IRC21:47
*** TurBoss has joined #kxstudio22:12
*** TurBoss has left #kxstudio22:28
*** olinuxx has quit IRC22:55
*** designbybeck_ has quit IRC23:01
*** orngjce223 has quit IRC23:05
*** orngjce223 has joined #kxstudio23:06
*** rncbc has quit IRC23:23
*** GngrDr3dm4n has quit IRC23:53
*** flexus has quit IRC23:54

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