/srv/irclogs.ubuntu.com/2014/02/21/#ubuntu-app-devel.txt

=== ajmitch_ is now known as ajmitch
balloonsrenato_: your mp does fix calendar :-)00:03
renato_balloons, good00:05
renato_balloons, but the clock still broken?00:06
balloonsrenato_: yes I updated the MP with my notes. Essentially clock is unchanged00:07
balloonsrenato_: any thoughts on what's happening with clock/00:14
renato_balloons, no idea00:16
renato_I will discuss with szombi tomorrow to see if he can filter the alarms00:16
renato_on alarm api00:16
balloonsrenato_: ok, so we'll hold another day then to see if we can fix clock also?00:19
balloonsthanks for digging into this00:19
=== tsimpson_ is now known as tsimpson
dholbachgood morning06:31
=== zequence_ is now known as zequence
dpmzsombi, so to give you some background: we're making the Weather app convergent, and it works well on N4 and N10: we've got a default phone layout and a tablet layout08:37
dpmHowever, on the N7 we've got an issue whereby we've got a footer that should expand the whole width of the screen in landscape, but for some reason is stuck at a fixed size in between08:38
dpmlet me show you a pic...08:38
dpmzsombi, here it is: http://imgur.com/4a8bXJk,h3mrXJM#1 the "The Weather Channel" footer has width = mainView.Width, and strangely enough, it doesn't have that width on the N708:40
zsombidpm: so it should go all along to the edge of the screen, right?08:40
dpmzsombi, exactly. Strangely enough, that works on N4 and N10, but on N7 it fails as in the picture. Here's the bit of code that does that: http://bazaar.launchpad.net/~dpm/ubuntu-weather-app/n7-tweaks/view/head:/components/LocationTab.qml#L16808:41
dpmwe have been trying to debug this for a couple of days to get a convergent layout in for MWC, but we were a bit tapping in the dark,08:42
dpmand I thought you might spot something obvious or perhaps help us think of a workaround08:42
=== chriadam_ is now known as chriadam|away
dpmmorning popey, have you seen balloons e-mail? Can we get weather and all the other apps uploaded to the store?09:11
popeyyeah.09:12
zsombidpm:guys, ConditionalLayout can take only ONE component. Check the documentation: the ConditionalLayout.layout default [property is a Component. While this does not give error on parsing, it may not work properly09:12
zsombidmp: quote from ConditionalLayout doc: "There must be only a single component defined in the ConditionalLayout which will be instantiated upon activation."09:13
zsombidpm: in the code I see loads of components declared under the ConditionalLayout, so no wonder the items are not laid out properly09:13
popeydpm: has balloons run the AP tests on these do you know?09:14
zsombidpm: so the code should embedd all those Rectangles and ItemLayout components in ONE single element09:15
dpmpopey, all I know is the e-mail we got from him09:20
dpmzsombi, ok, thanks a lot for looking. We've got no weather developers around, so I'll try to give it a go09:21
zsombidpm: ok, good luck :)09:22
dpmand patience :) not having a device to test makes it even more "fun"09:22
zsombidpm: you can alter the MainWidth to have 90 GU for instance, then the ConditionalLayout will activate straight away09:23
dpmpopey, the r197 package from Jenkins did pass the tests. My guess is that he built a new .click manually based on that09:23
dpmzsombi, yeah, to activate the layouts I can do manual resizing on the desktop, what's been challenging has been to trigger the not-full-width footer, as on the desktop it works well09:24
zsombidpm: that's weird!09:25
dpmzsombi, wait, all the elements are already inside one single Rectangle, it's just that the indentation is off09:26
=== mpt_ is now known as mpt
zsombidpm: ah, ok... the indenting made me think it's not :)09:26
dpmyeah, just noticed that too, let me quickly fix that09:26
zsombidpm: in QtC Ctrl+A, Ctrl+I, then Strl+S :)09:31
dpmargh, too late, already fixed in manually in qt creator :)09:33
dpmbut nice to know09:33
dpmzsombi, ok, the indentation should now be correct, so I guess it's back to the drawing board: http://bazaar.launchpad.net/~dpm/ubuntu-weather-app/n7-tweaks/view/head:/components/LocationTab.qml#L16809:33
zsombidpm: question: doesn't the Page fill the entire MainView client area?09:35
zsombidpm: I don't see reason to use the mainView property to stick to the app's width09:36
zsombidpm: if some component in the hierarchy overrides that property, then you'd get in trouble09:36
zsombidpm: which may also be the case09:37
JamesTaitGood morning all; happy Friday, and happy International Mother Language Day! :-D09:37
dpmzsombi, so you're suggesting to use parent.width instead? (I'm not sure if the Page fills the whole area)09:37
zsombidpm: if the Page does fill it, then yes, use that.09:38
zsombidpm: but I'd use anchors instead of setting the width09:38
zsombidpm: I see the developer doesn';t really use those... which is bad09:38
dpmparent.width works on desktop09:39
dpmlet me try with anchors. Right now we anchor the footer to the bottom, but nowhere else09:39
dpmzsombi, that works as well (on desktop)09:40
dpmzsombi, so you're suggesting to use anchoring (left, right) to the parent instead of specifying the width?09:41
dpmfor the footer09:41
zsombidpm: right09:41
dpmok, cool, let's give it a spin. popey, would you mind trying a new .click on the device?09:41
zsombidpm: and in general in the code, whenever you have parent.width, use anchors09:42
dpmok09:42
zsombidpm: same for the heights.09:42
popeydpm: sure09:42
zsombidpm: this is a really bad practice...09:42
zsombidpm: also, Label's anchor.verticalCenter will not give the proper result09:43
zsombidpm: it should be the Label's verticalAlignment property be used09:43
dpmok, fixing that too09:44
dpmzsombi, and the value assigned should also be parent.verticalAlignment?09:45
zsombidpm: nope, you shoudl anchor it's top and bottom to the corresponding parent anchorLines, then use Label.verticalAlignment: Text.AlignVCenter09:46
zsombidpm: so, anchors.top: parent.top; anchors.bottom: parent.bottom; verticalAlignment: Text.AlignVCenter09:47
dpmgotcha09:47
* zsombi goes out 4 lunch09:48
=== zsombi is now known as zsombi|lunch
dpmpopey, sorry, my p.c.c account seems to be failing, so no wget. Can you get the .click from http://ubuntuone.com/59GSo0qyNze0m9TGwV70Kj ?09:53
popeysure09:53
dpmhi nik90, reading this: https://bugs.launchpad.net/ubuntu/+source/qtorganizer5-eds/+bug/1282129 - do you think we need a new clock release to limit the date events are returned for?09:56
ubot2Launchpad bug 1282129 in qtorganizer5-eds (Ubuntu) "Clock and calendar tests fail with static void QOrganizerEDSEngine::itemsAsyncListed(ECalComponent*, time_t, time_t, FetchRequestData*) " [High,Triaged]09:56
m-b-odpm popey hey10:31
popeyhey m-b-o10:31
m-b-opopey dpm reading back the logs ....10:32
dpmm-b-o, good news, would you mind reviewing https://code.launchpad.net/~dpm/ubuntu-weather-app/n7-tweaks/+merge/207616 :-)10:32
m-b-odpm yes :)10:33
dpmm-b-o, ah, just a minute, I'll remove those print statements. The diff looks big, but it's simply because it fixes the indentation10:34
m-b-odpm: ubuntu-weather-app.desktop is added. ok?10:34
dpmm-b-o, yeah, I'll remove it to make sure Jenkins doesn't trip on it, but I'm planning to add it post-MWC to make it possible again to do Ctrl+F1210:35
m-b-odpm: ready?10:41
dpmm-b-o, ok, it's now ready for review. Please have a look at the description of the MP, which includes a link to a simplified diff to make it clearer to see the real changes between all those indentation fixes. If possible, please test on a N4 as well, to make sure it still works there, and we'll get cwayne to test on a N10 in the afternoon10:41
m-b-ookay10:42
dpmI need to run now, will be back in ~1h10:42
* dpm is really excited about getting convergence in!10:42
=== lool- is now known as lool
nik90dpm: hey good morning11:21
nik90dpm: Concerning your question about a new clock release, the answer is it depends. If the Alarms API provides filtering support by data, perhaps I need adjust that in the clock as well. If not, then there is nothing much I can from the clock app in which case we do not need a new release.11:22
nik90s/data/date11:23
renato_balloons, I have a fix for you to test, are you around?11:34
renato_nik90, hi11:38
renato_nik90, do you have the device to test a patch for me?11:38
=== zsombi|lunch is now known as zsombi
nik90dpm: Can you check if the MP https://code.launchpad.net/~charlesk/indicator-datetime/alarms/+merge/204420 has landed on the phone or not. It concerns the alarms notification fix for the indicator-datetime package.12:25
dpmhi renato_, balloons won't be around until in ~3h time12:26
dpmnik90, just a sec, just came back from an errand and I need to check how we're looking for Weather12:26
nik90dpm: np12:28
dpmfginther, ok, we got weather working with tablet layout across all devices. When you're around, could you please trigger a click build for weather and we'll upload that to the store?12:41
zsombinik90: hey dude12:42
dpmfginther, could you tell us for what time of the day the click builds are scheduled? This might save you some pinging (i.e. if I know when they're getting build and the changes are in that time window, I'd just wait for the build to happen)12:42
nik90zsombi: hi12:43
zsombinik90: we're trying to sort out the alarm API issues, and seems you are not cleaning the alarms made during the clock app test, right?12:43
nik90zsombi: yes, I am not sure how exactly to clear the alarms database after a test12:44
nik90I was planning on working on it with elopio and balloons later12:44
zsombinik90: you remove all alarms that have special message12:44
nik90zsombi: special message?12:45
zsombinik90: when you create an alarm, you give a message text, right?12:45
nik90zsombi: yeah I give it the alarm a label12:46
nik90zsombi: as a temp solution, it wouldn't be hard adding a "swipe delete alarm" action after a test is done to clean up after itself12:46
zsombinik90: awesome, so you give the "test_XXXX" label to it, right?12:46
nik90zsombi: yes12:46
zsombinik90: IT MUST BE :)12:46
zsombinik90: otherwise all test alarms will land in the Alarm DB...12:47
nik90zsombi: the proper way of doing this as suggested by renato and elopio was not the swipe delete alarm action12:47
zsombinik90: which is not a good idea to pollute the Alarm DB with test stuff :)12:47
nik90zsombi: since if the test fails midway, the test alarm still remains in the db12:47
nik90zsombi: also the alarms AP tests were only enabled 2 days ago :) .. so I can patch it up to delete the alarm after the test12:48
zsombinik90: ehh.... so there's no emergency cleanup? :( baaaaad test suite12:48
nik90zsombi: well that's the thing, other stuff in the clock app uses u1db which creates a local db in the application db. This allows for a proper clean up12:49
nik90zsombi: in the case of alarms, the EDS doesn't make it easier to do this12:49
nik90zsombi: I just need more time to do the cleanup. It was ignored just postponed for after MWC12:50
zsombinik90: once the Alarm API will have the ability to create separate collection for each app, that would get solved, as test alarms will land in a separate collection, thus separate DB12:50
zsombinik90: ok, np, just wanted you to know that the cleanup is an absolute must :)12:50
nik90zsombi: lol I mean it *wasn't* ignore just postponed :)12:51
zsombinik90: ok :)12:51
nik90zsombi: completely agree on your cleanup12:51
nik90zsombi: I will have a bug report to track this12:51
zsombinik90: kewl12:51
zsombithx!!!12:51
nik90kewl ?12:52
dakercool12:53
nik90lol12:53
zsombinik90: as daker says :D12:53
nik90zsombi: just so you know, I was able to fix the convergence "animation" issue by using the default layout option ... thnx for that :)12:57
zsombinik90: ;) I knew you can make it12:58
zsombinik90: it is always like that: choose a default layout, then implement the other ones :)12:59
zsombinik90: for code clarity, you can also have the ConditionalLayouts in different files12:59
nik90zsombi: yeah I overlooked the documentation there13:00
nik90zsombi: wow really? I will look into that in the coming weeks..I like separating stuff into smaller files for clarity13:00
zsombinik90: the tutorial also uses some layouts like that... for clarity, the default layout for instance is in a separate file13:01
zsombinik90: well, these are all QML elements after all :)13:01
zsombinik90: so you can declare them in separate files as you wish :)13:01
nik90zsombi: I guess I am stating an obvious fact here, but nice conditional layout tutorial13:02
zsombinik90: thx, glad it's understandable :)13:02
=== gatox is now known as gatox_brb
renato_ charles, me and zsombi are discussing about alarms on EDS, we have a problem to query for alarms because right now the alarm API query for events without a limit of dates13:33
renato_ this is causing a problem because every alarm is a recurrence event and this cause the function to take longer to process and return "unlimited" events13:33
zsombicharles_: ^^13:33
renato_zsombi, can we go with my weekly patch until we decide about that?13:36
renato_nik90, balloons could you guys test it: https://code.launchpad.net/~renatofilho/ubuntu-ui-toolkit/limit-alarms-fetch/+merge/20762913:36
zsombirenato_: ok, just make a big FIXME note that this is a temporary patch till we get a better setup13:37
renato_popey, dpm , do you know any EDS expert that can help us to decide about that?13:37
popeyrenato_: ted?13:38
popey(I don't know, no)13:38
zsombirenato_: based on the structure, I do not see the way to set occurrences to the Alarm...13:39
renato_zsombi, ECalComponentAlarms ha a list of ECalComponentAlarmInstance13:40
zsombirenato_: yep... hmm... all these would also be stored in a DB, so not sure whether we solve anything with it :( let's see when charles_ gets online...13:41
dpmrenato_, I'd hint at ted, kenvandine or seb128. Or perhaps desrt13:41
zsombirenato_ or if not today, then let's try to catch up with him next week, maybe popey could get us on a meeting, like the one we had this week13:42
dpmrenato_, someone on #ubuntu-desktop might be able to help with EDS13:42
seb128renato_, dpm: kenvandine is probably your best guess13:42
renato_zsombi, popey yes a meeting would be nice13:44
popeyok, I'll schedule it13:46
popeydone13:48
=== Pici` is now known as Pici
=== gatox_brb is now known as gatox
fgintherdpm, I'm building weather now. I'm also trying a change to the job where it should check trunk hourly and build a new package if trunk has changed14:24
dpmfginther, that sounds great, thanks!14:25
ahayzenpopey, ping14:30
popeyahayzen: hey14:31
popeyfginther: i bounced 197 weather back too because the key.js was missing the api key14:31
ahayzenpopey, has the move to cmake broken the script u gave me to test the music-app on device? http://paste.ubuntu.com/6721815/14:31
popeyyes14:32
popey14:32
popeyahayzen: http://pastebin.ubuntu.com/6949462/ can be used to build a click locally14:33
ahayzenpopey, ok, how do i then deploy it?14:33
fgintherpopey, dang...14:34
popeyahayzen: http://paste.ubuntu.com/6971167/14:34
ahayzenpopey, thanks i'll try tht :)14:34
popeyfginther: so please can 197 be resubmitted first, with key, so I can test and accept that as fallback, then the later version as per dpm  request?14:35
popeynp14:35
fgintherpopey, sure, let me figure out what's up first14:36
balloonsdo you need the rev197 branch I used popey?14:36
balloonsby default the rev197 branch isn't exactly what you are looking for14:36
fgintherpopey, what I would do is rebuild with revno 197 of trunk14:37
popeyballoons: i don't know what fginther needs, but it needs to be the 197.2 + key.js, thats all14:43
fgintherballoons, I need some more context if there was a special branch used14:45
ahayzenpopey, tht doesn't seem to work for me it complains tht grilo isn't installed, is this because we aren't bundling it within the click package?14:50
popeyahayzen: that would be https://bugs.launchpad.net/music-app/+bug/128272314:50
ubot2Launchpad bug 1282723 in Ubuntu Music App "Need cmake rule to build the grilo plugin" [High,Fix released]14:50
ahayzenpopey, yep which is 'fix released' :/14:51
popeysergiusens: is there an easy fix for the music devs to be able to do that?14:51
popeyyeah, but fixed on backend, no good for you14:51
balloonspopey: fginther I included the cmake file and icon from newer versions so everything built properly14:53
fgintherballoons, ah, so this was a one-off package that you built?14:53
balloonspopey: fginther I pushed it here, the diff is small. lp:~nskaggs/ubuntu-weather-app/custom-rev-197 . That said, the new version is pushed for your review, including key this time14:53
balloonsfginther: yes, the straight build of 197 popey rejected for various reason, like the icon :-)14:54
sergiusenspopey, I can craft something, but is it for now now?14:56
sergiusensahayzen, what's the plan for grilo btw; is it going away?14:57
sergiusensjim has made excellent progress on the media hub and it may land in the archives next week14:57
ahayzensergiusens, yep we should be moving to the new mediascanner API and media-hub soon14:57
sergiusens(not image though)14:57
popey19:02:29 < jhodapp> hey guys, so media-hub is fully working for music-app playback now14:58
popey19:02:54 < jhodapp> I'm working to get it pushed up to launchpad and then put into the build, although it won't get used by default until I land the video portion too14:58
popey19:03:14 < jhodapp> but I'll let you know how you can utilize it from music-app if interested14:58
popey^^^ what he said yesterday14:58
sergiusenspopey, he put the landing task upon me though ;-)14:58
ahayzenpopey, thts awesome, i saw the G+ post :)14:58
popeyhah sergiusens14:58
popeysergiusens: the problem is we have bugs and the developers ( ahayzen ) can't debug on device.14:59
sergiusensahayzen, how are you building now?15:00
ahayzensergiusens, i just tried the script popey gave me to build locally http://pastebin.ubuntu.com/6949462/15:01
ahayzensergiusens, and then something similar to this to deploy http://paste.ubuntu.com/6971167/15:01
sergiusenspopey, have you tried click-buddy --dir [trunk] --provision ?15:02
sergiusensit does all that15:02
popeywoah, nice15:05
popeyyeah, do that ahayzen ☻15:05
balloonsahayzen: http://www.theorangenotebook.com/2014/02/click-buddy-and-you-how-to-test-your.html15:05
popey\o.15:05
ahayzenpopey, sergiusens, IIRC i tried tht yesterday to test dpm's branch but i'll try again :)15:05
sergiusensstill doesn't solve the plugin thing...15:05
renato_balloons, hei, could you test the fix on SDK for the clock app?15:05
sergiusensI can give you an instant gratification hack if you want15:06
sergiusensahayzen, ^^15:06
renato_balloons, https://cohttps://code.launchpad.net/~renatofilho/ubuntu-ui-toolkit/limit-alarms-fetch/+merge/207629de.launchpad.net/~renatofilho/ubuntu-ui-toolkit/limit-alarms-fetch/+merge/20762915:06
balloonsrenato_: sure thing15:06
ahayzensergiusens, wht would this hack be?15:06
renato_balloons, the correct link: https://code.launchpad.net/~renatofilho/ubuntu-ui-toolkit/limit-alarms-fetch/+merge/20762915:06
sergiusensahayzen, after installing the click on the device do15:07
dpmsergiusens, would it make things easier if we merged the plugin's branch into the app's branch so that it gets built from a single project in LP?15:11
=== charles_ is now known as charles
sergiusensahayzen, http://paste.ubuntu.com/6971350/15:13
sergiusensdpm, yes, it would; like reminders?15:13
dpmsergiusens, yes, exactly15:13
sergiusensdpm, that it would; but you said music is soon going to be a pure breed app :-)15:13
sergiusensdpm, wouldn't mind it for terminal and filemanager though15:14
dpmsergiusens, yes, good point. Let's leave it for terminal and filemanager, which will definitely need it15:14
charlesrenato, i-datetime has the same problem as qtorganizer5-eds there; both are using an unbounded query in the ECalClientView15:14
sergiusensahayzen, did that solve the issue?15:15
charlesit's a little easier to tweak this to meet our needs in the C alarm API and in datetime, since we know we only care about (for example) [now ... now + 1 month]15:15
ahayzensergiusens, it doesn't appear to have fixed it :/15:16
balloonsrenato_: looking good so far15:16
ahayzensergiusens, this is how i'm installing http://pastebin.ubuntu.com/6971374/15:16
charlesrenato_: but is there an API in qtorganizer s.t. ubuntu-ui-toolkit can do the same kind of thing, where its alarm model can specify a range15:16
sergiusensahayzen, lines 9 through 13 aren't needed15:17
sergiusensahayzen, well, 9 through 19 aren't15:18
ahayzensergiusens, does the --provision install on device for u?15:18
sergiusensahayzen, after installing the click, did you go through my pastebin?15:18
sergiusensahayzen, yes, the click and the tests15:18
ahayzensergiusens, i did... i'll try again15:18
balloonsrenato_: so I ran ubuntu_clock_app.tests.test_alarm and no more eds errors. I would say the fix worked. I can check the other apps to make sure it didn't break them. I'll run calendar at least15:19
renato_balloons, ok nice15:20
renato_I will fix the comments on the MR which should not cause any regression, and then we can do the last test before ask to release it15:21
sergiusensahayzen, if you want a quicker have 'mount -o remount,rw / && apt-get install qtdeclarative5-qtgrilo0.1 qtdeclarative5-qtpowerd0.1 -y && mount -o remount,ro /'15:23
ahayzensergiusens, nope does it make a difference it is running from /opt/click.ubuntu.com/com.ubuntu.music/1.1.350/15:23
sergiusensahayzen, do find /opt/click.ubuntu.com/com.ubuntu.music/1.1.350/15:23
sergiusensand pastebin that15:23
sergiusensahayzen, how are you running ?15:23
ahayzensergiusens, clicking on it from the dash15:23
ahayzensergiusens, http://pastebin.ubuntu.com/6971404/15:24
sergiusensahayzen, perfect; with a previous search to refresh the desktop files?15:24
ahayzensergiusens, ah....thts wht the pkill unity8 was doing?15:25
sergiusensahayzen,  so you created /opt/click.ubuntu.com/com.ubuntu.music/1.1.350/lib/arm-linux-gnueabihf but copied nothing into it :-)15:25
sergiusensahayzen, hmmm; add a -r to the cp ;-)15:25
ahayzensergiusens, do i need to modify the preinstalled to be 350? cp /usr/share/click/preinstalled/.click/users/\@all/com.ubuntu.music/plugins/* lib/arm-linux-gnueabihf/15:26
ahayzensergiusens, or should just the -r work?15:26
sergiusensahayzen, just the -r15:26
ahayzensergiusens, magic!15:27
ahayzensergiusens, it works, thank you so much :D15:27
sergiusensahayzen, so depending on the ETA for music to migrate; what would you prefer?15:27
sergiusenshmmm, I know what to do as a transparent hack at least15:28
ahayzensergiusens, i don't mind doing this hack each time (i have a bash script to automate it) but others may15:28
ahayzensergiusens, do we know wht the eta of the mediascanner/media-hub are because we'll move to it as soon as it is available and has feature parity15:29
sergiusensahayzen, no idea about media scanner15:31
sergiusensdon't even know who works on that15:31
sergiusenspopey, do you know?15:31
balloonsrenato_: so calendar passes fine as well. I approved both the mp's on that basis and linked the original bug to them15:31
popeysergiusens: someone under thostr_ I think15:35
popeyfginther: balloons any ETA on weather 197+fun?15:35
popeyooh, i see 197.315:36
* popey hugs fginther and balloons 15:36
popeyballoons: fginther weather 197 published to store15:42
sergiusenspopey, would you rather have .$(date %YYYYMMdd) instead of revno?15:42
popeyI'd rather have revno_date15:43
sergiusenswell, we would need to add min and sec15:43
dpmfginther, ok, now that we've got the fallback safely in the store, can we get a build of trunk? Then we'll test that and we can determine if it's good enough for MWC15:43
dpmfginther, that'd be for weather again ^15:43
fgintherdpm, building15:44
dpmawesome15:44
popeyballoons: fginther file manager has the same armhf/all issue that sergiusens fixed for music app with https://code.launchpad.net/~sergiusens/music-app/arch/+merge/20763515:44
popeyshould do same for file manager?15:44
popey(and terminal)?15:44
sergiusensyes, I am aware15:44
sergiusensI need to do that once konsole plugin finishes building15:45
popeyok, magic15:45
popeylike a well oiled machine15:45
ahayzenSo when i take a branch of the music-app in QtCreator it doesn't show any of the qml/js files just the CMakeLists and the folders, anyone know wht is going on?16:13
dpmfginther, can I use this weather click for testing? https://jenkins.qa.ubuntu.com/view/All/job/weather-app-click/120/ - I wasn't sure because the build is marked as red16:37
fgintherdpm, let me fix that and retry16:38
dpmok, cool16:41
renato_balloons, could you run the test plan for this MR: https://code.launchpad.net/~renatofilho/qtorganizer5-eds/limit-number-of-events/+merge/20754218:21
renato_and if works do the top approval?18:21
renato_I want to release this today18:21
balloonsrenato_: I can't top approve; but yes I will run through it again18:32
renato_balloons, just paste the test plan18:33
renato_I will ask other person to top approval18:33
balloonsrenato_: pasted18:38
renato_balloons, thanks18:39
fgintherdpm, I hope you already saw this, but the last build of weather-app-lcick was green19:39
dpmfginther, I did, thanks, trying to upload to the store now19:39
=== _salem` is now known as _salem

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