/srv/irclogs.ubuntu.com/2012/03/08/#kubuntu-devel.txt

danttilol00:00
apacheloggerdantti: where was const missing?00:00
danttiapachelogger: all around but the code still not work...00:01
apacheloggerOo00:01
danttithe array has the values but as QBAlist vanishes I think the copy vanishes too then..00:01
apachelogger            request = ippNewDefaultRequest(values.take("printer-name").toString(), isClass, operation);00:01
apacheloggerthat line is still missing a toUtf8 :P00:01
danttiapachelogger: it's not, ippNew... is not from cups00:03
apacheloggerI do not understand :P00:03
apacheloggercan you please put a toUtf8 there :P00:03
apacheloggeralso please commit and push and tell me what to do to test00:04
danttiapachelogger: ok now it works00:04
apacheloggerlol00:04
apachelogger:P00:04
apacheloggerdon't forget my copyright :P00:04
danttithe copy flag must be for something else, the qba list is more "global" now, so it several qstringlist goes there oh00:05
danttino it will be fine the list is just for not deleting the items....00:05
apacheloggerwhat list?00:05
apacheloggerthe qbalist?00:06
apacheloggerplease commit and push :P00:06
apacheloggerand need to look at this00:06
danttihttp://privatepaste.com/e955dd497a00:06
apacheloggerohhhhhhhh00:06
apacheloggerdantti: maybe the copy only happens at cupsDoRequest?00:07
danttiapachelogger: maybe...00:07
danttiapachelogger: what's your copyright line?00:07
apacheloggerHarald Sitter <sitter@kde.org>00:07
apacheloggerthe QBA should be fine eitherway, it will go out of scope after the request (while scoped)00:08
apacheloggerdantti: mind that you will still need to delete the char **00:08
danttiapachelogger: oh00:08
apacheloggeror commit and push and let me do it ;)00:08
* apachelogger fancies doing that :)00:08
danttiapachelogger: please pull00:09
apacheloggerdantti: mind if I remove the commented code?00:11
danttiapachelogger: no, 00:11
danttiwe just need valgrind to tell us it does not leak :P00:11
apachelogger_dantti: how can I test it still works?00:17
=== apachelogger_ is now known as apachelogger
danttiapachelogger: make install then plasmaengineexplorer --engine printmanager00:18
danttiask for AllJobs00:18
danttiif you have any00:18
apacheloggerwhy?     qbaList->reserve(qbaList->size() + list.size());00:19
apacheloggerdantti: http://wstaw.org/m/2012/03/08/plasma-desktopeu2263.png00:20
danttiapachelogger: because we are on a loop, so the next qstringlist  might need more space00:20
apacheloggeryeah00:21
apacheloggerI moved the QBA elsewhere :P00:21
apacheloggerinto the loop00:21
apacheloggerturns out dorequest seems to do the copy00:21
apacheloggerso we are fine00:21
danttiapachelogger: right, do you agree with me about the reserve part?00:21
danttiapachelogger: you have all data on that screenshot :)00:22
apacheloggeroh00:22
apacheloggeractually you are right00:22
apacheloggeryou have too many loops there :O00:22
apacheloggerthis is flawd then00:24
apacheloggerdantti: we'd also need to grow the char** accordingly00:24
danttiapachelogger: no, you only pass one char **00:24
apacheloggerbut inside         while (i != values.constEnd()) {00:25
apacheloggerI have no idea what values can contain00:25
apacheloggerbut if case QStringList can be true more than once we have a problem00:25
danttilike I have a QStringList of the attributes I was and a QStringList of something else, I'll ippAddStrings() two times with different char** list00:25
apacheloggeryes, but they do not get copied until doRequest00:26
apacheloggerso if you want to do it that you always pass different char** we'd still have to put them in a list00:26
apacheloggerand then delete all char ** inside the list00:27
apacheloggerotherwise we leak00:27
danttiapachelogger: hmm00:27
danttiright we need a list of char ** too :/00:27
apacheloggerhttp://paste.kde.org/435104/00:27
apacheloggerdantti: we should just make that a vector though00:27
danttiapachelogger: what if instead of new char * we just do char[list.size() +1]?00:29
danttiapachelogger: that way it get's deleted when out of scope no?00:30
danttithat could work still 00:30
apacheloggerwhere would you put that?00:30
apacheloggerthe only way this would work is if it were the same scope as qbalist00:30
apacheloggerat which point we still have one char** and thus cannot process multiple qstringlists00:31
danttiapachelogger: I'd put inside qstringtoChar**()00:32
danttior even pass it to your function...00:32
apacheloggeryes but then it has too little scope00:33
apacheloggerconsidering cups only copies the strings at doRequest it is likely that it only iterates the pointer at this point00:33
apacheloggerby that time we'd have no pointer anymore though00:33
apacheloggerso I fear storing them is the only solution00:33
danttiapachelogger: it copies the strings not the char**00:35
apacheloggeryes but to access the strings it needs the char **00:35
danttiapachelogger: it goes one by one (actually I don't even think we need the +1 and \0...00:35
apachelogger(the strings are at arbitrary locations in the memory00:35
apachelogger)00:35
danttiapachelogger: that's what the QBAlist is for00:35
apacheloggeryes but cups cannot access it00:36
apacheloggercups only has the char ** address00:36
apacheloggerso it tries values[0] values[1] values[2] ....00:36
danttiapachelogger: cups do att[1].text = values[i];00:36
danttiin a loop00:36
apacheloggerthat is what I am saying00:36
danttiso we can delete values**00:36
apacheloggervalues is not valid memory anymore!00:36
danttinot the values00:36
apacheloggervalues ** is values for cups!00:37
danttijust the array00:37
danttino it has copied the values on the list00:37
apacheloggerbut only at doRequest00:37
danttinot a deep copy00:37
danttijust a reference00:37
apacheloggerman this cups is crap00:37
danttiyup00:37
danttiprintd++00:37
danttiapachelogger: try that or push so I can give it a try00:38
apacheloggerso00:39
apacheloggerdoing00:39
apacheloggerfor (int i = 0; i < list.size(); ++i) {00:39
apachelogger                        values[i] = 0;00:39
apachelogger                    }00:39
apachelogger                    delete values;00:39
apacheloggerright after the addStrings should work?00:39
danttiapachelogger: http://privatepaste.com/bd04fa9ced00:40
danttiapachelogger: yes00:40
danttiapachelogger: shouldn't it be delete [] values;00:40
* dantti is a bit lost on the pointers :P00:41
apacheloggertoo late to answer that question00:41
apacheloggerwouldn't delete [] delete the content?00:41
apacheloggeri.e. our QBA data00:41
* apachelogger would totally use malloc :P00:41
apacheloggerdantti: perhaps you are right00:42
danttiapachelogger: dunno :P00:42
apacheloggervalgrind will know ;)00:42
danttiapachelogger: it's funny that _cupsStrAlloc() is called when we do ippAddStrings()00:43
danttiapachelogger: hmm it seems that the IPP_TAG_COPY actually does not copy00:45
danttinot having that would copy....00:45
danttithe COPY would then mean we are passing a copy....00:46
apacheloggerOo00:46
apacheloggerwth?00:46
apacheloggeris there documentation for cups?00:46
danttiapachelogger: look at line 543 from my last paste00:47
danttiapachelogger: there is..00:47
apacheloggerfunny documentation ^^00:48
danttihttp://www.cups.org/documentation.php/api-httpipp.html#ippAddStrings    and http://www.cups.org/documentation.php/api-httpipp.html#ipp_tag_e00:48
apachelogger      if ((int)type & IPP_TAG_COPY)00:48
apachelogger        value->string.text = (char *)values[i];00:48
danttiapachelogger: that's the source code :P00:48
apacheloggerthat looks like an immediate deep copy to me?00:49
apacheloggereh00:49
apachelogger1st level deep copy ^^00:49
apacheloggerso we can throw the values away00:49
apacheloggerthat is a good thing00:49
danttiwouldn't that be faster?00:49
danttitho using the qbaList might do the opposite...00:50
apacheloggerhm?00:51
apacheloggeropposite?00:51
apacheloggerit's just fine00:51
apacheloggerinside the do-while we create a QBAList00:51
apacheloggerinside we stuff all our QBAs00:51
danttiapachelogger: don't you think it's better to have cups allocating that? so we don't have to worry about QBAList growing... & friends00:51
apacheloggertemporarily we have a char ** to carry data from the QBAs to ippaddstrings00:51
apacheloggerthat function 1st level copies the string addresses00:52
apacheloggerdantti: oh00:52
apacheloggerohhhh00:52
apacheloggerI didn't read beyond that line ^^00:52
apacheloggerlol00:52
danttilol00:52
apacheloggerdantti: yeah, so dropping the COPY flag should make deep copies00:53
danttiapachelogger: yup :)00:53
apacheloggerlemme fiddle the code accordingly00:53
danttiapachelogger: dunno why gnomies did that :P00:53
danttiapachelogger: I guess we will still need the qdbaList or we qstrdup then delete them...00:54
apacheloggerqstrdup is no option00:54
apacheloggerwe need the qbalist00:54
danttilol00:54
apacheloggerbut with smaller scope00:54
apacheloggerqstrdup would mandate 2 string copies00:55
danttiright00:55
apacheloggeronce from qstring -> QBA and a second time from QBA -> qstrdup00:55
apacheloggerwhich is why we introduced that list to begin with ;)00:55
apacheloggerit still works for me00:56
dantticool00:56
apacheloggerdantti: it is delete [] btw00:56
apacheloggersince we new an array we need to delete one00:57
apacheloggerobviously ;)00:57
dantti:)00:57
danttiI have a bunch of QLatin1Strings() change to push too :P00:58
danttiapachelogger: it would be awesome if cups emited a DBus signal when new jobs arive... 00:59
apacheloggeroh yes, you should use way more QLatin1String :)00:59
danttiat the time of the writting I didn't know about them....01:00
apacheloggerdantti: you can't always get what you want :)01:00
apacheloggerdantti: well, while you are at introducing QL1S, also do QStringBuilder :)01:00
danttiunfourtunatly01:00
apacheloggerway too few people use that bugger01:00
apacheloggerdantti: push'd btw01:00
danttibugger?01:00
dantticool01:00
apacheloggerthe QStringBuilder01:01
* apachelogger makes breakfast now01:01
apacheloggereggs in the basket muhahaha01:01
danttiI don't see that class in the assistent01:01
danttibreakfast?01:01
danttiI though you were on the US?01:02
apacheloggermore like EU01:03
apachelogger2:03 here01:03
apacheloggerperfect breakfast time ^^01:03
apacheloggerdantti: http://qt-project.org/doc/qt-4.8/qstring.html#more-efficient-string-construction01:04
apacheloggeralso http://labs.qt.nokia.com/2011/06/13/string-concatenation-with-qstringbuilder/01:04
danttilol.... 10pm here...01:04
danttidinner time 01:04
danttiapachelogger: the % huh? I tried but that doesn't compile...01:05
apacheloggerincluded qstringbuilder?01:11
danttiapachelogger: :P no01:14
danttiapachelogger: thanks, valgrind is happy now :D01:26
apacheloggerwohoo01:26
danttiapachelogger: btw pushed a few  qstringBuilder changes01:27
* apachelogger asks the kind launchpad to import the repo so he can kickoff a new snapshot01:28
* dantti kquits-plasma desktop to have it not leaking01:29
danttinow I can start writting the colord kcm01:29
apacheloggerfirst release that stuff :P01:31
danttilol /me and my never released stuff :P01:32
apacheloggerhttps://code.launchpad.net/~kubuntu-packagers/+recipe/print-manager-snapshot01:32
apacheloggeroh, so you need forcing, great :P01:32
danttidebconf-kde needs a new release, Apper needs to leave playground, p-m too, colord needs to .... well start working :P01:33
apacheloggeroh01:35
apacheloggerdantti:     qbaList->reserve(qbaList->size() + list.size());01:35
apacheloggeryou might want to drop that first part01:35
danttisure, we don't need that now :D01:35
* apachelogger heads to bed01:35
apacheloggernini01:35
danttio weird01:36
micahgdantti: if colord has bugs, tell RAOF01:36
danttimicahg: what is RAOF?01:36
danttiapachelogger: I can't cancel a jobs :P01:36
micahgdantti: RAOF is an ubuntu-desktopper01:36
apacheloggerdantti: u broke it01:36
danttimicahg: it's not colord that has problems it is that the kded module I'm writting doesn't do all the needed stuff yet...01:37
apacheloggerdantti: also if you did not have 3 loops the code might be lest prone to fall apart :P01:37
danttiso colord does not work was more like colord-kde doesn't work yet01:37
danttiapachelogger: lol... well I can take suggestions...01:38
apacheloggersplit it up into functions01:38
apacheloggerfor example01:38
danttiapachelogger: right I should do that (at least the do while loop could be in a function loop)01:39
danttiapachelogger: hmm I probably broke something else, the core is still working,, maybe my qstringbuilder stuff broke it...01:40
apacheloggerjust when I rolled a new snapshot :P01:40
apacheloggerbut really I am off now :P01:40
danttihehe01:41
danttiapachelogger: fixed01:42
ScottKyofel: Y U No Upload?03:25
ScottKkde-runtime binaries accepted.03:33
ScottKJontheEchidna: How goes?03:36
ScottKFeel free to upload some KDE 4.8.1 from bzr.03:36
JontheEchidnapretty well03:37
ScottKAIUI https://wiki.kubuntu.org/Kubuntu/Ninjas/Packagin is up to date if you want to grab something.  Just make sure to use the .xz tarballs.03:38
* ScottK does libksane03:39
* JontheEchidna grabs analtiza03:47
ScottKJontheEchidna: I've already stared that one.03:47
JontheEchidnak03:47
ScottKCan you pick another.  Sorry.03:47
JontheEchidnaanybody touched smoke stuff?03:47
ScottKNope.03:47
ScottKdebfx: kactivities is now in the Kubuntu packageset.  It took a manual override from cjwatson.03:48
ScottKOK.  That's done too.03:49
ScottKThat's probably about it for me for tonight.03:50
CIA-42[smokegen] Jonathan Thomas <echidnaman@kubuntu.org> * echidnaman@kubuntu.org-20120308035304-c1shxomi8tlv3272 * debian/changelog releasing version 4:4.8.1-0ubuntu103:53
CIA-42[smokeqt] Jonathan Thomas <echidnaman@kubuntu.org> * echidnaman@kubuntu.org-20120308035648-idcge3ep9kmc8q57 * debian/changelog releasing version 4:4.8.1-0ubuntu103:56
rbelemapachelogger, the initial code is here https://gitorious.org/copyright-tools/copyright-tools04:09
rbelem:-)04:09
rbelemapachelogger, lots of stuff needs to be done04:10
rbelemi will compile a todo list04:10
brestowshi give me address repository for test kde 4.8.107:06
Tm_Tbrestows1: for oneiric?07:26
brestowsyes07:57
Tm_Tbrestows: it's in kubuntu-backports ppa08:08
brestowsok 08:09
brestowsupdate08:09
bulldog98guys why do you upload stuff with version 4:4.8.1a-something ???08:25
bulldog98why the a there wasn’t any public version of it, so why not just dropping the a?08:25
Riddellbulldog98: that means upstream made a tar which we put in kubuntu-ninjas08:28
Riddelland then make a new tar so we had to update it in kubuntu-ninjas with a new version number08:28
Riddellwe could drop the a for the upload to the ubuntu archive08:28
Riddellbut that would mess up anyone who tested on kubuntu-ninjas08:28
bulldog98Riddell: that’s right, but isn’t there a better solution?08:29
Riddell4:4.8.1a-something is inelegant but not problematic08:29
Riddell4:4.8.1-something is more elegant but problematic for our testers08:29
Riddelland it is a good idea to not annoy the testers, we do depend on them :)08:30
bulldog98sound’s like a plan :)08:30
jussiis there an alternative to "ubuntu-bug" that goes to b.k.o?`ie, something that collects all the files, reports and uploads them? then directs to the website and filing?08:31
Riddelljussi: drkonqi08:31
Riddellbut otherwise no08:31
jussiRiddell: so I can run "drkonqi <package>" ?08:32
Riddellno you can copy and paste from drkonqi08:32
Riddelldario might be receptive to ideas but actually integrating it with bugzilla needs a lot of coordination between sysadmins, bugzilla hackers and drkonqi (dario)08:32
jussioh well thats annoying. perhaps we should create somethign like that?08:32
Riddellthere's a reason why Mark hired a team to make his own bug tracker, integration with a badly maintained project is hard08:33
jussihrrr08:33
jussisee.... we need to get KDE to use LP :P08:33
Riddellbugzilla is hardly a priority for mozilla,I don't know where their millions do get spent but it's not on a bug tracker08:33
Riddelland KDE doesn't seem keen to switch to open source launchpad08:34
jussiwe should take up a bribe fund ;)08:34
jussiswitch to LP and we will give you lots of money :D08:35
RiddellI fear KDE isn't likely to expect lots of money from canonical any time soon08:36
Riddellbut that's fine, alternatives for kubuntu are becoming apparant08:36
jussihrm? 08:37
* Riddell flies off to Schipol08:37
jussiRiddell: have fun, thats one of the best airports in the world08:38
jussi(only city I actually enjoyed was amsterdam - I generally hate cities)08:39
brestowsRiddell: hi 08:54
brestowsI add rep, run update, afte update version kde remained 4.7.108:55
alleeFYI: there's a datalos bug in 11.10 4.8 after 4.8.1.  https://bugs.kde.org/show_bug.cgi?id=295484  I'll try if I can reproduce in precise10:47
ubottuKDE bug 295484 in Mail Filter Agent "filtering removes email's content" [Critical,New: ]10:47
debfxScottK: why some KDE packages need an override but others like libreoffice are in the packageset will always be a mystery to me.11:30
bulldog98apachelogger: Ariya is the right pic to have for ksplash11:41
rbelemRiddell, i got sponsorship :-D \o/11:55
ScottKdebfx: There is an algorithm (which I don't understand) based on rdepends and being seeded.  Stuff like kdelibs is broadly used by so many things (e.g. ubiquity) that the algorithm lands it in core.  The same happened with kactivities.  LO, OTOH, doesn't have so many rdepends so it doesn't make it to core and ends up in Kubuntu and Desktop package sets.12:00
BluesKajHowdy all12:02
tazzhttps://plus.google.com/hangouts/extras/talk.google.com/ubuntu-dev# hanging out with holbach12:11
ScottKtazz: Chatting on G+ with people that aren't involved in Kubuntu development is at least slightly random relative to the channel topic.12:18
tazzScottK, ah sorry, i thought the dev stuff and internals were similar.12:18
tazzmy apologies.12:18
ScottKtazz: Not a big deal.  12:19
* ScottK looks at smokekde12:19
=== greyback is now known as greyback|lunch
=== yofel is now known as yofel_
=== yofel_ is now known as yofel
=== greyback|lunch is now known as greyback
=== bulldog98_ is now known as bulldog98
brestowswhen used class   KUniqueApplication  in konsole show warning message - "QDBusConnection: session D-Bus connection created before QCoreApplication. Application may misbehave"  How this correct14:32
brestowsHi14:32
BluesKajbrestows,  I've seen that warning before, haven't had any misbehaviour so far.14:40
Riddelljussi: if you hate cities you've clearly never been to edinburgh :)14:41
Riddellhi brestows 14:41
brestowsBluesKaj: if used Qdbus,  it does not always work14:41
Riddellrbelem: great14:41
jussihehe14:41
BluesKajwhich app brestows ?14:42
brestowsRiddell:  after update on ubuntu 11.10 always crash Muon 14:43
BluesKajnevermind brestows , I've only used dbus when ssh'd into another pc 14:44
BluesKajqdbus isn't in my knowledgebase14:44
brestowsBluesKaj: I write app :) whitch use dbus connection and it don't work :( on qt 4.814:45
BluesKajbrestows, right , I think :)14:46
brestowsright , I think 14:46
BluesKajBBL 14:46
apacheloggerbulldog98: seriously?14:53
apacheloggerbulldog98: says who?14:53
bulldog98apachelogger: at least debian has the same stuff in it14:54
bulldog98eshat14:54
apacheloggerOo14:54
apacheloggerthe tarball has ariya14:54
apacheloggerso *every* distro has it for ksplash14:54
apacheloggerthat does not mean it is what was intended by the artists14:54
apacheloggerdantti: new snapshot building14:56
danttiapachelogger: did you pull?14:57
apacheloggerwhy?14:57
danttiapachelogger: I've fixed a bug in configure dialog14:57
apacheloggerlast import was 1hr ago14:57
apacheloggerhttps://code.launchpad.net/~neon/print-manager/master14:57
danttiok, it's probably in :D14:57
apacheloggerhttp://bazaar.launchpad.net/~neon/print-manager/master/revision/23714:58
apacheloggeryah14:58
danttisince I fixed a few hours after you went to bed14:58
Riddellbrestows: after updating to KDE SC 4.8.1?14:58
brestowsRiddell: no :( I add rep that you given, did update system, version kde  remained 4.7.115:00
apacheloggerbulldog98: what is eshat working on?15:02
Riddellbrestows: then it is unclear what has been upgraded15:02
bulldog98apachelogger: oxygen15:02
apacheloggercurious15:02
apacheloggerso why is there this other thing/15:02
apachelogger?15:02
apacheloggerthe simple gradient15:02
brestowsRiddell: could just put a standard  update?15:03
Riddellmaybe yes15:03
bulldog98apachelogger: eshat said something about that that repro would be outdated15:05
apacheloggernice15:05
apacheloggerbulldog98: you might want to propose that upstream starts using the outdated version then, because an ad-hoc vote amongst kubuntu-devel subscribers suggest ariya splashes give people vertigo15:06
apacheloggernixternal: feel free to use the fluffy-unicorn package to pick up where you left :P15:07
apacheloggerrbelem: gitorious? :S15:07
bulldog98apachelogger: isn’t your voice more worth, than mine?15:07
rbelemapachelogger, :-D15:07
apacheloggerbulldog98: you speak on behalf of the kubuntu-devel subscribers, I'd say their combined voice is worth more than any single one ;)15:08
apacheloggerrbelem: can't that move to github or git.kde or fdo if at all sensible15:08
rbelemapachelogger, i think github is ok15:09
apacheloggerrbelem: depends on whether you expect a lot of contributions from people who have a kde dev account15:09
rbelemapachelogger, what is fdo?15:09
apacheloggerin which case git.kde makes more sense TBH15:09
apacheloggerfreedesktop.org15:09
rbelemah!15:10
brestowsRiddell: download update from kubuntu-ninja ppa, after install write about result15:10
rbelemapachelogger, hum... but git.kde is not for kde only stuff?15:12
rbelemapachelogger, fdo seems to be nice15:14
Mamarokrbelem: nice is a bold statement for fbo...15:14
rbelem:-D15:15
rbelemMamarok, i never used fdo services15:16
Mamarokapparently KDE 4.8.1 is dripping in very slowly, I still only see part of the packages since yesterday15:16
Mamarokrbelem: git.kde.org depends on the project you want to host15:17
apacheloggerrbelem: there is kdesupport15:17
Mamarokif it is somehow related to KDE it definitely is the place15:17
apacheloggerrbelem: mind that fewer people have an fdo account15:18
apacheloggerso from where I am standing you'd either go to github or git.kde15:18
apacheloggerfdo is a right hassle15:18
rbelemMamarok, the project is a copyright scanner for source code. It will generate spdx and dep5 outputs15:20
Mamaroksounds like quite appropriate for git.kde.org15:20
apacheloggeroh oh oh15:20
apacheloggeror linuxfoundation15:20
apacheloggerthey also host crap like that15:21
rbelemapachelogger, github seems to be more agnostic15:21
rbelem:-D15:21
apacheloggerABI compat checker comes to mind15:21
rbelemapachelogger, they already host another tool that does a similar job, fossology15:21
apacheloggerrbelem: IMHO agnosticness is not a concern, from where you expect/want contributions is what matters ;)15:21
rbelemapachelogger, hum... that's true15:22
apacheloggerkde hosts like 30000 audio players ;)15:22
rbelemfossology is written in c and php15:22
apacheloggerOo15:23
apacheloggereh15:23
apacheloggerOo15:23
rbelemand needs rdbms15:23
apachelogger:O15:23
apachelogger:@15:23
apachelogger-.-15:23
apachelogger/o\15:23
apacheloggerWTH15:23
rbelemhahaha :-D15:23
rbelemapachelogger, Mamarok, you convinced me to move to kde :-)15:24
apacheloggeryou know what we should do.... port ubiquity to ruby, but have it generate code for python, then have python generate C which we compile just in time and then we use some auto language binding generator to tie it with Qt15:24
apacheloggerthe results we then store in mysql so that we can avoid the overhead15:24
apacheloggermy sequel is the new xml15:25
rbelemo.O15:25
apacheloggeron an unrelated matter15:25
apacheloggerfriends! stop disturbing me :P15:25
apacheloggerbulldog98: did you propose the change in background yet?15:26
rbelemapachelogger, i think that for this time kind of project python is good15:26
bulldog98apachelogger: no, because I don’t know where to propose15:26
rbelems/time//15:26
kuboturbelem meant: "apachelogger, i think that for this  kind of project python is good"15:26
apacheloggerrbelem: at least put some C and my sequel in there15:27
apacheloggerotherwise it has too few deps :P15:28
apacheloggerbulldog98: #oxygen?15:28
rbelemapachelogger, it will have python-nltk as dependency15:28
apacheloggerbulldog98: propose it to nuno, he surely will agree and command everyone to make it happen ;)15:28
rbelem:-D15:28
apachelogger!find qmlviewer15:29
ubottuFound: qt4-qmlviewer15:29
apacheloggerhttp://bazaar.launchpad.net/~kubuntu-packagers/kubuntu-default-settings/kubuntu-default-settings/revision/47215:37
BluesKajBBL15:37
apacheloggersomeone broke something15:44
apacheloggergwenview doesn't tell me the color depth of a png anymore15:44
agateauapachelogger: did it ever tell you such things?15:45
Mamarokapachelogger: BTW, could you backport the new Phonon and phonon-backend versions to Oeniric, please?15:45
apacheloggeronly yesterday15:45
apacheloggerthen I upgraded15:45
apacheloggertoday it stopped doing it15:45
apacheloggerMamarok: yofel or bulldog98 could, I do not touch phonon in ubuntu15:45
MamarokOK15:45
=== fenris is now known as Guest71737
apacheloggerdantti: so15:54
apacheloggerdantti: we'll do smoke testing for print-manager15:54
danttiapachelogger: what's that?15:54
apacheloggerusers testing the software according to test cases15:54
=== Guest71737 is now known as ejat
danttiapachelogger: right nice15:55
BluesKajMamarok,  I'm using the vlc backend with success , it even does DD and DTS thru spdif with dragonplayer which gstreamer doesn't do ..extra stage but it's still passthru just the same 16:04
BluesKajof course one needs the pulse pavucontrol setup options to do so .16:05
apacheloggerdantti: http://community.kde.org/Phonon/QA that is a more complete test suite I use for releaeses16:10
apacheloggerif you need some inspiration ;)16:11
=== vivek is now known as Guest90488
apachelogger  Number of text strings: 1 of 916:11
apachelogger    Software (xTXt deflate compressed): Adobe ImageReady16:11
=== Guest90488 is now known as pvivek
apacheloggerI love how ubuntu artwork is created using proprietary software16:12
Riddellthat's a longstanding issue with the design team16:15
=== fenris_ is now known as Guest47985
MamarokBluesKaj: I know, I use that one as well :)16:17
yofelo/16:28
* yofel goes back to uploading16:28
yofelcould someone upload blinken and cantor to universe please?16:30
BluesKajMamarok, I'm still not a pulseaudio fan , but now most pci soundcards require it, unfortunately . I just wish the alsa devs would have worked harder to link alsa with flash/webaudio without needing pulse as the soundserver.16:31
tsimpsonAdobe could have chosen to use ALSA if they wanted, OSS is/was just simpler to implement16:33
BluesKajtsimpson,  flash worked ok on webaudio without pulse on the onboard nvidia soundcard, but not so with the pci m-audio.16:39
bulldog98apachelogger, Riddell: have a look at my first mockup: scratch/kolberg/ubiquity-mockup17:31
bulldog98it’s a kde git repro17:31
* bulldog98 is off untill ~23 a clock17:32
CIA-42[kubuntu-default-settings] Harald Sitter <apachelogger@ubuntu.com> * apachelogger@ubuntu.com-20120308181906-3gmaw2l63lowftz5 * (11 files in 2 dirs) Align plymouth theme with Ariya (using different splash image as we and upstream agree that the stripes are terrible for anything but wallpaper)18:19
apacheloggerif anyone cares to test this .... a package for precise should arrive in kubuntu experimental within the hour18:19
yofel\o/18:21
yofelapachelogger: what about kdm btw? Ariya or splash background?18:21
apacheloggersplash18:21
yofelgood18:21
apacheloggerbut bulldog98 is supposed to get a solution upstream for .218:21
apacheloggerif they don't wanna we should push it eitherway18:21
apacheloggerah, ok, packages will only be there in 5 hours18:23
apachelogger<3 lunchpad18:23
apacheloggerhttp://people.ubuntu.com/~apachelogger/tmp/plymouth-theme-kubuntu-logo_12.04ubuntu4_amd64.deb18:24
apacheloggerwhy is that arch dependent btw :O18:24
Tm_Tapachelogger: because enterprise18:26
CIA-42[kubuntu-default-settings] Harald Sitter <apachelogger@ubuntu.com> * apachelogger@ubuntu.com-20120308182657-565o80uc1u6cel61 * debian/ (changelog control) Make plymouth-theme-kubuntu-logo arch all. It only contains scripts and images18:27
yofelI've uploaded what I can - a MOTU needs to take care of what's marked as UNIVERSE on the wiki18:45
* ScottK will have a look.18:48
ScottKyofel: Thanks.18:48
yofelI'll poke cjwatson about konsole, got dropped from the packageset somehow18:48
CIA-42[kubuntu-default-settings] Harald Sitter <apachelogger@ubuntu.com> * apachelogger@ubuntu.com-20120308185317-ofhg8ohq1hm4kfby * usr-share-kde4/apps/ksplash/Themes/Kubuntu/images/dot-active.png use drop shadow dot from plymouth18:53
apacheloggeriff the ati driver wasn't so utter rubbish this would even look very sweet18:54
CIA-42[kubuntu-default-settings] Harald Sitter <apachelogger@ubuntu.com> * apachelogger@ubuntu.com-20120308185619-u49yphaexygcpk6u * usr-share-kde4/apps/ksplash/Themes/Kubuntu/main.qml until upstream fixes their splash background we'll use the background img from plymouth18:56
CIA-42[kubuntu-default-settings] Harald Sitter <apachelogger@ubuntu.com> * apachelogger@ubuntu.com-20120308190048-pasebo416u2pdj9s * usr-share-kde4/apps/ksplash/Themes/Kubuntu/main.qml to avoid introduction of a circular dep from kds to plymouth, we simply drop to the default wallpaper (ariya) in case the plymouth background could not be loaded19:01
* apachelogger wonders why he cannot test kubuntu-text anymore -.-19:08
Riddellyofel: how's 4.8.1 doing?  ready for a story on kubuntu.org ?19:32
* Riddell braves a dist-upgrade19:34
yofelpretty much ready, backports done, and almost everything uploaded19:36
CIA-42[lp:~kubuntu-packagers/kubuntu-packaging/konsole] Philip Muškovac * 26 * debian/changelog releasing version 4:4.8.1-0ubuntu119:36
Riddelllovely, many thanks for that yofel 19:37
sheytanapachelogger: Y do  u read my mind?19:40
apacheloggersheytan: oh, I do?19:42
apacheloggerI am terribly sorry for that :P19:42
sheytanapachelogger: yep. Just saw the plymouth you linked19:42
sheytanwho made that?19:42
apacheloggereshat, that was the original proposal for wallpaper19:43
sheytanah19:43
apacheloggeralso everything but the wallpaper itself should look like that, only the wallpaper should have stripes19:44
sheytani just imagined same thing :D19:44
apacheloggersomewhere in KDE that got miscoordinated19:44
apacheloggerbulldog98 is going to get it fixed though19:44
sheytangood19:44
sheytanbtw19:44
sheytanmy vision was with kubuntu logo19:44
sheytana gray one19:44
sheytanwith a inverted shadow19:44
sheytanthat look like a hole19:44
sheytanbut just the logo, without 'kubuntu' text19:45
apacheloggermine too19:47
apacheloggerbut I am no good with gimp19:47
apacheloggerI constaly loose windows :P19:47
sheytanhahahah  :D19:48
sheytangood one19:48
sheytanif I make one, will you add it right after to see the effect?19:48
* ScottK is doing blinken19:58
ScottKyofel: If konsole fixed so you can upload or do you need me to?20:04
* ScottK looks at cantor in the mean time.20:04
yofelScottK: it's uploaded20:04
ScottKExcellent.  Thanks.20:05
apacheloggersheytan: sure20:16
sheytanapachelogger: almost there20:16
ScottKyofel: What's the ksecrets plan?20:19
* ScottK looks at kiten20:19
yofelexperimental ppa, I think it still doesn't work right. Need to talk to upstream20:19
ScottKOK.  Not uploading then.20:20
sheytanapachelogger: http://www.sendspace.com/file/hjphmr20:23
sheytanput the logo in the middle but a bit to the top20:23
sheytandots down the logo20:23
sheytanapachelogger: btw, can i have the background iamge20:24
sheytan?20:24
apacheloggerhttp://bazaar.launchpad.net/~kubuntu-packagers/kubuntu-default-settings/kubuntu-default-settings/download/apachelogger%40ubuntu.com-20120308181906-3gmaw2l63lowftz5/background.png-20120308181752-3w9v38go1p8a6e6t-1/background.png20:24
apacheloggeryou can put the logo right into the image I suppose20:25
apacheloggerfor this release anyway20:25
apacheloggerso you better throw me a gimp xcf or something20:25
ScottKPlease be sure then to stuff the xcf in the source somewhere so we are distributing the preferred form of modification.20:26
apacheloggerno, screw that, I am workign on ubuntu, round here we use proprietary formats20:26
apacheloggerwoohooooo20:26
* apachelogger had too much coke oh gosh20:27
ScottKapachelogger: Maybe some alcohol to calm you down.20:28
apacheloggern/a20:28
apacheloggerstory of my life20:28
* ScottK thought alcohol was always applicable.20:28
ScottKHow inconvenient.20:29
ScottKIt turns out I didn't get the upload notification because I got distracted and didn't upload it.20:29
ScottKI guess I can't quite blame LP for everything.20:29
apacheloggerwell...20:31
apacheloggerif lunchpad was cooler you could have done it in lunchpad making the need for upload disappear completely20:31
apacheloggersheytan: 20:34
apacheloggerhttp://wstaw.org/m/2012/03/08/plasma-desktopnL1993.png20:35
apacheloggerdoesn't quite work20:35
yofelmake the logo larger and put it center?20:35
yofelthat's at least symmetric20:35
sheytanyofel larger no20:36
sheytansmaller20:36
apacheloggerwell, neverminding the symetrics20:36
sheytanapachelogger: loogs quite good20:36
apacheloggerit looks crappy20:36
apacheloggerit doesn't integrate with the background20:36
sheytanok, logo half that20:36
sheytanand will be great20:36
apacheloggersec, earlier I saw something that goes like what I imagine it should look like20:36
sheytanwhat was it ;d20:37
apacheloggersheytan: http://www.flickr.com/photos/75591578@N05/6794627320/in/pool-1880694@N24/20:37
apacheloggerit should look like it is engraved into the background20:37
sheytanthis is hard to make looking good with kubuntu logo or i am weak in inkscape :)20:38
sheytanwill ask nuno20:38
sheytani love that background20:38
sheytanwith little holes20:38
apacheloggersheytan: do it in gimp20:39
apacheloggeras I said for this release it doesn't matter 20:39
sheytanapachelogger: in gimp it looks crappy20:39
apacheloggerwe can only ship one png20:39
sheytani got an idea20:40
sheytangive me 5 minutes20:40
ScottKyofel: Would you please update the wiki for konsole.20:40
yofeloh right20:40
* ScottK starts on korundum20:40
yofeldone20:41
sheytanapachelogger: i need  the background file20:45
apacheloggerhttp://bazaar.launchpad.net/~kubuntu-packagers/kubuntu-default-settings/kubuntu-default-settings/download/apachelogger%40ubuntu.com-20120308181906-3gmaw2l63lowftz5/background.png-20120308181752-3w9v38go1p8a6e6t-1/background.png20:46
apacheloggerunless you need svg, then you should talk to eshat20:46
sheytanapachelogger: what about screens with bigger size?20:46
apacheloggerscaled up20:46
sheytanthis will look crappy20:47
apacheloggerwe cannot effort much here, this image is put into the boot image20:47
apacheloggerthe bigger this image is the longer the boot takes20:47
sheytanlol20:48
sheytanreally?20:48
apacheloggeryes20:48
apacheloggerthere is no other way to do it20:48
sheytanlets just leave it gray  :D20:48
sheytanno backgroun20:48
apacheloggerthe boot image is the first thing that is loaded 20:48
apacheloggerspooky20:48
apacheloggersheytan: either way I need a logo that looks engraved ;)20:49
apacheloggerwhether we want the background or simply gray is something that can be changed up to release really20:49
ScottKHas to be 3D with spinning logo.20:49
apacheloggerwell20:50
apacheloggerSVG could do that :P20:50
apacheloggeractually20:50
apacheloggermaybe plymouth supports svg20:50
apacheloggerthat would be 3000000x more sensible20:50
ScottKNow for perlkde20:51
apacheloggerdoesn't look like it :(20:51
sheytanwe can fade the image on each side and put gray background behind it20:51
apacheloggersheytan: can you make a mockup, I do not understand20:52
sheytanapachelogger: on each side of  the 800x600 background i can make it fade to transparency. 20:53
apacheloggeralso plymouth does not understand svg, which I find mind nummingly stupid considering that calculating an SVG is probably loads faster than loading a big arse png20:53
apacheloggersheytan: well, give it a try20:53
ScottKapachelogger should be happy.20:58
ScottKDoing qtruby now.20:58
apachelogger\o/20:58
sheytanapachelogger: http://www.sendspace.com/file/bm2b0h20:59
apacheloggerbetter21:00
yofelthat doesn't match the glossyness of kdm... I kinda like it though21:00
apacheloggernot perfect though21:00
apacheloggersheytan: why is it 800x600?21:01
sheytanapachelogger: you send me such21:01
apacheloggerno21:01
apacheloggeroh21:02
apacheloggereh21:02
apacheloggerwth21:02
apacheloggerOo21:02
sheytanyou did it.21:02
apacheloggerwhy is that 800x60021:02
sheytanthat's why i asked about21:02
apacheloggerOo21:02
sheytandidn't you tell me that bigger size = longer boot?21:03
apacheloggeryes21:03
apacheloggerbut I thought it was 1200xsomething21:03
sheytanit wasn't21:03
apacheloggerwell21:03
apacheloggercurious though21:03
sheytanlets try with this first21:03
apacheloggerwithout the logo it scales just fine then ;)21:03
sheytanto see how it looks21:03
apacheloggerI did not realize it wasn't 1200 all this time ^^21:03
sheytantoo much cola21:03
sheytangive me that bigger one :)21:04
apacheloggersheytan: http://websvn.kde.org/*checkout*/trunk/KDE/kde-base-artwork/ksplashx-themes/default/1920x1200/background.png21:05
apacheloggeractually 800x600 makes more sense21:05
apacheloggerconsidering it scales well21:05
apacheloggerand my screen has a resolution of 1920x1080 at boot21:05
apacheloggerso I think we should not put the logo on the background21:05
apacheloggerthat would mess with scaling21:05
apacheloggerhttp://wstaw.org/m/2012/03/08/plasma-desktopVY1993.png21:06
apacheloggeras I said, it's better, not perfect21:06
apacheloggerstill not quite engraved enough :)21:06
sheytanapachelogger: can we put he logo as a separate file? I could make one with a stone texture21:06
sheytantaht will fit21:06
apacheloggersheytan: btw, how about loosing the circle?21:06
ScottKAnd now .... last but not least .... kfloppy21:06
apacheloggerit looks kind aweird IMHO21:07
apacheloggersheytan: yes we can, also it makes more sense seing as I used 800x60021:07
sheytanyeah21:07
sheytanso21:07
apacheloggeralso you can make different versions for different resolutions so it looks good (if necessary)21:07
sheytanwith or without circle?21:07
apacheloggerI'd do without circle21:07
sheytansure21:07
apacheloggerwhen the logo looks properly engraved21:08
apacheloggerwithout circle will look a lot better21:08
sheytanmore resolutions isn't needed. It will be always the same size21:08
apacheloggeralso I think right now the circle is distrubing the engraved ness21:08
apacheloggersheytan: you might want to make the logo thicker on high resolutions though21:08
apacheloggerotherwise it might be too small21:09
* apachelogger tends to think that the dots are almost too small at 1920x108021:09
ScottKyofel: All uploaded AFAICT.21:09
yofel\o/21:09
ScottKThanks for leading the packaging effort.21:09
ScottKRiddell: 4.8.1 is all uploaded now, so it can definitely be announced (the universe stuff is still building)21:10
ScottKshadeslayer: Were you working on arm* symbols for qtwebkit-source?21:11
RiddellScottK: shall I put it on kubuntu.org?21:15
ScottKRiddell: I think so.21:15
apacheloggersheytan: whenever you are ready, I have the code for separate logo ready21:16
sheytanapachelogger: http://www.sendspace.com/file/d3aden21:16
apacheloggerthis will look odd :P21:17
sheytanapachelogger: 21:19
sheytanhttp://www.sendspace.com/file/uqwnqw21:19
sheytantry this21:19
apacheloggerwill still look odd21:20
sheytanshow me21:20
Riddellkubuntu.org/news/kde-sc-4.8.1  how's that?21:20
apacheloggerI tell you, engraved is the only good thing with this kind of background :P21:20
apacheloggersheytan: http://wstaw.org/m/2012/03/08/plasma-desktopkr1993.png21:24
BluesKajhey gents , til my sata cables arrive , I have to use a USB connection for an WD 1TB external drive I just setup ...what's the best File System to use for storing and retrieving files , FAT32, extX or ...?21:33
=== sheytan_ is now known as sheytan
sheytanapachelogger: http://www.sendspace.com/file/acl96q21:36
apacheloggeroh yes21:37
apacheloggerstrong drop shadow though21:37
apacheloggerand the gear IMHO should have a dark gray rather than a light one21:37
apacheloggers/strong/stronger/g21:37
kubotuapachelogger: You did something wrong... Try s/you/me/ or tell me "help sed"21:37
sheytani think it should be lighter :)21:38
sheytancan i see it?21:38
apacheloggergotta change my script again21:38
apacheloggerunless you give me just the logo :P21:38
sheytani won't21:39
sheytanit's a part of image21:39
apacheloggerbut we need it as separate thing21:39
apacheloggeror we run into scaling issues21:39
apacheloggerhttp://wstaw.org/m/2012/03/08/plasma-desktophi1993.png21:40
apacheloggerI thnk that is a step into the right direction21:40
apacheloggerwhat do others think?21:40
apacheloggerwell, it's good enough for testing21:41
apacheloggersheytan: can you please try a version with stronger drop shadow21:41
sheytanapachelogger: could you try without the logo and wit ha little text down to dots "starting up"21:41
sheytan?21:41
apacheloggerand one with stronger drop shadow and darker gray for the logo21:41
sheytanstronger looks bad21:41
apacheloggersheytan: text is a no-go unfortunately21:41
apacheloggerwe have no means to localize that21:42
sheytanah21:42
sheytanit still isin't perfect :D21:42
apacheloggersheytan: just let me try 21:42
sheytanok21:42
apacheloggersee what people think21:42
apacheloggerbut I think this is the direction we should be heading21:42
sheytanapachelogger: i must have a sleep with it. I will come up with a good solution for the logo21:45
yofelapachelogger: hm, doesn't look too bad21:46
apacheloggera bit too big spacing between logo and dots, generally speaking21:46
apacheloggersheytan: do you have to go to bed now or do I get my darker/stronger versions first? :)21:47
sheytanapachelogger: http://www.sendspace.com/file/u5n2kb21:49
apacheloggersheytan: does that have a stronger drop shaddow?21:51
sheytana bit21:51
apacheloggertry a bit more maybe21:51
apacheloggeralso please move the logo a bit down21:51
apacheloggerhttp://wstaw.org/m/2012/03/08/plasma-desktopBE5164.png21:52
apacheloggerhalf the space between logo and dots21:52
sheytani would make a non engraved version21:54
apacheloggerfeel free to, we'll just send the best versions to kubuntu-devel and have people decide what to use21:54
sheytansure21:55
apacheloggersheytan: oh, here is an idea21:55
apacheloggertry the dot color for the ground of the logo21:56
apacheloggerthat is a bit lighter than what it is in the last version21:56
apachelogger+ a bit darker/stronger drop shadow21:56
apachelogger+ move it down a bit :)21:56
apacheloggerrbelem: did you ever get a desing for the uds app?21:57
sheytanapachelogger: well, what about using the kicker logo background with a kubuntu gear instead of K?21:58
sheytanthat would fit nicly too21:58
apacheloggerkicker?22:00
sheytankmenu :D22:01
yofelthat's kickoff22:01
apacheloggerthat has a background?22:02
apacheloggersheytan: whatever you think makes sense, but first I'd like to get my requested alteration ;)22:02
sheytansec ;d22:03
apacheloggerhm22:03
apacheloggerisn't bug 948664 qapt noawayds?22:03
ubottuLaunchpad bug 948664 in kubuntu-debug-installer (Ubuntu) "sometimes drkonqi endless prompts to [Install Debug Symbols] and is never satisfied" [Undecided,New] https://launchpad.net/bugs/94866422:03
apacheloggerJontheEchidna: ^22:03
apacheloggeroh22:03
apacheloggerJontheEchidna: !22:04
apacheloggeru here?22:04
apacheloggerOo22:04
yofelis it? 22:05
apacheloggerI think we outsourced it22:06
apacheloggerwell22:06
apacheloggerdepends on what you assume the issue is22:06
apacheloggerqapt not finding the symbol22:06
apacheloggerdebug installer not realizing that it can't find any22:06
sheytanapachelogger: http://www.sendspace.com/filegroup/%2BI4sh65zfntReSrxWwBwJA22:09
apacheloggersheytan: did you move it down a bit?22:10
sheytandamn, nope22:10
sheytansec22:10
apacheloggerhttp://wstaw.org/m/2012/03/08/plasma-desktopae5164.png22:11
apacheloggersheytan: aren't you kubuntu member?22:11
sheytanapachelogger: nope22:11
apacheloggerOo22:11
apacheloggeromg22:12
apacheloggeryou shoudl apply22:12
apacheloggeryou get hosting space on people.ubuntu.com then ;)22:12
apacheloggerand an email addy22:12
sheytani wanted to but i don't remember how it ends22:12
sheytanno, that blue logo sucks22:12
sheytansee? i'm already getting bad ideas22:12
sheytanneed sleep :D22:12
apacheloggerfirst gimme the drop shadow stuff moved a bit down22:13
apacheloggerbecause I think that version could be the best engraved yet22:13
apacheloggerperhaps a bit too dark22:14
apacheloggerbut other than that....22:14
apacheloggeror we make the dots darker22:16
apacheloggermight also be a good idea22:16
sheytanhttp://www.sendspace.com/file/fhc22k22:16
apacheloggerhttp://wstaw.org/m/2012/03/08/plasma-desktopfE5164.png22:18
apacheloggerlet me pimp the dot color real quick22:18
sheytanstill dont like it :D22:19
apacheloggeryou'll have to deal with that :P22:22
sheytannope22:22
sheytani will create a new one :D22:22
sheytantill i get the best22:22
apacheloggerhttp://wstaw.org/m/2012/03/08/plasma-desktopU22248.png22:22
apacheloggersheytan: we have limited tim at hand :)22:23
apacheloggeryofel: ^22:23
sheytandont worry :D22:23
danttisheytan: can I suggest a change? what about the gear on the cernter, remove the dots and make the carved part with a white color in it (meaning the progress)22:24
yofelI could live with that - how does that look during plymouth->kdm->ksplash->plasma?22:24
danttisheytan: not very white, just a little lighter22:24
apacheloggerdantti: too intrusive for precise22:24
apacheloggerthat'd require exessive code changes22:24
danttiapachelogger: isn't that just images?22:25
* dantti has no idea how these things works...22:25
apacheloggerfull images of the logo to indicate progress sounds like a waste of space22:25
danttiapachelogger: well the gear has only 3 parts..22:26
apacheloggerso you'd have 6 images one for on and for off for each22:26
apacheloggerand those would then need to be positioned22:26
apacheloggerdantti: yes but it is busy indication not progress indication22:27
danttiwell it's just an idea (/me tired of these dots)22:27
apacheloggerso you need each of the parts in white and in colored22:27
apacheloggerdantti: yes, I thought of it and I think it is a good idea22:27
apacheloggerjust not for precise22:27
apacheloggerhttps://bugs.launchpad.net/ubuntu/+source/kubuntu-default-settings/+bug/55338622:27
danttiok I really don't understand the internals..22:27
apacheloggerFWIW22:27
ubottuLaunchpad bug 553386 in kubuntu-default-settings (Ubuntu) "Plymouth theme should use circular progress indicator" [Medium,Confirmed]22:27
apacheloggerthe dots are crap anyway22:28
sheytanapachelogger22:28
sheytanjust give me time :)22:28
apacheloggerdantti: oh, you mean only color one part at a time?22:28
yofelcircular would even look nice with the gear22:28
danttiapachelogger: yup22:28
apacheloggersheytan: time is what we do not have ;)22:28
sheytanthe background is ofcourse not required, right?22:28
sheytan2 days max 22:28
apacheloggerdantti: hm, that could work, not sure how good it looks though22:28
apacheloggersheytan: you've got one ;)22:29
sheytanokej22:29
danttiapachelogger: well in a nice gradient it could look nice...22:29
apacheloggersheytan: nope, but it would be nice ot have (background)22:29
apacheloggercontinuity of artwork etc.22:29
sheytani want a little gradient for background, and i have replacement for dots :)22:29
sheytanin my head ofc22:29
sheytanok22:35
sheytangtg22:35
sheytanbye22:35
* apachelogger wonders how to get the logo out of the background22:39
apacheloggersheytan: nini22:39
apacheloggerwell22:40
apacheloggertesting packages should be in kubuntue experimental by now22:40
apacheloggerfor precise22:40
apacheloggerplease go test drive 22:40
yofelcurrently building22:42
apacheloggerslow ol lunchpad22:45
apachelogger<322:45
Riddellgosh ubuntu forums just as frustrated at canonical sysadmins as us serial-coder.co.uk/blog/2012/03/an-open-letter-to-the-ubuntu-community/22:49
apacheloggerRiddell: http://people.ubuntu.com/~apachelogger/screencasts/bootariya.mp4 what say you?23:26

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