=== chriadam is now known as chriadam|away === mpt_ is now known as mpt [08:01] Good Morning all o/ [08:05] DanChapman: morning :) [08:05] Hey all! In a UbuntuListView, in the PullToRefresh component, how can I disable the ActivityIndicator? I want to see only the text (Pull to refresh) [08:05] zsombi, ^^ [08:10] rpadovani: I'm affraid you cannot [08:11] rpadovani: why would you need that? [08:12] zsombi, because I already have a different activy indicator: I implemented a bouncing bar like in scopes when the function I call to refresh is running [08:12] *activity [08:15] rpadovani: well, this behaviour of PullToRefresh is the default. the ActivityIndicator is the default, and will thus be used as is. If you want a different one, then you create a theme, and then do the style for the ActivityIndicator, then you will have consistency there. [08:15] rpadovani: beside, the indicator is shown for a pretty short time, so if your model is fast enough, teh indicator shouldn't be for too long there :) [08:15] zsombi, that is how it works now in reminders, but dpm asked to use default components :-) [08:16] rpadovani: well, then PullToRefresh works as dpm requested, uses default components [08:17] zsombi, sorry, I mean that now we have a custom implementation of PullToRefresh and our activityindicator, but dpm asked to switch to default pulltorefresh [08:17] dpm, this is a ping, when you have time please :-) [08:18] rpadovani: so then you have to switch your activity indicator as well to default :) [08:18] zsombi, this is a good idea, indeed :D [08:18] rpadovani: the only way to get your indicator to be shown in PullToRefresh is the theme. [08:19] mzanetti, ^^ [08:19] zsombi, ok, thanks :-) [08:19] rpadovani: unless we expose a property to configure the animation there... but that takes time [08:27] rpadovani: dunno... not sure if its worth to go through the theming hazzle [08:27] rpadovani: but yeah, our pulldown component needs some love :) [08:28] it triggers too easily [08:28] mzanetti, no, definitely not. My question is, do we switch both pulldown and activityIndicator to default one? I love our activiy indicator :D [08:28] yeah, me too [08:29] there was a reason after all not to use the default one [08:37] mzanetti, ok, then maybe I can try to improve our pulldown component looking to the sdk one [08:37] I'll talk also with dpm to hear what he thinks [08:37] yep [08:38] zsombi: what does the activityindicator in the pulldown actually wait for? [08:39] zbenjamin: waits for the refresh to be completed, rt()m [08:39] mzanetti: ^ that was 4 U , sorry zbenjamin :) [08:39] zsombi: np :) [08:39] mzanetti: in order to get the animation vanish, you need to inform teh component about completion [08:40] Hi [08:41] mzanetti, in our case refreshing: notes.loading [08:41] rpadovani: did you try to keep "refreshing" property to false all the time? [08:42] rpadovani: well, you don't have to wire it up I guess, no? [08:42] mzanetti, let my try [08:43] mzanetti, doesn't work, when you pull down it is set to true, so it will be visible forever [08:44] rpadovani: try this: Binding { target: pullToRefresh; property: "refreshing"; value: false} [08:46] mzanetti, nope [08:47] ok then... I guess we should report a bug to the pulldown thing then... [08:47] mzanetti, do you want I push in a ~reminders-app branch so you can do some tries? [08:48] the fact that it sets the property to true itself has nasty side effects in other ways too... will break bindings [08:48] zsombi: ^ [08:48] would you agree? [08:49] mzanetti: the property is set to true with a binding afaik [08:49] zsombi: but then you need to set it to false using java script [08:50] mzanetti: well, if you do it like in the documentation, it won't require JS [08:50] mzanetti: rpadovani: like refreshing: rssFeed.status === XmlListModel.Loading [08:51] zsombi: but how come it sets refreshing to true even if you do: refreshing: false then? (at least according to rpadovani) [08:52] mzanetti: well, dunno that tbh... [08:52] mzanetti: the sample we have in UITK gallery drives the refreshing, and works like charm... [08:53] Good morning all; happy Monday, and happy Yorkshire Pudding Day! :-D [08:54] mzanetti: rpadovani: I've dbl checked: the refreshing property is not altered by the PullToRefresh component... [08:55] mzanetti, zsombi wait, I did a mistake: I thought that the animation was managed by refreshing property, but instead refresh() signal waits refreshing to be set to false [08:55] zsombi, indeed [08:55] aha :) [08:56] rpadovani: happens ;) [08:57] mzanetti, zsombi so I can minimize the animation doing onRefresh: {refreshing=true;refreshing=false} [08:57] rpadovani: well, you can, but why would you? I mean if the model refresh takes time, it would be wise to show sthing while teh new data arrives, right? [08:59] zsombi, because we want our activity indicator and default pulldown because works better than our one. It's a very low priority task, so don't wast time on this :-) [08:59] zsombi: the thing is that the refresh can take a long time in our case. but while its refreshing you can still use the list [08:59] zsombi: that's why we decided to go with a activitybar like the browser or the dash [08:59] dpm: hey, can you take a look at https://bugs.launchpad.net/ubuntu-clock-app/+bug/1380248 and suggest some solutions to it? If it really requires UI String change, I can get them approved by the designer then. [08:59] Ubuntu bug 1380248 in Ubuntu Clock App "Alarm Settings: "%1m" can't be translatable in the right way" [High,Confirmed] [09:00] mzanetti: well, PullToRefresh does not forbid you to use the list... if the list has data, you can still scroll it... [09:00] rpadovani: but I still don't understand... why do you even set refreshing to true? [09:00] rpadovani: can't you just leave it to false? [09:01] mzanetti, no, because as I understood (maybe I'm wrong) refresh() waits refreshing changes to false, if is already false it doesn't see it [09:01] I'm sure refreshing: false doesn't work [09:02] doesn't make any sense to me.. push your code please [09:05] mzanetti, lp:~rpadovani/reminders-app/PullToRefresh I modified only NotesPage.qml, hope I'm not doing some embarassing error :/ [09:06] lets see :) [09:10] brb [09:15] rpadovani: yeah, please file a bug. the activityindicator becomes visible even if refreshing is still set to false [09:30] mzanetti, I'm happy I didn't unlearn to code :D Bug #1380541 [09:30] bug 1380541 in Ubuntu UI Toolkit "[PullToRefresh] the ActivityIndicator becomes visible even if refreshing is set to false" [Undecided,New] https://launchpad.net/bugs/1380541 [09:30] Orphis, ping [09:30] tvoss: Pong [09:32] popey: can you confirm this bug on Calnedar, create an event with personal calendar, edit event and then try to change calendar to like your google calendar, it won't let you change the calendar. [09:36] popey: https://bugs.launchpad.net/ubuntu-calendar-app/+bug/1380539 [09:36] Ubuntu bug 1380539 in Ubuntu Calendar App "Changing an event's calendar fails without user visible error" [High,Confirmed] [09:38] mihir: will do [09:38] though i have checked , but want double check :) [09:39] mihir, popey confirmed [09:39] rpadovani: thanks :) [09:39] that was easy [09:39] thanks rpadovani [09:48] nik90: did you have bugs for alarm model updates for teh toolkit? I cannot find those... [09:49] zsombi: Regarding the model refresh slot? [09:50] nik90: no, the one you needed(?) when you add a new alarm, which refreshes teh whoel alarm list [09:51] zsombi: I think that marked as fix released when you fixed the whole alarm list from being refreshed after updating an alarm. but let me try to find it. [09:51] nik90: how about when one is removed? [09:51] nik90: I think we had some need for those as well, right? [09:52] zsombi: I don't think that was removed...tbh I haven't checked that case [09:52] s/removed/reported [09:52] nik90: not removed, but when an alarm is removed, that refreshes teh whole model, right? [09:52] ok, we agreed you will report one :) [09:53] nik90: so pls, remort all alarm bugs so I can work on those... [09:53] nik90: or at least justify why the work on alarms is proceeding... [09:53] zsombi: I am a bit slightly confused :)...so are we talking about the use case that we discussed few days back? [09:53] or th eonle really really long time ago? [09:53] nik90: few weeks back [09:53] nik90: when we fixed the alarm update [09:53] ok I recollect now [09:53] nik90: there you realized that removing an alarm also refreshes all teh alarms [09:53] let me find the bug, 1 sec [09:58] zsombi: https://bugs.launchpad.net/ubuntu-ui-toolkit/+bug/1359112 [09:58] Ubuntu bug 1359112 in Ubuntu UI Toolkit "Alarm model is updated after every change causing all the listview items to be repainted" [High,Fix released] [09:59] zsombi: I haven't mentioned the delete alarm case although I can reproduce it [09:59] nik90: perhaps then I did.... never the less, it is a valid one [10:00] zsombi: give me a sec to report a new bug [10:00] nik90: and if you have that reset() request as well, push that too [10:00] zsombi: yup doing it atm [10:04] zsombi: bug 1380553 [10:04] bug 1380553 in Ubuntu UI Toolkit "Alarm Model is refreshed after creating/deleting an alarm" [Undecided,New] https://launchpad.net/bugs/1380553 [10:07] help, I'm starting to type json when I wanne type jason [10:07] is there a cure ? :p [10:14] nik90: the bug you correlated it to is tagged... shouldn't this one be as well? [10:15] zsombi: I thought its you who tags bugs as rtm priority or not :) [10:15] well your team [10:15] nik90: not really... none of us should [10:16] nik90: at least not with that tag... [10:23] zsombi: next bug 1380559 [10:24] bug 1380559 in Ubuntu UI Toolkit "[API Request] Alarms API should expose a slot Update() to allow app devs to manually refresh the model" [Undecided,New] https://launchpad.net/bugs/1380559 [10:25] nik90: I guess this is pretty critical, right? [10:26] yes [10:26] does it affect any rtm functionality 4 u? [10:27] zsombi: yes since when a repeating alarm is triggered, the clock app bottom edge reads "No Active Alarms" since the alarm date has passed. [10:28] nik90: ok, dpm U there? [10:28] nik90: eventually you could tag it as well... [10:29] zsombi: should I tag both of those bugs now ? [10:29] nik90: yes [10:31] zsombi, I will be in about 30 mins. Feel free to ping and I'll try to answer any questions [10:31] nik90, would you mind pinging me again with the link of what you wanted me to look at earlier on today? [10:32] dpm: sure, https://bugs.launchpad.net/ubuntu-clock-app/+bug/1380248 [10:32] Ubuntu bug 1380248 in Ubuntu Clock App "Alarm Settings: "%1m" can't be translatable in the right way" [High,Confirmed] [10:32] \\nick [10:32] \quit [11:07] dpm: so, we have two more alarm bugs which are tagged [11:10] 13:27 nik90: zsombi: yes since when a repeating alarm is triggered, the clock app bottom edge reads "No Active Alarms" since the alarm date has passed. [11:10] nik90: maybe you should add this to teh bug [11:30] zsombi: sure [11:30] nik90: I've already added [11:31] zsombi: ah thnx [12:07] nik90: https://code.launchpad.net/~zsombi/ubuntu-ui-toolkit/alarm-data-adaptation/+merge/237611 [12:07] nik90: you can test it on your desktop [12:07] nik90: however remember that you need the qtorganizer5-eds change from renato! [12:36] zsombi: just got home, sure will test it out [12:38] zsombi: I don't think renato's patch has landed yet..so it wouldn't be in utopic desktop yet. And his MP's doesn't output amd64 packages. So I will have to wait for jenkins to build armhf packages for your MP and then test on the phone [12:39] nik90: thn you can test with memory backend. What I did was that I branched renato's MR, and make install-ed it [12:40] nik90: I saw the MR not passing yet, but this is a way to brute force the qtorganizer-eds to be testable [12:41] ok === davidcalle_ is now known as davidcalle [12:50] renatu, hi :-) Do you have 5 minutes? I have a question about multipleselectionlistview :-) [12:50] rpadovani, yes [12:51] renatu, thanks! So, I implemented the multiple selection in browser, works all very well but delete of multiple things. It works for 1 element, but if I select n+1 arguments, it deletes only n elements [12:51] renatu, this is the code for the delete, I used dialer-app as base [12:51] https://bazaar.launchpad.net/~rpadovani/webbrowser-app/1351167/view/head:/src/app/webbrowser/HistoryView.qml#L142 [12:52] let me see [12:54] rpadovani, could you try replace "historyView.historyDomainRemoved(domain)" by "console.debug(domanin) to check if it is working correct [12:54] I believe the problem is that you are removing the items while interacting over it [12:54] you should store the domanins in a extra list [12:55] renatu, items.count is right (like 2) but it prints only 1 domain [12:55] ok [12:55] renatu, I can try to it, thanks === _salem is now known as salem_ === rmescandon is now known as rmescandon-lunch [13:09] renatu, aha! Saving domains list and removing from there worked well, thanks :-) [13:09] oSoMoN, ^^ [13:10] excellent! [13:10] rpadovani, yes as I suspected you are removing from the list while interacting over it [13:16] oSoMoN, I did the MR, I'll start to work on other things in history :-) [13:24] renatu: your qtorganizer branch fails on CI [13:24] mzanetti, o/ quick question: what do you think of https://code.launchpad.net/~rpadovani/reminders-app/multipleAccounts/+merge/237682 - do you see an easy way to use an OptionSelector instead of a ListView? [13:26] dpm: but we're opening a new page [13:26] dpm: would be odd to squeeze accounts into an optionselector while keeping the rest of the page empty [13:26] imo listview is better suited [13:27] other then that, if you want the optionselect, I don't see where the problem is [13:28] zsombi, we are aware of that, there is a intermittent test caused by EDS start and stop process during the tests [13:29] zsombi, but it is a unit test then if the silo build it ok, we are good to go [13:29] mzanetti, that I cannot add to an optionselector a new delegate as footer [13:29] mzanetti, but it's not a matter of space, is it? I.e. the optionselector can also be left expanded. The thing with listitem is that it does not show you clearly which account you've got currently selected. As per the OptionSelector issue, rpadovani can expand, but he was mentioning that he wanted to add a new delegate for the unknown account type, which seems not to be possible with optionselector [13:29] mzanetti, about the bug we talked yesterday, the user on g+ replied: http://pastebin.com/KdazQwnq [13:30] rpadovani, ah actually, why do you need a different delegate? [13:30] rpadovani: why would you want a footer [13:30] I think the current button in the footer is quite horrible anyways [13:30] should be a tick in the toolbar [13:31] dpm, because the unknown account has to execute setup.exec, but others delegate needs accountname.login() [13:32] mzanetti, because dpm wants in the list a delegate with "Unknown delegate - tap to authorize" that on click launches oa [13:32] rpadovani, ah, gotcha. And the call cannot be set dynamically? [13:33] dpm, mhhh, maybe yes, I can set a flag in the delegate that for default is false, but then add the unknown delegate with this flag set to true. But could I add something only to optionselector also if the model is set by c++ backend? [13:34] * mzanetti can't follow the discussion [13:34] rpadovani, I'm not sure I understand the part about the model being set by the backend [13:35] dpm, if model: accounts, and I cannot modify accounts, can I add something to the model? [13:37] mzanetti, maybe I'm overcomplicating something very easy, but we have a list of accounts in an option selector, and all they delegates are equals, then I need a different delegate. How can I add the different delegate to the optionselector? In listview I use footer property [13:38] for example: [13:38] Component { id: a Foo {} } [13:38] Component { id: b Bar{} } [13:38] doelegate: ifSomething ? a : b [13:38] else [13:39] delegate: Loader { source: ifSomething ? a : b } [13:39] or, if the delegate still look mostly the same [13:39] just keep one delegate and change some properties inside [13:41] mzanetti, mhh, not sure I understood. We want to do something like this: https://i.imgur.com/ujy3RQ7.jpg you have n accounts in the model accounts, then ifFlag add also the "Unknown account ..." [13:42] I like how "dpm" is pixelated in the screenshot and then written in the sketch [13:42] lol === rmescandon-lunch is now known as rmescandon [13:43] rpadovani: well, I'm sorry, I still don't see where the problem is tbh [13:43] isn't this just like this? [13:44] delegate: Label { text: model.authenticated ? model.name : "UNKNOWN - Do stuff by clicking" } [13:45] mzanetti, the uknown isn't in the model [13:45] *unknown - there is no way I spell it right [13:47] rpadovani, excellent, thanks [13:49] rpadovani: so the problem is still that you can't know if an account is authenticated or now? [13:49] err, authorized [13:50] mzanetti, no, the problem is I have a model with all authorized accounts, then I have a flag that says if there is at least one unauthorized account. If this flag is true, I want to add another voice at the end of the listview [13:50] mzanetti, well, it's not actually dpm in the screenshot ;) [13:50] mzanetti, at the end of the optionSelector [13:50] because in the listview I use footer and it's easy [13:51] rpadovani: but that doesn't match with dpm's sketch, does it? [13:52] mzanetti, this is the dpm's sketch, he has one authorized account and at least one unauthorized. So he has a model with one account [13:52] and the unAuthorizedFlag set to true [13:53] so if you have 3 unauthenticated accounts, would there still only be one UNKNOWN shown in reminders? [13:53] rpadovani, would that make it easier to implement? http://i.imgur.com/zT8A3lo.jpg [13:53] mzanetti, yes [13:56] dpm, you have a working implementation right now, there is only that height set on component on completed that is a bit strange. Anyway, yes, this is easy to implement, I think. It's similar to the first one I implemented [13:59] rpadovani, cool, my point is to separate authorized accounts from those which require authorization. Question: does it make sense to have a list of unauthorized accounts, though? I.e. if I've got 2, is it worth having an entry for each one of them? Can they be authorized individually? [14:00] dpm, I'm not sure and I cannot verify right now, I have to see what AccountService gives to us [14:01] popey, all set? [14:01] on my way to the hangout [14:02] am there ☻ [14:02] ah [14:02] hangout? [14:03] team one. [14:03] so not on-air? [14:03] no [14:03] mzanetti, anyway, I don't find any simple way to create n+1 delegates in an option selector if model has n delegates [14:03] ;_; I have to wait 1 whole day to ask more questions? [14:04] rpadovani: I thought you want n delegates only [14:05] rpadovani: like if there's 5 unauthenthicated accounts you'd show 5 of them [14:05] mzanetti, ok, you know, I'm not very good to explain what I want. Anyway, did you read my message about the bug user reported on G+? [14:06] mzanetti, I think has been lost in the conversation. He replied with that paste: http://pastebin.com/KdazQwnq [14:06] rpadovani: dpm: why don't we show the actual number of accounts? [14:06] if you press the "UNKNOWN" one, which would be selected then? [14:07] rpadovani: yeah, seen that... sadly not totally helpful the log [14:08] mzanetti, gmail webapp shows a windows, I think it's created by OA, with a list of your unauthorized accounts for that service [14:08] mzanetti, I dunno if is the only way to implement that === boiko__ is now known as boiko === artmello_ is now known as artmello [14:43] oSoMoN, Hi! [14:43] om26er, hey [14:44] what’s up? [14:44] akiva-thinkpad, Hi! [14:44] oSoMoN, twitter webapps seems broken, is that related to the browser string change ? [14:44] akiva-thinkpad, hey [14:44] broken as in old html version [14:44] whats up? [14:44] * akiva-thinkpad craws back to whenst he came [14:46] om26er, there hasn’t been a UA string change recently [14:48] om26er, and I’m not seeing that on flo, the version of the twitter UX I’m getting in the browser seems rather modern [14:48] om26er, can you reliably reproduce? and if so, can you please file a bug? [14:48] oSoMoN, always happening for me. Let me share the screenshot with you [14:50] oSoMoN, http://imgur.com/tPPKGsj [14:55] om26er, I can’t even log in to the twitter webapp, it consistently crashes while authenticating me [14:57] oSoMoN, i'll report the bug [14:57] om26er, thanks [14:57] oSoMoN, something that have annoyed me for a while is this bug https://bugs.launchpad.net/webapps-core/+bug/1371075 [14:57] Ubuntu bug 1371075 in The Webapps-core project "[Facebook] shows very small images" [Medium,New] [14:57] I had reported it for the wrong package it seems, its a problem of the browser [14:58] om26er, it’s probably an umpteenth UA override bug [14:58] facebook making wrong assumptions about the kind of device it’s running on, and serving content in consequence [14:58] popey, are you running the q&a tomorrow? Last time I noticed that there was not a ton of questions, and so I was thinking of making a reddit thread beforehand for people to ask. [14:59] and have people upvote the questions they think are good [14:59] oSoMoN, only the images that are uploaded by someone are small. Video thumbnails are shown the right size. [15:08] this looks amazing ==> http://goo.gl/kR0Hyt [15:10] mihir, what is this from? [15:21] akiva-thinkpad: yes, I'm doing it tomorrow, dunno who with [15:28] artmello: can you also look at https://code.launchpad.net/~phablet-team/gallery-app/popover-position/+merge/238181 when you have time ? [15:28] artmello: and if you have bugs to pass to me please let me know, as I'm running out of high priority bugs [15:32] Hi all! [15:33] I'm trying to run an HTML5 app on Ubuntu Touch. Everything works fine on Desktop (with Ubuntu SDK) but on mobile the app is stuck at loading screen. [15:33] I think this is the bug: https://lists.launchpad.net/ubuntu-phone/msg10189.html [15:33] And this is my console output: http://pastebin.com/mULaCtqs [15:34] Is there any fix :)? [15:47] hi PaoloRotolo o/ - it seems there aren't any HTML experts around, perhaps you can ask dbarth or alex-abreu on#ubuntu-webapps [15:48] PaoloRotolo, oh, daker is on this channel too, and he can perhaps help you ^ [15:49] mzanetti: ping [15:49] akiva-thinkpad, you're my favourite person of the day! https://bugs.launchpad.net/ubuntu-filemanager-app/+bug/1380575 [15:49] Ubuntu bug 1380575 in Ubuntu File Manager App "File manager should use back in toolbar" [Undecided,Confirmed] [15:50] dpm: great, thanks :) BTW, It seems that all HTML5 apps are not working in latest uTouch build [15:51] PaoloRotolo, oh, really? that's a major bug, then. Do you have an example of an app or apps that is/are not working? [15:53] PaoloRotolo: wfm [15:53] my calculator app works... [15:54] hmm, seems my nexus 4 isn't fully up to date... [15:55] PaoloRotolo: which image you on? [15:57] popey: Ubuntu 14.10 r243 [15:57] on Nexus 7 2013 [15:57] Last updated 10/10/14 [15:57] hm. I am just updating to #279 here [15:58] on the devel-proposed channel === gatox is now known as gatox_lunch [16:08] nik90: hey [16:09] what up? [16:09] mzanetti: Hi :) I got 2 question about qml test pratices , I will be quick [16:09] popey: nice, let me know :) [16:09] mzanetti: first, is there a way to use compare() or tryCompare() to check if a value is greater than some value? [16:10] mzanetti: or perhaps I am approaching it incorrectly [16:10] nik90: for compare, you can do compare(foo > bar, true) [16:10] like for instance, I need to check if the lisitem.count is greater than 0 [16:11] ah [16:11] nik90: for tryCompare it's not that easy, in UnityTestCase (not sure about UbuntuTestCase) we have one called tryCompareFunction() [16:11] so compare(list.count>0, true, "message") [16:11] you can use it like: tryCompareFunction(function() { return foo > bar;}, true) [16:11] yeah [16:12] mzanetti: ah ubuntu test case has it as well :D [16:12] I just checked the ubuntu sdk api docs :) [16:13] mzanetti: ok, so second question..I am creating a file with common test functions like pressing a header button etc as shown in http://paste.ubuntu.com/8553488/ [16:13] mzanetti: am I doing it correctly? [16:14] I am already using it in my tests and has helped reduce code quite a bit. However I don't want to be using a wrong method here [16:14] nik90: yeah, looks good. some of them even look like being worth being upstreamed into UbuntuTestCase [16:15] mzanetti: ooh cool. As I use them more and more, I am checking if they have defined in the most general way possible. [16:15] once they stabilise a bit, I will propose them upstream [16:16] mzanetti: thnx for answering the questions, I think I am set [16:16] kk [16:29] popey, does the music scope show your music in its front page? For me it's stopped doing that and only shows me results from 7digital [16:31] dpm: yes, it shows my music [16:31] dpm, trying pulling to refresh the scope :) [16:32] ahayzen_, yeah, it shows my music for a split second after refresh, then it disappears [16:32] dpm, does the music-app show the music? [16:33] ahayzen_, yeah, it does, and also when I click on the scope's "my music" header. It will just refuse to show it on the front page [16:33] dpm, strange [16:33] we might have built some kind of scopes AI that refuses to show music if it doesn't accord to its tastes :) [16:34] haha +1 [16:34] although popey won't be able to listen to any music then :/ [16:34] * ahayzen_ hides his ABBA quickly [16:35] nothing is quick enough for... scopes! mwahaha === gatox_lunch is now known as gatox [17:08] ahayzen_, or mihir ; got a qml question [17:08] akiva-thinkpad, o/ [17:08] ahayzen_, :D [17:09] okay looking to have a flickable of labels in a row, but I want to constrain the view of said labels [17:09] because I don't want the labels which are out of the scope, to be sitting on top of other components. [17:09] i'll show you what I mean by this: === karni is now known as karni-afk [17:11] ahayzen_, http://i.imgur.com/M1DG40J.png [17:11] so the highlighted part is the part of the flickable I do not want viewable [17:11] Can I do this by placing the flickable inside a rectangle? [17:11] akiva-thinkpad, so it is going outside of the specified width of the flickable? ... try clip: true ? [17:11] ah clip [17:12] never used that [17:12] sec [17:12] akiva-thinkpad, http://qt-project.org/doc/qt-5/qml-qtquick-item.html#clip-prop [17:12] ahayzen_, worked perfectly [17:12] thanks [17:12] akiva-thinkpad, no problem [17:12] that was... omg wonderful :) [17:12] heh [17:13] !cookie | ahayzen_ [17:13] ahayzen_: Wow! You're such a great helper, you deserve a cookie! [17:13] *100 [17:13] * ahayzen_ eats cookies nom nom nom [17:13] :) === karni-afk is now known as karni [17:19] akiva-thinkpad, ping [17:19] akiva-thinkpad, i there are some trivial issues on your MR [17:19] mihir_, pong [17:19] mihir_, ah I'll go do that right now [17:20] this is the calendar app right? [17:21] I'm in a good mood; making good progress with the file manager app [17:21] akiva-thinkpad, http://i.imgur.com/M7lWwia.png [17:21] akiva-thinkpad, great :) [17:22] mihir_, you want the dividers to be full length? [17:22] or to have a margin? [17:23] akiva-thinkpad, margin will do i guess , just take a call yourself. [17:23] akiva-thinkpad, now also if you could get what i meant on From time :) [17:24] mihir_, it almost fits on your screen there. I am terribly tempted to take out the calendar label [17:24] no I don't see it [17:24] :S [17:24] ohhhhhhhhhhhhhhhhh [17:24] oh [17:24] oh I'm such a doof [17:24] *Facepalm* [17:25] akiva-thinkpad, also you need merge from trunk :) [17:25] yah will do [17:25] I am creating an app that requires creating a folder in the predefined datalocation (ie: ~/.local/share/appfolder for Ubuntu desktop) and downloading a database to it. Is it possible to do so as many times as it's required with just the network permissions or do I need to add other permissions to the .apparmor file? [17:25] akiva-thinkpad, let it be as of now. [17:25] akiva-thinkpad, we'll take call afterwards :) [17:26] heh [17:30] nik90, you around ? [17:30] mihir_: sort of [17:31] nik90, got few mins to review small MR https://code.launchpad.net/~mihirsoni/ubuntu-calendar-app/blankBubbleInWeekView/+merge/237069 [17:31] i am planning to push store updates , if we can get this done would be great :) [17:32] nik90, only if you get some time :) [17:32] mihir_: I will do it by end of tonight, would that be okay? I am kinda in the middle of some work [17:32] nik90, no issues :) take your time. [17:33] nik90, thanks. [17:33] renatu, is that EDS change will be available in latest image? [17:33] mihir, not yet, bzoltan is working on that [17:34] renatu, okay thanks for the update. [17:36] Oh my gosh person in the coffee shop, turn off your annoying phone's game music. [17:42] mihir_, I really like what you did with Repeats and Reminder; I am curious whether we can do something similar with Location, where we make it a subtitled list item rather than a manual entry [17:43] akiva-thinkpad, that was basically nik90 idea :) [17:43] nik90, oh! taking credit for my idea >:[[[[[[[[[[[[[[[[[[[[[[ [17:43] jk [17:43] akiva-thinkpad, i meant the idea of what we have done with repeat and reminders :) [17:44] ah [17:44] not the one with Location. [17:44] akiva-thinkpad, hmm location is just to enter text , and moving screen for that too would be annoying for user. [17:45] mihir_, I was thinking of moving the screen to two growing quick lists [17:45] 1 quick list would be from your contacts [17:45] the other would be from previously entered locations [17:45] and perhaps a third option would be to pin point a location on a map [17:46] writing "vancouver 124 main street, v7r 3x3 apt suite 50" manually seems way too... inefficient. [17:46] popey: any news? :) [17:46] i'll leave it as is for now [17:46] * akiva-thinkpad is working on the filemanager app, and I want to get that done today [17:48] akiva-thinkpad, yeah [17:48] lets get this merged :) [17:48] :) [18:04] well that is slightly confusing... why are the margins different for the desktop and the emulator...? [18:08] akiva-thinkpad: use units.gu [18:08] mihir, I am [18:08] thats why its so confusing... [18:08] akiva-thinkpad: then it shoudl take care based on device. [18:09] akiva-thinkpad: it shouldn't required more than 0.5 and maximum would be 1 [18:12] artmello: anything i can take care of from you tomorrow ? [18:12] nerochiaro: I will finish the review of those MR today [18:13] artmello: thanks. any bugs in your list you want to pass to me ? [18:13] mihir http://i.imgur.com/nWpMmax.png that is inconsistent; i'm at a loss as to how to deal with this. [18:13] nerochiaro: tomorrow I will take a look on the buglist for gallery, so far all the ones I was working on are handled [18:13] akiva-thinkpad, you gave 0.5 or 1? [18:14] akiva-thinkpad, also let it be the calendar it is i guess. [18:14] if you could do that today it would help, so i can start working on them on the morning [18:14] artmello: ^ [18:14] nerochiaro: sure, I drop you an email eod [18:14] artmello: excellent. thanks and have a good rest of the day. eod'ing too [18:15] nerochiaro: thx [18:24] akiva-thinkpad: in that screenshot the one on the left is better [18:24] akiva-thinkpad: what's the issue === rpadovani is now known as rpadovani|Dota [19:16] akiva-thinkpad, are you done with the changes ? [19:16] akiva-thinkpad, sorry i am after you , lol [19:53] popey, only thing worried me on calendar is , it still takes time to open a new event page :| === randomcpp is now known as gcollura [20:20] mihir_: use the qtc profiler tool to figure out where it is taking time to load stuff [20:20] mihir_: I just reduced the world city page loading time by loading models dynamically by analysing it in qtc profiler tool [20:21] nik90, we need to get this externally or it is there inside QTC ? [20:21] it is inside qtc [20:21] analyse tab === salem_ is now known as _salem [20:21] nik90, yeah got it. [20:21] thanks i'll do that. [20:22] mihir, http://i.imgur.com/bvbyW7C.png [20:23] exact same list header specifications, yet the operate differently in the emulator [20:24] akiva-thinkpad, but i guess you changed position of calendar right ? [20:25] nik90, is there any way to enable it ? i see Record button is on in Analyser [20:25] mihir_: http://developer.ubuntu.com/apps/platform/guides/lets-talk-about-performance/ [20:26] you press the green button near the record button [20:28] nik90, got it , my eyes couldn't recognize that small green play button :P [20:28] :p [20:29] * nik90 returns to writing more qml tests === A7med is now known as Neo31 [21:12] elopio: Hey I added one more qml test MP to your review todo :-) [21:19] nik90: hey, wondering how your testplan as plainbox provider thing turned out [21:20] sergiusens: hey, at the moment we have the plainbox clock app provider which I run before every push to the store. [21:20] Are we getting rid of the Loco? [21:20] sergiusens: although still from the terminal [21:20] nik90: cool, can I get the lin, please? [21:20] I just received an email from the vancouver loco saying that loco is being dropped from the name [21:20] nik90: were does the provider live? [21:20] because it is derogatory in spanish [21:21] nik90: I want to get rid of the testplan in a wiki thing :-) [21:21] elopio: https://code.launchpad.net/~ubuntu-clock-dev/ubuntu-clock-app/utopic-3.0/+activereviews (2 MPs named qml-tests) [21:21] sergiusens: at the moment the provider lives in the source tree of the clock app [21:21] akiva-thinkpad: we consider it friendly in Argentina :-) [21:21] sergiusens: so whoever is testing will need to install it and then run the manual test suite [21:22] sergiusens: however zyga is working on allowing app devs create a click package which has checkbox-touch + app tests which can then be run on the phone easily...essentially a nice gui [21:22] I believe it is a WIP at the moment. I can check with him tomorrow to see close it is to completion === marcoceppi_ is now known as marcoceppi [21:24] nik90: I prefer off phone anyways [21:25] so not an issue [21:25] :) [21:37] sergiusens, oh neat; :P [22:16] where can I find a list of the icon names