/srv/irclogs.ubuntu.com/2014/06/30/#ubuntu-unity.txt

* tsdgeos reports back from holiday week #107:04
tsdgeosbitten by mosquitos all over07:04
tsdgeoshave to type slower because of swollen mosquito-bit finger07:04
tsdgeosam i going to be killed if i mention we should move to Qt5.3.1 insteadd of Qt5.3.0?07:13
tsdgeosmzanetti: Saviq: what's the status of https://code.launchpad.net/~aacid/unity8/swipe_down_close_no_remove_dash/+merge/221996 ?07:53
mzanettitsdgeos: Saviq found some issues and put it back to needs review07:56
mzanettitsdgeos: I have then done/fixed it on top of the QtComp branch07:56
tsdgeosi see07:56
tsdgeosmzanetti: can you comment in https://code.launchpad.net/~aacid/unity8/swipe_down_close_no_remove_dash/+merge/221996 saying it's done in the qtcomp branch?08:09
tsdgeosso it's clearer it's "done-ish"08:09
mzanettitsdgeos: ack08:11
Cimimako improved so much over the last months08:21
Cimiexciting08:21
mhr3tsdgeos, could you take a look at https://code.launchpad.net/~unity-team/unity8/caching-image-provider/+merge/224415 pls? it seems to be causing memory corruption and i have no idea why08:43
tsdgeosmhr3: how does the memory corruption manifest?08:46
tsdgeosi.e. what do i do to make it crash?08:46
mhr3Saviq, also, async image providers suck, qt is using a single thread to request them, so basically all requests to custom image providers get serialized08:47
mhr3tsdgeos, it's kinda random and i can make it happen only on armhf08:47
mhr3tsdgeos, basically play with it on phone and it crashes after a while08:47
mhr3tsdgeos, fwiw it's in 00508:47
tsdgeosok08:48
Saviqmhr3, requests, maybe, but the provider can return and fill the image later, no?08:48
Saviqmhr3, if not, QTBUG08:48
mhr3Saviq, nope, the sync part of it (the actual ->requestImage() calls) is serialized cause it's being done by just one thread08:50
tsdgeosmhr3: not the cause of the problem for sure but i'd say if (uri.search(/^http(s)?:/) == 0) { should be if (uri && uri.search(/^http(s)?:/) == 0) { since we're passing down stuff we previously were not checking was undefined or anything08:51
Saviqmhr3, well, yeah, but I was under the impression that you can return an empty image and fill it later, isn't that how asyncing custom providers work?08:52
tsdgeosSaviq: nope08:52
mhr3Saviq, not as far as i know, after you return the image, it will try to just upload it to the gpu, no?08:52
tsdgeosasync providers just promise they won't crash if running in a multithread env08:52
Saviqmhr3, tsdgeos, :|08:53
Saviqmhr3, OTOH, the provider is just a single object, right (as opposed to a factory)?08:53
Saviqmhr3, so that kinda precludes multiple requests at the same time08:54
mhr3Saviq, not really, the docs do explicitely say that the methods image provider implements need to be reentrant08:54
Saviqmhm08:54
Saviqmhr3, in any case, that calls for a QTBUG to find out what's the deal and what can be done about it... like 90% of our SDK uses a custom image provider (via the image://scaled/ provider for @blah) :|08:55
mhr3well, the thread is per QQmlEngine, but i haven't seen there being multiple QmlEngine, when can that happen?08:57
tsdgeosmhr3: i really can't find anything wrong in the code, but otoh i'm not really much into std::future (i should look at them more carefully)09:07
mhr3tsdgeos, i think it actually has something to do with the future/promise09:08
tsdgeosmhr3: might as well be that the glibc/arm implementation of it is not totally perfect09:08
tsdgeosit's not like stuff like that hasn't happened before09:09
mhr3dont even want to think about that09:09
mhr3tsdgeos, were you able to rep the crash?09:09
mhr3maybe it's just me in the end? :)09:10
tsdgeosmhr3: still flashing the phone, just came back from a week of holidays today09:10
mhr3tsdgeos, right, sorry for jumping on you like that :)09:11
tsdgeosit's ok :)09:11
mhr3guess i could try to reimplement it using simple mutex and condvar09:12
tsdgeosmay be one way to try to get it fixed09:23
tsdgeosmhr3: if you give me soem time i'll try it on the phone and see if i can make it crash too09:23
CimiSaviq, I updated infographics apart moving infographics code to sdk, which I will start now09:41
SaviqCimi, ktx09:42
mhr3tsdgeos, think i fixed it, will rebuild the silo09:53
tsdgeosmhr3: cool09:53
mhr3tsdgeos, oh, should add the js check.. how do i check if something is string?09:55
mhr3cause ints won't have .search() :)09:55
tsdgeosmhr3: there's the tyeof thing09:55
mhr3-    if (uri.search(/^http(s)?:/) == 0) {09:57
mhr3+    if (typeof uri == "string" && uri.search(/^http(s)?:/) == 0) {09:57
mhr3^^ k?09:57
=== davmor2_ is now known as davmor2
tsdgeostriple equal to be more JS09:58
=== lool- is now known as lool
mhr3Saviq, btw anyone trying u8 on the device with valgrind? it's *very* unhappy about things10:13
mhr3might have something to do with hybris, but still... at least having a suppressions file would be nice10:14
Saviqmhr3, tsdgeos has experience10:23
tsdgeosmhr3: i just ignore all that crap10:23
tsdgeos:D10:23
tsdgeosmhr3: agreed someone that knows about android should look at it and either fix it or provide a supressions file10:24
mhr3tsdgeos, do you also get the please use --workaround-gcc-bug thing?10:24
tsdgeoshmmm10:24
tsdgeosdon't remember i get that no10:24
mhr3hm, when i tried it, it started to print hundreds of those, so after a while it just went - oh yea, too many error, i won't report any more10:25
tsdgeoshmmm10:26
tsdgeosmhr3: does adding --smc-check=all-non-file help?10:26
mhr3haven't tried that10:26
tsdgeosgive it a go10:27
tsdgeosi think i'm using it10:27
mhr3yea, from reading about that, i guess it could help10:28
mhr3don't feel like trying to launch it under valgrind again, too much pain and takes ages :P10:29
tsdgeos:D10:33
greybackany chance we could get https://codereview.qt-project.org/#/c/84026/ landed in our Qt5.3? I really miss my scrollwheel in QtC10:40
tsdgeosgreyback: let's just update to 5.3.1 :D10:42
greybacktsdgeos: or that :)10:42
tsdgeosi'm confused :/10:45
tsdgeoshttp://paste.ubuntu.com/7725836/10:45
tsdgeoshow can root be null :/10:45
greybackdat be f*cked up yo10:46
greybacktsdgeos: does it crash?10:47
tsdgeosgreyback: i can make it assert or crash or work depending on the elements of that list i comment out10:47
greybacktsdgeos: eeek10:48
tsdgeosyep10:48
mhr3Saviq, ok, so i'm ready to land 005, seems like it's no longer crashing which is good :) the question is are we ok about loosing http pipelining?10:52
Saviqmhr3, QNetworkAccessManager doesn't do it?10:53
mhr3Saviq, it does, but as i said earlier, requests from image provider will be serialized, so it will never ask for an image until the previous one finishes loading10:53
Saviqmhr3, well, as it's cached... shouldn't it be better anyway?10:55
mhr3it should... once they fix the servers10:55
Saviqmhr3, most times we shouldn't even hit the servers, right?10:55
Saviqbased on cache control?10:55
mhr3yea.. it's just they don't serve cache control yet :)10:55
Saviqso it'll get worse before it gets better? ;)10:56
mhr3kinda... it will still use the cache, but it will have to validate it first10:56
Saviqah so just the HTTP header?10:56
mhr3yep10:57
mhr3fwiw that's like 90% of the latency :P10:57
Saviqtrueth10:57
mhr3but will still save quite some data10:57
Saviqmhr3, what's the feel btw?10:57
mhr3Saviq, hm, let me reflash current image to be able to tell :)10:58
mhr3Saviq, or you can check 00510:58
=== gatox_ultra is now known as gatox
=== MacSlow is now known as MacSlow|lunch
Saviqdednick, hmm DashContent failure in move-indicator-qml now?11:18
dednickSaviq: hm. i'll take a look11:18
sil2100Saviq: hi! On the last image we noticed a crash happening during unity8 tests, probably causing a test failure11:42
sil2100Saviq: psivaa filled in a bug for it:11:42
sil2100Saviq: https://bugs.launchpad.net/ubuntu-app-launch/+bug/1329141 <-11:42
ubot5Ubuntu bug 1329141 in qtdeclarative-opensource-src (Ubuntu) "qmlscene crashed while running test_can_launch_multiple_applications" [Undecided,Incomplete]11:42
sil2100Saviq: it might not be unity8 here at fault, but still I guess you would be able to judge the best11:43
Saviqsil2100, if it's qmlscene crashing, then it's not unity8 at fault for sure ;)11:43
Saviqsil2100, if you get some symbols, please let us know11:44
sil2100Sure :)11:47
mhr3Saviq, when you know what you're looking for, you can see that things take longer to load11:49
Saviqmhr3, I'm starting to wonder... maybe we just need a caching proxy on the device :P11:50
Saviqmhr3, what's the ETA on fixing the servers?11:53
mhr3Saviq, i did have the same idea... but shelved in the crazy folder :P11:53
Saviqnot so crazy now!11:53
mhr3Saviq, for click store it was on staging on friday, but had some issues11:54
mhr3Saviq, we could still go with what you did - set the cache on the global QmlEngine's network access manager11:55
mhr3then it will at least still do the pipelining11:56
mhr3but then we won't be able to cache scaled images11:57
Saviqmhr3, I'm leaning towards that, we were just missing the per-request setting to use the cache on no network?11:57
mhr3that shouldn't even be necessary when the servers are fixed11:57
Saviqwell, I'd rather not rely on all servers being fixed ;)11:58
Saviqmhr3, the scaling is most important for svgs, and we could put those through a different code path than the rest11:58
CimiSaviq, i am lost with the inline diffs12:05
Cimido you have a tip to see where you comment?12:05
SaviqCimi, click on "see inline diff" in the comment header12:05
SaviqCimi, and then scroll, unfortunately12:06
CimiSaviq, but sends me to your first comment12:06
Saviqto find12:06
Ciminot the new added12:06
SaviqCimi, right, if it's on the same revision, it's not great12:06
=== alan_g is now known as alan_g|lunch
facundobatistaHolas12:08
CimiSaviq, I think it doesn't work great with the current implementation, can we stick to the old reviews until they fix the ui?12:09
SaviqCimi, no12:09
SaviqCimi, I will use it12:09
CimiI'm scrolling in this super long page trying to find your comments12:09
Saviqit's not great, but it's still much better12:09
Cimiand where you replied12:09
SaviqCimi, Ctrl+F12:10
Cimibefore was simply looking at the comment, easy12:10
Cimiso I should ctrl f saviq? :)12:10
SaviqCimi, yeah, you know it was me that commented12:10
CimiSaviq, so basically what's wrong is the wrapper?12:11
SaviqCimi, its existence12:11
CimiI thought it was fine12:11
Cimiabstract programming12:11
SaviqCimi, just for the purpose of having 2 props, there's no point in adding another object / hierarchy level12:12
CimiSaviq, that's because now we have two props12:12
Cimiwe might change implementation12:12
Cimianyway ok12:12
SaviqCimi, when we change the implementation so that it requires a wrapper, let's!12:13
CimiSaviq, so I should remove the first preload in tests/qmltests/CMakeLists.txt ?12:13
SaviqCimi, LD_ only matters for linking, for dynamically loaded libraries12:14
CimiI thought I needed it for test/mocks/Infographics12:14
Cimito avoid using thr system one12:14
SaviqCimi, ld doesn't know anything about QML, qmldir or whatnot12:14
SaviqCimi, that's what you have QML2_IMPORT_PATH for12:14
Cimiok12:14
CimiSaviq, although makes testing the infoghraphics harder12:17
SaviqCimi, what does?12:17
CimiSaviq, because you'd have to use the whole greeter then12:17
SaviqCimi, when?12:17
CimiSaviq, merging Greeter/Infographics.qml into Greeter/GreeterContent12:17
SaviqCimi, I'm not saying you should do that12:18
CimiSaviq, I'd have to move the tests into tstSingleGreeter12:18
SaviqCimi, I'm saying the Item in Infographics.qml is not needed12:18
Cimish using CrossFadeImage directly?12:18
Saviqyes12:18
Cimithat was abvious12:18
Cimimy bad12:18
=== MacSlow|lunch is now known as MacSlow
Saviqmhr3, so what do we do, what do we do? it's a rock and a hard place :|12:25
mhr3Saviq, i want proper async image providers :/12:26
Saviqmhr3, I *know*, and a way to override the default one...12:27
mhr3Saviq, if we're not going to do caching of scaled images, i think we should just override the network access manager12:28
mhr3Saviq, although you didn't like it's feel either when you tried it right?12:28
mhr3its*12:28
Saviqmhr3, that was non-authoritative...12:28
Saviqmhr3, I never tried on device12:28
Saviqmhr3, and spent like 2 minutes on this12:29
mhr3Saviq, hm, let's revisit it, i'll build it in 005 and see if it's better12:32
Saviqmhr3, yup, thanks12:32
mhr3Saviq, can you change owner of https://code.launchpad.net/~saviq/unity8/cache-network-data to unity-team?12:33
=== alan_g|lunch is now known as alan_g
kgunntsdgeos: welcome back!13:11
tsdgeoskgunn: hi13:12
kgunndednick: do you just need a volunteer for review ?13:12
kgunnhttps://code.launchpad.net/~nick-dedekind/unity8/indicator.call-hint/+merge/21862713:12
dednickkgunn: hm. nearly. i'm busy fixing the tests.13:13
dednicki'll put it back in wip13:13
kgunndednick: its fine...13:14
kgunnpretty large code diff, i never realized it was that meaty13:14
paulliuSaviq: if I want to test the logout Dialog stuff. I'll need to trigger a fake dbus event. Does that mean I need to go writing some code in tests/mocks/Unity/Session? Is tests/mocks for that?13:49
Saviqpaulliu, yeah, you want a mock object that doesn't actually talk DBus13:51
Saviqpaulliu, but you can control from the test13:51
paulliuSaviq: ok. got it.13:51
CimiSaviq, branch updated13:51
SaviqCimi, k13:52
=== dandrader is now known as dandrader|afk
=== alan_g is now known as alan_g|tea
=== alan_g|tea is now known as alan_g
=== dandrader|afk is now known as dandrader
Saviqdednick, could you go through https://code.launchpad.net/~unity-team/unity8/suru-switch/+merge/207991 please14:55
Saviqdednick, stuff this depends on is built in silo 00414:55
Saviqdednick, ah crap, need to put the image thing in settings components, settings UI is broken with it, too :|14:57
dednickSaviq: image thing?14:57
Saviqdednick, I had to re-do SDK's Icon14:58
Saviqdednick, to maintain aspect ratio of icons14:58
Saviqdednick, bug #128423514:58
ubot5bug 1284235 in Ubuntu UI Toolkit "Icon has to be sized explicitly" [Undecided,Incomplete] https://launchpad.net/bugs/128423514:58
tsdgeosdandrader: http://paste.ubuntu.com/7726801/ looks scary14:59
dednickSaviq: property string iconPath: "/usr/share/icons/suru/status/scalable/%1.svg" - is that your fix for it picking up the lower prioirty icons?15:03
Saviqdednick, not really, I need to load the images directly through Image15:03
Cimimterry, we have a crash on the wizard with the wifi15:03
Saviqdednick, themed icons can only be square15:03
Saviqdednick, side-effect is indeed that the priority problem is gone15:04
Saviqdednick, it's a nasty hack, but we won't fix it properly in time15:04
Saviqdednick, and we need to land this shit finally15:04
dednickSaviq: uhuh :)15:05
Saviqdednick, another solution welcome15:05
Cimimterry, https://bugs.launchpad.net/ubuntu/+source/ubuntu-system-settings/+bug/133420315:05
ubot5Ubuntu bug 1334203 in ubuntu-system-settings (Ubuntu) "ubuntu-system-settings-wizard crashes/freezes when using the back button" [High,Incomplete]15:05
Cimimterry, I had a look, and I will have a look now15:05
Cimimterry, if you have ideas... throw15:06
dednickSaviq: write a c++ image component?15:06
Cimimterry, from what I have seen, it's the property http://paste.ubuntu.com/7710506/15:06
mterryCimi, I haven't looked into that yet.  Not sure off the top of my head15:06
Saviqdednick, that doesn't solve the problem that themed icons can only be square by definition of the icon theme15:07
Saviqdednick, so would be a workaround just as the one I'm proposing15:07
mterryCimi, ah maybe destroying that property is buggy15:07
Saviqdednick, the index.theme files only deal with one-dimensional "size" of the icon, resulting in the assumption that the icons are square15:07
Saviqdednick, which means you'd need to load the image file to find the aspect ratio out, at which point the whole icon theme system becomes kinda useless15:08
mterryCimi, maybe also related to bug 133529815:08
ubot5bug 1335298 in ubuntu-system-settings (Ubuntu) "ubuntu-system-settings-wizard crashes on stop" [Undecided,New] https://launchpad.net/bugs/133529815:08
dednickSaviq: hm. I'm sure the bluetooth icon was rectangluar at some point.15:08
Saviqdednick, sure, that's why unity7 has its own loading implementation, too ;)15:09
dednickSaviq: although that may have been due to some aspect15:09
Saviqdednick, battery is rectangular15:09
Cimimterry, but not bug on our side?15:09
Cimimterry, do you know what can we do to workaround this property?15:09
mterryCimi, I don't know if it's a bug on our side or not15:10
Cimimterry, I don't think it is15:10
Cimimterry, commenting out that code makes the wizard stop crashing15:10
mterryCimi, does other code that uses UnityMenuAction have this problem, is what I'm wondering?15:11
mterryCimi, i.e. is it a problem with UnityMenuAction, or how we use it15:11
Cimidednick, about the crash with UnityMenuAction15:12
Cimihttp://paste.ubuntu.com/7710506/15:12
Cimidednick, this makes the wizard crash on some occasions15:12
Cimidednick, do we have similar crashes somewhere else on the platform?15:12
Cimidednick, are we using it wrong in the wizard?15:13
dednickCimi: can you send a stacktrace?15:13
Ciminot sure hot to get it15:13
Cimimterry, to get stacktrace we attach gdb right?15:13
mterryCimi, yeah15:13
Cimiwhich dbg symbols we need?15:13
dednickCimi: apport-cli /var/crash/XXX.crash15:14
Cimimterry, in order to reproduce bug I need to have wifi off15:14
Cimiso might try to manually get dbg15:14
mterryCimi, you probably want qtbase5-dbg at least15:14
mterryCimi, not sure which package has UnityMenuAction15:15
Cimimterry, qmenumodel15:15
Cimibut I don't see dbg for it15:16
dednicklibqmenumodel15:16
Cimidednick, and debug symbols?15:16
=== Malsasa_ is now known as Malsasa
dednickCimi: libqmenumodel0-dbgsym15:19
Cimiit's not on the phone15:19
Cimiwhat shall I enable?15:19
Cimiwho knows guys?15:20
dednickCimi: https://wiki.ubuntu.com/DebuggingProgramCrash15:20
dednickon phone presumably15:20
dednickSaviq: you need me to check that branch out now, or you doing something in usc for it?15:21
Saviqdednick, yeah, I'll have another usc branch for this in a few mins hopefully15:22
Cimidednick, mterry http://paste.ubuntu.com/7726901/15:23
Cimiso yeah I need those symbols15:23
dednickCimi: that trace was fine.15:27
=== pete-woods is now known as pete-woods-eodlu
dednickCimi: where is the code?15:31
Cimidednick, http://bazaar.launchpad.net/~system-settings-touch/ubuntu-system-settings/trunk/view/head:/wizard/qml/Pages/20-wifi.qml15:34
Cimiline 121 I think15:34
tsdgeoskgunn: Saviq: some managementarial decision needed at https://bugs.launchpad.net/unity8/+bug/133259815:35
ubot5Ubuntu bug 1332598 in Unity 8 "make testShell crashes" [Critical,In progress]15:35
tsdgeosupstream guys that can decide on that bug seem to be away for a while15:36
Saviqdednick, https://code.launchpad.net/~unity-team/ubuntu-settings-components/status-icon/+merge/22503415:37
tsdgeosdandrader: can you confirm that your crash is also gone if you use the patch from https://codereview.qt-project.org/#/c/88717/ ?15:37
dednickhm. network indicator doesnt seem to work on desktop anymore...15:38
dednicktedg: ^ ?15:38
dandradertsdgeos, will try it now15:38
dandradertsdgeos, yes, it does fix it!15:43
tsdgeosSaviq: so how do we proceed in here? ↑15:44
dednickCimi: hm. doesnt seem to crash on desktop.15:44
dednickCimi: does it always happen under certain cirumstances? how to reproduce?15:46
dandradermzanetti, hey, what's the situation with "dash as an app"?15:49
dandraderie, why did we stop working on it?15:50
mzanettidandrader: we decided to land that separately, no?15:50
mzanettidandrader: we didn't really stop working on it15:50
dandradermzanetti, I don't remember. that's why I'm asking :)15:50
kgunntsdgeos: so iiuc, upstream says "your patch is our best guess"15:50
kgunn"use it, until we fix it"15:50
mzanettidandrader: that's one step towards that: https://code.launchpad.net/~mzanetti/unity8/new-header/+merge/22458515:50
tsdgeoskgunn: upstream says "the guys that knows how this works are on holiday, your patch doesn't look terribly wrong to the guys left"15:50
mzanettidandrader: once this has landed there shouldn't be any links between shell and dash any more in the code.15:51
mzanettidandrader: I already have a branch here that creates an application binary for it15:51
dednick_Saviq: has that usc branch gone into the silo?15:51
kgunntsdgeos: based on your experience & dandrader, we should go for a distro patch  & stick it in ci-train...we can always ask for more extensive testing15:51
tsdgeoskgunn: +115:51
mzanettidandrader: one thing missing is we need ApplicationManager pick up applications started by upstart (as opposed to ubuntu-app-launch) so the dash would appear in the running apps list15:52
kgunne.g. get a qa resource at least, and maybe pull in some app folk15:52
dednick_Saviq: ubuntu-settings-components  branch that is15:52
tsdgeosdoes anyone know if Mirv is on holiday?15:52
mzanettidandrader: I decided not to make Gerry do that before we have QtComp in, or at least in the silo15:52
kgunntsdgeos: he was...15:52
tsdgeoshe always does the ci-train-ing of Qt stuff for me15:52
kgunnmmm he's Finnish....might be long vacation15:52
Saviqdednick_, not yet, lemme add15:53
mzanettikgunn: tsdgeos: yeah, I think its another week15:53
dednick_Cimi: not sure if you got my message. How do you reproduce the crash? doesnt seem to occur on desktop15:53
kgunnmzanetti: did you get a Qt-patch in ci-train ?15:53
kgunn...i know the process is a little diff15:53
mzanettiinto the train yes, not sure if it made it into the image yet15:53
dandradermzanetti, because I think "dash as an app" is an important piece in the "shell rotation" story15:54
mzanettidandrader: I agree that might make things a lot easier15:54
kgunnmzanetti: did you use a canonical branch ? or just local mod and give src ball to core dev15:54
kgunnassuming you did this w/o Mirv15:54
mzanettidandrader: well. afaik we were also not enabling rotation for the first batch of QtComp goodness15:54
dandradermzanetti, on the phone. Dash stays in portrait but the indicartors panel,  launcher etc do rotate according to app preferences15:54
mzanettikgunn: I used the kubuntu-packagers branch and proposed my change towards that15:55
mzanettikgunn: after I figured we got the packages from that one lately15:55
dandradermzanetti, and we hopefully also mitigate (or even eliminate) that horrible ~2 secs gui choke when resizing unity8 due to a rotation15:55
mzanettidandrader: huh? we're going to rotate launcher and panel but not the rest?15:55
* mzanetti wonders how we even do that15:56
dandradermzanetti, with dash as an app?15:56
Saviqmzanetti, well, dash might choke, shell won't ;)15:56
mzanettiah... yeah, once its an app, yes15:56
mzanettiI thought dandrader was doing that with current codebase15:57
Saviqdednick_, is building15:57
mzanettidandrader: so yeah, after QtComp is in the silo and requires less attention we're going to do the appman changes and finish my branch with the separate app for the dash15:58
mzanettidandrader: then you can finalize the rotation along with that15:58
Cimidednick_, on the phone15:59
Cimidednick_, https://bugs.launchpad.net/qmenumodel/+bug/133420316:00
ubot5Ubuntu bug 1334203 in ubuntu-system-settings (Ubuntu) "ubuntu-system-settings-wizard crashes/freezes when using the back button" [High,New]16:00
Cimidednick_, basically on the phone, you have to do16:00
Cimirm /etc/NetworkManager/system-connections/%16:01
Cimirm /etc/NetworkManager/system-connections/*16:01
Cimithen16:01
Cimirm /home/phablet/.config/ubuntu-system-settings/wizard-has-run16:01
Cimireboot16:01
Cimiat the wizard, wait till it loads wifi then you tap back16:02
Cimihappens 100% here16:02
kgunntsdgeos: are you familiar with that part of the process ? (see zanetti's post wrt kubuntu-packagers)16:03
mzanettitsdgeos, kgunn: fyi, this is the branch: https://code.launchpad.net/~mzanetti/kubuntu-packaging/qtdeclarative-opensource-src/+merge/22451716:04
kgunnyep...i see it now, tsdgeos, if you  can upload in the same fashion & get me the mp, i can get you on the ci-train16:06
dednick_Cimi: need to connect to a wifi hotspot?16:06
tsdgeoskgunn: tomorrow :)16:06
kgunntsdgeos: no worries...you can hit up Saviq you're morning, he can get you on the train16:07
tsdgeoscool :)16:07
* tsdgeos leaves for the day16:07
* kgunn feels qt code control less out of control than he thot...16:08
kgunnstill seems funky16:08
Cimidednick_, no16:09
dednick_Cimi: didnt work for me.16:10
Cimidednick_, clear as I said16:10
dednick_Cimi: i'm flashing device.16:10
Cimidednick_, do not connect to any wifi16:10
dednick_Cimi: i didnt16:10
Cimidednick_, otherwise bootstrap16:10
dednick_Cimi: heh. good luck getting me to do that ;)16:10
Cimidednick_, https://bugs.launchpad.net/qmenumodel/+bug/133420316:10
ubot5Ubuntu bug 1334203 in ubuntu-system-settings (Ubuntu) "ubuntu-system-settings-wizard crashes/freezes when using the back button" [High,New]16:10
=== om26er is now known as om26er|away
=== gatox is now known as gatox_lunch
Cimidednick_, luck?16:28
dednick_Cimi: :( nope16:29
Cimidednick_, do you want me to test code?16:29
Cimidednick, do you want me to test code?16:35
dednickCimi: give me a minute.16:35
Cimiok16:35
=== dandrader is now known as dandrader|lunch
=== om26er|away is now known as om26er
=== alan_g is now known as alan_g|EOD
dednickCimi: reproduced.17:12
=== gatox_lunch is now known as gatox
mhr3Saviq, here?17:32
mhr3Saviq, when you will be - https://code.launchpad.net/~unity-team/unity8/cache-network-data/+merge/224995 seems to work fine and ready for landing in 00517:34
dednickCimi: https://code.launchpad.net/~nick-dedekind/qmenumodel/unitymenuaction.lp133420317:45
=== dandrader|lunch is now known as dandrader
Saviqmhr3, kk19:42
=== dandrader is now known as dandrader|afk
Saviqseb128, could you please resubmit https://code.launchpad.net/~seb128/ubuntu-system-settings/use-theme-icons/+merge/214950 using lp:~unity-team/ubuntu-system-settings/use-theme-icons instead?20:31
=== Daviey_ is now known as Daviey
=== dandrader|afk is now known as dandrader
=== salem_ is now known as _salem

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