=== Guest54492 is now known as cyphase [07:20] Saviq: i was busy with code reviews on thu/fri and have a bunch of stuff on the approved pipeline, do you think we can get a silo today? Otherwise stuff is going to end up conflicting etc [07:29] Saviq, btw why did you decide against a devel branch? [07:42] tsdgeos, sure, will try and get it in today [07:42] :) [07:43] Saviq: btw any clue what's wrong with otto? [07:43] tsdgeos, nope, will talk to ci eng [07:43] mhr3, because didrocks told us they don't want us to have them, I don't like what it does to the history, I didn't see all that much advantage [07:44] fewer conflicts? [07:44] mhr3, also, suddenly it's difficult to cherry-pick into trunk, because all the branches have some of devel in them already [07:44] and noone likes those :) [07:45] mhr3, we've been doing fine with those - you just need to release often, and we've been doing fine [07:45] but yea, perhaps it wouldn't work that great for you [07:45] yeah i think we're doing mostly fine [07:45] and most of the conflicts we end up with are "easy" to solve anyway [08:16] Saviq: it does affect all the tests, but there's no other benchmarks so it doesn't :D [08:16] but yeah need to pass that as variable since we'lk possibly have slower/faster benchmarks in the future [08:16] and a hardcoded value is not going to fly there [08:21] tsdgeos, k [08:22] Saviq: so when thinking about that list of "things that are upstreamable to SDK", well there's stuff like the whole Card/Previews stuff that personally I don't think they make sense there but they may be upstreamable if designers want to replicate the Dash layouting on some app [08:23] tsdgeos, yeah, agreed, low prio for upstreaming, though [08:23] so makes it even sense to write it there or? [08:24] tsdgeos, yeah, add them as "if you want them" or something [08:24] ok [08:24] * tsdgeos restarts again then :D [08:26] Saviq: i think https://code.launchpad.net/~macslow/unity8/fix-notification-ap-test-assertions/+merge/212169 is included in https://code.launchpad.net/~macslow/unity8/modal-snap-decisions/+merge/210988 so it should either be discarded or them redone with dependencies or somethimg, no? [08:27] MacSlow: ↑↑↑ [08:27] tsdgeos, doesn't look included, there's more changes in the first branch [08:28] tsdgeos, but yeah, need to be reconciled [08:28] ah right, they're similar changes but not exactly the same [08:28] sorries [08:28] don't be, better safe'n'sorry [08:32] karni: no, predictive text is now disabled :D [08:33] tsdgeos: hahaah thanks [08:33] I thought this was a bad joke [08:49] tsdgeos, so one thing changed with run-upstart, Alt+F4 or clicking on the window X just results in unity8 respawning... [08:50] trueth [08:50] tsdgeos, not *sure* that's a problem, though, or how to change that behaviour [08:50] or that we want to [08:51] nah, ok, we'll just have to let people know [08:51] not an upstart expert enough to know how to fix that [08:51] but honestly give run is "for us" and that it improves quite a bit the behaviour when run on the phone [08:51] i'll take that over the lock button crashing it on the phone [08:51] tsdgeos, well, it does improve on desktop, too, e.g. the scope list [08:51] tsdgeos, +1 [08:55] /food [09:14] guys, an easy one https://code.launchpad.net/~aacid/unity8/remove_acws/+merge/215624 [09:25] Cimi: https://code.launchpad.net/~aacid/unity8/carousel_test_base_delegate/+merge/215626 [09:25] tsdgeos, I did not write that test :D [09:26] Cimi: i know you didn't, i'm asking you to review the change [09:26] ah ok [09:27] tsdgeos, I'm fixing the issues between lp:~macslow/unity8/modal-snap-decisions and lp:~macslow/unity8/fix-notification-ap-test-assertions [09:28] seb128, a review would be nice https://code.launchpad.net/~unity-team/ubuntu-system-settings/wizard.wifi/+merge/212675 [09:28] seb128, when you or your guys have time [09:29] Cimi, sure, not likely to be this week with the lts release [09:29] but it's on my backlog [09:31] Saviq, greyback I used InputFilterArea in the wizard, I dinamically put blockInput true/false when the notification shows or not, but when it turns false (so should not block input anymore), my interface does not receive any events in any case. What could it be? [09:32] tsdgeos, there's one line from lp:~macslow/unity8/fix-notification-ap-test-assertions which slipped into lp:~macslow/unity8/modal-snap-decisions [09:33] Cimi: when you run the wizard (unity-mir compiled with debug mode too), do you see "Shell depth" message printed? [09:33] Cimi: or a "Default depth" message [09:33] MacSlow: i see, so leave it like that or? [09:34] greyback, I did see it when I compiled with debug [09:34] tsdgeos, no no... I remove the rogue line so they'll cleanly merge [09:34] ok [09:35] Cimi: certain? As if that message ("Shell depth") is not printed, then InputAreas won't work. [09:36] Cimi: as internally in unity-mir, it tried to guess which surface is the shell's surface, so it can place input filter areas on it. If the guess fails, no input to shell/wizard [09:36] tsdgeos, fix pushed [09:37] greyback, it does work [09:38] greyback, but when I switch blockInput to false [09:38] greyback, it feels like it's still true [09:40] Cimi: ah I see what's happening. With unity-mir, the shell/wizard surface will *always* get input. What inputFilterAreas do is decide if the input should *also* go to the app surface underneath or not. [09:40] tsdgeos, so now the rogue line is gone form https://code.launchpad.net/~macslow/unity8/modal-snap-decisions/+merge/210988 [09:40] oki [09:40] Cimi: reason is that shell always wants to listen for edge swipes, even if app on screen. So in that case, an input event goes to *both* shell and the application. [09:41] Cimi: but naturally there are times that shell wants to exclusively take all events, and not let them be copied to the application. That is what Inputareas let shell do [09:46] greyback, I don't understand why setting it back to false [09:46] greyback, still my shell doesn't get events [09:47] Cimi: Your shell should always get events. Can you share your code please? [09:47] greyback, https://code.launchpad.net/~unity-team/ubuntu-system-settings/wizard.wifi/+merge/212675 [09:49] greyback, http://bazaar.launchpad.net/~unity-team/ubuntu-system-settings/wizard.wifi/view/head:/wizard/qml/main.qml [09:51] Cimi: can you please pastebin me the output of your wizard when you run it? [09:51] Cimi: also, without any input areas in the code, does your wizard get input? [09:51] greyback, yopu want me unity mir with debug? [09:51] greyback, of course [09:51] Cimi: yes [09:51] greyback, works with blockInput: false [09:51] too [09:52] greyback, but not with blockInput: height > 0 or other combo [10:03] MacSlow, what issues? [10:04] Saviq: the fact that they conflict [10:04] tsdgeos, they don't? [10:04] Saviq: there was one change from one in the other, he's removed one line from a that was in b by mistake [10:05] hmm there was no conflict, though... [10:05] anyway, let me rebuild the landing, then... [10:05] interesting [10:06] maybe they had been merged originally and bzr just said "sure this is the same change, carry on" [10:06] probably [10:08] Saviq, there was a line from lp:~macslow/unity8/fix-notification-ap-test-assertions somehow in lp:~macslow/unity8/modal-snap-decisions [10:09] MacSlow, ok got it [10:09] Saviq, no idea how it slipped in there [10:09] Saviq, sorted it out now [10:15] MacSlow, please strip the tags of your branches, as per my email from last week [10:21] Saviq, didn't we once wipe all those already? [10:21] Saviq, anything in unity actually linking to libunity-api? [10:21] MacSlow, apparently not everyone [10:21] mhr3, no [10:22] MacSlow, so we're all contaminated again [10:22] thx [10:22] Saviq: kill ScopeDelegateMapper, can I? [10:23] tsdgeos, no, we still have DashApps? [10:23] tsdgeos, or well, if you move the func up, then yeah [10:24] Saviq: yeah but what it does i can make it in place, not in an item people will get tempted to add stuff to [10:24] tsdgeos, sure === beidl_ is now known as beidl [10:40] Saviq, since it's very slow to wipe the tags of remote branches, I'm doing it on lp:~macslow/unity8/fix-notification-ap-test-assertions and lp:~macslow/unity8/modal-snap-decisions only... as these are ready to land... I'll check other unity8-branches later [10:40] MacSlow, yeah, it's rather slow remotely, thanks [10:41] Saviq, thought I could do it locally and then push, but forgot that any tag-change doesn't count as a commit so it would not push anything afterwards. [10:42] MacSlow, indeed [10:42] Saviq, I wonder if that's worth a feature-request :) [10:42] but then... one does not do such things frequently enough to justify something like this [10:42] MacSlow, bzr is in maint-only mode, and I really doubt it's easy to do... tags are just completely disconnected from commits in bzr... [10:54] greyback, http://paste.ubuntu.com/7249077/ [10:56] Cimi: okay, nothing looks wrong. [10:56] Cimi: let me try compiling your code and give it a go [10:57] greyback, want packages? [10:57] I have them built [10:57] Cimi: nah, will do myself, thanks tho [10:57] greyback, you need unity mir [10:57] greyback, wizard wifi [10:58] (uncomment the inputfilterarea and copy the upstart job) [10:58] greyback, and you need unity8 branch too (or just update the upstart file from my branch) [10:59] Cimi, tsdgeos, elopio, please have a look at your approved MPs and clear the tags as mentioned in the comment [10:59] (and then all of them, local or remote, as per my email last week) [10:59] Cimi: ok. Gimme a while to get set up [10:59] Saviq, why we have tags again? [10:59] Cimi, because someone didn't clear them before [11:00] Cimi, and they're rather viral [11:00] Saviq, when did you send this mail? [11:00] and where? [11:00] I cannot find it [11:00] Cimi, last week, on unitynextuiteam ML [11:01] weird I don't have it [11:02] Saviq, last mail I have is from daniel "a bit away from computer today" [11:02] Saviq, tags cleaned [11:02] MacSlow, thanks [11:03] Cimi, "Pruning unity8 branches and tags" is the subject [11:03] Cimi, ah wait [11:03] Saviq, I know check other unity8-branches I have... just to be sure nothing slips in again [11:03] Cimi, it's probably still in moderation... [11:03] Saviq, AH OK.. [11:03] ok [11:09] * tsdgeos looks at the positionedAtBeginning signal in DashContent [11:09] and realizes we're using it as a function [11:09] :S === jamesh_ is now known as jamesh === MacSlow is now known as MacSlow|lunch [11:55] Hello. My HUD on Ubuntu 12.04 doesn't work anymore. When I tap ALT, Unity opens menu of focused app, not the HUD. My complete question was in http://askubuntu.com/questions/447587/alt-key-for-hud-doesnt-work. I am sorry for my bad English. Thank you. === alan_g is now known as alan_g|lunch === _salem is now known as salem_ [12:24] Saviq, after deleting, shall I push or commit? [12:24] Cimi, no, tags don't go with revisions, if you ran through them, they're deleted === MacSlow|lunch is now known as MacSlow [12:34] greyback, any luck? [12:35] Cimi: not ready yet, sorry [12:41] greyback: Hello. My HUD on Ubuntu 12.04 doesn't work anymore. When I tap ALT, Unity opens menu of focused app, not the HUD. Any idea for me? Thank you. [12:42] Malsasa: open System Settings, open "Keyboard", and in the new window, click the "Shortcuts" tab [12:43] greyback: I have did it many times. My complete quesion was here http://askubuntu.com/questions/447587/alt-key-for-hud-doesnt-work [12:44] MacSlow, hey, can you look into bug #1307489 please? [12:44] bug 1307489 in unity8 (Ubuntu) "Tapping sms notification doesn't always raise messaging-app" [Undecided,New] https://launchpad.net/bugs/1307489 [12:44] Saviq, ok [12:44] Malsasa: huh, that's strange. Have you playe around in "ccsm" at all? Keys are also set in there, for hte Unity plugin [12:45] MacSlow, ideally, would be good to get a reproducer without having to send an sms every time, can we make it somehow with the script as used in ap tests? [12:45] Malsasa: I see "Jos" replied with the same idea as mine. Give it a go [12:45] greyback: yes, I believe only I have this problem. It is very strange. I have play around CCSM too. I have set ALT there too. [12:45] Saviq, yup [12:45] Saviq, I see what I can do there [12:45] Malsasa: otherwise I'll have to point you to #ubuntu-desktop where there's more of the unity7 devs available [12:46] MacSlow, I suspect this is actually happening on the "starting / focusing an app" front, but would like to have a confirmation [12:46] wow, so the developers are there? Thank you for pointing me, Mr greyback. [12:46] Malsasa: good luck! [12:47] Saviq, I'll make sure to see if the action attached t othe interactive notification is correctly called to rule out any issues with notifications [12:47] greyback: thank you from Indonesia! [12:52] Saviq: all tags killed [12:52] tsdgeos, cheers === alan_g|lunch is now known as alan_g === alan_g is now known as alan_g|afk [13:39] Cimi: ok, so this /might/ be a mir bug. I've managed to launch the wizard and it gets no input events - didn't matter if I had an InputFilterArea or not. [13:39] Cimi: this is mainly after a fresh boot. === jhodapp|afk is now known as jhodapp [13:40] Cimi: one way to check is to set "MIR_SERVER_INPUT_REPORT=log" <- this turns on Mir's input debug printing === alan_g|afk is now known as alan_g [14:00] greyback, so why I reproduce it with the inputfilterarea? [14:04] Cimi: I can't say. I don't see how your use of unity-mir would cause any different behaviour to unity8 tbh. [14:05] tedg, hi, who is responsible for location indicator? [14:06] Cimi, me or charles [14:06] Cimi: if you could log a bug against unity-mir (to start), with exact instructions on how to reproduce it (clear enough for the mir folks to reproduce), we can have them look into it [14:06] Cimi, It has a pretty big MR pending though. [14:07] Saviq: the ScopeDelegateMapper removal got a bit out of hand https://code.launchpad.net/~aacid/unity8/DashContentScopeDelegateMapperAndMiscFixes/+merge/215664 :D [14:07] but it's now better! [14:09] Saviq, ok wizard is pretty much ready but pending reviews... any big thing I can work next? [14:11] Cimi: the review i gave you this morning :P [14:11] tsdgeos, ok [14:12] Has anybody seen this happen to their N4 after updating to r294 -> https://www.youtube.com/watch?v=jE1aYjEC7EU somehow it does no longer mount (even adb fails to find the device) [14:13] MacSlow: do you dual boot or something? [14:13] there was a thread about it in the list [14:13] if you do [14:13] tsdgeos, no... just plain Ubuntu nothing else [14:14] tsdgeos, remember the subject or part of it? [14:14] MacSlow, I'm getting a test failure with the modal branch... I think mterry's greeter-ux-fixes might be playing with yours http://pastebin.ubuntu.com/7249940/ [14:14] #292 Mako [14:14] but it was only dual boot [14:14] MacSlow, ugh... I only had that with android... [14:15] Saviq, first I need to get my N4 working again... [14:15] MacSlow, I'm afraid the only way I found is to flash factory android https://developers.google.com/android/nexus/images#occam [14:15] tsdgeos, thx... I'll read through it [14:15] MacSlow, and flash ubuntu again [14:15] Saviq, MacSlow: I can look at the interactions between our branches [14:16] mterry, thx... that would be cool [14:16] Saviq, hm.. ok [14:16] mterry, you can branch from http://people.canonical.com/~didrocks/citrain/silos/landing-001/unity8/ [14:17] tedg, I have this page for the wizard, but the location doesn't seem to do anything... can you spot the error? http://bazaar.launchpad.net/~cimi/ubuntu-system-settings/wizard.privacy/view/head:/wizard/qml/Pages/30-phone-settings.qml [14:17] Saviq, tsdgeos: well it does boot alright... I just can't seem to get any connection via USB/adb [14:18] Cimi, Yeah, the branches really need for it to land before anything works. There's a bunch of platform API stuff that needs to get in. [14:18] tedg, eta? [14:18] MacSlow, I suspect it's reconnecting every 5s or so, I had that (on dual-booted android, though) [14:19] Saviq, never setup my N4 to dual boot [14:19] Cimi, It's now our oldest pending MR, at just under 3 months. Hopefully soon :-) [14:19] Saviq, I'll flash android and reflash ubuntu... just anything to get it working agin [14:19] MacSlow, yeah, quickest route I'd say [14:21] Saviq, no more factory images for "mako"?! [14:21] MacSlow, it was never "mako" [14:21] MacSlow, occam [14:22] MacSlow, mako is device codename, occam is image codename or so [14:23] Saviq, so which of those factory images was the one with the broken networking/phone-driver [14:23] MacSlow, that's old news [14:23] Saviq, no longer an issue?! [14:24] MacSlow, nope, not since we switched to android 4.4.2 [14:24] I ran into it so :) [14:24] ok [14:26] Saviq: what's your opinion on removing the ifdefs for building with old qt 5.0? [14:27] tsdgeos, let's wait a bit to have a golden image with 5.2 [14:27] ok === alan_g is now known as alan_g|tea [14:41] Saviq: what are "spurious tags" [14:41] dednick, we inherited tags from lp:unity back when [14:41] Saviq: um, where would these show up? [14:42] dednick, 'bzr tags' [14:42] dednick, you'll see a lot of tags with ? as their revision number [14:42] Saviq: i do indeed... [14:43] dednick, so yeah, http://people.canonical.com/~msawicz/unity8/strip-u8-tags.sh clears them up === alan_g|tea is now known as alan_g [14:58] Saviq: I'll drop this, ok? https://code.launchpad.net/~unity-team/unity8/split-surfaces [14:58] mzanetti, yeah, let's see [14:58] we're not doing it this way any more anyways I think [15:00] mterry, there's one more thing that's not good with the ux fixes - when left-swiping to dash, there's a vertical shadow that's dragging behind the app (and behind finger if there's no app at all) [15:01] Saviq, oh really... Will investigate [15:01] mterry, check out the packages from silo 001 [15:01] they exhibit that === WebbyIT is now known as rpadovani [15:03] MacSlow, assign yourself to bug #1307489 please [15:03] bug 1307489 in unity8 (Ubuntu) "Tapping sms notification doesn't always raise messaging-app" [High,In progress] https://launchpad.net/bugs/1307489 [15:10] Saviq, done... [15:11] Saviq, btw... even with only Android 4.4.2 on the N4 I get this forest of nautilus windows popping up [15:11] MacSlow, aah fook wait [15:11] MacSlow, reboot your host... [15:11] MacSlow, I think that's what fixed it for me... [15:12] hm... [15:12] ok... [15:12] MacSlow, sorry for sending you on a wild goose chase.. [15:12] back in a moment... [15:18] * MacSlow got scared by that reboot... [15:18] my screen was all messed up... had to do a second reboot to sort that out.... [15:19] I hope there are no nasty surprises gfx-driver-wise [15:20] Saviq, OK, trailing shadow fixed in greeter-ux-fixes branch [15:21] Saviq, those nautilus-windows are still popping up [15:21] MacSlow, ouch [15:21] MacSlow, tried a different cable? [15:21] Saviq, it's not as bad... but still some [15:21] Saviq, can try [15:23] MacSlow, I've narrowed the bug down to u8's/unity-mir focusing code, so you're off the hook [15:23] Saviq, although I'm not expecting that cable (or usb-port) to be an issue as I also used with with a Nexus5 without any problems [15:24] mzanetti, I'll throw this one at you, then: bug #1307489 [15:24] bug 1307489 in unity8 (Ubuntu) "Greeter won't unlock when app raised by url dispatcher is already focused" [High,Confirmed] https://launchpad.net/bugs/1307489 [15:24] Saviq, regarding the tap or the modal-snap-decision/greeter issue? [15:24] MacSlow, ↑ [15:24] Saviq: sure you can. I might dodge tho :P [15:24] Saviq, ah ok... thanks for the update [15:24] mzanetti, you can try! [15:24] :D [15:24] Saviq, mterry: so I guess I can help out with the ap-failure then? [15:25] MacSlow, the "conflict" between mterry's and your branch (modal snaps) is still to be looked at, yeah [15:25] Saviq, that's what I mean [15:25] t [15:25] MacSlow, looking at it, yeah [15:26] MacSlow, so I can reproduce for sure [15:26] mterry, I've not had your branches available when writing tests... so I might have overlooked something [15:27] MacSlow, OK, I see the problem [15:27] MacSlow, in my branch, swiping the launcher from left unlocks device and hides launcher [15:27] MacSlow, but your branch is expecting launcher to remain open [15:28] (as it does in trunk) [15:29] MacSlow, but you seem to use the shown status of the launcher as a key part of that test [15:29] mterry, yes [15:29] alecu, Saviq, greyback in U8, do we cache the reading of *.desktop files [15:29] MacSlow, maybe you could test shown status of the greeter instead? [15:29] i.e. if I change a file in a running session, will the change be in effect [15:29] or do I need to restart u8 [15:30] sorry, this is for U8/preview 14.04 [15:30] olli, the change will show up in the dash the next time you search, will be stuck in launcher until you restart, though [15:30] mterry, well I need to verify (when the greeter is open) that interaction with it/launcher is possible ... nothing is blocking user-input. [15:31] mterry, an test interacting with the infographics would do too [15:31] MacSlow, right. Do the same thing, but instead of testing that the launcher is visible, just test that the greeter becomes hidden [15:31] Saviq, more specifically, if I edit a single .desktop file (add exec/-qt5) will u8 pick that up? [15:31] MacSlow, please rebase on mterry's branch and verify the modal behaviour is correct? [15:31] olli, when launching you mean? that should work every time, the file is read on-exec, not earlier than that [15:31] olli, since it's not actually us but upstart-app-launch reading it, btw [15:32] mterry, what's your branch again [15:32] MacSlow, https://code.launchpad.net/~mterry/unity8/greeter-ux-fixes/+merge/210042 [15:32] MacSlow, instead of self.main_window.get_launcher() do self.main_window.get_greeter() -- will test myself too [15:34] Saviq, thx [15:34] mterry, Saviq: first I need to figure out what's up with all the usb/adb issues I have all of a sudden... [15:37] MacSlow, well replacing those two lines with the following works for me [15:37] greeter = self.main_window.get_greeter() [15:37] self.assertThat(greeter.shown, Eventually(Equals(False))) [15:39] tsdgeos, something's broken with carousel, if there's more than two categories in a scope scrolling all the way down and then up results in the carousel to be completely empty [15:39] known? [15:40] tsdgeos, well.. might be lvwph + carousel [15:40] MacSlow, or maybe what you want is to just not pull the launcher so far [15:40] MacSlow, just pull it out but not enough to trigger an unlock [15:41] mhr3: not known [15:41] tsdgeos, do you have bunch on your device? [15:41] mhr3, tsdgeos, assuming your lvwph thing landed? [15:41] mhr3: how do i get more than one carousel? [15:41] tsdgeos, eh.. bunch of music... [15:42] mterry, again... I just need some check to verify that the input-blocking modal-background (behind the snap-decisioins) isn't used when the greeter is shown [15:42] MacSlow, ok, so unlocking is fine [15:42] tsdgeos, grab the deb from 015 [15:42] Saviq: it did land, i sincerely hope that is not causing it [15:43] mhr3: let me check a test i have here [15:43] first [15:43] Saviq, tsdgeos, my image isn't completely fresh [15:43] from this morning [15:43] mhr3, good enough [15:43] Saviq, as in official 294 [15:44] damn [15:44] ASSERT: "QTest::TestLoggers::loggerCount() != 0" in file qtestlog.cpp, line 242 [15:44] mzanetti: when doing tryXYZ [15:44] any idea? [15:44] tsdgeos: yes [15:45] tsdgeos: you can workaround it by addint "when: windowShown" to all TestCases [15:45] tsdgeos: or reorder them to make sure the first one in the file has that [15:45] mhr3, tsdgeos, confirmed, carousel does not get recreated properly when it's culled [15:45] tsdgeos: fixing that would require subclassing QAbstractTestLogger from qttest-private which I haven't done yet [15:46] mhr3, tsdgeos, well - it seems to work the second time... [15:46] Saviq, yea, it's pretty random [15:46] indeed [15:46] mhr3, file a bug please [15:46] wooo [15:46] something broke there yes [15:46] Saviq, k [15:47] and it's probably the originY thing :/ [15:47] :| [15:47] :\ [15:47] :/ [15:48] i mean, what else can it be? [15:49] well, yeah, sounds relevant [15:49] OTOH we never destroyed carousels before, did we [15:50] tsdgeos, Saviq, https://bugs.launchpad.net/unity8/+bug/1307578 [15:50] Ubuntu bug 1307578 in Unity 8 "Carousel doesn't re-render properly after scrolling" [Undecided,New] [15:50] we shouldn't [15:50] i'll have a look tomorrow first thing [15:51] mterry, so I'll go with this http://pastebin.ubuntu.com/7250338 in test_modal_sd_with_greeter()... no more checks for the launcher [15:51] MacSlow, that worked for me, yeah [15:52] mterry, the test_modal_sd_without_greeter() I don't need to change I assume [15:52] MacSlow, correct [15:53] mzanetti: https://code.launchpad.net/~aacid/unity8/whenGSVtest/+merge/215695 [15:54] tsdgeos: I was still discussing with Saviq if we should go for this or do the efforts of registering the testlogger. tryLauncher suffers from the same, and probably more [15:54] Saviq: did you come to any conclusion? ^ [15:54] mterry, pushed r774 to lp:~macslow/unity8/modal-snap-decisions so we should be all good now [15:54] mzanetti, I think if we can avoid it for now - let's [15:54] ack. [15:55] Saviq, so MacSlow updated his branch for the test and I updated mine for the shadow. Should be good to go on both [15:55] mterry, k, rebuilding now and will test again later [15:58] o/ ttyt [15:59] tsdgeos, shall I review this? https://code.launchpad.net/~aacid/unity8/DashContentScopeDelegateMapperAndMiscFixes/+merge/215664 [16:00] Cimi: if you have time, please [16:00] ok [16:03] tomorrow more [16:03] * tsdgeos waves === om26er_ is now known as om26er|food [16:07] Saviq: just to make sure ...so lp:~macslow/unity8/modal-snap-decisions & lp:~mterry/unity8/greeter-ux-fixes corrects... bug 1307489 [16:07] bug 1307489 in unity8 (Ubuntu) "Greeter won't unlock when app raised by url dispatcher is already focused" [High,Confirmed] https://launchpad.net/bugs/1307489 [16:08] ? let me see [16:09] mterry: is that "?" for me ?...i was piecing together scrollback, i could be totally wrong [16:10] kgunn, was for you. Looks like a dup of bug 1267624 which has had a branch extent for a long time, but has been stalled [16:10] bug 1267624 in unity8 (Ubuntu) "Dialer app not shown on incoming calls" [Critical,Confirmed] https://launchpad.net/bugs/1267624 [16:11] kgunn, seems test framework won't let us easily test locking the screen by simulating power button presses -- because the test framework holds a powerd lock [16:11] mterry: ah...thank you, yeah that does look the same [16:12] kgunn, mterry's and my branch are not related to 1307489 [16:12] thanks guys === om26er|food is now known as om26er [16:13] MacSlow: do agree that 1267624 is a dup of 1307489 <- Saviq [16:15] kgunn, so point is I'm looking at it, but it's not there yet. I'll see if I can do a test workaround today [16:16] kgunn, not sure [16:20] mterry: ok, its the "new blocker"...its==1307489 [16:21] kgunn, promotion blocker? oh my [16:21] yes, don't go to vegas :) === gatox is now known as gatox_lunch === dandrader is now known as dandrader|lunch === gatox_lunch is now known as gatox [16:58] mzanetti: regarding https://bugs.launchpad.net/unity8/+bug/1305885 is the networking setup actually a component/plugin for unity8, or is it a separate application? I looked over the code a lot on my flight home, but can't seem to find where it would live. [16:58] Ubuntu bug 1305885 in Unity 8 "Snap Decision input does not listen to Enter key" [Undecided,New] [17:00] josharenson: yeah, the actual networking is in the indicators. However, the issue is in the ui I'd say, which should be in qml/Notifications/ === alan_g is now known as alan_g|EOD [17:43] * greyback eod === dandrader|lunch is now known as dandrader [18:39] https://launchpad.net/bugs/1307634 [18:39] Ubuntu bug 1307634 in Unity 8 "Crash When Using Phone" [Undecided,New] [18:40] rickspencer reported that (wasnt related to shutdown he thinks) [18:40] anyone mind checking if that .crash file is any good? [18:50] Saviq: kgunn: i know you are runnin on hot fumes already, but could we motivate someoene from your team to take a look at https://launchpad.net/bugs/1307634 ? [18:50] Ubuntu bug 1307634 in Unity 8 "Crash When Using Phone" [Undecided,New] [19:58] kgunn, yeah, seem the same === salem_ is now known as _salem [20:03] mterry, https://code.launchpad.net/~mterry/unity8/hide-greeter-on-focus-request/+merge/215749/comments/512044 [20:03] wth does apport not collect package versions and such when it's processing a crash.... [20:04] Saviq, working on it as we speak [20:04] mterry, kk [20:04] Saviq, just wanted to get elopio's merge in first [20:04] asac, I'll look briefly into it, but will probably have to wait until tomorrow for proper investigation [20:04] Saviq, I'm planning to expose a tiny dbus interface for pretending we got a powerd event that we only expose if testability is on. sound good? [20:05] mterry, on one hand - yeah maybe - on the other... I think it's a bug in powerd that it doesn't change the power state [20:05] mterry, especially when it does turn the display off... [20:06] Saviq, true... I forgot it turned display off. Does seem like inconsistent internal state [20:07] * mterry looks at why powerd does that [20:15] mterry, inconsistent, and wrong, IMO, too - even if an app requests display to be on, it should be overridden by power key press [20:23] Saviq: ack. thanks === Wellark_ is now known as Wellark [21:21] kgunn, poke about bug 1307489. https://code.launchpad.net/~mterry/unity8/hide-greeter-on-focus-request/+merge/215749 should fix, but note that it needs two other component branches to work totally. Maybe start a silo for it? <- Saviq [21:21] bug 1267624 in unity8 (Ubuntu) "duplicate for #1307489 Dialer app not shown on incoming calls" [Critical,Confirmed] https://launchpad.net/bugs/1267624 [21:21] I have to go afk for a bit, but will leave IRC on [21:22] mterry, I'll be pushing it through tomorrow, thanks! [21:22] mterry: thanks... [21:22] Saviq: o/ thanks! [21:24] mterry: quick one...what other 2 component branches are needed ? [21:25] kgunn, it's in the description [21:25] kgunn, [21:25] https://code.launchpad.net/~mterry/autopilot/allow-focus/+merge/215735 [21:25] https://code.launchpad.net/~mterry/powerd/consistent-state/+merge/215761 [21:25] mterry: i should've read...thanks man [21:26] mterry: I commented on that MP. I plan on running the full test suite later today [21:26] kgunn, those two are only needed to make autopilot work right. If you do manual testing, just the one branch is fine [21:26] mterry: but right now I'm not sure we can land anything anyway [21:26] thomi_: its a blocker [21:26] so its special [21:27] hmm, so will the unity 8 team handle the autopilot MP landing? [21:28] kgunn: because if so, then as long as you guys run the AP test plan, I'm happy for that to land [21:28] thomi_: well, i would believe yes, it would all need to go into the same silo [21:29] thomi_: link to AP test plan ? [21:30] one sec [21:30] thomi_: kinda curious if it matches this...https://wiki.ubuntu.com/Touch/Testing#Testing_your_Ubuntu_Touch_Code_before_submission [21:30] kgunn: https://wiki.ubuntu.com/Process/Merges/TestPlan/autopilot [21:31] thomi_: ok...that doesn't seem too bad... [21:31] kgunn: hahaaaaaa [21:31] kgunn: it takes about 4 hours to run, and then about the same to debug the various failures [21:31] kgunn: what I'm saying is "have fun with that" :) [21:31] * kgunn wonders if we've created an anti-release tool [21:32] kgunn: you're still wondering? :P [21:32] kgunn: we have a jenkins job that automates 90% of it though [21:33] kgunn: http://q-jenkins:8080/job/autopilot-release-gatekeeper/ [21:33] thomi_: should that be on the wiki ? [21:33] kgunn: run that ^ with the silo PPA in the PPA parameter [21:33] kgunn: probable, let me edit it [21:33] i was just about to ask.... where instructions are for desktop [21:33] "Run the autopilot functional and unit tests" === jhodapp is now known as jhodapp|afk [21:34] thomi_: desktop is the bitch i take it? [21:34] in terms of time [21:34] kgunn: nope, device is the PITA [21:34] kgunn: desktop takes ~ 15 minutes [21:34] device takes ~ 4 hours [21:35] thomi_: no way..i run unity8 & browser all the time...it does eat close to an hour...but 4 ? [21:35] kgunn: you need to run *all* the AP tests [21:35] not just unity8 [21:35] ah [21:35] not how i was reading :) [21:35] because you're chaning AP code that's used by all the functional test suites [21:36] luckily, the jenkins job does most of that for you [21:36] you just need to wait for it to run [21:36] but then you need to debug the various failures [21:36] and figure out if they're due to an issue introduced in your code, or bad tests in other projects [21:36] usually you need to re-run a few suites [21:37] thomi_: since this is going to take soooo much time...should we just go to silo and test it there ? [21:37] rather than individually for MP... [21:37] only to approve and then turn around and do it again ? [21:37] Saviq: fyi on this ^ [21:37] kgunn: yes, that's wht I'd suggest [21:37] kgunn: wiki is updated BTW [21:38] Saviq: mterry ...mind if i queue it up and try ? [22:30] am I missing something, or has the ability to add scopes as a Favorite to the dash not been implemented yet? [23:13] kgunn, go right ahead!