[00:19] yofel and Riddell: I added all the ones that are in the archive to the packageset (zeroconf-ioslave is not). [00:57] * ahoneybun updates his macbook to beta 2 [03:01] Quick question: How long is 14.04 being supported for, 3 years or 5? [03:02] SonikkuAmerica: 5 [03:02] ScottK: Thank you [03:02] Also, do you know about our new one-stop page in development, KubuntuLinks? [03:07] https://wiki.kubuntu.org/Kubuntu/KubuntuLinks <<< We're building a one-page landing where we have a jumping-off place for all things Kubuntu. You can check on what we're trying to build off off at LubuntuLinks and the Ubuntu GNOME One Stop Page (links are on the KubuntuLinks page) [08:38] shadeslayer: bug 1297139 [08:38] bug 1297139 in kde-workspace (Ubuntu) "startkde qdbus invocation broken when both qt4 and qt5 are installed" [Critical,Triaged] https://launchpad.net/bugs/1297139 [09:35] apachelogger: ack [09:35] ::workspace-bugs:: [1297139] startkde qdbus invocation broken when both qt4 and qt5 are installed @ https://bugs.launchpad.net/bugs/1297139 (by Harald Sitter) [09:44] shadeslayer: you know, had you written a model for drivermanager it probably would have needed no refactoring xD [09:44] k [09:44] what I am doing is moving the management components out of module.cpp [09:45] so really, we should just have initially gone with a model then that would have been separate all along ^^ [09:53] apachelogger: http://paste.ubuntu.com/7150443/ [09:53] better? [09:56] shadeslayer: why two lines? [09:57] standard convention in startkde as I see [09:57] XCURSOR_THEME=default [09:57] export XCURSOR_THEME [09:58] have a look at that trace of kdeinit4: http://pastebin.com/ubvcXtKw [09:58] very weird ... looks like kcrash also crashed? [09:59] shadeslayer: so you are upstreaming? [09:59] apachelogger: this patch? lolno [09:59] what does it matter then? :P [09:59] some variation of this probably [09:59] *shrug* fine [09:59] I don't care if its one way or the other [10:00] it's not like that script is a shining example of consistent or good shell practise ;) [10:00] I just thought it'd be better to have it consistend with the rest of startkde [10:00] *consistent [10:00] shadeslayer: like that other patch we do one-line export in? ^^ [10:00] export KDEDIRS=/usr/share/kubuntu-mobile-default-settings/:/usr/share/kubuntu-default-settings/kde4-profile/default/ [10:01] apachelogger: http://paste.ubuntu.com/7150476/ [10:01] heh [10:01] I am not even sure why it does it over two lines, when I implemented a shell some years ago I think the posix spec even said that export will set the variable [10:03] so, in terms of a posix shell export foo=bar is equal to foo=bar, export just adds the additional feature of the variable being replicated into children's envrionment [10:03] k [10:03] maybe I am misremebering, who knows [10:05] apachelogger: uploaded [10:05] Variables shall be initialized from the environment (as defined by XBD Environment Variables and the exec function in the System Interfaces volume of POSIX.1-2008) and can be given new values with variable assignment commands. If a variable is initialized from the environment, it shall be marked for export immediately; see the export special built-in. New variables can be defined and initialized with variable assignments, with the read or [10:05] getopts utilities, with the name parameter in a for loop, with the ${ name= word} expansion, or with other mechanisms provided as implementation extensions. [10:05] The shell shall give the export attribute to the variables corresponding to the specified names, which shall cause them to be in the environment of subsequently executed commands. If the name of a variable is followed by = word, then the value of that variable shall be set to word. [10:05] If a variable assignment precedes the command name of export but that variable is not also listed as an operand of export, then that variable shall be set in the current shell execution environment after the completion of the export command, but it is unspecified whether that variable is marked for export. [10:06] Riddell: ScottK: can you approve kde-workspace ? [10:06] so yeah, foo=bar\n export foo is a bit of a silly way to write it [10:07] "the shell shall" is fancy tho ^^ [10:08] anyway, complete read in case someone is interested http://pubs.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html [10:09] shadeslayer: I am wondering whether it would be worth equipping the class Driver with a Package * [10:09] thus removing all QApt interaction from DriverWidget [10:09] Package * ? [10:09] A package pointer [10:10] also move the is active logic outside [10:10] so driverwidget really just needs to iter all drivers and create appropriate widgets [10:12] quite a bit of refactoring [10:13] shadeslayer: what's new? [10:13] Riddell: fix for bug 1297139 [10:13] bug 1297139 in kde-workspace (Ubuntu) "startkde qdbus invocation broken when both qt4 and qt5 are installed" [Critical,Triaged] https://launchpad.net/bugs/1297139 [10:13] shadeslayer: you made the driverwidget contain processing logic :P [10:13] actually it isn't much though [10:13] DW::isActive goes away, moves outside class, ctor gets changed to not use qapt, but instead do a property check [10:14] k [10:23] hm [10:23] shadeslayer: are you sure that driverwidget currently contains the same logic to find the active driver as the gtk gui? [10:24] not exactly the same I think [10:24] * apachelogger thought that used an order rather than a first-match [10:24] but quite close [10:24] and mine uses an order too [10:24] oh? [10:25] ah yeah, manualinstall always trumps [10:25] yes [10:26] manualinstall > proprietary > opensource [10:26] shadeslayer: why is manual bound to qapt finding a package though? [10:27] you don't trust the backend? :P [10:27] is it? [10:28] hm [10:28] if package {} else { if (driver.manual) } [10:28] apachelogger: yeah I suppose it could be done like : if package && !driver.manual [10:30] but why is that dependent on package at all? [10:30] because QApt sometimes returns null ptrs to packages [10:31] yes, but what does that have to do with whether the driver the is manual or not [10:32] ah so you mean if driver.manual { } else if package {} [10:38] shadeslayer: yeah [10:39] sure, looks fine [10:50] http://paste.ubuntu.com/7150634/ [10:50] much fun has been had [10:55] oh [10:55] I just got reminded that chose to ignore broken l10n [10:55] hawt [10:57] oho [10:57] shadeslayer: http://paste.ubuntu.com/7150658/ that does not work btw [10:58] there's langauges that parse right-to-left ;) [10:58] >.> [10:58] so you appending on the right will make for silly localization [11:19] shadeslayer: what's supposed to happen when a driver is not installed manual but qapt still doesn't manage to find a package? [11:20] not create a button? [11:20] yep [11:21] because it would be impossible to do anything with it [11:21] apachelogger: while you're refactoring, maybe you could come up with a sane way to handle the case where there is exactly one driver for the device [11:23] shadeslayer: does that happen? [11:23] I'd rather think that would be handled in ubuntu-drivers-common [11:23] yes [11:24] shadeslayer: tell the pitti to not report such devices :P [11:25] its a pointless [11:25] how so [11:25] apachelogger: actually, I think it's a bug that my device only reports one driver [11:25] when infact it has 2 [11:25] ::qt-bugs:: [1254276] qt4-linguist-tools should depend on qtchooser @ https://bugs.launchpad.net/bugs/1254276 (by Daniel Lintott) [11:26] linux-firmware-nonfree and b43 [11:26] maybe qapt scrus up [11:26] nope [11:26] ubuntu-driver list only shows one [11:26] kcmshell(7874) DriverWidget::DriverWidget: encountered invalid driver 0x0 false for "GK104 [GeForce GTX 660 OEM]" [11:26] I broke it [11:26] ololo [11:27] staph breaking it :( [11:27] shadeslayer: well, bug in the commons thing then [11:27] oh lol, I know why ^^ [11:30] foreaching is quite the pain without pointers :'< [11:34] I think the refactored code might need a refactoring ^^ [11:34] that got spooky very quickly [11:35] on the plus side it's working as expected and didn't need pointers [11:39] why the qapt includes are in LibQApt/ rather than QApt/ is the greatest question of all time [11:44] 'Morning folks [11:47] anyone got amarok working with gstreamer 1.0 backend? [11:50] ah yes got it working [11:57] worked for me after I got the new qtwebkit [12:07] shadeslayer: Q: why are xapian failures handled seperately from init errors in terms of the UI? [12:13] shaaaaaaaaaaaaaaadeslaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaay0r [12:13] must be at lunchen [12:13] * apachelogger waves the fist [12:35] Riddell: any tasks for me today? [12:37] sgclark: whole new calligra for the packaging if you think you can handle it [12:38] sgclark: including backporting to saucy [12:38] Riddell: only one way to learn :) will need help with backport bit [12:40] In debian/watch no matching files for watch line , where is it? [12:41] Riddell: ^ [12:44] sgclark: oh it's probably still not public [12:45] depot? [12:45] sgclark: scp ftpubuntu@depot.kde.org:stable/calligra-2.8.1/*xz . [12:45] thanks! [12:45] also calligra-l10n to be packaged too, which is a real fiddle [12:45] Im getting browser-plugin-vlc crashes on 14.04 - anyone else getting those? [12:49] um, shouldn't do? [12:50] annoying thing is it doesnt give me apport or anything to report the bug [12:56] jussi: activate apport notifications then :P [12:56] apachelogger: how? [12:56] the opposite of how you deactivated them I guess [12:58] apachelogger: its a pretty much brand new install... [13:03] apachelogger: yeah, went off for lunch [13:03] apachelogger: no real reason, just being verbose I guess [13:04] jussi: something must be astray then [13:04] jussi: are you sure apport is enabled though? /etc/default/apport [13:04] shadeslayer: btw, you can connect signals to signals ;) [13:05] apachelogger: Ill look [13:05] Riddell: btw moving to gst 1.0 will break ktp call ui [13:05] shadeslayer: changed tracking is epically broken btw [13:06] s/will/might/ [13:06] shadeslayer meant: "Riddell: btw moving to gst 1.0 might break ktp call ui" [13:06] apachelogger: yes :( [13:06] the slot checking for changedness in driverwidget actually changes the reference value, as though it was saved which of course it wasnt [13:06] most peculiar [13:07] shadeslayer: hmm so it's a choice of auto-install + ktp call ui vs ugly codecs ? [13:08] * apachelogger broke sorting somehow [13:09] Riddell: no it's a choice between : having a untested port , which might cause applications like call ui to stop working but gets us out of the codec situation vs a codec situation vs landing pvlc [13:09] take your pick [13:09] shadeslayer: I'll be offline ~all day, so don't count on me to approve anything for at least 10 hours. [13:09] ScottK: ok === ghostcube_ is now known as ghostcube [13:14] apachelogger: its enabled (set to 1) [13:15] then I dunno [13:15] jussi: do you have a crash file in /var/crash [13:16] apachelogger: actually, yes, I do [13:17] then it should have a notification [13:17] * apachelogger cries [13:18] so by crashing something else Ive triggered another bug? [13:18] * jussi cries [13:18] jussi: kdebugdialog -> enable all -> logout -> login -> wait a minute -> paste .cache/upstart/startkde.log [13:18] jussi: also [13:19] does the crash file have a file with the same name and .upload or .uploaded appended? [13:19] no [13:19] k [13:19] only 1 file in /var/crash [13:23] apachelogger: pm'ed it to you [13:24] arrr [13:25] shadeslayer: Q: what exactly happnes if I have nvidia binarily installed and switch to nuvoulyuluo [13:26] jussi: well, the good news is there is no output, the bad news is there is no output [13:26] apachelogger: it installs the nouveau driver .... but doesn't remove the nvidia one [13:26] jussi: oh, actually, you might have to wait up to 5 minutes [13:26] there's a timer somewhere [13:26] I suspect it keeps nvida active in that case :/ [13:26] lets try [13:26] shadeslayer: #logicfail [13:27] oh wait, my kcm is still broken [13:27] apachelogger: yes :/ [13:29] row row row ye boat gently over the seas, and if you see a kraken spawn don't forget to scream [13:29] shadeslayer: what does the gtk thingum do [13:29] gtk thingum? [13:29] the gtk gui [13:29] don't remember off the top of my head [13:30] * shadeslayer looks [13:31] apachelogger: any better? [13:32] jussi: nay [13:32] :/ [13:32] jussi: alt-f2 -> kded -> in the bottom list make sure notifiction helper is actually started [13:32] alas, I think it creates no output if there's nothing to talk about [13:32] so it may simply not want to process the file [13:33] !info kubuntu-driver-manager trusty [13:33] apachelogger: http://paste.kde.org/pdnrvs0qk [13:33] kubuntu-driver-manager (source: kubuntu-driver-manager): Driver Manager for Kubuntu. In component universe, is optional. Version 14.04ubuntu3 (trusty), package size 24 kB, installed size 129 kB [13:33] notification helper is started [13:33] shadeslayer: right [13:34] so removes the package [13:37] * shadeslayer rages at pam [13:39] jussi: paste again [13:39] jussi: are you sure you enabled everything in kdebugdialog? [13:39] ohohoh [13:39] jussi: you are on trusty, right? [13:39] !info kubuntu-notification-helper trusty [13:39] kubuntu-notification-helper (source: kubuntu-notification-helper): Kubuntu system notification helper. In component universe, is optional. Version 14.04ubuntu8 (trusty), package size 53 kB, installed size 268 kB [13:40] apachelogger: yes [13:40] kDebug() << "ApportEvent ::" [13:40] there should be debug output regardless of whether it actually will process the files [13:44] hm [13:44] Riddell: can you reset my password on qa.kubuntu.co.uk? [13:45] shadeslayer: please test the master [13:45] still doesn't remove stuff yet [13:47] apachelogger: driver("nvidia-331-updates" recommended[false] free[false] fromDistro[true] builtin[false] manualInstall[false] fuzzyActive[false] package[0x0]) [13:47] that 0x0 doesn't look good [13:47] clicking apply doesn't do anything [13:49] ::workspace-bugs:: [1297139] startkde qdbus invocation broken when both qt4 and qt5 are installed @ https://bugs.launchpad.net/bugs/1297139 (by Harald Sitter) [13:51] shadeslayer: huh [13:51] shadeslayer: doesn't want to change anything then :P [13:52] wat [13:57] apachelogger: err, what is it you want me to do? [13:57] shadeslayer: oh, me stupid [13:57] shadeslayer: forgot to actually the function ^^ [13:57] jussi: wait for the log to contain ApportEvent [13:58] if it doesn't then your setup is broken somehow [14:09] shadeslayer: pull [14:09] yeah works now [14:10] "fix the actual, ehm, management, the manager is, ehm, supposed to do.." :P [14:13] apachelogger: btw what does kubuntu-notification-helper check for reboots? [14:16] an asortment of files [14:16] well [14:16] two [14:16] ^^ [14:16] which ones [14:16] read the source [14:16] pft [14:17] src/daemon/rebootevent/rebootevent.cpp: if (!QFile::exists("/var/run/reboot-required") && !kdelibsChanged) [14:17] src/daemon/rebootevent/rebootevent.cpp: QFile file("/var/run/reboot-required-kdelibs"); [14:18] that was very hard [14:18] took me one cd and a grep [14:18] geez [14:18] shadeslayer: give that kcm a testero please [14:18] I cannot test debconf etc. [14:18] apachelogger: works on nvidia machine [14:19] I can change drivers, shows correct drivers after change [14:19] apachelogger: I vaguely recal that it used to inform the user via the kcm to reboot [14:21] shadeslayer: what? no? [14:21] ok [14:21] phonon kcm tells the user to logout and login [14:21] but I don't think there is any KCM that notifies about reboots [14:21] considering that's a system level thing I doubt KCMs have much business talking about that :P [14:24] hm [14:24] is launchpad broken? [14:24] why? [14:25] I have a number of builds stuck in queue for 6 hours [14:25] and they keep saying they will start in like 30 minutes [14:25] I uploaded KDE 4.13 for Saucy [14:25] which would explain it [14:25] s/would/might [14:25] ah, I guess [14:25] on that note [14:25] still odd that the queue estimate is so rubbish [14:25] Riddell: can you plz change my password for qa.kubuntu.co.uk [14:26] I mean "starting in 30 minutes" for 6 hours I have not seen before ^^ [14:26] "starting in 6 hours" OTOH I have seen :P [14:26] I see > 700 jobs for 25 builders [14:26] shadeslayer: whats your user [14:26] shadeslayer [14:31] so I have PAM somewhat working, I've figured out where all the configs and what not go [14:31] but there be bugs [14:35] shadeslayer: what I don't get, why can the kmessagewidgets be closed [14:35] it's not like the user would get anything from closing them as they go away on their own anyway [14:36] shadeslayer: please be releasing master [14:38] okay [14:38] PAM is blocked till next week [14:42] Riddell: might want to approve kubuntu-driver-manager [14:44] also, FYI http://qa.kubuntu.co.uk/ninjas-status/build_status_4.12.95_saucy.html [14:46] actually I think driver-manager can wait [14:46] already uploaded [14:46] not critical for b2 IMO [14:47] shadeslayer: yeah, it can sit in the queue [14:47] okay [14:47] apachelogger: fwiw we still don't have ISO's [14:47] so I think it's fine [14:47] whatever works :P [14:48] ovidiu-florin: in case I forgot to ask last week, where are we on the wordpress migration ;) [14:48] + // b) set driver.fuzzyActive, see blow [14:48] :D [14:49] ? [14:49] * apachelogger wonders what to write about 4.13b1 [14:49] it's magic [14:50] how? :P [14:50] there's a whole comment block explaining how the activity order works :P [14:50] apachelogger: https://www.youtube.com/watch?v=N7-fZJaJUv8 [14:50] do we have ktp 0.8 final yet? [14:50] magic ^^ [14:52] lol [14:53] shadeslayer: that's what you get for not sticking to your original design [14:54] plasma is not a file manager, neither is the folderview plasmoid, allowing it to go anywhere near the domain of doing file management is shooting yourself in the foot [14:54] so that's why there's that video [14:55] because people have grand design ideas, then don't stick to them and then stuff ends up being weirdly patched together nonesense because it was not in the original grand design ideas [14:55] q.e.d. [14:55] * apachelogger looks for something to eat [14:56] plasma's design looks delicious :P [15:03] apachelogger: http://download.kde.org/stable/kde-telepathy/0.8.0/src/ [15:03] been up for a week [15:08] shadeslayer: do we have it in the archive tho? [15:08] parently not [15:08] Version: 0.7.80ubuntu1 [15:09] kubotu: newversion kde-telepathy 0.8.0 [15:09] Package kde-telepathy doesn't exist yet! [15:09] kubotu: newversion meta-kde-telepathy 0.8.0 [15:09] https://bugs.launchpad.net/bugs/1297351 [15:10] nope [15:11] there was no announcement [15:20] well that is rude [15:20] d_ed: is there a reason ktp 0.8 was not announced? [15:21] d_ed was on vacation [15:21] poke mck182 [15:27] Sput: when is 0.10 final due? [15:40] shadeslayer, Riddell: beta2 updated https://wiki.ubuntu.com/TrustyTahr/Beta2/Kubuntu [15:40] I pulled the 4.13 description out of my nose [15:40] bug section will need doing [15:41] although to be honest, I think listing the bugs when there is a link to the lunchpad filter seems a bit of a waste of time [15:42] https://bugs.launchpad.net/ubuntu/+source/kde-runtime/+bug/1292471/comments/1 [15:42] :D [15:42] Launchpad bug 1292471 in kde-runtime (Ubuntu) "Missing locale notification does not inform about package" [Undecided,Incomplete] [16:04] Can I put stuff in http://bazaar.launchpad.net/~kubuntu-packagers/+junk/kubuntu-automation/view/head:/lintian-ignore.json lintian overrides to clean up? [16:04] Riddell: or anyone with answer [16:10] sgclark: sure, but what do you want to clear up? [16:15] shadeslayer: rebuilding, will paste the list for approval before I make the overrides [16:16] okay [16:17] apachelogger: anything off the top of your head that needs doing? [17:20] apachelogger: lovely, thanks [17:20] shadeslayer: beta testing! [17:20] shadeslayer: can't you change your own password on qa.kubuntu.co.uk ? [17:30] sgclark: getting on ok? [17:31] Riddell: yep :0 I need to know if these are ok to put in overrides or need investigation: http://paste.ubuntu.com/7152244/ [17:33] Riddell: also http://paste.ubuntu.com/7152258/ [17:34] * Riddell looks [17:37] sgclark: for the first one http://paste.ubuntu.com/7152244/ the only one I think I'd not include is icon-size-and-directory-name-mismatch since I would like those fixed upstream [17:38] Riddell: ok, I can fix those in my off time as well. [17:38] sgclark: thanks :) [17:39] sgclark: libkdeinit4_calligrawords.so I'm not really sure but it seems to be listed in both calligrawords-common.install and calligrawords.install when it shouldn't be in either [17:39] but maybe it's listed in both because dh_movelibkdeinit doesn't handle it [17:40] I'd remove it from calligrawords-common.install at least [17:40] and see if it sorts itself when removed from calligrawords.install [17:40] ok [17:40] although that would need another compile which will take another age to do so don't worry if it's too much [17:40] I really don't mind at all [17:44] Riddell: anything else need attention? [17:45] Riddell: image-file-in-usr-lib ok to override? [17:46] i se gstreamer in updates and it is going to ne installed not update it wasnt here by default before ? [17:52] sgclark: yeah I think that's what we have to do with QML [17:52] soee: now gstreamer1.0 not gstreamer0.10 [17:53] Riddell: any important chnage sor just version number ? [17:54] whole different API [17:54] soee: so do test it [17:56] Riddell: all these package-name-doesnt-match-sonames safe to override? [17:57] sgclark: yes I think so, lintian likes a library to be in its own package but often that's overkill [17:57] and since we don't install the library headers nothing can use it anyway [17:57] lol yeah, that would certainly be the case here [18:05] sgclark: by the way new KF5 due on Friday [18:05] sgclark: then the Plasma release which was due a couple of weeks ago is now due next week (and I think I'm the release manager) [18:06] Riddell: ok, I will be out of town Saturday -Monday, will bring my laptop and try to do some. Can't promise though have no idea on connection. [18:06] Riddell: will be fully available Tues+ though [18:07] sgclark: lovely [18:08] looking forward to plasma :) [18:12] Riddell: how about these? calligraplan: unusual-interpreter #!kross [18:13] sgclark: kross is an unusual interpreter but a perfectly valid one :) [18:13] ok [18:14] it's part of kdelibs and makes it easy to add scripting interfaces to your apps that can be used from python, ruby etc [18:14] but I think only calligra uses it === jono is now known as Guest59567 [18:15] Riddell: this one? calligraplan: jar-not-in-usr-share [18:16] Riddell: and finally: 4 outdated-autotools-helper-file 3rdparty/google-breakpad [18:16] architecture independent files should usually be in /usr/share/ and as java isn't fully compiled that counts for jars too - not really important though [18:17] sgclark: fixing the jar issue would mean working out how that calligra plugin looks and find the .jar file and fixing it, beyond what I want to do since it doesn't cause any problems having it in /usr/lib [18:18] Riddell: ok I will leave as lintian error in case someone wants to look at it at a later time. [18:18] what about the last outdated-autotools [18:19] sgclark: and we can't really update those autotool files since it's just a fork of a 3rd party project, would need to get google-breakpad to update its files but I presume there's a reason they need to work it like google-breakpad not being a very open project [18:19] ok, leaving that as well [18:19] Thanks! rebuilding now [18:22] Riddell: or yofel: err one last item: http://paste.ubuntu.com/7152438/ [18:31] Riddell: I forgot my current password [18:31] I had it stored as a encrypted file on my disk [18:32] but Apple formatted my computer [18:32] sgclark: that should preferably be fixed... even if it won't cause problems most of the time [18:33] shadeslayer: I know I probably sound totally annoying, but ever heard of "backups" =P [18:33] I forgot to back that particular thing up :P [18:33] lol [18:33] I have everything else [18:33] apart from .zshrc and some passwords [18:33] oh well, that's something at least ^^ [18:34] oh right, no .pbuilderrc too xD [18:35] shadeslayer: don't you have an ssh key? [18:35] Riddell: yes, but required sudo priviliges to switch to the kubuntu user [18:42] apachelogger: today [18:42] I shall do testing tomorrow [18:42] if there's testing to be done :) [18:45] apachelogger: tagging and tarballing at least; don't think I feel like writing release announcements tonight :P [18:45] shadeslayer: lots of beta testing needed, although a respin needed first for your driver-manager update === Mamarok_ is now known as Mamarok === Quintasan_ is now known as Quintasan [23:05] apachelogger: http://quassel-irc.org/pub/quassel-0.9.3.tar.bz2 http://quassel-irc.org/pub/quassel-0.10.0.tar.bz2 and ScottK pinged [23:06] It will be later tonight before I can look. [23:07] Riddell: If you want ^^^ in for beta 2, someone else will probably need to package it. [23:11] ScottK: yeah, sorry, took a few hours longer than I hoped :/ [23:12] then again, should still be two days until the freeze? [23:52] Sput: what's the difference between the two [23:55] Riddell: 0.10.0 is a feature release, and the other one is the last bugfix release for 0.9 (it contains the fixes from 0.10, but no new features) [23:56] 0.9.3 is useful for distros which believe in this stable release and feature freeze thingy :)