[00:00] lol [00:00] dantti: where was const missing? [00:01] apachelogger: all around but the code still not work... [00:01] Oo [00:01] the array has the values but as QBAlist vanishes I think the copy vanishes too then.. [00:01] request = ippNewDefaultRequest(values.take("printer-name").toString(), isClass, operation); [00:01] that line is still missing a toUtf8 :P [00:03] apachelogger: it's not, ippNew... is not from cups [00:03] I do not understand :P [00:03] can you please put a toUtf8 there :P [00:04] also please commit and push and tell me what to do to test [00:04] apachelogger: ok now it works [00:04] lol [00:04] :P [00:04] don't forget my copyright :P [00:05] the copy flag must be for something else, the qba list is more "global" now, so it several qstringlist goes there oh [00:05] no it will be fine the list is just for not deleting the items.... [00:05] what list? [00:06] the qbalist? [00:06] please commit and push :P [00:06] and need to look at this [00:06] http://privatepaste.com/e955dd497a [00:06] ohhhhhhhh [00:07] dantti: maybe the copy only happens at cupsDoRequest? [00:07] apachelogger: maybe... [00:07] apachelogger: what's your copyright line? [00:07] Harald Sitter [00:08] the QBA should be fine eitherway, it will go out of scope after the request (while scoped) [00:08] dantti: mind that you will still need to delete the char ** [00:08] apachelogger: oh [00:08] or commit and push and let me do it ;) [00:08] * apachelogger fancies doing that :) [00:09] apachelogger: please pull [00:11] dantti: mind if I remove the commented code? [00:11] apachelogger: no, [00:11] we just need valgrind to tell us it does not leak :P [00:17] dantti: how can I test it still works? === apachelogger_ is now known as apachelogger [00:18] apachelogger: make install then plasmaengineexplorer --engine printmanager [00:18] ask for AllJobs [00:18] if you have any [00:19] why? qbaList->reserve(qbaList->size() + list.size()); [00:20] dantti: http://wstaw.org/m/2012/03/08/plasma-desktopeu2263.png [00:20] apachelogger: because we are on a loop, so the next qstringlist might need more space [00:21] yeah [00:21] I moved the QBA elsewhere :P [00:21] into the loop [00:21] turns out dorequest seems to do the copy [00:21] so we are fine [00:21] apachelogger: right, do you agree with me about the reserve part? [00:22] apachelogger: you have all data on that screenshot :) [00:22] oh [00:22] actually you are right [00:22] you have too many loops there :O [00:24] this is flawd then [00:24] dantti: we'd also need to grow the char** accordingly [00:24] apachelogger: no, you only pass one char ** [00:25] but inside while (i != values.constEnd()) { [00:25] I have no idea what values can contain [00:25] but if case QStringList can be true more than once we have a problem [00:25] like I have a QStringList of the attributes I was and a QStringList of something else, I'll ippAddStrings() two times with different char** list [00:26] yes, but they do not get copied until doRequest [00:26] so if you want to do it that you always pass different char** we'd still have to put them in a list [00:27] and then delete all char ** inside the list [00:27] otherwise we leak [00:27] apachelogger: hmm [00:27] right we need a list of char ** too :/ [00:27] http://paste.kde.org/435104/ [00:27] dantti: we should just make that a vector though [00:29] apachelogger: what if instead of new char * we just do char[list.size() +1]? [00:30] apachelogger: that way it get's deleted when out of scope no? [00:30] that could work still [00:30] where would you put that? [00:30] the only way this would work is if it were the same scope as qbalist [00:31] at which point we still have one char** and thus cannot process multiple qstringlists [00:32] apachelogger: I'd put inside qstringtoChar**() [00:32] or even pass it to your function... [00:33] yes but then it has too little scope [00:33] considering cups only copies the strings at doRequest it is likely that it only iterates the pointer at this point [00:33] by that time we'd have no pointer anymore though [00:33] so I fear storing them is the only solution [00:35] apachelogger: it copies the strings not the char** [00:35] yes but to access the strings it needs the char ** [00:35] apachelogger: it goes one by one (actually I don't even think we need the +1 and \0... [00:35] (the strings are at arbitrary locations in the memory [00:35] ) [00:35] apachelogger: that's what the QBAlist is for [00:36] yes but cups cannot access it [00:36] cups only has the char ** address [00:36] so it tries values[0] values[1] values[2] .... [00:36] apachelogger: cups do att[1].text = values[i]; [00:36] in a loop [00:36] that is what I am saying [00:36] so we can delete values** [00:36] values is not valid memory anymore! [00:36] not the values [00:37] values ** is values for cups! [00:37] just the array [00:37] no it has copied the values on the list [00:37] but only at doRequest [00:37] not a deep copy [00:37] just a reference [00:37] man this cups is crap [00:37] yup [00:37] printd++ [00:38] apachelogger: try that or push so I can give it a try [00:39] so [00:39] doing [00:39] for (int i = 0; i < list.size(); ++i) { [00:39] values[i] = 0; [00:39] } [00:39] delete values; [00:39] right after the addStrings should work? [00:40] apachelogger: http://privatepaste.com/bd04fa9ced [00:40] apachelogger: yes [00:40] apachelogger: shouldn't it be delete [] values; [00:41] * dantti is a bit lost on the pointers :P [00:41] too late to answer that question [00:41] wouldn't delete [] delete the content? [00:41] i.e. our QBA data [00:41] * apachelogger would totally use malloc :P [00:42] dantti: perhaps you are right [00:42] apachelogger: dunno :P [00:42] valgrind will know ;) [00:43] apachelogger: it's funny that _cupsStrAlloc() is called when we do ippAddStrings() [00:45] apachelogger: hmm it seems that the IPP_TAG_COPY actually does not copy [00:45] not having that would copy.... [00:46] the COPY would then mean we are passing a copy.... [00:46] Oo [00:46] wth? [00:46] is there documentation for cups? [00:47] apachelogger: look at line 543 from my last paste [00:47] apachelogger: there is.. [00:48] funny documentation ^^ [00:48] http://www.cups.org/documentation.php/api-httpipp.html#ippAddStrings and http://www.cups.org/documentation.php/api-httpipp.html#ipp_tag_e [00:48] if ((int)type & IPP_TAG_COPY) [00:48] value->string.text = (char *)values[i]; [00:48] apachelogger: that's the source code :P [00:49] that looks like an immediate deep copy to me? [00:49] eh [00:49] 1st level deep copy ^^ [00:49] so we can throw the values away [00:49] that is a good thing [00:49] wouldn't that be faster? [00:50] tho using the qbaList might do the opposite... [00:51] hm? [00:51] opposite? [00:51] it's just fine [00:51] inside the do-while we create a QBAList [00:51] inside we stuff all our QBAs [00:51] apachelogger: don't you think it's better to have cups allocating that? so we don't have to worry about QBAList growing... & friends [00:51] temporarily we have a char ** to carry data from the QBAs to ippaddstrings [00:52] that function 1st level copies the string addresses [00:52] dantti: oh [00:52] ohhhh [00:52] I didn't read beyond that line ^^ [00:52] lol [00:52] lol [00:53] dantti: yeah, so dropping the COPY flag should make deep copies [00:53] apachelogger: yup :) [00:53] lemme fiddle the code accordingly [00:53] apachelogger: dunno why gnomies did that :P [00:54] apachelogger: I guess we will still need the qdbaList or we qstrdup then delete them... [00:54] qstrdup is no option [00:54] we need the qbalist [00:54] lol [00:54] but with smaller scope [00:55] qstrdup would mandate 2 string copies [00:55] right [00:55] once from qstring -> QBA and a second time from QBA -> qstrdup [00:55] which is why we introduced that list to begin with ;) [00:56] it still works for me [00:56] cool [00:56] dantti: it is delete [] btw [00:57] since we new an array we need to delete one [00:57] obviously ;) [00:57] :) [00:58] I have a bunch of QLatin1Strings() change to push too :P [00:59] apachelogger: it would be awesome if cups emited a DBus signal when new jobs arive... [00:59] oh yes, you should use way more QLatin1String :) [01:00] at the time of the writting I didn't know about them.... [01:00] dantti: you can't always get what you want :) [01:00] dantti: well, while you are at introducing QL1S, also do QStringBuilder :) [01:00] unfourtunatly [01:00] way too few people use that bugger [01:00] dantti: push'd btw [01:00] bugger? [01:00] cool [01:01] the QStringBuilder [01:01] * apachelogger makes breakfast now [01:01] eggs in the basket muhahaha [01:01] I don't see that class in the assistent [01:01] breakfast? [01:02] I though you were on the US? [01:03] more like EU [01:03] 2:03 here [01:03] perfect breakfast time ^^ [01:04] dantti: http://qt-project.org/doc/qt-4.8/qstring.html#more-efficient-string-construction [01:04] also http://labs.qt.nokia.com/2011/06/13/string-concatenation-with-qstringbuilder/ [01:04] lol.... 10pm here... [01:04] dinner time [01:05] apachelogger: the % huh? I tried but that doesn't compile... [01:11] included qstringbuilder? [01:14] apachelogger: :P no [01:26] apachelogger: thanks, valgrind is happy now :D [01:26] wohoo [01:27] apachelogger: btw pushed a few qstringBuilder changes [01:28] * apachelogger asks the kind launchpad to import the repo so he can kickoff a new snapshot [01:29] * dantti kquits-plasma desktop to have it not leaking [01:29] now I can start writting the colord kcm [01:31] first release that stuff :P [01:32] lol /me and my never released stuff :P [01:32] https://code.launchpad.net/~kubuntu-packagers/+recipe/print-manager-snapshot [01:32] oh, so you need forcing, great :P [01:33] debconf-kde needs a new release, Apper needs to leave playground, p-m too, colord needs to .... well start working :P [01:35] oh [01:35] dantti: qbaList->reserve(qbaList->size() + list.size()); [01:35] you might want to drop that first part [01:35] sure, we don't need that now :D [01:35] * apachelogger heads to bed [01:35] nini [01:36] o weird [01:36] dantti: if colord has bugs, tell RAOF [01:36] micahg: what is RAOF? [01:36] apachelogger: I can't cancel a jobs :P [01:36] dantti: RAOF is an ubuntu-desktopper [01:36] dantti: u broke it [01:37] micahg: 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] dantti: also if you did not have 3 loops the code might be lest prone to fall apart :P [01:37] so colord does not work was more like colord-kde doesn't work yet [01:38] apachelogger: lol... well I can take suggestions... [01:38] split it up into functions [01:38] for example [01:39] apachelogger: right I should do that (at least the do while loop could be in a function loop) [01:40] apachelogger: hmm I probably broke something else, the core is still working,, maybe my qstringbuilder stuff broke it... [01:40] just when I rolled a new snapshot :P [01:40] but really I am off now :P [01:41] hehe [01:42] apachelogger: fixed [03:25] yofel: Y U No Upload? [03:33] kde-runtime binaries accepted. [03:36] JontheEchidna: How goes? [03:36] Feel free to upload some KDE 4.8.1 from bzr. [03:37] pretty well [03:38] AIUI 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:39] * ScottK does libksane [03:47] * JontheEchidna grabs analtiza [03:47] JontheEchidna: I've already stared that one. [03:47] k [03:47] Can you pick another. Sorry. [03:47] anybody touched smoke stuff? [03:47] Nope. [03:48] debfx: kactivities is now in the Kubuntu packageset. It took a manual override from cjwatson. [03:49] OK. That's done too. [03:50] That's probably about it for me for tonight. [03:53] [smokegen] Jonathan Thomas * echidnaman@kubuntu.org-20120308035304-c1shxomi8tlv3272 * debian/changelog releasing version 4:4.8.1-0ubuntu1 [03:56] [smokeqt] Jonathan Thomas * echidnaman@kubuntu.org-20120308035648-idcge3ep9kmc8q57 * debian/changelog releasing version 4:4.8.1-0ubuntu1 [04:09] apachelogger, the initial code is here https://gitorious.org/copyright-tools/copyright-tools [04:09] :-) [04:10] apachelogger, lots of stuff needs to be done [04:10] i will compile a todo list [07:06] hi give me address repository for test kde 4.8.1 [07:26] brestows1: for oneiric? [07:57] yes [08:08] brestows: it's in kubuntu-backports ppa [08:09] ok [08:09] update [08:25] guys why do you upload stuff with version 4:4.8.1a-something ??? [08:25] why the a there wasn’t any public version of it, so why not just dropping the a? [08:28] bulldog98: that means upstream made a tar which we put in kubuntu-ninjas [08:28] and then make a new tar so we had to update it in kubuntu-ninjas with a new version number [08:28] we could drop the a for the upload to the ubuntu archive [08:28] but that would mess up anyone who tested on kubuntu-ninjas [08:29] Riddell: that’s right, but isn’t there a better solution? [08:29] 4:4.8.1a-something is inelegant but not problematic [08:29] 4:4.8.1-something is more elegant but problematic for our testers [08:30] and it is a good idea to not annoy the testers, we do depend on them :) [08:30] sound’s like a plan :) [08:31] is 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] jussi: drkonqi [08:31] but otherwise no [08:32] Riddell: so I can run "drkonqi " ? [08:32] no you can copy and paste from drkonqi [08:32] dario 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] oh well thats annoying. perhaps we should create somethign like that? [08:33] there's a reason why Mark hired a team to make his own bug tracker, integration with a badly maintained project is hard [08:33] hrrr [08:33] see.... we need to get KDE to use LP :P [08:33] bugzilla is hardly a priority for mozilla,I don't know where their millions do get spent but it's not on a bug tracker [08:34] and KDE doesn't seem keen to switch to open source launchpad [08:34] we should take up a bribe fund ;) [08:35] switch to LP and we will give you lots of money :D [08:36] I fear KDE isn't likely to expect lots of money from canonical any time soon [08:36] but that's fine, alternatives for kubuntu are becoming apparant [08:37] hrm? [08:37] * Riddell flies off to Schipol [08:38] Riddell: have fun, thats one of the best airports in the world [08:39] (only city I actually enjoyed was amsterdam - I generally hate cities) [08:54] Riddell: hi [08:55] I add rep, run update, afte update version kde remained 4.7.1 [10:47] FYI: 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 precise [10:47] KDE bug 295484 in Mail Filter Agent "filtering removes email's content" [Critical,New: ] [11:30] ScottK: why some KDE packages need an override but others like libreoffice are in the packageset will always be a mystery to me. [11:41] apachelogger: Ariya is the right pic to have for ksplash [11:55] Riddell, i got sponsorship :-D \o/ [12:00] debfx: 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:02] Howdy all [12:11] https://plus.google.com/hangouts/extras/talk.google.com/ubuntu-dev# hanging out with holbach [12:18] tazz: Chatting on G+ with people that aren't involved in Kubuntu development is at least slightly random relative to the channel topic. [12:18] ScottK, ah sorry, i thought the dev stuff and internals were similar. [12:18] my apologies. [12:19] tazz: Not a big deal. [12:19] * ScottK looks at smokekde === 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 [14:32] when used class KUniqueApplication in konsole show warning message - "QDBusConnection: session D-Bus connection created before QCoreApplication. Application may misbehave" How this correct [14:32] Hi [14:40] brestows, I've seen that warning before, haven't had any misbehaviour so far. [14:41] jussi: if you hate cities you've clearly never been to edinburgh :) [14:41] hi brestows [14:41] BluesKaj: if used Qdbus, it does not always work [14:41] rbelem: great [14:41] hehe [14:42] which app brestows ? [14:43] Riddell: after update on ubuntu 11.10 always crash Muon [14:44] nevermind brestows , I've only used dbus when ssh'd into another pc [14:44] qdbus isn't in my knowledgebase [14:45] BluesKaj: I write app :) whitch use dbus connection and it don't work :( on qt 4.8 [14:46] brestows, right , I think :) [14:46] right , I think [14:46] BBL [14:53] bulldog98: seriously? [14:53] bulldog98: says who? [14:54] apachelogger: at least debian has the same stuff in it [14:54] eshat [14:54] Oo [14:54] the tarball has ariya [14:54] so *every* distro has it for ksplash [14:54] that does not mean it is what was intended by the artists [14:56] dantti: new snapshot building [14:57] apachelogger: did you pull? [14:57] why? [14:57] apachelogger: I've fixed a bug in configure dialog [14:57] last import was 1hr ago [14:57] https://code.launchpad.net/~neon/print-manager/master [14:57] ok, it's probably in :D [14:58] http://bazaar.launchpad.net/~neon/print-manager/master/revision/237 [14:58] yah [14:58] since I fixed a few hours after you went to bed [14:58] brestows: after updating to KDE SC 4.8.1? [15:00] Riddell: no :( I add rep that you given, did update system, version kde remained 4.7.1 [15:02] bulldog98: what is eshat working on? [15:02] brestows: then it is unclear what has been upgraded [15:02] apachelogger: oxygen [15:02] curious [15:02] so why is there this other thing/ [15:02] ? [15:02] the simple gradient [15:03] Riddell: could just put a standard update? [15:03] maybe yes [15:05] apachelogger: eshat said something about that that repro would be outdated [15:05] nice [15:06] bulldog98: 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 vertigo [15:07] nixternal: feel free to use the fluffy-unicorn package to pick up where you left :P [15:07] rbelem: gitorious? :S [15:07] apachelogger: isn’t your voice more worth, than mine? [15:07] apachelogger, :-D [15:08] bulldog98: you speak on behalf of the kubuntu-devel subscribers, I'd say their combined voice is worth more than any single one ;) [15:08] rbelem: can't that move to github or git.kde or fdo if at all sensible [15:09] apachelogger, i think github is ok [15:09] rbelem: depends on whether you expect a lot of contributions from people who have a kde dev account [15:09] apachelogger, what is fdo? [15:09] in which case git.kde makes more sense TBH [15:09] freedesktop.org [15:10] ah! [15:10] Riddell: download update from kubuntu-ninja ppa, after install write about result [15:12] apachelogger, hum... but git.kde is not for kde only stuff? [15:14] apachelogger, fdo seems to be nice [15:14] rbelem: nice is a bold statement for fbo... [15:15] :-D [15:16] Mamarok, i never used fdo services [15:16] apparently KDE 4.8.1 is dripping in very slowly, I still only see part of the packages since yesterday [15:17] rbelem: git.kde.org depends on the project you want to host [15:17] rbelem: there is kdesupport [15:17] if it is somehow related to KDE it definitely is the place [15:18] rbelem: mind that fewer people have an fdo account [15:18] so from where I am standing you'd either go to github or git.kde [15:18] fdo is a right hassle [15:20] Mamarok, the project is a copyright scanner for source code. It will generate spdx and dep5 outputs [15:20] sounds like quite appropriate for git.kde.org [15:20] oh oh oh [15:20] or linuxfoundation [15:21] they also host crap like that [15:21] apachelogger, github seems to be more agnostic [15:21] :-D [15:21] ABI compat checker comes to mind [15:21] apachelogger, they already host another tool that does a similar job, fossology [15:21] rbelem: IMHO agnosticness is not a concern, from where you expect/want contributions is what matters ;) [15:22] apachelogger, hum... that's true [15:22] kde hosts like 30000 audio players ;) [15:22] fossology is written in c and php [15:23] Oo [15:23] eh [15:23] Oo [15:23] and needs rdbms [15:23] :O [15:23] :@ [15:23] -.- [15:23] /o\ [15:23] WTH [15:23] hahaha :-D [15:24] apachelogger, Mamarok, you convinced me to move to kde :-) [15:24] you 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 Qt [15:24] the results we then store in mysql so that we can avoid the overhead [15:25] my sequel is the new xml [15:25] o.O [15:25] on an unrelated matter [15:25] friends! stop disturbing me :P [15:26] bulldog98: did you propose the change in background yet? [15:26] apachelogger, i think that for this time kind of project python is good [15:26] apachelogger: no, because I don’t know where to propose [15:26] s/time// [15:26] rbelem meant: "apachelogger, i think that for this kind of project python is good" [15:27] rbelem: at least put some C and my sequel in there [15:28] otherwise it has too few deps :P [15:28] bulldog98: #oxygen? [15:28] apachelogger, it will have python-nltk as dependency [15:28] bulldog98: propose it to nuno, he surely will agree and command everyone to make it happen ;) [15:28] :-D [15:29] !find qmlviewer [15:29] Found: qt4-qmlviewer [15:37] http://bazaar.launchpad.net/~kubuntu-packagers/kubuntu-default-settings/kubuntu-default-settings/revision/472 [15:37] BBL [15:44] someone broke something [15:44] gwenview doesn't tell me the color depth of a png anymore [15:45] apachelogger: did it ever tell you such things? [15:45] apachelogger: BTW, could you backport the new Phonon and phonon-backend versions to Oeniric, please? [15:45] only yesterday [15:45] then I upgraded [15:45] today it stopped doing it [15:45] Mamarok: yofel or bulldog98 could, I do not touch phonon in ubuntu [15:45] OK === fenris is now known as Guest71737 [15:54] dantti: so [15:54] dantti: we'll do smoke testing for print-manager [15:54] apachelogger: what's that? [15:54] users testing the software according to test cases === Guest71737 is now known as ejat [15:55] apachelogger: right nice [16:04] Mamarok, 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:05] of course one needs the pulse pavucontrol setup options to do so . [16:10] dantti: http://community.kde.org/Phonon/QA that is a more complete test suite I use for releaeses [16:11] if you need some inspiration ;) === vivek is now known as Guest90488 [16:11] Number of text strings: 1 of 9 [16:11] Software (xTXt deflate compressed): Adobe ImageReady === Guest90488 is now known as pvivek [16:12] I love how ubuntu artwork is created using proprietary software [16:15] that's a longstanding issue with the design team === fenris_ is now known as Guest47985 [16:17] BluesKaj: I know, I use that one as well :) [16:28] o/ [16:28] * yofel goes back to uploading [16:30] could someone upload blinken and cantor to universe please? [16:31] Mamarok, 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:33] Adobe could have chosen to use ALSA if they wanted, OSS is/was just simpler to implement [16:39] tsimpson, flash worked ok on webaudio without pulse on the onboard nvidia soundcard, but not so with the pci m-audio. [17:31] apachelogger, Riddell: have a look at my first mockup: scratch/kolberg/ubiquity-mockup [17:31] it’s a kde git repro [17:32] * bulldog98 is off untill ~23 a clock [18:19] [kubuntu-default-settings] Harald Sitter * 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] if anyone cares to test this .... a package for precise should arrive in kubuntu experimental within the hour [18:21] \o/ [18:21] apachelogger: what about kdm btw? Ariya or splash background? [18:21] splash [18:21] good [18:21] but bulldog98 is supposed to get a solution upstream for .2 [18:21] if they don't wanna we should push it eitherway [18:23] ah, ok, packages will only be there in 5 hours [18:23] <3 lunchpad [18:24] http://people.ubuntu.com/~apachelogger/tmp/plymouth-theme-kubuntu-logo_12.04ubuntu4_amd64.deb [18:24] why is that arch dependent btw :O [18:26] apachelogger: because enterprise [18:27] [kubuntu-default-settings] Harald Sitter * apachelogger@ubuntu.com-20120308182657-565o80uc1u6cel61 * debian/ (changelog control) Make plymouth-theme-kubuntu-logo arch all. It only contains scripts and images [18:45] I've uploaded what I can - a MOTU needs to take care of what's marked as UNIVERSE on the wiki [18:48] * ScottK will have a look. [18:48] yofel: Thanks. [18:48] I'll poke cjwatson about konsole, got dropped from the packageset somehow [18:53] [kubuntu-default-settings] Harald Sitter * apachelogger@ubuntu.com-20120308185317-ofhg8ohq1hm4kfby * usr-share-kde4/apps/ksplash/Themes/Kubuntu/images/dot-active.png use drop shadow dot from plymouth [18:54] iff the ati driver wasn't so utter rubbish this would even look very sweet [18:56] [kubuntu-default-settings] Harald Sitter * 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 plymouth [19:01] [kubuntu-default-settings] Harald Sitter * 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 loaded [19:08] * apachelogger wonders why he cannot test kubuntu-text anymore -.- [19:32] yofel: how's 4.8.1 doing? ready for a story on kubuntu.org ? [19:34] * Riddell braves a dist-upgrade [19:36] pretty much ready, backports done, and almost everything uploaded [19:36] [lp:~kubuntu-packagers/kubuntu-packaging/konsole] Philip Muškovac * 26 * debian/changelog releasing version 4:4.8.1-0ubuntu1 [19:37] lovely, many thanks for that yofel [19:40] apachelogger: Y do u read my mind? [19:42] sheytan: oh, I do? [19:42] I am terribly sorry for that :P [19:42] apachelogger: yep. Just saw the plymouth you linked [19:42] who made that? [19:43] eshat, that was the original proposal for wallpaper [19:43] ah [19:44] also everything but the wallpaper itself should look like that, only the wallpaper should have stripes [19:44] i just imagined same thing :D [19:44] somewhere in KDE that got miscoordinated [19:44] bulldog98 is going to get it fixed though [19:44] good [19:44] btw [19:44] my vision was with kubuntu logo [19:44] a gray one [19:44] with a inverted shadow [19:44] that look like a hole [19:45] but just the logo, without 'kubuntu' text [19:47] mine too [19:47] but I am no good with gimp [19:47] I constaly loose windows :P [19:48] hahahah :D [19:48] good one [19:48] if I make one, will you add it right after to see the effect? [19:58] * ScottK is doing blinken [20:04] yofel: 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] ScottK: it's uploaded [20:05] Excellent. Thanks. [20:16] sheytan: sure [20:16] apachelogger: almost there [20:19] yofel: What's the ksecrets plan? [20:19] * ScottK looks at kiten [20:19] experimental ppa, I think it still doesn't work right. Need to talk to upstream [20:20] OK. Not uploading then. [20:23] apachelogger: http://www.sendspace.com/file/hjphmr [20:23] put the logo in the middle but a bit to the top [20:23] dots down the logo [20:24] apachelogger: btw, can i have the background iamge [20:24] ? [20:24] http://bazaar.launchpad.net/~kubuntu-packagers/kubuntu-default-settings/kubuntu-default-settings/download/apachelogger%40ubuntu.com-20120308181906-3gmaw2l63lowftz5/background.png-20120308181752-3w9v38go1p8a6e6t-1/background.png [20:25] you can put the logo right into the image I suppose [20:25] for this release anyway [20:25] so you better throw me a gimp xcf or something [20:26] Please be sure then to stuff the xcf in the source somewhere so we are distributing the preferred form of modification. [20:26] no, screw that, I am workign on ubuntu, round here we use proprietary formats [20:26] woohooooo [20:27] * apachelogger had too much coke oh gosh [20:28] apachelogger: Maybe some alcohol to calm you down. [20:28] n/a [20:28] story of my life [20:28] * ScottK thought alcohol was always applicable. [20:29] How inconvenient. [20:29] It turns out I didn't get the upload notification because I got distracted and didn't upload it. [20:29] I guess I can't quite blame LP for everything. [20:31] well... [20:31] if lunchpad was cooler you could have done it in lunchpad making the need for upload disappear completely [20:34] sheytan: [20:35] http://wstaw.org/m/2012/03/08/plasma-desktopnL1993.png [20:35] doesn't quite work [20:35] make the logo larger and put it center? [20:35] that's at least symmetric [20:36] yofel larger no [20:36] smaller [20:36] well, neverminding the symetrics [20:36] apachelogger: loogs quite good [20:36] it looks crappy [20:36] it doesn't integrate with the background [20:36] ok, logo half that [20:36] and will be great [20:36] sec, earlier I saw something that goes like what I imagine it should look like [20:37] what was it ;d [20:37] sheytan: http://www.flickr.com/photos/75591578@N05/6794627320/in/pool-1880694@N24/ [20:37] it should look like it is engraved into the background [20:38] this is hard to make looking good with kubuntu logo or i am weak in inkscape :) [20:38] will ask nuno [20:38] i love that background [20:38] with little holes [20:39] sheytan: do it in gimp [20:39] as I said for this release it doesn't matter [20:39] apachelogger: in gimp it looks crappy [20:39] we can only ship one png [20:40] i got an idea [20:40] give me 5 minutes [20:40] yofel: Would you please update the wiki for konsole. [20:40] oh right [20:40] * ScottK starts on korundum [20:41] done [20:45] apachelogger: i need the background file [20:46] http://bazaar.launchpad.net/~kubuntu-packagers/kubuntu-default-settings/kubuntu-default-settings/download/apachelogger%40ubuntu.com-20120308181906-3gmaw2l63lowftz5/background.png-20120308181752-3w9v38go1p8a6e6t-1/background.png [20:46] unless you need svg, then you should talk to eshat [20:46] apachelogger: what about screens with bigger size? [20:46] scaled up [20:47] this will look crappy [20:47] we cannot effort much here, this image is put into the boot image [20:47] the bigger this image is the longer the boot takes [20:48] lol [20:48] really? [20:48] yes [20:48] there is no other way to do it [20:48] lets just leave it gray :D [20:48] no backgroun [20:48] the boot image is the first thing that is loaded [20:48] spooky [20:49] sheytan: either way I need a logo that looks engraved ;) [20:49] whether we want the background or simply gray is something that can be changed up to release really [20:49] Has to be 3D with spinning logo. [20:50] well [20:50] SVG could do that :P [20:50] actually [20:50] maybe plymouth supports svg [20:50] that would be 3000000x more sensible [20:51] Now for perlkde [20:51] doesn't look like it :( [20:51] we can fade the image on each side and put gray background behind it [20:52] sheytan: can you make a mockup, I do not understand [20:53] apachelogger: on each side of the 800x600 background i can make it fade to transparency. [20:53] also 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 png [20:53] sheytan: well, give it a try [20:58] apachelogger should be happy. [20:58] Doing qtruby now. [20:58] \o/ [20:59] apachelogger: http://www.sendspace.com/file/bm2b0h [21:00] better [21:00] that doesn't match the glossyness of kdm... I kinda like it though [21:00] not perfect though [21:01] sheytan: why is it 800x600? [21:01] apachelogger: you send me such [21:01] no [21:02] oh [21:02] eh [21:02] wth [21:02] Oo [21:02] you did it. [21:02] why is that 800x600 [21:02] that's why i asked about [21:02] Oo [21:03] didn't you tell me that bigger size = longer boot? [21:03] yes [21:03] but I thought it was 1200xsomething [21:03] it wasn't [21:03] well [21:03] curious though [21:03] lets try with this first [21:03] without the logo it scales just fine then ;) [21:03] to see how it looks [21:03] I did not realize it wasn't 1200 all this time ^^ [21:03] too much cola [21:04] give me that bigger one :) [21:05] sheytan: http://websvn.kde.org/*checkout*/trunk/KDE/kde-base-artwork/ksplashx-themes/default/1920x1200/background.png [21:05] actually 800x600 makes more sense [21:05] considering it scales well [21:05] and my screen has a resolution of 1920x1080 at boot [21:05] so I think we should not put the logo on the background [21:05] that would mess with scaling [21:06] http://wstaw.org/m/2012/03/08/plasma-desktopVY1993.png [21:06] as I said, it's better, not perfect [21:06] still not quite engraved enough :) [21:06] apachelogger: can we put he logo as a separate file? I could make one with a stone texture [21:06] taht will fit [21:06] sheytan: btw, how about loosing the circle? [21:06] And now .... last but not least .... kfloppy [21:07] it looks kind aweird IMHO [21:07] sheytan: yes we can, also it makes more sense seing as I used 800x600 [21:07] yeah [21:07] so [21:07] also you can make different versions for different resolutions so it looks good (if necessary) [21:07] with or without circle? [21:07] I'd do without circle [21:07] sure [21:08] when the logo looks properly engraved [21:08] without circle will look a lot better [21:08] more resolutions isn't needed. It will be always the same size [21:08] also I think right now the circle is distrubing the engraved ness [21:08] sheytan: you might want to make the logo thicker on high resolutions though [21:09] otherwise it might be too small [21:09] * apachelogger tends to think that the dots are almost too small at 1920x1080 [21:09] yofel: All uploaded AFAICT. [21:09] \o/ [21:09] Thanks for leading the packaging effort. [21:10] Riddell: 4.8.1 is all uploaded now, so it can definitely be announced (the universe stuff is still building) [21:11] shadeslayer: Were you working on arm* symbols for qtwebkit-source? [21:15] ScottK: shall I put it on kubuntu.org? [21:15] Riddell: I think so. [21:16] sheytan: whenever you are ready, I have the code for separate logo ready [21:16] apachelogger: http://www.sendspace.com/file/d3aden [21:17] this will look odd :P [21:19] apachelogger: [21:19] http://www.sendspace.com/file/uqwnqw [21:19] try this [21:20] will still look odd [21:20] show me [21:20] kubuntu.org/news/kde-sc-4.8.1 how's that? [21:20] I tell you, engraved is the only good thing with this kind of background :P [21:24] sheytan: http://wstaw.org/m/2012/03/08/plasma-desktopkr1993.png [21:33] hey 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 ...? === sheytan_ is now known as sheytan [21:36] apachelogger: http://www.sendspace.com/file/acl96q [21:37] oh yes [21:37] strong drop shadow though [21:37] and the gear IMHO should have a dark gray rather than a light one [21:37] s/strong/stronger/g [21:37] apachelogger: You did something wrong... Try s/you/me/ or tell me "help sed" [21:38] i think it should be lighter :) [21:38] can i see it? [21:38] gotta change my script again [21:38] unless you give me just the logo :P [21:39] i won't [21:39] it's a part of image [21:39] but we need it as separate thing [21:39] or we run into scaling issues [21:40] http://wstaw.org/m/2012/03/08/plasma-desktophi1993.png [21:40] I thnk that is a step into the right direction [21:40] what do others think? [21:41] well, it's good enough for testing [21:41] sheytan: can you please try a version with stronger drop shadow [21:41] apachelogger: could you try without the logo and wit ha little text down to dots "starting up" [21:41] ? [21:41] and one with stronger drop shadow and darker gray for the logo [21:41] stronger looks bad [21:41] sheytan: text is a no-go unfortunately [21:42] we have no means to localize that [21:42] ah [21:42] it still isin't perfect :D [21:42] sheytan: just let me try [21:42] ok [21:42] see what people think [21:42] but I think this is the direction we should be heading [21:45] apachelogger: i must have a sleep with it. I will come up with a good solution for the logo [21:46] apachelogger: hm, doesn't look too bad [21:46] a bit too big spacing between logo and dots, generally speaking [21:47] sheytan: do you have to go to bed now or do I get my darker/stronger versions first? :) [21:49] apachelogger: http://www.sendspace.com/file/u5n2kb [21:51] sheytan: does that have a stronger drop shaddow? [21:51] a bit [21:51] try a bit more maybe [21:51] also please move the logo a bit down [21:52] http://wstaw.org/m/2012/03/08/plasma-desktopBE5164.png [21:52] half the space between logo and dots [21:54] i would make a non engraved version [21:54] feel free to, we'll just send the best versions to kubuntu-devel and have people decide what to use [21:55] sure [21:55] sheytan: oh, here is an idea [21:56] try the dot color for the ground of the logo [21:56] that is a bit lighter than what it is in the last version [21:56] + a bit darker/stronger drop shadow [21:56] + move it down a bit :) [21:57] rbelem: did you ever get a desing for the uds app? [21:58] apachelogger: well, what about using the kicker logo background with a kubuntu gear instead of K? [21:58] that would fit nicly too [22:00] kicker? [22:01] kmenu :D [22:01] that's kickoff [22:02] that has a background? [22:02] sheytan: whatever you think makes sense, but first I'd like to get my requested alteration ;) [22:03] sec ;d [22:03] hm [22:03] isn't bug 948664 qapt noawayds? [22:03] Launchpad 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/948664 [22:03] JontheEchidna: ^ [22:03] oh [22:04] JontheEchidna: ! [22:04] u here? [22:04] Oo [22:05] is it? [22:06] I think we outsourced it [22:06] well [22:06] depends on what you assume the issue is [22:06] qapt not finding the symbol [22:06] debug installer not realizing that it can't find any [22:09] apachelogger: http://www.sendspace.com/filegroup/%2BI4sh65zfntReSrxWwBwJA [22:10] sheytan: did you move it down a bit? [22:10] damn, nope [22:10] sec [22:11] http://wstaw.org/m/2012/03/08/plasma-desktopae5164.png [22:11] sheytan: aren't you kubuntu member? [22:11] apachelogger: nope [22:11] Oo [22:12] omg [22:12] you shoudl apply [22:12] you get hosting space on people.ubuntu.com then ;) [22:12] and an email addy [22:12] i wanted to but i don't remember how it ends [22:12] no, that blue logo sucks [22:12] see? i'm already getting bad ideas [22:12] need sleep :D [22:13] first gimme the drop shadow stuff moved a bit down [22:13] because I think that version could be the best engraved yet [22:14] perhaps a bit too dark [22:14] but other than that.... [22:16] or we make the dots darker [22:16] might also be a good idea [22:16] http://www.sendspace.com/file/fhc22k [22:18] http://wstaw.org/m/2012/03/08/plasma-desktopfE5164.png [22:18] let me pimp the dot color real quick [22:19] still dont like it :D [22:22] you'll have to deal with that :P [22:22] nope [22:22] i will create a new one :D [22:22] till i get the best [22:22] http://wstaw.org/m/2012/03/08/plasma-desktopU22248.png [22:23] sheytan: we have limited tim at hand :) [22:23] yofel: ^ [22:23] dont worry :D [22:24] sheytan: 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] I could live with that - how does that look during plymouth->kdm->ksplash->plasma? [22:24] sheytan: not very white, just a little lighter [22:24] dantti: too intrusive for precise [22:24] that'd require exessive code changes [22:25] apachelogger: isn't that just images? [22:25] * dantti has no idea how these things works... [22:25] full images of the logo to indicate progress sounds like a waste of space [22:26] apachelogger: well the gear has only 3 parts.. [22:26] so you'd have 6 images one for on and for off for each [22:26] and those would then need to be positioned [22:27] dantti: yes but it is busy indication not progress indication [22:27] well it's just an idea (/me tired of these dots) [22:27] so you need each of the parts in white and in colored [22:27] dantti: yes, I thought of it and I think it is a good idea [22:27] just not for precise [22:27] https://bugs.launchpad.net/ubuntu/+source/kubuntu-default-settings/+bug/553386 [22:27] ok I really don't understand the internals.. [22:27] FWIW [22:27] Launchpad bug 553386 in kubuntu-default-settings (Ubuntu) "Plymouth theme should use circular progress indicator" [Medium,Confirmed] [22:28] the dots are crap anyway [22:28] apachelogger [22:28] just give me time :) [22:28] dantti: oh, you mean only color one part at a time? [22:28] circular would even look nice with the gear [22:28] apachelogger: yup [22:28] sheytan: time is what we do not have ;) [22:28] the background is ofcourse not required, right? [22:28] 2 days max [22:28] dantti: hm, that could work, not sure how good it looks though [22:29] sheytan: you've got one ;) [22:29] okej [22:29] apachelogger: well in a nice gradient it could look nice... [22:29] sheytan: nope, but it would be nice ot have (background) [22:29] continuity of artwork etc. [22:29] i want a little gradient for background, and i have replacement for dots :) [22:29] in my head ofc [22:35] ok [22:35] gtg [22:35] bye [22:39] * apachelogger wonders how to get the logo out of the background [22:39] sheytan: nini [22:40] well [22:40] testing packages should be in kubuntue experimental by now [22:40] for precise [22:40] please go test drive [22:42] currently building [22:45] slow ol lunchpad [22:45] <3 [22:49] gosh ubuntu forums just as frustrated at canonical sysadmins as us serial-coder.co.uk/blog/2012/03/an-open-letter-to-the-ubuntu-community/ [23:26] Riddell: http://people.ubuntu.com/~apachelogger/screencasts/bootariya.mp4 what say you?