=== _salem is now known as salem_ | ||
=== salem_ is now known as _salem | ||
DanChapman | Good Morning all o/ | 05:59 |
---|---|---|
dholbach | good morning | 06:51 |
justCarakas | good morning | 06:54 |
=== t1mp_ is now known as t1mp | ||
qtros | Hi guys | 08:23 |
qtros | I know that it is wrong channel, but maybe someone know - where I can fill bug against Nautilus? | 08:24 |
justCarakas | https://bugs.launchpad.net/bugs/bugtrackers/gnome-bugs | 08:25 |
qtros | justCarakas yes, I already saw this page, but what next?) | 08:28 |
qtros | justCarakas seems that their bugs are located in gnome.org | 08:30 |
justCarakas | indeed | 08:31 |
justCarakas | qtros: dholbach do you know it ? since you created the page on launchpad | 08:32 |
dholbach | yes, wat qtros said | 08:42 |
dholbach | https://bugzilla.gnome.org/enter_bug.cgi | 08:43 |
mzanetti | hello! | 09:04 |
=== ondra- is now known as ondra | ||
twstddev | Hello guys. I would like to do some development. I understand that you are getting ready for RTM right now. Is there anything I could slowly start working/helping with? | 10:11 |
Mirv | twstddev: it's hard to pinpoint anything, but there's eg. plenty of bugs filed against core apps https://launchpad.net/ubuntu-phone-coreapps | 10:42 |
=== MacSlow is now known as MacSlow|lunch | ||
twstddev | Mirv, Ok. Will have a look. Is there a particular reason why most of the apps written used javascript rather than c++? | 10:54 |
twstddev | *using | 10:54 |
=== Pici` is now known as Pici | ||
Mirv | twstddev: QML is popular, and it's used at least for the UI layout. some people do only UI in QML and write a lot of backend stuff in C++. | 11:00 |
twstddev | Mirv, Oh, so I'm not restricted to javascript only? | 11:01 |
Mirv | twstddev: definitely not. | 11:05 |
Mirv | only the lightest / simplest apps are QML only usually (althought some like to push the limits) | 11:06 |
=== ogra_` is now known as ogra_ | ||
=== chihchun is now known as chihchun_afk | ||
twstddev | Mirv, Fab. Thanks. Will have a look at the bug list later. | 11:08 |
nik90 | ahayzen: hey, good morning | 11:09 |
ahayzen | nik90, yo .. afternoon | 11:10 |
* ahayzen is on his lunch break | 11:10 | |
ahayzen | nik90, whats up? | 11:10 |
nik90 | ahayzen: oh yeah afternoon :P.. | 11:10 |
nik90 | ahayzen: hey I am unable to find the delete action button in my autopilot tests | 11:10 |
nik90 | ahayzen: how did you tag it so that autopilot can find it? | 11:10 |
ahayzen | nik90, i manaually added it..... | 11:10 |
ahayzen | nik90, hang on let me find it | 11:11 |
nik90 | ahayzen: did you add it to the ListItemWithAction.qml file? | 11:11 |
ahayzen | yah | 11:11 |
ahayzen | nik90, http://bazaar.launchpad.net/~andrew-hayzen/music-app/listitem-actions-take-2/view/head:/common/ListItemWithActions.qml#L240 | 11:11 |
ahayzen | nik90, note the 'primed' attribute as well | 11:11 |
nik90 | ahayzen: what's the primed for? | 11:12 |
ahayzen | nik90, so autopilot can get the right one | 11:12 |
ahayzen | nik90, http://bazaar.launchpad.net/~andrew-hayzen/music-app/listitem-actions-take-2/view/head:/tests/autopilot/music_app/emulators.py#L258 | 11:12 |
ahayzen | nik90, it was more what i had in my custom system...it worked before so i copied it over | 11:13 |
nik90 | ahayzen: do you change the primed variable anywhere in the UI? | 11:13 |
ahayzen | nik90, yeah in ListItemWithAction.qml just search for primed :) | 11:14 |
nik90 | ahayzen: ah you use it to see which one is enabled | 11:14 |
ahayzen | nik90, ...although my ap tests aren't totally passing yet but i think this bit is working...it is more the next bit that fails | 11:14 |
ahayzen | nik90, yes enabled / visible on screen | 11:14 |
=== Wellark_ is now known as Wellark | ||
ahayzen | ...it finds the actions and clicks on them so i'm assuming this bit is working :) | 11:15 |
nik90 | ok | 11:15 |
nik90 | thnx | 11:15 |
ahayzen | nik90, u don't use right actions do u? | 11:16 |
nik90 | ahayzen: nope | 11:16 |
ahayzen | nik90, cool cause i have some more trickery to get that to work hehe ;) | 11:16 |
nik90 | ahayzen: :P | 11:16 |
ahayzen | nik90, as u may seewhen searching for primed | 11:16 |
nik90 | yup | 11:16 |
ahayzen | nik90, let me know if u figure a more elegant way of doing it ;) | 11:18 |
nik90 | ahayzen: I am thinking | 11:18 |
ahayzen | nik90, hah ... i like my solution :) | 11:19 |
nik90 | ahayzen: I like the get the action icon part. Not so convinced by the prime part. Just wondering if that can be made easier | 11:19 |
ahayzen | nik90, maybe u just need some way to ensure u get the one on the correct listitem | 11:20 |
nik90 | ahayzen: yeah, we used to do that by adding "index" to the objectNames. But this one is in the upstream component itself which makes it harder | 11:21 |
ahayzen | nik90, yeah | 11:21 |
nik90 | ahayzen: Yup found a easier solution :D | 11:33 |
ahayzen | nik90, hah :) what u done? | 11:33 |
nik90 | ahayzen: instead of prime, I did property bool isActivated: swipeState === "LeftToRight" | 11:33 |
nik90 | ahayzen: this automatically gets updated when you swipe to the right | 11:33 |
nik90 | ahayzen: so it is based on your idea, but I let the component do the hard work of updating it automatically | 11:33 |
ahayzen | nik90, ah cool ... but still an extra property :) ... i may make mine do ^^ as well :) | 11:33 |
nik90 | ahayzen: which is why I said it is based on your idea. But I don't need to update that manually using resetPrimed() and other statements | 11:34 |
nik90 | ;) | 11:34 |
ahayzen | nik90, ah yes | 11:34 |
=== MacSlow|lunch is now known as MacSlow | ||
ogra_ | DanChapman, where is my dekko setup gone ? | 12:12 |
ogra_ | (tells me there is no account) | 12:12 |
=== chihchun_afk is now known as chihchun | ||
nik90 | bzoltan: hey would you be making a new UITK release to phone since the datetime critical bug is a image promotion blocker? | 12:14 |
zsombi | nik90: tomorrow, I'm still trying to fix teh date picker issue | 12:19 |
nik90 | zsombi: ok | 12:20 |
nik90 | renatu: hey, do you guys have a autopilot test to swipe delete a contact in the address book? On searching I only found deleting contacts in the multiselect mode. | 12:20 |
renatu | nik90, I think the messaging app does | 12:22 |
nik90 | renatu: ok. will look there | 12:23 |
ogra_ | DanChapman, hmm, and even after creating a new account it is not there on restart of the app | 12:27 |
=== chihchun is now known as chihchun_afk | ||
=== _salem is now known as salem_ | ||
dpm | hi balloons, when you're online, could you perhaps follow up with psivaa and cjohnston on why this branch's autolanding job fails on a bzr error? https://code.launchpad.net/~vthompson/music-app/prevent-incorrect-no-music-screen/+merge/228972 | 13:17 |
dpm | hi nik90, which features will the next clock app store upload you're planning include? | 13:54 |
nik90 | dpm: custom swipe delete, fast scroll, some AP tests, vibration support and custom alarm sounds | 14:01 |
nik90 | dpm: the last 2 are blocked due to TRAINCO since it requires silo to be published to phone | 14:01 |
balloons | dpm, I simply superseded the MP and redid it. I'm not sure why bzr threw that error, it's a question for victor if he did anything out of the ordinary. We'll see if bzr does it again. https://code.launchpad.net/~nskaggs/music-app/prevent-incorrect-no-music-screen/+merge/229944 | 14:17 |
nik90 | Need some help with clock app reboot MP reviews at https://code.launchpad.net/~ubuntu-clock-dev/ubuntu-clock-app/utopic-3.0/+activereviews | 14:19 |
dpm | thanks nik90 | 14:28 |
dpm | thanks balloons | 14:28 |
sil2100 | mihir: hi! I heard you're working on the calendar app | 14:39 |
sil2100 | mihir: we seem to be having some autopilot test issues since some images: https://bugs.launchpad.net/ubuntu-calendar-app/+bug/1353921 | 14:39 |
ubot5 | Ubuntu bug 1353921 in Ubuntu Calendar App "tests using address_book_service_testability (e.g. test_fill_form) fail" [Undecided,New] | 14:39 |
balloons | sil2100, mihir that's a missing depends issue. brendand pointed out installing address-book-service-dummy fixes the issue | 14:42 |
sil2100 | Oh, right, now I see the bug description | 14:42 |
sil2100 | Then I guess we'll have to do it from the infrastructure side | 14:43 |
balloons | well, having it run as an autopkgtest should also solve it | 14:43 |
balloons | buy yea | 14:43 |
mihir_ | sil2100: yes | 14:51 |
sil2100 | mihir_: so, I guess I know what's wrong and am preparing a fix for CI to review :) | 14:52 |
sil2100 | Anyway, good to know who to ping when issues arise | 14:52 |
DanChapman | ogra_, hey that's odd you don't see it after restarting the app. Could you try removing ~/.config/com.ubutu.developer.dpniel.dekko and try again. I wonder if the migration to the new accounts model settings borked it somehow | 14:52 |
mihir_ | sil2100: yes, same here :) | 14:52 |
ogra_ | DanChapman, tried already ... didnt work | 14:52 |
mihir_ | balloons: thansk, balloons are we still struggling for more AP to add in calendar right ? | 14:53 |
nik90 | bzoltan1, kalikiana: https://bugs.launchpad.net/ubuntu-ui-toolkit/+bug/1354036 | 14:53 |
ubot5 | Ubuntu bug 1354036 in Ubuntu UI Toolkit "Landing 06-08 has a visual bug due to square overflow tab panel" [Undecided,New] | 14:53 |
DanChapman | ogra_, :-( right... that's not so good then. Ok first off are your settings actually getting saved to the .conf file and secondly is there an [Accounts] section that contains your email address? | 14:56 |
balloons | oO sil2100, the testconfig supports stuff like that? https://code.launchpad.net/~sil2100/ubuntu-test-cases/touch-fix-address-book/+merge/229950 | 14:58 |
balloons | that's a little scary to see | 14:59 |
kalikiana | nik90: I'll track down if there's a color for the dark theme; I didn't get one from design while I was working on it so this is "expected" for now | 15:00 |
sil2100 | balloons: what do you mean? | 15:00 |
nik90 | kalikiana: Ack. what about the black rectangle instead of the icon? | 15:00 |
nik90 | kalikiana: visible in the reminder app (3rd screenshot) | 15:00 |
sil2100 | balloons: it makes possible to install certain packages for certain test suites, as click package tests as ran in the infra have no means of installing all their dependencies | 15:01 |
nik90 | kalikiana: sry 2nd screenshot | 15:01 |
balloons | sil2100, I mean it's just hidden dependencies. It's a nice fix to the problem, but the package should be self-declaring for test depends | 15:01 |
sil2100 | balloons: sadly, not much we can do with the current way things are working | 15:01 |
balloons | sil2100, yes indeed. Hence the push for autopkgtest. Reminders is coming very soon and it will be the first | 15:01 |
balloons | sil2100, but that means I didn't realize we could have landed it by pushing all the depends into the jenkins testconfig, heh | 15:02 |
sil2100 | balloons: right, I agree, but it's not the time for that, especially when we're struggling to get rid of blockers for promotion | 15:02 |
sil2100 | hah ;) | 15:02 |
balloons | sil2100, certainly.. It was mostly me realizing there was ANOTHER workaround that could be done | 15:02 |
balloons | ty | 15:03 |
ogra_ | DanChapman, sadly in meetings the next 2h ... i'll try to take a look | 15:03 |
DanChapman | ogra_, that's cool. Whenever you have time :-) | 15:04 |
kalikiana | nik90: what is that icon? how is it done? | 15:10 |
kalikiana | it worked before? | 15:10 |
nik90 | kalikiana: pretty sure it worked before since I noticed that in my own app Flashback as well | 15:11 |
nik90 | kalikiana: let me have a look at it | 15:11 |
=== jgdxx is now known as jgdx | ||
nik90 | kalikiana: In my app, I defined the action as https://github.com/krnekhelesh/flashback/blob/master/components/TraktAction.qml and the icon is shown correctly when in the header bar. The black rectangle appears only when it is in the overflow menu due to 3 or more actions | 15:15 |
nik90 | kalikiana: weird it only happens in certain use cases. Check out the reminders app in the image and you will see what i mean | 15:16 |
kalikiana | oh I've got an idea | 15:25 |
kalikiana | the buttons are not implemented in the same way inside the overflow so I'm checking the exact differences | 15:25 |
=== gatox is now known as gatox_lunch | ||
=== om26er is now known as om26er|brb | ||
kalikiana | nik90: t1mp: https://code.launchpad.net/~ubuntu-sdk-team/ubuntu-ui-toolkit/sourceOverflow/+merge/229960 | 15:49 |
nik90 | kalikiana: testing | 15:56 |
nik90 | kalikiana: that works! | 16:01 |
kalikiana | awesome | 16:02 |
kalikiana | for a change a quick fix :-D | 16:02 |
nik90 | :D | 16:02 |
nik90 | kalikiana: the font color is still an issue though. I understand that the font color for dark backgrounds hasn't been provided, but from a user's perspective this is a visual bug which should be fixed before rolling out square visual tabs imho | 16:03 |
dpm | thanks balloons for looking at the File Manager tests | 16:05 |
kalikiana | nik90: I can't do much here until I get clarfiication from design, I'm not going to pick a random color :-) | 16:06 |
nik90 | kalikiana: :D | 16:06 |
=== om26er|brb is now known as om26er | ||
=== gatox_lunch is now known as gatox | ||
nik90 | renatu: hey, I finished the fastscroll and custom swipe delete integration in the clock app. The Mp's are awaiting review and I cannot find any one better to review it. Do you mind reviewing it? You will have to only review the small integration bits since the upstream code that I borrowed were not changed at all | 16:44 |
ahayzen | balloons, thanks for doing that extra mp | 16:48 |
kenvandine | ahayzen, how's the content-hub support in music-app coming? | 16:53 |
ahayzen | kenvandine, i am just writing a status update to https://bugs.launchpad.net/music-app/+bug/1347444 | 16:53 |
ubot5 | Ubuntu bug 1347444 in Ubuntu Music App "Music app does not expose download handler" [High,In progress] | 16:53 |
ahayzen | kenvandine, we are now waiting for the last stage \o/ | 16:53 |
ahayzen | kenvandine, we need the ms2 models to auto update... jamesh has just posted this https://code.launchpad.net/~jamesh/mediascanner2/model-auto-update/+merge/229903 ... so hopefully once this is merged we'll be able to land support :) | 16:54 |
ahayzen | kenvandine, and the UDM fix is in a silo ready to land now | 16:54 |
kenvandine | ahayzen, cool, thx for the update | 16:54 |
ahayzen | kenvandine, i'm just basically writing ^^ into the bug report now so others can see the progress and i'll link the branch | 16:55 |
=== charles_ is now known as charles | ||
ahayzen | dpm, damn did 558 not 559 get pushed to the store? | 17:02 |
elopio | boiko: can we put on the checklist of all the apps to make sure that you are updating the pot files if you change UI labels ? | 17:02 |
boiko | elopio: that's a good idea actually | 17:02 |
ahayzen | +1 | 17:03 |
elopio | boiko: I'm glad you like it :) I'll update the wiki page. | 17:03 |
boiko | elopio: actually we do have a CMake rule that does update every time you build, but since it also updates the .po files, it causes lots of merge conflicts when we have multiple MRs to land | 17:03 |
boiko | elopio: we end up not commiting the po changes | 17:03 |
elopio | boiko: is there a way to update only the pot ? | 17:04 |
boiko | elopio: I can check it later | 17:04 |
elopio | boiko: so, should I proceed or wait for you to review that? | 17:05 |
dpm | ahayzen, I don't know, balloons took care of the upload. What's up? | 17:05 |
ahayzen | dpm, just 559 would be preferable as otherwise the app flashes up saying there is no music for a short period of time | 17:06 |
dpm | aah | 17:06 |
ahayzen | dpm, i was just going on what the spreadsheet says...also the spreadsheet says there are invalid urls? | 17:06 |
dpm | balloons, would it be much effort to do another music app upload? | 17:06 |
balloons | ahayzen, dpm I just asked Daniel to approve it.. I didn't push it actually. But indeed, as all these music MP's land, we could certainly send another upload | 17:06 |
dpm | ahayzen, not sure what spreadsheet you mean or which urls | 17:07 |
ahayzen | balloons, cool thanks | 17:07 |
ahayzen | dpm, https://docs.google.com/spreadsheet/ccc?key=0AnZdnhOl8MU5dDJseW1vT1N5RkJvLUJHZTdhalRVd1E&usp=sharing#gid=1 | 17:07 |
ahayzen | dpm, '#VALUE' for music and sudoku | 17:07 |
dpm | aha | 17:07 |
dpm | balloons is the spreadsheet master - Nick, would you know what's up with those #VALUE cells? ^ | 17:08 |
balloons | mm.. date import failures, let's see | 17:09 |
balloons | must be a connectivity thing.. I'll try and force refresh it | 17:09 |
dpm | cool, thanks | 17:10 |
balloons | done | 17:10 |
dpm | thanks, "the fixer" balloons \o/ | 17:11 |
ahayzen | balloons, thanks :) | 17:11 |
balloons | hah dpm | 17:12 |
dpm | :) | 17:12 |
ahayzen | dpm, did u see the mail i forwarded to u from james? | 17:14 |
dpm | ahayzen, I was just reading it, good news! :) | 17:14 |
ahayzen | \o/ | 17:14 |
ahayzen | content-hub support is getting closer and closer :) | 17:15 |
dpm | really looking forward to that | 17:16 |
kalikiana | nik90: color fix https://code.launchpad.net/~ubuntu-sdk-team/ubuntu-ui-toolkit/overflowColor/+merge/229974 | 17:16 |
nik90 | kalikiana: you already got a design resolution for it? | 17:17 |
kalikiana | yes | 17:17 |
nik90 | kalikiana: wow. testing. will report back in a few minutes | 17:17 |
kalikiana | lucky everyone seems to be working late tonight :-P | 17:17 |
nik90 | kalikiana: I tell you trainco sometimes help :P | 17:18 |
nik90 | j/k | 17:18 |
kalikiana | trainco? | 17:19 |
nik90 | traincon0 | 17:19 |
kalikiana | ah | 17:20 |
nik90 | sudo make install | 17:22 |
nik90 | bah wrong monitorr | 17:22 |
kalikiana | make[3]: Nothing to be done for 'install'. | 17:22 |
=== boiko_ is now known as boiko | ||
nik90 | hehe | 17:23 |
nik90 | kalikiana: it fixes the issue in my flashback app (with black background), but in the clock app the issues persists | 17:25 |
kalikiana | hmmmmm | 17:26 |
kalikiana | nik90: pushed another change | 17:31 |
nik90 | testing | 17:33 |
nik90 | kalikiana: same issue | 17:34 |
kalikiana | hrm | 17:35 |
* nik90 brb in 15 mins | 17:43 | |
kalikiana | nik90: should've been obvious… my fix doesn't apply to clock app because it doesn't use the real gradient theme and manually sets the colors | 17:44 |
kalikiana | so the color is "correct" | 17:44 |
nik90 | kalikiana: wat do you mean by manually sets the colors? | 17:44 |
kalikiana | header, background, footer | 17:45 |
nik90 | aren't app supposed to do that manually? | 17:45 |
kalikiana | well it means it breaks the theming - as you initially said colors should not be hard-coded | 17:45 |
nik90 | so core apps shouldn't specify gradient backgrounds any more | 17:46 |
kalikiana | I'm not taking a position here I'm only saying that's why unsurprisingly it breaks | 17:47 |
kalikiana | not sure how to solve it; I'll probably leave that to t1mp as he worked on this before | 17:48 |
nik90 | kalikiana: I am just trying to figure out what the correct way of doing things. I remember sometime back it was announced that background gradients are not supported by the SDK. If that is the case then I should report bugs accordingly against the core apps | 17:48 |
nik90 | kalikiana: ok will discuss with t1mp about this tomorrow and see if we can make a decision about the gradient backgrounds | 17:49 |
* nik90 really got to go now. t-10 mins | 17:49 | |
kalikiana | okay | 17:51 |
jgdx | elopio, just a reminder that I've addressed your comments in https://code.launchpad.net/~jonas-drange/ubuntu-system-settings/call-fwd-wait-dual-sim/+merge/229774 – thank you | 18:04 |
elopio | jgdx: oh, right, sorry. | 18:05 |
jgdx | elopio, err, actually, something has happened. | 18:05 |
elopio | jgdx: so, shouldn't I wait to review? | 18:14 |
jgdx | elopio, sorry, I've gotten my branches in a twist today. Please ignore me for a while. Sorry! | 18:15 |
elopio | don't worry. I'll wait for your ping. | 18:15 |
=== nik90 is now known as nik90|Dinner | ||
ogra_ | DanChapman, ok, i found some time to look at the log ... the app crashes at the end of the user setup (i wiped everything related to dekko and reinstalled the click) | 18:46 |
ogra_ | DanChapman, this is what i get in the log: | 18:46 |
ogra_ | Saving settings | 18:46 |
ogra_ | QDir::exists: Empty or null file name | 18:46 |
ahayzen | balloons, ping ... quick question | 19:08 |
balloons | ahayzen, yes? | 19:08 |
ahayzen | balloons, i'm working on ap tests and saw "After 10.0 seconds test on Player.currentIndex failed: 0 == dbus.Int32(0, variant_level=1)" ... | 19:08 |
ahayzen | balloons, am i correct to think that this is incorrect "Eventually(NotEquals(endtracksCount))" because it is using the var rather than the method ? | 19:09 |
ahayzen | balloons, basically the listitemactions have extra animations which are causing some tests to fail...so having to put wait_for etc in | 19:09 |
balloons | ahayzen, in that statement unless endtracksCount is a function, it makes no sense | 19:09 |
ahayzen | balloons, but this one looked a bit strange ... yeah that was my thought | 19:09 |
balloons | as the value will not change :-) | 19:09 |
ahayzen | balloons, these tests badly need rewriting lol | 19:10 |
balloons | ahayzen, yes yes they do | 19:10 |
ahayzen | balloons, both me and victor are still surprised they don't randomly fail in CI more often lol | 19:10 |
ahayzen | balloons, ok cool thanks | 19:10 |
ahayzen | balloons, oh god that specific bit of code i sent u is over loads of tests lol | 19:14 |
nik90|Dinner | ahayzen: btw I found a way to fix the AP tests without modifying the ListItemWithActions.qml file :D | 19:21 |
ahayzen | nik90|Dinner, hmmm how? | 19:21 |
nik90|Dinner | https://code.launchpad.net/~nik90/ubuntu-clock-app/custom-swipe-delete/+merge/229088 | 19:21 |
nik90|Dinner | ahayzen: essentially that ^^ I created a ListItemwithActions class which exposes the correct icon | 19:22 |
balloons | ahayzen, I owe nik90|Dinner several reviews, but after I can dive in with you | 19:22 |
ahayzen | nik90|Dinner, interesting | 19:23 |
jdstrand | pmcgowan: sorry to bother you, but who would I talk to about missing touch templates on utopic in the sdk? | 19:23 |
nik90|Dinner | ahayzen: Does the music app follow the page model? | 19:23 |
ahayzen | balloons, hah call.. it would probably be best to go properly after listitem actions landed | 19:23 |
nik90|Dinner | ahayzen: if it is this should be quite easy to use | 19:24 |
ahayzen | nik90|Dinner, define page model...if ur talking ap tests...then it probably doesn't ;) | 19:24 |
ahayzen | nik90|Dinner, our ap tests badly need rewriting | 19:24 |
nik90|Dinner | ahayzen: http://developer.ubuntu.com/apps/platform/guides/acceptance-testing-using-the-page-object-model/ | 19:24 |
ahayzen | nik90|Dinner, https://trello.com/c/2p7zUffL/278-music-refactor-ap-tests-to-use-python3-correct-objectname-test-var-names | 19:24 |
nik90|Dinner | ahayzen: until then I think it is best to stick with the current method you have | 19:24 |
ahayzen | nik90|Dinner, its on my list | 19:24 |
ahayzen | nik90|Dinner, yeah probably | 19:25 |
nik90|Dinner | oh btw image 177 is awesome :) some nice unity8 improvemnets | 19:25 |
nik90|Dinner | anyways as my nick says, going for dinner | 19:25 |
ahayzen | +1 | 19:26 |
pmcgowan | jdstrand, whats missing? | 19:26 |
pmcgowan | would need bz or zb | 19:26 |
jdstrand | istr HTML5, pure QML, an extension alone | 19:27 |
jdstrand | I wanted to test the sensors bug and just wanted QML | 19:27 |
jdstrand | then noticed it wasn't there | 19:27 |
pmcgowan | App with Simple UI? | 19:27 |
pmcgowan | jdstrand, I see 7 templates | 19:28 |
jdstrand | pmcgowan: you are on utopic? | 19:28 |
pmcgowan | jdstrand, trusty | 19:28 |
jdstrand | yeah, on utopic there are 3 | 19:28 |
pmcgowan | Installed: 3.1.1+14.10.20140805.1-0ubuntu1~0trusty1 | 19:29 |
pmcgowan | thats the plugin | 19:29 |
pmcgowan | got update yesterday | 19:29 |
pmcgowan | jdstrand, what version qtcreator-plugin-ubuntu | 19:30 |
jdstrand | 3.1.1+14.10.20140716-0ubuntu1 | 19:31 |
jdstrand | seems I am out of date | 19:31 |
jdstrand | pmcgowan: ok thanks. let me play with it and I'll file a bug. thatnks for pointing me in the right direction | 19:31 |
jdstrand | (file a bug if needed) | 19:31 |
balloons | nik90|Dinner, all of these merges seem to be unapproved by jenkins | 19:57 |
=== nik90|Dinner is now known as nik90 | ||
nik90 | balloons: that's because we don't have debian packaging ready | 19:58 |
nik90 | balloons: jenkins doesn't run or merge the clock reboot merges, I do it manually | 19:58 |
balloons | nik90, ahh ofc ofc | 19:59 |
balloons | wow, dholbach's merge is making more sense | 20:00 |
balloons | though I'm confused by how we're doing it.. I digress | 20:00 |
balloons | fastscroll is looking good, just investigating a couple things | 20:00 |
nik90 | yeah that's why I have been pushing to get the infrastructure like dbian packaging, cmake, translation ready parallely as I work on the design spec implementation. | 20:01 |
DanChapman | ogra_, sorry had to shoot out. Right ok thanks, that narrow's it down a bit and i'm guessing the conf file never gets created/ is empty if created? | 20:08 |
balloons | nik90, I'm missing some depends :-( | 20:11 |
nik90 | balloons: which MP? | 20:11 |
balloons | fastscroll it seems.. I swear I ran this before | 20:12 |
nik90 | balloons: can you paste the depends errors that you get | 20:12 |
balloons | MainClock.qml:20 module "DateTime" is not installed | 20:12 |
nik90 | balloons: ah that :) | 20:12 |
nik90 | balloons: I am assuming you are running from the terminal, in the README.developers file, there are instructions on compiling the c++ plugins that we ship with clock reboot | 20:13 |
balloons | I did compile.. so it's odd | 20:13 |
nik90 | hmm that's weird then | 20:14 |
balloons | yea, I'll blame me tho | 20:14 |
ahayzen | balloons, hmm i need to wait for a page with a listview to appear wht is the best way todo this? | 20:14 |
nik90 | DateTime is essentially the backend/modeuls/DateTime folder | 20:15 |
nik90 | s/modeuls/modules | 20:15 |
balloons | it's whining about other things now too | 20:15 |
balloons | I see it built libdatetime.so | 20:15 |
nik90 | balloons: may be clean the build files and try fresh? | 20:15 |
* balloons didn't pass the import path | 20:15 | |
nik90 | ah | 20:16 |
balloons | so pretty | 20:16 |
balloons | k, so final question, why did you remove objectName: "location" + index? | 20:18 |
balloons | you switched to just location | 20:18 |
nik90 | ah that's because location isn't inside a listview | 20:22 |
balloons | I was just having a look | 20:22 |
nik90 | we used the location + index to target specific items in a listview | 20:22 |
nik90 | it was done accidentally by carla and I told here I would fix it in my end | 20:22 |
balloons | nik90, nevermind, I got it | 20:23 |
balloons | slightly confusing, but literally it's an objectname on the "location" label | 20:23 |
balloons | hah | 20:23 |
balloons | approved with comment | 20:23 |
DanChapman | is it just me or is myapps.developer.ubuntu.com down? | 20:27 |
nik90 | hehe | 20:27 |
DanChapman | scrap that it's back | 20:27 |
balloons | just you | 20:27 |
balloons | mwahahah | 20:28 |
nik90 | DanChapman: was just about to say that | 20:28 |
balloons | btw, hello DanChapman :-) | 20:28 |
DanChapman | :-D hey balloons nik90. How's it going? | 20:28 |
nik90 | DanChapman: hey man, going great :) | 20:28 |
balloons | DanChapman, pretty good. Just trying to get merges, well you know, merged ;-) Which always feels so great and productive | 20:29 |
balloons | nik90, I love the snapback on swipe to delete.. fun | 20:32 |
nik90 | balloons: I know rite :D | 20:33 |
nik90 | balloons: btw I would suggest reviewing the update-pagewithbottomedge MP before the swipe-delete MP. Atleast that's the order it will go into trunk. | 20:33 |
balloons | nik90, interesting interaction with fastscroll, while in search mode | 20:35 |
nik90 | balloons: what do you mean? | 20:35 |
balloons | nik90, well, it doesn't work | 20:36 |
balloons | that's interesting right? | 20:36 |
nik90 | balloons: let me try in my end | 20:37 |
nik90 | balloons: works for me | 20:38 |
nik90 | balloons: as in I type a few letters, which reduces the results to few alphabets and the fast scroll appears on the side | 20:38 |
balloons | hmm | 20:41 |
balloons | works on device | 20:41 |
balloons | ok, I'm crazy | 20:41 |
nik90 | although now that I think about it, the fastscroll shouldn't appear when the results fill less than a page. For instance if I search for "New", then the results will include about 4-5 cities in which case a fast scroll doesnt make sense. | 20:42 |
nik90 | I will need to scour upstream to see how to do that | 20:43 |
balloons | ahh yes, that is a difference | 20:44 |
balloons | I think that's what I was seeing at first, just not realizing it was grayed out | 20:44 |
nik90 | yup | 20:44 |
balloons | I can confirm upstream behaves better | 20:44 |
nik90 | yup | 20:44 |
balloons | bah, blasted firefox corrected my spelling to be UK English again :-( | 20:46 |
balloons | it's a conspiracy | 20:46 |
nik90 | lol | 20:47 |
nik90 | balloons: fixed the fastscroll hide behavior. It now won't be shown when the results is less than 2 pages long | 20:49 |
nik90 | balloons: copied from upstream | 20:50 |
balloons | nice | 20:50 |
nik90 | hey popey is back | 20:52 |
nik90 | it helps to say hi :=) | 20:52 |
balloons | nik90, so PageWithBottomEdge.qml is upstream? Did you pull the emulator code from there too? | 20:53 |
nik90 | balloons: yup | 20:53 |
balloons | which project? | 20:54 |
nik90 | balloons: initially carla wrote her own implementation, but after pull in the latest update it broke. So I got it again from upstream. | 20:54 |
nik90 | balloons: dialer app, address book | 20:54 |
nik90 | they all use the same implementation | 20:54 |
balloons | ohh address book | 20:54 |
balloons | this is the work of elopio and indeed it is | 20:54 |
nik90 | balloons: https://bazaar.launchpad.net/~boiko/address-book-app/fix_autopilot/view/head:/tests/autopilot/address_book_app/pages/_common.py | 20:54 |
balloons | elopio, I'm considering having a helper for the bottom edge.. crazy or ? | 20:55 |
balloons | nik90, so 3 down.. I'm happy with them | 20:55 |
balloons | no we have sound and vibration stuff | 20:55 |
balloons | *now | 20:55 |
nik90 | balloons: awesome | 20:56 |
nik90 | balloons: for those 2 branches, you will to install the respective upstream package | 20:56 |
nik90 | balloons: in the case of the vibration, there is a deb package | 20:56 |
nik90 | but for the alarm sound, you will have to compile and install the sdk manually | 20:57 |
balloons | which should I start with.. aka, give me an order | 20:57 |
nik90 | balloons: they are independent. So your choice :) | 20:57 |
balloons | vibration is first | 20:57 |
nik90 | :) it should look like https://imgur.com/f9Wf3ao | 20:58 |
balloons | nik90, ohh right, when I push to the phone, it's not clock or ? | 20:58 |
elopio | balloons: we need a helper, but it has to be specific to each project. | 20:58 |
elopio | the toolkit doesn't provide a bottom edge component. | 20:58 |
elopio | on the telephony apps, the qml is duplicated between them I guess, so we would have to duplicate the helper code too. | 20:59 |
balloons | elopio, ahh right.. totally independent. yep, thanks | 20:59 |
balloons | elopio, yea, that was my concern, but you are correct I guess | 20:59 |
nik90 | elopio: add clock app to that as well :) | 20:59 |
balloons | so we're copying much across to clock | 20:59 |
balloons | and I imagine others will implement the edge very similar | 20:59 |
balloons | nik90, unity needed a restart to see it ;- clock -reboot | 21:00 |
nik90 | balloons: after installing the latest indicator-datetime package? | 21:00 |
nik90 | balloons: hurray -> https://code.launchpad.net/~sergiusens/ubuntu-clock-app/reboot-packaging/+merge/230011 | 21:01 |
balloons | nik90, no I need to install the packed | 21:02 |
nik90 | balloons: not sure I follow..so on the phone you will have to install the armhf indicat-datetime package and then restart the datetime service (or reboot phone) after which you can push the clock reboot MP and see if the vibration works or not | 21:03 |
balloons | i installed the deb and pushed the click I built | 21:05 |
balloons | so just have to check it out | 21:05 |
nik90 | ok | 21:06 |
nik90 | balloons: you are missing out on the ease of use of doing this via qtcreator :) | 21:07 |
nik90 | ease of doing this via* | 21:07 |
balloons | hmm, no vibration on flo | 21:07 |
nik90 | what about mako? | 21:07 |
balloons | trying that next | 21:07 |
balloons | still updating mako image | 21:07 |
nik90 | it worked for me during my testing, but I can point that out to charles | 21:07 |
balloons | mako that is? | 21:08 |
balloons | err flo that is? | 21:08 |
charles | haptic hasn't landed yet | 21:08 |
charles | it's in silo 6 but there's some weird issue that I need to figure out today | 21:08 |
charles | when I test from the PPA... no notification popup | 21:08 |
charles | when I build the indicator myself... notifications | 21:08 |
charles | anyway, might be something small, I just haven't gotten to it yet today | 21:09 |
nik90 | charles: hmm I installed the deb from the jenkins comment and it worked nicely for me. | 21:10 |
nik90 | charles: I didn't try the PPA yet | 21:10 |
balloons | I did set the alarm before it was installed | 21:10 |
charles | nik90, try the 006 ppa and see what happens | 21:10 |
nik90 | balloons: that shouldn't matter | 21:10 |
nik90 | charles: ok | 21:10 |
balloons | charles, should it work on flo? | 21:12 |
charles | balloons, you mean should vibrate mode work? | 21:12 |
balloons | charles, yes | 21:12 |
balloons | should it vibrate? | 21:13 |
charles | balloons, no not yet, it's still in silo 6, hasn't landed... | 21:13 |
balloons | well I mean I pulled the deb and installed it | 21:13 |
balloons | nik90, I noticed when I scroll the sound page I lose the header | 21:13 |
nik90 | balloons: yeah that's by design similar to the web browser | 21:14 |
charles | balloons, I don't have a flo device, does it have vibration mode? :) | 21:14 |
nik90 | balloons: its supposed to do that in other pages but we have some issues with that | 21:15 |
balloons | I'm wondering.. I don't know, hence the question.. | 21:15 |
balloons | ^^ flo vibration that is | 21:15 |
nik90 | charles: btw zsombor figured out why the alarm sound url was lost :) He has a fix ready | 21:15 |
balloons | nik90, so what's the custom sound backend stuff? I guess I'll try that | 21:16 |
charles | nik90, url? | 21:16 |
nik90 | balloons: it adds suport for custom alarm sound per alarm | 21:16 |
balloons | ahh so I can actually select a sound | 21:16 |
nik90 | charles: we had a issue where the SDK used to loose the alarm sound that was chosen by the user | 21:16 |
nik90 | balloons: yup | 21:16 |
nik90 | charles: the alarm.sound property used to turn up empty | 21:17 |
charles | nik90, what was the cause? | 21:17 |
nik90 | charles: https://code.launchpad.net/~zsombi/ubuntu-ui-toolkit/alarm-sound-fix/+merge/229800 | 21:17 |
nik90 | charles: he forgot to initialise in the constructor I think | 21:18 |
charles | cool | 21:18 |
charles | zsombor's patch looks good | 21:20 |
charles | I hope that DatePicker test issue doesn't block this, that looks unrelated IMO | 21:20 |
nik90 | yeah | 21:21 |
balloons | nik90, yea select a city does the same disappearing header thing. So is there a bug for that or / | 21:21 |
nik90 | balloons: when does the header disappear? When you scroll up? | 21:22 |
balloons | scrolling up to move down the list | 21:23 |
nik90 | balloons: that's the intended behavior. To show the header again you scroll down. | 21:23 |
nik90 | balloons: that's also what the browser does when you scroll the page up | 21:24 |
nik90 | charles: I tried the PPA. Works for me. | 21:24 |
nik90 | charles: I am able to enable/disable the vibrations | 21:24 |
nik90 | on Mako | 21:24 |
balloons | sure, I didn't know if it was intended or not | 21:24 |
charles | nik90, so you've installed from silo 6, and when an alarm goes off, you get the vibrations and see the notification? | 21:25 |
balloons | nik90, sound selection seems to work | 21:25 |
nik90 | charles: yup I see the snap notification and feel the vibration. | 21:25 |
nik90 | charles: disabling the vibration only shows the snap notification | 21:25 |
balloons | nik90, I will say the checkbox selection is a bit weird.. I want to select the label, but it doesn't check the box | 21:26 |
nik90 | balloons: did you hear a different ringtone when the alarm rang? | 21:26 |
nik90 | balloons: I agree. That's something I can easily fix. Will do so now actually | 21:26 |
balloons | nik90, yes I get the ringtone I select. interesting the alarm is still ringin just once | 21:26 |
nik90 | balloons: what? | 21:27 |
nik90 | balloons: you mean you hear the alarm ring once and then it is dismissed? | 21:27 |
balloons | indeed.. a familar bug | 21:28 |
nik90 | impossible, that bug was fixed a long time ago. It should ring for a duration of 10 mins minimum without any intervention | 21:28 |
nik90 | balloons: which image is this? | 21:28 |
balloons | this is still flo, image 17 | 21:29 |
balloons | 177 | 21:29 |
nik90 | I am not sure but that could be due to flo? | 21:30 |
nik90 | u don't have a mako? | 21:30 |
nik90 | it was confirmed by QA that the alarm keep ringing now until dismissed or it times out automatically after 10 mins | 21:31 |
balloons | mako is flashing | 21:31 |
nik90 | ah ok | 21:31 |
balloons | slow inet, and I wanted it on the latest image | 21:31 |
popey | nik90: heya | 21:37 |
popey | nik90: hows it going? | 21:37 |
nik90 | popey: :) hi, going great. busy times | 21:38 |
nik90 | popey: you missed our meeting, I was waiting for a while :P | 21:38 |
ahayzen | nik90, did dpm not do urs? | 21:40 |
popey | oh, i asked others to cover it | 21:40 |
popey | sorry about that | 21:40 |
nik90 | popey: j/k balloons held the meeting :P | 21:40 |
nik90 | ahayzen: ^^ | 21:40 |
ahayzen | \o/ | 21:40 |
balloons | lol | 21:41 |
popey | haha | 21:41 |
popey | you guys | 21:41 |
nik90 | I got to work on my sarcasm :) | 21:42 |
popey | Oh no, your sarcasm is *fine*. | 21:42 |
popey | ^ lesson 1. | 21:42 |
ahayzen | hah | 21:42 |
nik90 | lol | 21:42 |
balloons | nik90, you know what, I realize the notification also doesn't show on flo for alarms | 21:44 |
balloons | you will be happy to note mako is fine | 21:44 |
nik90 | I am :) .. regarding flo, it could be that alarm hw_backend is not present (wild guess) | 21:45 |
balloons | so mako seems fine, just confirming the branches. flo also doesn't let me select different sounds, heh | 21:47 |
balloons | well I mean, different sounds didn't play | 21:47 |
balloons | nik90, so testing on mako, I'm not getting different sounds playing | 21:49 |
nik90 | balloons: did you push the SDK branch I linked in the MP? | 21:50 |
balloons | nik90, on this? https://code.launchpad.net/~nik90/ubuntu-clock-app/add-custom-sound-backend/+merge/225812 | 21:50 |
nik90 | balloons: yes | 21:50 |
balloons | I don't see anything | 21:50 |
nik90 | oh the bug report in the MP has a merge proposal .. let me get the link | 21:51 |
nik90 | https://code.launchpad.net/~zsombi/ubuntu-ui-toolkit/alarm-sound-fix/+merge/229800 | 21:51 |
nik90 | balloons: pushed a fix where you can now click on the label to select the alarm sound | 21:58 |
nik90 | balloons: did the same for the alarm vibration switch as well. | 22:01 |
balloons | nik90, k, trying it out | 22:09 |
ybon | is tvoss sometimes around here? | 22:10 |
nik90 | ybon: let me guess issues with Qtlocation on OSMTouch? | 22:12 |
nik90 | ybon: hi :) | 22:12 |
ybon | nik90: hehe, yes :) | 22:13 |
nik90 | ybon: osmtouch was talked about a lot during the day :P | 22:13 |
ybon | oops | 22:13 |
ybon | why that? | 22:13 |
nik90 | ybon: no worries not your fault :) | 22:14 |
ybon | ok :) | 22:14 |
nik90 | just figuring some recent issue with QtLocation stuff | 22:14 |
ybon | ok | 22:14 |
nik90 | the camera-app is having some issue with geo-tagging and so osmtouch came up | 22:14 |
ybon | maybe I should highlight on "osmtouch" here | 22:14 |
nik90 | the discussion was on #ubuntu-ci-eng not this channel | 22:15 |
ybon | oh ok | 22:15 |
balloons | nik90, hey I get vibrations :-) | 22:15 |
nik90 | balloons: cool :D | 22:15 |
balloons | no notification though, and no sound after 1 play | 22:15 |
balloons | and I can't make them stop | 22:15 |
balloons | haha | 22:15 |
nik90 | makko? | 22:16 |
balloons | yea | 22:16 |
nik90 | totally weird | 22:16 |
balloons | I was attempting to test the sound mp | 22:16 |
nik90 | my brain can't think anymore why that might be happening for you | 22:17 |
ybon | nik90: is there a final word on the location issue, or is this still under investigation by the Jedis? :) | 22:17 |
nik90 | ybon: not sure, wasn't paying too much attention to it. But I think it is still undergoing | 22:17 |
nik90 | ybon: it was on today's landing email | 22:17 |
ybon | ah, interesting, let me read it in details, so :) | 22:18 |
ybon | I generally just read until I see if there is a promoted image or not :p | 22:18 |
nik90 | ybon: https://bugs.launchpad.net/qtmir/+bug/1352977 | 22:19 |
ubot5 | Ubuntu bug 1352977 in QtMir "Creating a prompt session for an app without a surface does not show the prompt" [Critical,In progress] | 22:19 |
balloons | nik90, yea I think the sound and vibration both are a no go for me | 22:19 |
balloons | I'm gonna reflash hah | 22:20 |
ybon | oh, ok, thanks, I've been notified for this bug btw :) | 22:20 |
balloons | phone is not happy | 22:20 |
nik90 | balloons: I will try it out again tomorrow. Hopefully by then the silo 6 is published to make testing easier | 22:20 |
balloons | nik90, yes, I'll review again once things land | 22:20 |
balloons | hope that helps a little | 22:20 |
balloons | we did iterate a bit on things | 22:20 |
nik90 | balloons: yup. will let you know when that happens | 22:21 |
nik90 | yes indeed. the behavior is a bit better now | 22:21 |
nik90 | hopefully tomorrow dholbach and I will have answer to the debian packaging stuff | 22:21 |
nik90 | anyways I am eod | 22:21 |
nik90 | balloons: cu tomorrow :) | 22:21 |
nik90 | thnx for the reviews | 22:22 |
balloons | nik90, indeed.. night! | 22:22 |
=== salem_ is now known as _salem | ||
Boogle | Hello Im am working on qml app but i cannot get the audio to play ifinite i am using the qt multimedia 5.0 | 23:48 |
Boogle | Im sorry my grammar was not good I typed very fast | 23:50 |
Generated by irclog2html.py 2.7 by Marius Gedminas - find it at mg.pov.lt!