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

joehanneshey guys ... how does one persist state in an ubuntu html5 app?00:53
ahayzen_balloons, did you want this to be reviewed? https://code.launchpad.net/~nskaggs/music-app/fix-1379488/+merge/23786601:12
balloonsahayzen_, not yet. music might be just fine to leave alone01:15
ahayzen_balloons, ok i won't touch it :) do you want to comment/mark as WIP so other people don't try to review?01:15
balloonsahayzen_, ack. done01:16
ahayzen_balloons, cool thanks01:16
joehanneshello???01:34
joehanneshow to persist in an ubuntu-html5/js-app?? the api doc doesn't show any file-api or something? is there actual access to the typical browser-localStorage???01:35
balloonsjoehannes, all the js things you would normally expect are there01:35
joehannesballoons: so, cool ... how to keep up if the docs are not there? is it webkit based/can I assume I can do everything I can do in Webkit?01:36
balloonsjoehannes, did you see http://developer.ubuntu.com/apps/html-5/?01:36
joehannesballoons, I've been all over the place, couldn't find anything on DBs or Files01:37
balloonsjoehannes, might be worthy of a question no matter what: http://askubuntu.com/questions/ask01:39
joehannesballoons ... ok01:39
joehannesthx01:39
balloonsjoehannes, with qml you can use u1db or qt localstorage. I would expect localStorage to just work01:40
balloonsfor html5 apps01:40
balloonsjoehannes, so I would try it..01:41
joehannesballoons: hmmm ... well. well. I don't know. I  expected some File API or at least some docs ...01:43
joehannesanyway, I'm not really in a hurry, just playing around, so, asking the question now01:43
balloonsjoehannes, basically what you see http://developer.ubuntu.com/api/html5/development/ is in addition html5 stuff.. so http://diveintohtml5.info/storage.html01:44
balloonsI haven't played much with the web stuff so I can't be more specific than that.. But more or less html5 apps should just work, and if you want some more platform goodies, that api should have you covered01:45
joehannesballoons: sure, but that would mean the app container must be some kind of browser01:45
joehannesballoonbs: for the usual JS-APIs to work01:45
balloonsjoehannes, it's a container yes01:46
joehannesballoons: but it is confusing me then that there is for example a cordova platform service "inappbrowser" ... what ... a browser in a browser?01:47
joehannesballoons ... ok, so if you're sure then that's cool01:47
balloonsjoehannes, it's quite possible my terminology is misleading you. I'm not a web dev01:47
joehannesballoons ... ok. understood, so I'll make sure I'm not making wrong decisions01:48
balloonsa ubuntu html5 app runs in a web container. It has access to ubuntu themed widgets and ubuntu platform apis as well.01:48
balloonshowever it is simply an html5 app, so everything you know about writing and making an html5 app applies01:49
balloonsbut yea, askubuntu is a good place to ask.. and another time when other folks are around in here :-)01:49
nik90balloons: can you trigger jenkins on https://code.launchpad.net/~nik90/ubuntu-clock-app/13-next-alarm-bottomedge/+merge/23718801:55
nik90balloons: I am trying to fix the failure there01:55
balloonsnik90, sure.. friday release looking good?01:55
nik90balloons: I hope so..I am just a bit frustated..autopilot is too fragile..breaks so fast01:55
nik90In the AlarmPage.qml, I added one line of code 23+ property var alarmModel, which changes the autopilot object type from Page11 to AlarmPage01:56
balloonsnik90, the Page11 bug is certainly annoying01:57
nik90locally the tests fails with http://paste.ubuntu.com/8530309/01:58
nik90not sure if it is my system, let's see how it runs in jenkins01:58
balloonsnik90, if it fails locally . . .02:01
nik90i think it is because of my lxc container...02:01
nik90I am checking again on VM02:01
nik90balloons: it passes in the vm02:04
balloonsnik90, hmm02:05
nik90balloons: well lxc acts up sometimes... full error log is http://paste.ubuntu.com/8530335/02:06
nik90some weird shader failures02:07
nik90yay jenkins passed02:07
slvnHi !06:43
slvnI develop a native application for ubuntu touch. C/C++ application that talks to MIR and do opengl calls.06:44
slvnI have two issues :06:44
slvnthe app menu bar still appears, so that I cannot use the full screen. (I cannot even know the size of availlable screen)06:45
slvnand also forcing the orientation.06:45
slvnso :06:45
slvn1/ is it possible to hide the "appmenu" (top status bar) in fullscreen ?? (or to know through MIR, the size of screen minus the appmenu06:46
slvn2/ is it possible to force the app to start in Portait or Landscape06:46
slvnthanks for you hlep06:46
=== dpm_ is now known as dpm
popeyslvn: i believe you can hide the top bar.. the camera does it07:53
popeyslvn: maybe look at http://launchpad.net/camera-app to find out how?07:53
popeyslvn: Saviq may know how also, I know you can do it in webapps, but don't know how with native opengl ones07:54
Saviqslvn, there's no way yet to start in portrait vs. landscape, but yes you can make your app fullscreen, you just need to tell Mir you want that07:57
Saviqit will be communicated to the shell and you'll get a fullscreen surface07:57
vitimitiHi08:11
JamesTaitGood morning all; happy Friday and happy World Mental Health Day! :-D08:16
davidcallezbenjamin, hello, what could cause new scope projects on the SDK to only have the option to run tests and not the scope itself?08:48
zbenjamindavidcalle: bug, fix is already in release, but you can workaround it: add this to your project file: set(UBUNTU_MANIFEST_PATH "manifest.json.in" CACHE INTERNAL "Tells QtCreator location and name of the manifest file")08:50
davidcallezbenjamin, which file?08:55
zbenjamindavidcalle: CMakeLists.txt the toplevel one08:55
zbenjamindavidcalle: then run cmake again08:55
davidcallezbenjamin, thanks, will try as soon as qtcreator has finished creating a chroot... :)08:57
slvnHi popey + Saviq.  So I tried the "mir_surface_state_fullscreen" the application start like before : almost fullscreen. There is the "appmenu" (the status bar with Clock, Wifi, Battery).09:02
slvnif I remember correctly09:03
slvnMIR allow to start fullscreen09:03
slvnbut the launcher add the app menu09:03
slvnI think I remember that when the app was started from command line. I had a real fullscreen09:04
slvnI have looked at the CameraApp. .. in setup()   http://bazaar.launchpad.net/~phablet-team/camera-app/trunk/view/head:/cameraapplication.cpp09:06
slvn ...       m_view->showFullScreen();09:06
popeyslvn: sorry, you've exhausted my knowledge on the subject..09:07
slvn(also a little difference, my manifest.json is  sdk-14.04, whereas it is :     "framework": "ubuntu-sdk-14.10-dev2" for app camera)09:07
popeyuse 14.1009:07
slvnno problem, thanks for your help anyway !09:08
Saviqslvn, you might wanna try #ubuntu-mir09:08
slvnyep :)09:08
slvnI will ask !09:08
slvnAlso, newbie question, setting framework to 14.10 say:09:14
slvnWARNING:root:Ignoring missing framework "ubuntu-sdk-14.10-dev2"09:14
popeyubuntu-sdk-14.10-dev2 is valid.09:15
popeyare you on 14.04?09:15
slvnmy PC is 14.0409:16
popeythat may be why, it is valid.09:16
slvn"click framework list" shows only 14.04 frameworks09:19
popeyhttp://paste.ubuntu.com/8531785/09:20
popeythose are valid - on my phone09:20
Saviqslvn, you need the sdk from https://launchpad.net/~ubuntu-sdk-team/+archive/ubuntu/ppa if you want to target newer releases09:21
slvnThanks I will try !09:28
nik90mzanetti: hey, Do you know the difference between mouseDrag(), mouseClick() and the functions in http://developer.ubuntu.com/api/qml/sdk-14.10/Ubuntu.Test.TestExtras/ (touchDrag(), touchClick()) ?09:54
nik90zsombi: ^^09:56
nik90I also need to know how I can use those functions since by default it says those functions don't exist and I am using UbuntuTestCase with Ubuntu.Test 1.009:57
zsombinik90: doesn't teh name tell it? :)09:57
nik90zsombi: until now I have been using mouseDrag(), mouseClick() to do it. so why the new functions?09:57
zsombinik90: touchXXXX funcs produce touch events09:57
zsombinik90: because some components need to behave differently with touch09:58
zsombinik90: like text inputs09:58
nik90ah ok09:58
zsombinik90: so we've added touch functions to the test09:58
nik90I tried calling registerTouchDevice(), but it doesnt recognize that function on utopic.09:59
nik90in the initTestCase() function09:59
zsombinik90: one essential behavior is that caret handler is not shown ever if there are touch events comming, pressAndHold is handled only on touch events, etc09:59
nik90ah ok makes sense10:00
=== slvn is now known as Guest48010
=== Guest48010 is now known as slvn_
dpmmzanetti, going through the reminders bugs, I see bug 1316800 - I remember on one of your latest branches you were fixing some warnings. Was that one of the ones you fixed?10:43
ubot5bug 1316800 in Ubuntu Reminders app "Error messages: Cannot read property of 'undefined'" [Low,Triaged] https://launchpad.net/bugs/131680010:43
mzanettidpm: I don't think so10:43
dpmok, I'll leave it open, then10:43
mzanettidpm: but this is an easy one10:43
dpmmzanetti, ok, tagged as 'bitesize' - if you've got some more context that could help someone fix it, we can add it to the bug. Also, now that content hub is working, do you think we could support music attachments and send them to the Music app to play?10:45
dpmI meant *audio attachments10:45
mzanettidpm: yeah, but that's not so easy :)10:45
dpmmzanetti, what would be the main difficulty associated?10:48
mzanettiparsing the audio file from enml10:49
mzanettidpm: I did start with that, however I'm not exactly sure where I left10:49
nik90mzanetti: it took quite a long time, but finally (relieved) your feature to show the time to the next active alarm on the bottom edge has been implemented and merged. Should release it today if testing goes well :)10:49
nik90s/your feature/the feature you requested10:50
mzanettinik90: hehe, awesome :D thanks10:50
nik90:)10:50
nik90popey: I am preparing a click atm..I couldn't do it yesterday since I had several AP and qml test failures I had to fix10:51
popeynp, i was just about to ask.10:51
mzanettidpm: now that is weird10:54
mzanettidpm:  I was just fixing those warnings and restarted reminders for a couple of time10:54
mzanettidpm: was working fine the first few times, all of the sudden I got a notification that I can no longer access that account10:54
mzanettiI deleted it and recreated it but always the same. as soon as I start reminders it will break down and mark it as invalid again10:55
nik90popey: its in dropbox10:58
nik90popey, dpm: A very trivial pot file update -> https://code.launchpad.net/~nik90/ubuntu-clock-app/pot-file-oct10/+merge/237938 pls approve10:58
dpmmzanetti, hm, strange. Let me see if I can still access my account...10:58
mzanettidpm: https://code.launchpad.net/~mzanetti/reminders-app/suppress-warnings/+merge/23793911:00
popeynik90: done11:00
nik90thnx11:00
dpmnik90, done (twice :)11:01
nik90dpm: thnx11:01
dpmnice one, thanks mzanetti11:09
dpmpopey, thanks for digging out the info about the UOA versions in promoted images. So you're saying that for utopic there won't be a promotion any time soon - how is "soon" in this context? Not in a few weeks? No promotions planned for utopic at all? And given that, and that the RTM promoted image has the right version, would you recommend to do the Reminders update as soon as the seeds change lands in a promoted (RTM) image?11:46
=== karni is now known as karni-afk
popeydpm: i asked sil2100 about this earlier and he said we don't have resource to promote a utopic image12:01
popeydpm: yes, I would push the click as soon as the seed lands12:01
dpmok, thanks popey, based on that, let's go for that plan12:02
popeyk12:02
dpmrpadovani, I think you were using the utopic images - given that there will be no promotions any time soon, you might want to switch to the ubuntu-rtm images ^ :)12:03
nik90dpm: he did so yesterday12:03
dpmah, cool :)12:03
nik90dpm: I couldn't believe he was still usingn 243 :)12:03
popeyretro!12:04
popeyI remember those days...12:04
popeyback in.. September12:04
dpmunbelievable how, at the pace that we're going, things get old in a few days...12:04
nik90;_12:04
nik90;)12:04
dpmyeah, those were the days :)12:04
dpmand on a higher design frenzy, the music app remix wins the "retro in a few hours" prize :)12:05
popeyalso.. terminal12:06
popeybut thats a special kind of retro12:06
popeyNot only is the old design "old" and retro, the _new_ design is _older_12:07
ahayzenpopey, FYI i think the next click should be built when https://code.launchpad.net/~andrew-hayzen/music-app/remix-seeking-workaround/+merge/237669 https://code.launchpad.net/~vthompson/music-app/remix-songs-tab/+merge/237204 https://code.launchpad.net/~vthompson/music-app/remix-queue-list/+merge/237525 land, and note Victor is blocked by design on the last one as we are awaiting icons etc12:12
popeyok12:14
=== karni-afk is now known as karni
nik90popey: manual test results -> https://www.dropbox.com/s/gtjz3s76de0i162/results.html?dl=012:46
popeywell thats fancy12:46
popeyi have tested it a bit and not found any problems so far.12:47
nik90popey: the manual test suite will be provided as a click in the future for easier testing.. (courtesy of zyga)12:47
nik90popey: that's why I didnt ask you to run that test suite yet12:47
popeyheh12:47
=== rmescandon is now known as rmescandon-lunch
=== nik90 is now known as nik90|Lunch
nik90|Lunchpopey: let me fix the last manual test failure before pushing to store. It is a genuine regression and must be fixed first.13:27
popeyok13:27
popeyhave your lunch first though ☻13:27
nik90|Lunchyes :)13:27
rpadovanipopey, dpm nik90|Lunch you're 3 funny guys :D But yes, yesterday after the update to RTM I was all "Oh woooow"13:49
rpadovaniAnyway, camera tooks very looooooong time to start (3 minutes), is it a known bug?13:49
brendandrpadovani, can you run top?13:54
rpadovanibrendand, http://paste.ubuntu.com/8533056/13:57
brendandrpadovani, hmm that looks ok13:58
brendandrpadovani, did the spinner stop spinning when camera was launching?13:58
rpadovanibrendand, yap, after 2/3 seconds, and it freezes the phone. I have to wait for some minutes13:58
=== mpt_ is now known as mpt
=== rmescandon-lunch is now known as rmescandon
rpadovanimzanetti, hey, are you here?14:06
mzanettirpadovani: have I ever been not here?14:08
mzanetti:D14:08
mzanettij/k14:08
rpadovanimzanetti, I remember one day, was during the winter of '67 IIRC :P14:08
mzanettirpadovani: right.. I noticed the camera hang too on rtm14:08
mzanettirpadovani: seems to hang very low down, on the android side of things14:09
rpadovanimzanetti, anyway, about your tag branch, it's awesome, but  I'm not sure on why did you comment out all actions14:09
rpadovaniin tags page I mean14:09
mzanettirpadovani: because I just copied over the notebooksPage. so they would do wrong things14:10
rpadovanimzanetti, ok. Last thing: +    objectName: 'notebooksPage'14:10
mzanettirpadovani: and because I didn't want to work on the ui more then required for testing the tags14:10
rpadovanimzanetti, I think this could broke the autopilot, so fix to 'tagsPage', will take care of UI later14:10
mzanettiI just commented it out because I figured it might be useful when properly working on the page14:10
mzanettirpadovani: yeah, good one. will fix14:11
rpadovanimzanetti, wonderful, thanks! ping me when you've done and I'll top approve14:11
mzanettirpadovani: pushed14:11
rpadovaniwow14:12
mzanettidpm: so please don't do a release right now14:12
rpadovanimzanetti, text conflict14:12
mzanettidpm: we should properly get the tags ui done before releasing next time14:12
mzanettiouch :)14:12
* mzanetti merges14:13
rpadovanimzanetti, does change something in cmake? All our last branches have modify to the .pot file14:13
mzanettirpadovani: I think dpm set that up14:14
mzanettirpadovani: pushed14:15
rpadovanimzanetti, do you want to wait to have UI improvement before merge that one?14:16
mzanettirpadovani: do you plan to work on the ui soon?14:16
mzanettior are you busy with university atm?14:16
rpadovanimzanetti, dunno, I have a lot of branches here and there. Anyway, if I'm not able to do that this week, for sure I'll do it in washington14:17
mzanettirpadovani: lets get it merged then14:17
mzanettiI think its fine to not do a release for 2 weeks14:18
rpadovanigreat! top approved then14:19
dpmmzanetti, well, we need to do a release that includes the account plugin in the click asap, but that doesn't prevent us from landing things in trunk. We can do a release from a particular bzr version, which is what I was planning to do for this one14:19
mzanettidpm: did the click stuff land in trunk already?14:20
mzanettiah right, sure it did... it broke my setup :D14:20
mzanettidpm: ok well, rpadovani approved the tags branch, if you think that's problematic, feel free to unapprove until you have done the click release14:21
dpmmzanetti, not a problem, I was thinking of releasing rev26514:21
mzanettiack14:22
rpadovanimzanetti and account plugin: a story of a big love. Soon in best cinemas of the country!14:22
mzanettiyeah... never going to work out :D14:22
mzanettirpadovani: ah right reminds me... the bug where it tries to use my jabber account. will you look into that too or should I?14:22
rpadovanimzanetti, I think you have to, I don't have any idea on how reproduce it, it's your computer the fault :P14:23
mzanettilol14:24
mzanettirpadovani: wel, I just added my jabber account in online accounts, and it causes that to show up in reminders app14:24
rpadovanimzanetti, if you don't have time, I'll take a look14:24
=== karni is now known as karni-eod
=== nik90|Lunch is now known as nik90
nik90popey: I fixed the timezone regression in https://code.launchpad.net/~nik90/ubuntu-clock-app/fix-timezone-regression/+merge/23799415:00
nik90popey: once that lands, I think we should be good to go.15:00
popey\o/15:02
popeynik90: decided what to do about the splash?15:02
nik90popey: no sry, I was typing out the email this morning when I got caught in other stuff15:03
popeynp15:03
rpadovanimardy, hey :-) Some code where I had the core dump last week, now it's fixed, but I have a core dump when I change account: http://paste.ubuntu.com/8533290/15:08
nik90rpadovani: can you do a quick review (code review only) of https://code.launchpad.net/~nik90/ubuntu-clock-app/fix-timezone-regression/+merge/237994. I already did the testing extensively. It fixes a regression that creeped in with the latest MPs.15:15
nik903 lines of code15:15
rpadovaninik90, done15:24
nik90rpadovani: thnx15:24
nik90popey: when the above MP lands, feel free to grab the click from jenkins and upload to store.15:25
* nik90 needs a break15:25
popeyroger!15:25
popeyNice work nik90!15:26
nik90popey: thnx. Next week will hopefully be performance week. Enjoy your weekend :)15:26
popeynik90: you too15:34
rpadovanidpm, https://code.launchpad.net/~rpadovani/reminders-app/multipleAccounts/+merge/237682/comments/58386215:37
dpmrpadovani, wow, you're quick! As I said, you should go to uni more often, then :D15:51
dpmrpadovani, let me test it in about 30 mins15:51
rpadovanidpm, anyway, as I wrote, it does a core dump, so I marked to wip15:54
popeyballoons: please could you upload http://s-jenkins.ubuntu-ci:8080/job/clock-app-click/lastSuccessfulBuild/artifact/out/com.ubuntu.clock_3.2.139_armhf.click to the store... /cc nik9016:02
dpmrpadovani, mzanetti, what time would you suggest I change the Reminders meeting to? I changed it only for this week, and I'm not sure if it's a time that will work for you going forward16:03
rpadovanidpm, Thu morning could work for me16:03
balloonswahoo, clock release time16:03
popeyyeah!16:04
mzanettidpm: works for me too16:04
balloonspopey, nik90 uploaded https://myapps.developer.ubuntu.com/dev/click-apps/121/changerequest/16:04
dpmrpadovani, mzanetti, thanks, deal!16:05
nik90balloons: thnx :D16:05
popeyballoons: wanna join the landing meeting?16:06
balloonspopey,just noticed the time16:07
balloonsomw16:07
popeyhey nik90 ! it's 1 year and 1 day since the first version of clock was uploaded to the store!16:08
popey"on 2013-10-09 22:26 - 1 year ago"16:08
nik90popey: yay .. anniversary :)16:08
popeycelebrate!16:09
nik90woop woop :)16:09
balloonsscreenshots of first and current please!16:14
mihirhey balloons how are you doing ?16:27
balloonsmihir, howdy16:27
mihirballoons: doing great :D16:28
mihirrenato___: is that branch got merged and released ?16:28
mihirpopey: i am sorry , i'll clear MR backlogs today for calendar :)16:28
popey\o/16:29
renato___mihir, is already on the silo, should be released next week16:29
popeythat would be awesome, and we can upload a new version!16:29
mihirrenato___: okay thanks, popey we can :)16:30
* mihir forgets lots of things , should better update to-do-list :P16:30
dpmrpadovani, hm, it still freezes for me when switching accounts in the emulator, but let me see if I can test on the device. Another question: why does the option selector does not show me with a tick which account I've got selected? And why is it not enclosed in an Ubuntu shape?16:31
rpadovanidpm, I think the problem of freeze is with online accounts, I'm waiting for mardy to verify. About the tick I didn't implement it, but it's a great suggestion. Do you want also an Ubuntu Shape?16:34
nik90balloons: first screenshot: https://4.bp.blogspot.com/-u3YUgPznIbs/UXmxCSqejMI/AAAAAAAABVk/NMnsRMAiaQI/s1600/Clock1.png, Current screenshot -> https://imgur.com/3tNf7io16:36
balloonsnik90, I love the TODO :-)16:39
elopioping bfiller: you didn't include this MP on your latest gallery landings. Can you please take it into account for the next one?16:39
elopiohttps://code.launchpad.net/~canonical-platform-qa/gallery-app/qmltests1/+merge/23539016:39
nik90balloons: the todo still remains a todo until today :)16:39
=== gatox is now known as gatox_lunch
bfillerelopio: sorry about that, I literally can't keep track of it all, going crazy :)16:41
bfillerelopio: will get it for the next upload16:41
elopiobfiller: I understand. I would have reminded you about it earlier if I could keep track of it all :)16:42
elopiothanks.16:42
balloonsnik90, I'll note you never liked numbers on the clock face :-)16:43
nik90rofl16:44
popeyhehe16:44
dpmrpadovani, yeah, essentially as the drawing I did, if that's doable16:45
rpadovanidpm, yes, I think yes, I'm working on browser right now and this night I'll be out of home, but during the we I'll implement it16:46
mihir_wow , icon refresh on scope has been resolved :D17:08
mihir_popey, you around ?17:11
popeyya17:12
mihir_popey, i tested this , i  guess the transition from Calendar - to Month is okay i believe17:12
mihir_popey, could you confirm so that we can close this MR ,https://code.launchpad.net/~mihirsoni/ubuntu-calendar-app/calendar-splash/+merge/23731917:12
popeylets see17:13
mihir_popey, okay :) you test in on device and comment on MP. I'll leave final call on your inputs :D17:14
popeyI'm sure it's fine.17:14
mihir_popey, could you approve and top approve then ?17:15
popeyIf it's not good then we need to talk to unity/mir people about more / different options17:15
popeywill do17:15
popeysee the comment from Renato?17:15
mihir_popey, yes that how can we make this dynamically17:15
popeyyou can remove +_X-Ubuntu-Splash-Title=Calendar17:15
mihir_popey, pushed newer version.17:17
popeyok17:17
* mihir_ moves to next MR17:17
ahayzenballoons, ping17:18
balloonsahayzen, pong17:19
balloonsgo go mihir!17:19
balloonsI love all the updates coming to calendar17:20
ahayzenballoons, has jenkins just changed we are seeing really strange failures?17:20
popeyyeah17:20
ahayzenballoons, http://91.189.93.70:8080/job/generic-mediumtests-utopic-python3/854/17:20
balloonsahayzen, jenkins has changed17:20
ahayzenballoons, like the app is too big for the screen in some... watch test_shuffle17:20
popeytop approved that mihir_17:20
balloonsahayzen, we did some changes to how the apps are running. Apologies if it's caused you fallout17:20
ahayzenballoons, yeah, this was passing earlier :/17:21
ahayzenballoons, so do we need to make changes to autopilot? or is it the setup on jenkins that needs changing?17:21
balloonsahayzen, I ran a version of remix trunk to see what fails17:22
ahayzenballoons, thanks17:22
balloonsahayzen, we are now running with a window manager during the test runs, and in addition, the display is locked to phone size17:22
balloonsahayzen, does the app force the display to be tablet mode on desktop?17:22
ahayzenballoons, no that just looks like it thinks the screen size it much wider it is strange17:23
ahayzenballoons, it should be dynamic as the window changes size17:23
balloonsahayzen, ok let me test locally and see how we might need to tweak17:25
ahayzenballoons, thanks17:28
ahayzenballoons, ok it just passed?!17:28
ahayzenballoons, now i'm confused17:28
ahayzenballoons, maybe we caught it in the transition or something?17:29
balloonsahayzen, this is the trunk run: http://91.189.93.70:8080/job/generic-mediumtests-utopic-python3/856/17:31
balloonsahayzen, the changes happened yesterday.. unless francis has been playing this morning and I don't know about it17:31
ahayzenballoons, well this was the failed autolanding http://91.189.93.70:8080/job/music-app-remix-autolanding/16/ and this was the auto CI that passed http://91.189.93.70:8080/job/music-app-remix-ci/67/ both on the same rev17:33
ahayzenballoons, shall I try top approving again just to see if it was some crazy magic?17:33
balloonsahayzen, yea I see the trunk run looks like it's going to be all green17:35
ahayzenballoons, i've top approved now we wait :)17:36
=== gatox_lunch is now known as gatox
mihir_popey, okay thank you.17:54
mihir_balloons, yeah :)17:54
balloonsahayzen, let me know how it goes. trunk did end all green17:55
ahayzenballoons, it landed :)18:03
ahayzenpopey, all mps landed and i've updated the readme please build and upload a click :)18:05
mihir_popey, i love this , and looks great i guess --> http://i.imgur.com/t6b4FML.png18:13
mihir_popey, we'll remove context from the event in weekview :)18:13
popeymihir_: ooooh!18:17
popeyloving the work you guys are doing on calendar!18:18
popeyahayzen: will do!18:19
ahayzenpopey, thanks18:20
dpmanyone looking for some polish to do who'd want to tackle a (possibly) bitesize bug in Reminders? bug 137988818:24
ubot5bug 1379888 in Ubuntu Reminders app "Reminders page has offscreen elements and no margins" [High,Triaged] https://launchpad.net/bugs/137988818:24
popeyasking on a friday night... good luck dpm ☻18:24
dpmI felt I had to give it a go... :-)18:25
popeyahayzen: done18:32
ahayzenpopey, thanks :)18:32
popeynp18:32
popeycurry calls me....18:32
balloonsmmm.. curry18:35
davmor2popey: Mark Curry lives near you?18:36
* mihir_ reviewed - updates all the MR..feeling relieved :)18:39
* popey hugs mihir_ 18:45
popeyOh my! http://people.canonical.com/~dpm/core-apps-sponsoring/18:46
popeylook at that!18:46
popeyless than 2018:46
popeynot been like that since the Great Jenkins Fsck Up of September 201418:46
nik90lol..nice one18:47
balloonsis https://code.launchpad.net/~akiva/ubuntu-calendar-app/assortment-of-fixes-to-newevents/+merge/237429 landing?18:47
balloonsmihir_, ^^18:48
popeyoooh! https://twitter.com/oscon/status/52062327759806873618:49
balloonsoO18:49
balloonsno more portland18:49
popeynik90: may be of interest to you... ^18:49
balloonspopey, that said, was it ever in europe?18:50
nik90popey: I don't know much about OSCON, but I'd be interesting in finding out more18:50
popeyi went last year.18:50
balloonsit's not in Portland, not in the US, and not in the summer18:50
balloonswhat happened to oscon?18:50
popeyhaha18:51
nik90wow this looks interesting18:51
popeyits a big event18:52
mihir_balloons, ahhh , thanks , the commend didn't push :|18:52
mihir_baahhhh18:52
* nik90 runs to prepare Indian curry..bbl18:53
davmor2balloons: it dawned on them that the rest of the world bought their books18:54
balloonsdavmor2, so much change . . .18:54
davmor2balloons: the world has grown up around you ;)18:55
mihir_nik90, indian curry :D18:56
* popey is going to http://www.zaffron.co.uk/18:56
popeyboasting "greatest Indian food in the area"18:56
mihir_popey, you like indian food ?18:57
balloonsI love it.. a curry club!18:57
popeyI am british, so yes.18:57
mihir_balloons, you too :-o18:57
popeyIt's easily my fave food.18:57
balloonsI actually prefer thai style curry.. but I do love it18:57
mihir_hahaha okay :)18:58
mihir_it has  more spices than normal curry18:58
* popey leaves to prepare his eating hands. Have a great weekend guys and gals!19:00
mihir_popey, enjoy it :) do test calendar report bugs if you find any \m/19:00
popeywill do!19:01
popeypoke balloons to do more uploads if anything else lands ☻19:01
popeyo/19:01
mihir_sure. sadly my MRs are pending and one some of them needs fixing so won't be able to do this week i guess19:02
mihir_balloons, how do we maintain versions of an application ?19:06
nik90balloons: I can't believe this..If you add a "property" to a Page{}, the autopilot object name changes from "Page11" to "FileName". That's the trick (well bug) :)19:34
nik90balloons: that's why in my previous merges where I added a single property AP failed19:34
balloonsmihir_, sorry I missed your question. What do you mean?19:34
balloonsnik90, let's go find the bug again. So you are saying if you add ANY property to the qml declaration it sets a proper name?19:35
nik90balloons: yup19:35
balloonsnik90, well that's both weird, and makes it much easier to workaround19:36
nik90(and avoid surprises)19:36
balloonshttps://bugs.launchpad.net/autopilot-qt/+bug/134167119:36
ubot5Ubuntu bug 1341671 in Autopilot Qt Support "Versioned QML classes are not recognized by their public type name" [High,Confirmed]19:36
nik90I will ran a few more tests and comment on that bug report19:37
nik90s/ran/run19:37
balloonsnik90, thanks for doing that. I'm curious to see what you figure out20:16
nik90balloons: it definitely seems like adding any property sets the proper public type name20:17
nik90balloons: I presume we need a sample app for easy confirmation20:17
balloonsnik90, might be overkill for 'proof' but I suppose it might be useful to the AP folks. It's kind of weird it's marked as autopilot bug20:18
balloonsnik90, note Leo has some example qml attached20:19
nik90balloons: oh his example are so much easier20:19
nik90cool I will add a property there with the object tree screenshot to show my proof then20:19
balloonscool20:19
nik90balloons: hey I got a small technical question20:21
balloonsyes?20:22
nik90balloons: so in my MP I am working on, the bottom edge has a small animation duration of (~500 ms) to show up after the "hidden" property is set to False. Now in the AP tests, I have wait_for_property(False). However this doesn't wait for the extra 500 secs for the UI to actually finish the animation.20:22
nik90I was typing :)20:22
nik90balloons: how do I do this in AP?20:22
balloonsnik90, interesting. So you have an animation that starts after you set a property to false? You should wait for the animation to finish instead: animation.moving.wait_for(False)20:26
nik90balloons: yes, it starts the animation after it.20:26
nik90okay I need to somehow figure out how to detect if the animation is running20:26
nik90ah I think I have an idea, thnx20:27
balloonssure. There should be an object that is created20:27
* ahoneybun released Ubuntu Beginner 1.220:42
bmatusiakanybody here testing ubuntu touch?21:34
balloonsnever ;-)21:36
bmatusiakballoons,  :P21:41
bmatusiakim using devel-proposed, and just wondering if anybody else experienced the "Sim Lock"21:41
balloonsbmatusiak, https://bugs.launchpad.net/ubuntu/+source/telepathy-ofono/+bug/137983621:43
ubot5Ubuntu bug 1379836 in telepathy-ofono (Ubuntu) "dialer and messaging app say pin locked when it isn't on mako" [Critical,Confirmed]21:43
bmatusiakthats wierd, because im using mako21:44
balloonsbmatusiak, ? sounds exactly like your issue21:45
bmatusiakit is but "pin locked when it isn't on mako"21:45
balloonsyou misunderstand..21:45
balloonsit only happens on mako21:46
balloons"pin locked when it isn't" and then "on mako"21:46
bmatusiakahh,, i c21:46
balloonsbad sentence, but :-)21:46
bmatusiakyea that could have used a semicolon :P21:47
bmatusiakballoons, thanks for the confirm21:47
bmatusiaknow i know where to check for bugs also,21:47
balloonsfixed the bug title to not be so confusing ;-)21:48
mhall119Elleo: is that content-hub move bug landed in the latest devel or rtm image?21:49
bmatusiakballoons, also my 3g was not working but worked on previous builds, do you have any thing on the top of your head for that?21:51
balloonsnope, sorry21:52
ahoneybunbmatusiak, maybe the settings got formated?21:53
sergiusensballoons: the commans should of been ", when it isn't, ..."21:53
sergiusensballoons: "; on mako" is not a sentence21:53
balloonssergiusens, see if you like the new title a bit better. I made it less confusing21:54
balloonsbmatusiak, subscribe to https://launchpad.net/~ubuntu-phone mailing list21:54
balloonsyou can chat with others and share feedback there21:54
sergiusensballoons: ah, but it's specific to mako and aosp; you stripped that out21:54
balloonsright, personally those details would be in the report, imho21:54
balloonsas they can change anyway21:55
sergiusensballoons: not from a managers PoV defining which bugs are a must have for next week ;-)21:55
balloonsTo keep it clear however, I would add on mako to the start of the bug21:55
balloonsso On mako, dialer ...21:55
sergiusensballoons: ideally, we need a hardware entry for bugs :-)21:56
balloonssergiusens, I get it.. might read as a bad headline21:56
balloonsYea, we need a +Affects Hardware21:56
bmatusiakwell now im bored22:12
bmatusiakahoneybun, i never had to input settings22:14
ahoneybunbmatusiak, oh sorry I had to I thought maybe22:18
nik90balloons: I added my observations to the bug report.22:38
nik90balloons: I added a sample project to reproduce the bug consistently22:38
nik90hope this helps22:38

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