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

pabloff9_hello there00:44
pabloff9_I need help finding documentation on scopes for Unity 700:45
pabloff9_I can only find them for Unity 800:45
inder_gthey guys, whats the better way to do indicator applets, pygtk or pygi?00:54
sergiusenspabloff9_: inder_gt both your questions might be better answered in #ubuntu-unity00:57
inder_gtgot it sergiusens thanks00:58
=== chihchun_afk is now known as chihchun
dholbachgood morning07:02
kalikianat1mp: please review this again https://code.launchpad.net/~ubuntu-sdk-team/ubuntu-ui-toolkit/sourceOverflow/+merge/22996007:04
justCarakasGood mornign all07:07
justCarakasI'm working on a game, for those who want to try a test version: http://kamisado.gigapps.be/07:24
t1mpkalikiana: ok08:07
kalikianat1mp: I fixed the typo in the FFFF florian noted and merged staging in https://code.launchpad.net/~ubuntu-sdk-team/ubuntu-ui-toolkit/offWhite/+merge/229973 I can't see any failures except before I cleaned the branch after the merge, so I assume you had some left-over files when you got those errors08:38
t1mpkalikiana: perhaps it was an issue fixed in staging08:40
t1mpkalikiana: I'll review again08:40
kalikianat1mp: it wasn't, it passed before as jenkins agrees on08:40
kalikianahm, though I guess j would have merged it automatically08:40
kalikianawell, whichever it was, it seems to pass now08:41
kalikiananik90: I noticed, as I got asked about example code, this is still collecting dust https://code.launchpad.net/~uonedb-qt/u1db-qt/advanced-game/+merge/20992008:54
nik90kalikiana: I will look at it now and try to get it merged today.08:55
kalikiananik90: that would rock!08:55
nik90kalikiana: will ping you for a review a bit later08:55
nik90t1mp: Is it not possible to do Action { id: sampleaction }, and then use that in head.actions: [ Action { action: sampleaction } ] ?09:35
nik90t1mp: I want to define an action in one place and use it in other places09:36
t1mpnik90: yes09:37
t1mpnik90: did you try it?09:37
nik90t1mp: I did09:37
nik90t1mp: it says "Cannot assign to non-existent property "action""09:37
t1mpshould be head.actions: [ sampleAction ]09:37
nik90ah that works yes09:37
nik90thnx09:37
t1mp:)09:37
nik90kalikiana: I updated the example to use the latest sdk headers and fixed some icon paths.09:55
nik90kalikiana: Is there anything in particular you would like to me to add?09:56
nik90kalikiana: I went through the example and it shows indexing and querying quite nicely09:56
nik90mzanetti: hey, good afternoon10:02
nik90mzanetti: when you have some time, can you show me how to run qmltestrunner within qtcreator10:02
kalikiananik90: niiiiice upgrade. I think it's fine feature-wise. I'd probably add other samples rather than making this more complex.10:08
kalikianaif you're new, it tends to be more confusing than helpful if it there's too much at once10:08
* kalikiana changed it to Needs Review to get CI going10:11
DanChapmanGood Morning all o/10:11
nik90kalikiana: other samples to the same qml project? or as a new project?10:16
nik90kalikiana: nvrmind I got it :)10:17
kalikiananew project :-)10:17
nik90kalikiana, t1mp: Question for either of you. Say I have a PageStack where I push Page1 and then on clicking a button I push Page2. In my QML Unit Test, I have only defined PageStack and Page1. After pushing Page2, how do I access elements in Page2?10:18
nik90I tried, var page2 = findChild(Page, "page2objectname")10:19
nik90and then, var elementinPage2 = findChild(page2, "elementobjectname)10:19
nik90but that dint work10:19
kalikianacould it be a race? is the page in a loader?10:20
nik90Page2 isn't in a loader. It is just defined in a separate file.10:20
nik90I can access Page2 by clicking on a header button in Page1.10:20
nik90since I defined Page1 in my test, I can access the header button10:20
mzanettinik90: hi10:20
nik90mzanetti: hi :)10:21
mzanettinik90: I don't think I've ran qmltestrunner from within qtcreator...10:21
mzanettinik90: however, if you have a make target for it, you should be able to select that in qtc10:21
nik90mzanetti: I thought u showed of runnign unity8 tests in qtc10:21
mzanettinik90: hmm... maybe... IIRC someone asked that question and I just told the same10:22
mzanettinik90: if you have a make target for it, you should be able to select that in qtc10:22
nik90mzanetti: can I add the make target in the cmake file itself?10:23
nik90mzanetti: or do I need a separate makefile10:23
mzanettino, you don't need a separate make file10:23
mzanettinik90: but don't you have that already?10:23
mzanetti"make test" does execute your tests, no?10:23
nik90make test does execute the tests, but that's defined in the cmake files10:24
nik90we don't have a separate make file10:24
nik90mzanetti: I think this is fine since it is a minor inconvenience. I think I hit a bigger issue though.10:26
mzanettinik90: why would you want a separate make file?10:27
nik90mzanetti: I don't, its just that I noticed in the default qtc templates that they add a separate makefile with the instructions to run AP and unit tests10:27
nik90mzanetti: so I figured may be I might need it10:27
mzanettinik90: no... drop that10:28
mzanettiwe're not writing makefiles manually any more10:28
mzanetti:)10:28
nik90:)10:28
nik90mzanetti: I started writing a bigger qml test which involves creating a new alarm. However I am unable to access the elements in the pages I push.10:30
nik90mzanetti: these pages I push, I didn't declare them in my test file.10:31
nik90https://bazaar.launchpad.net/~nik90/ubuntu-clock-app/10-add-more-qmltests/view/head:/tests/unit/tst_alarm.qml10:31
nik90I only declared the first alarmPage.qml. The rest of the file like alarmRepeat.qml, alarmSound.qml etc are pushed but not declared. Any thoughts on how to access them?10:31
nik90or is that a wrong way to do in qml tests?10:32
mzanettino... its ok10:32
mzanettiwhat exactly is the issue? I didn't understand10:32
mzanettiyou can findChile() anything in the object tree10:32
mzanettifindChild() :)10:32
mzanettiline 60 is broken... what us "Page" ?10:33
nik90yup it fails at https://bazaar.launchpad.net/~nik90/ubuntu-clock-app/10-add-more-qmltests/view/head:/tests/unit/tst_alarm.qml#L6010:33
nik90Page is a SDK Page. I am not sure how else to define it :P10:33
mzanettiyeah... what do you expect it to do?10:33
mzanetticreate a new "Page" and search that?10:33
t1mpnik90, mzanetti the first parameter is the object id where you want to start searching for the child10:34
t1mpso Page is invalid there10:34
mzanettit1mp: I know... that's what I'm trying to say10:34
nik90so can I do findChild("addAlarmPage") ?10:34
t1mpnik90: you are confused with select_single in autopilot10:35
t1mpnik90: findChild(parent_id, child_objectName)10:35
nik90t1mp: well the SDK docs for findChild() says the first argument is findChild( obj,  objectName)10:35
nik90t1mp: so I figured obj is ObjectType aka Page and the objectName is addAlarmPage10:36
t1mpnik90: obj is the object in which you search for the object with the specified name. It is not an object type10:36
t1mpnik90: for example, testCase.back_button = findChild(app_header, "backButton");10:36
nik90t1mp: ah ok10:37
nik90hmm, I am still stuck10:39
nik90so say I want to go from AlarmPage.qml -> EditAlarmPage.qml -> AlarmRepeat.qml. Do I have to declare all these pages in my qml test file?10:40
nik90atm I have only declared AlarmPage.qml in my file.10:41
nik90as a result I cannot access the object EditAlarmPage by its specified name10:41
rpadovaninik90, just fyi, alarms work very well. I set an alarm 2 weeks ago for a test, I forgot it, and now it sounds. I was very surprised to hear a sound from my nexus 4 device :D10:55
nik90rpadovani: :D10:55
nik90t1mp: In https://bazaar.launchpad.net/~ubuntu-sdk-team/ubuntu-ui-toolkit/trunk/view/head:/tests/unit/tst_components/tst_pagestack.qml, how would you access page2 if you didn't declare it in the test file but it was part of your project?11:04
nik90t1mp: that's what I am trying to do11:04
nik90mzanetti: So in https://bazaar.launchpad.net/~ubuntu-sdk-team/ubuntu-ui-toolkit/trunk/view/head:/tests/unit/tst_components/tst_pagestack.qml#L138, if page2 wasn't declared there, one cannot use page2 in the test?11:23
mzanettinik90: no... that's not how it works :)11:29
mzanettinik90: you know autopilot vis, do you?11:29
nik90mzanetti: yeah I do, can I use that?11:30
mzanettinik90: so its basically the same with that...11:30
nik90mzanetti: hmm that would mean I need declare all the files alarm requires in my test..which seems like a waste11:30
mzanettinik90: you have a tree of objects at any point when your application runs11:30
mzanettinik90: and you can use findChild() to get any of those objects from the object tree11:31
mzanettinik90: you shouldn't need to declare anything in your test except for the component you want to test...11:31
nik90mzanetti: true, but I want to test "creating an alarm" which in turn requires about 4-5 qml files11:32
mzanettinik90: so?11:32
nik90mzanetti: well erm..I guess I can do that :D11:33
mzanettisure11:33
mzanettinik90:  I assume it works like this:11:33
mzanettiyou have Page1.qml11:33
mzanettiand in there you have a button or whatever that does a pageStack.push(page2)11:33
nik90yup exactly that11:33
mzanettiso both pages are children of the pageStack, no?11:34
mzanettiso you can do findChild(pageStack, "page2")11:34
mzanettiand if the pageStack is a child of your mainView, you can also do findChild(mainView, "page2")11:34
mzanettifindChild searches the whole object tree11:35
nik90ah yes11:35
nik90that could work11:35
nik90mzanetti: ha that worked!11:36
mihirnik90: i have looked at clock app11:58
mihirnik90: i'll try that today and will push changes.11:58
nik90mihir: sure11:59
=== renato is now known as Guest9436
dholbachpopey, mhall119, balloons, bzoltan: if we provide people at an event with virtualbox images of ubuntu+sdk installed... does it make sense to stay on 14.04 for this?12:37
t1mpdholbach: can you run the emulator or 14.10 chroot in a virtualbox?12:38
dholbachlet me see12:39
bzoltandholbach:  14.10 image at the moment would bring more... like running the scopes12:46
dholbachbzoltan, ok... so for Mac and Windows users at conferences we'd give them a vm image with the latest and greatest, you'd say?12:48
dholbachcurrently we have scopes docs, but no scopes training material yet12:48
bzoltandholbach:  I would go with the Utopic, yes.12:49
justCarakasdaker: did I do something wrong or has the HTML5 UI not changed since the app showdown ? I was looking to use the new header but it was nowhere to be found12:49
dholbachok12:49
dakerjustCarakas: yes :/12:49
justCarakasdaker: is there something I can do to get it in there ?12:51
dakerjustCarakas: most of the work i have done is still waiting review, since Alex is focusing is work on Oxide12:52
dakernew header is here https://code.launchpad.net/~ubuntu-html5-theme-devs/ubuntu-html5-theme/new-header12:52
dakerstill WIP12:53
justCarakascan I contribute ?12:53
dakersure12:53
justCarakaswhat should I do to get started ?12:54
dakerjuste grab the code and open the editor :)12:54
justCarakasoki :)12:54
justCarakasI'll look into it after work12:55
dakerjust ping if you want to ask/know something12:55
justCarakasoki12:58
=== _salem is now known as salem_
om26erpopey, Hi! are we testing an image ?13:12
popeyom26er: I'm not, UK vacation13:12
om26erpopey, ok, sure.13:12
justCarakasdaker if I want to work on it, do I need to fork it ?13:28
Drew____Hi13:33
nerochiarooSoMoN: when you have a minute, this is the problem I was having last week with AP tests that I wanted to ask you about: http://pastebin.ubuntu.com/8140784/ -- all the tests fail with the same error13:36
twstddevGuys, do you need any help with development?13:46
=== Guest9436 is now known as renatu
mhall119dholbach: I would agree with 14.10 being used for VM images13:57
dholbachok13:57
dholbachsetting it up and testing it now13:58
davidcallemhall119, dholbach, hi there :)14:00
dholbachhey hey davidcalle14:00
dholbachdavidcalle, still sitting in the train? :)14:01
davidcalledholbach, nope, home at last!14:01
dholbachexcellent14:01
mhall119hello davidcalle14:03
nerochiarooSoMoN: the log says: "RuntimeError: Application Launch Failed: Application crashed." but the only crashfile in /var/crash is _usr_lib_python3_dist-packages_autopilot_run.py.32011.crash14:06
oSoMoNnerochiaro, if you remove this crash file and run again, does it crash again?14:07
nerochiarooSoMoN: yes14:07
oSoMoNnerochiaro, does the app run at all, outside of autopilot?14:08
nerochiarooSoMoN: yes, runs just fine14:08
oSoMoNnerochiaro, you’re gonna have to inspect this crash file to know what’s happening then14:09
nerochiarooSoMoN: it just smells like something is bad with my setup, but i'll see if i can inspect that14:10
balloonsnik90, ping14:14
nik90balloons: pong14:17
balloonsnik90, so clock reboot becoming clock. We should be all set to do it now, eh?14:17
nik90balloons: we were supposed to do that last friday, unfortunately I decided against it since we had a fix in the SDK that I badly wanted in the promotion before making the replacement :D14:18
nik90balloons: the SDK bug fixes the alarm status toggling which I considered high priority14:19
nik90balloons: so I am back to waiting for the next promoted image.14:19
nik90balloons: the SDK fix is already in a silo and waiting to be pushed into an image14:19
dholbachdavidcalle, does the login I sent over work now?14:21
davidcalledholbach, yes thanks, I've just tried14:21
nik90balloons: http://people.canonical.com/~platform/citrain_dashboard/#?distro=ubuntu&q=landing-00914:22
dholbachdavidcalle, perfect - is there anything else you need? or are you generally set up?14:23
balloonsnik90, ohh I thought that fix did land in the image14:24
balloonswell then, we continue to ait14:24
nik90balloons: no previously we were waiting on another fix :)14:24
nik90balloons: this fix I am talking about landing just on friday in sdk-staging14:24
nik90s/landing/landed14:25
=== boiko_ is now known as boiko
davidcalledholbach, I should be fine : I'm setting up my dev env + phone and trying to work around https://bugs.launchpad.net/ubuntu/+source/phablet-tools/+bug/1360582 . The first article is fully drafted, I just need to put the theory in practice...14:27
ubot2Ubuntu bug 1360582 in phablet-tools "Can't manually install clicks "Signature verification error" since #205" [Undecided,Confirmed]14:27
dholbachdavidcalle, do you write up things in WP or anywhere else? I'm just wondering how best we could reviews, so you can get a bit of feedback from others14:27
dholbachbzoltan, did you find anyone to look into https://bugs.launchpad.net/ubuntu/+source/phablet-tools/+bug/1360582?14:27
davidcalledholbach, I was planning to use gdrive, if that's ok14:28
dholbachdavidcalle, that's brilliant14:28
dholbachdavidcalle, it's a bit of a pain, if you copy it over into WP (because it has its own preferences of how to HTML), but it makes commenting and other stuff super easy14:28
dholbachso in general: sounds good to me :-)14:29
bzoltandholbach:  only mvo can fix it and hopefully he will join us as the debconf lets him to do so14:30
dholbachahhh ok14:30
davidcalledholbach, yeah, that's what I was wondering... Well, we'll make it work :)14:30
dholbachbzoltan, you're right... he went to debconf - I totally forgot that14:30
dholbachdavidcalle, of course :)14:30
bzoltandholbach:  but the workaround is to use the RTM image instead of the Ubuntu14:31
dholbachdavidcalle, let me know whenever you want to have a chat or anything else - maybe we can have a quick call to catch up tomorrow (if you're not in the train again :-))14:32
=== balloons_ is now known as balloons
=== alecu_ is now known as alecu
=== ablasche_ is now known as ablasche
davidcalledholbach, a call tomorrow sounds good. Please ignore the crying baby in the background. ;)14:34
dholbachdavidcalle, and you ignore lazy, chatty coworking people around me :-P14:35
davidcalledholbach, hehe14:37
nerochiarobfiller: did you mention AP tests failing on gallery during the standup ?14:37
nerochiarobfiller: nevermind, artmello updated me on these14:38
ybonthanks dholbach :)14:53
dholbachybon, anytime14:53
nerochiarozbenjamin: do you know why after flashing the latest image when i try to install a package on the device i get "Cannot install /home/phablet/com.ubuntu.gallery_2.9.1.latest_armhf.click: Signature verification error: debsig: Origin Signature check failed. This deb might not be signed." (when clicking run from qtcreator but also if i try manually"15:07
zbenjaminnerochiaro: yes, package signing was enabled, but it should be disabled in developer mode. Seems to be a bug.15:08
nerochiarozbenjamin: workarounds so i can keep on working ?15:09
zbenjaminnerochiaro: you can use the ubuntu-touch/ubuntu-rtm/14.09-proposed channel to flash your device15:11
nerochiarozbenjamin: doing that now, thanks15:13
ybonis the Dekko maintainer around?15:16
nik90DanChapman: ^^15:18
ybonthanks nik90 :)15:18
nik90:)15:18
DanChapmanybon, hey whats up?15:19
ybonDanChapman: well, I have an issue, and would like to see if you are interested in details, but first I want to send you a bunch of thanks for takling the missing email app! :)15:20
DanChapmanybon :-) yeah it's providing some challenges. What issues are you having?15:22
ybonDanChapman: it crashes when I try to save my account15:22
DanChapmanmeh still that :-(15:23
ybon:s15:23
ybonI can give you some info of what I've done previously15:23
ybonmaybe it helps15:23
DanChapmanybon ok is that with the version just landed in the store15:23
ybonDanChapman: yes15:23
ybonbut was the same before15:23
DanChapmanybon yeah info would be awesome. I just cannot reproduce it myself and the the log file would be handy.  :-D15:24
ybonDanChapman: I've first created an accoutn with "ybon@enix.org" as username, which is wrong because my account is "ybon", so I renamed it, and then I've add two account instead of one15:24
ybonbut even in the "ybon" one, I was able to rename the username for the stmp iirc, so I've deleted both15:25
ybonand since then I cannot create any new account15:25
ybonlet me check the logs15:25
ybonhumm, logviewer crashing too :p15:26
ybonlet's ssh15:26
ybonstrange, logviewer crashes only if I try to acces the Dekko logs15:28
DanChapmanybon, right first can you delete the conf file in ~/.config/com.ubuntu.developer.dpniel.dekko/ and try creating again. there were some quite big changes to the accounts saving process that I expected may break stuff for some people15:28
ybonDanChapman: ok, let me try that right away15:28
ybonDanChapman: FIY, this file is empty15:28
ybonit exists, but it has no content at all15:29
ybon651908 0 -rw------- 1 phablet phablet 0 Aug 15 20:28 .config/com.ubuntu.developer.dpniel.dekko/com.ubuntu.developer.dpniel.dekko.conf15:29
ybonDanChapman: crashed again after deleting the config file :(15:31
DanChapmanybon :-( is that crash on start or crash when creating account?15:32
ybonwhen I click save on the last screen of the account creation process15:33
ybonnote that now the config file isn't empty15:33
ybonah15:33
ybonnow it crashes also at start :s15:33
DanChapmanybon right that's progress and is there a log file?15:33
ybonI don't remember where I can find it (the log file)15:34
ybonit's not in /var/log it seems15:34
nerochiarooSoMoN: by reflashing the image these crashes I was having before disappeared. Now though I get this when running tests: http://pastebin.ubuntu.com/8141624/15:35
nerochiarooSoMoN: is there some configuration I'm missing ?15:35
nerochiarooSoMoN: (i'm following the instructions in the email you pointed out to me some time ago)15:35
oSoMoNnerochiaro, I don’t know, maybe artmello can help?15:36
nerochiarooSoMoN: artmello: it was apparently hablet-config autopilot --dbus-probe enable that didn't work the first time I launched it15:36
nerochiarono idea why as it didn't give any error message, but i ran it again and now tests work15:37
ybonfound it15:37
DanChapmanybon under .cache/upstart i believe15:37
ybonyep15:39
ybonI'm reading it15:39
ybondo you want it?15:39
DanChapmanybon yes please :-)15:40
ybonDanChapman: https://gist.github.com/yohanboniface/90b763aa0c1e8913dd6b15:40
DanChapmanybon thanks. Just looking :-)15:44
yboncool :)15:46
nik90mzanetti: I got a bare basic "create alarm" test finished :D. I still need to check if the alarm count increased by one or not...but it works for the most part.15:47
mzanettinik90: hehe. congrats15:47
nik90mzanetti: I did not add any tests within the createAlarm test like checking if the alarm label was set correctly etc because i do that in the unit tests in those individual pages already15:48
mzanettinik90: yes. perfect!15:48
nik90woohoo15:49
nik90mzanetti: quick question, everywhere i look in the sdk and unity8, you guys use signalSpy. I read the official docs on it but didn't really understand why it is required.15:49
nik90when I click on a button, I just do waitForRendering(page2) instead of the signal spy stuff15:50
dholbachmhall119, balloons: is https://bugs.launchpad.net/qtcreator-plugin-ubuntu/+bug/1361276 what you had in mind0ß15:53
ubot2Ubuntu bug 1361276 in qtcreator-plugin-ubuntu "Build/run app locally, if host = target" [Undecided,New]15:53
ubot5`Ubuntu bug 1361276 in qtcreator-plugin-ubuntu "Build/run app locally, if host = target" [Undecided,New]15:53
dholbachmind?15:53
=== gatox is now known as gatox_lunch
mzanettinik90: well, sometimes its not that easy :) and sometimes a SignalSpy is just convenient15:56
mzanettinik90: for example to check signal arguments15:56
mzanettior need to count how often a signal is triggered15:56
nik90ok15:57
DanChapmanybon ok so i have an idea of what's happening. Just to confirm do the contents of the config file look correct. And is there an [Accounts] section?15:58
balloonsdholbach, mhall119 I was slightly confused by the conversation.. I can select my local system as the build target15:58
dholbachballoons, maybe it should automatically be default if that's what I'm building for?15:58
dholbachor add a "kit" for "local"?15:58
ybonDanChapman: yes and yes15:59
ybon[Accounts]16:00
ybonb2447d19-369a-4be7-b62e-5fcc66436677\AccountName=b2447d19-369a-4be7-b62e-5fcc6643667716:00
ybonthis is the content of Accounts (the \AccountName seems a bit weird btw)16:00
ybonmissing a \n maybeN16:00
ybons/N/?/16:00
balloonsdholbach, for me the default was/is 'Desktop', with system paths and no sysroot16:00
balloonsaka, local..16:00
dholbachballoons, hunm16:01
dholbachhum16:01
dholbachthen I misunderstood the discussion somewhat16:01
dholbachI thought the problem was that you were somehow brought to use a chroot in cases where just using "desktop" (or "local") would be easier16:01
balloonsdholbach, lol.. I'm confused as well on the problem, and indeed there could be one, but I'm not sure what it is16:02
dholbachmhall119, ^ :)16:02
dholbach136127616:02
dholbachall rightie... I'm going to head out now - let me know on the bug report if I made sense or not ;-)16:03
ahayzenpopey, are you able to set the status of powerd (ubuntu) back to confirmed from fix released for bug 1337239 ?16:06
ubot2Launchpad bug 1337239 in powerd "Digitiser still works when phone locked" [Undecided,Confirmed] https://launchpad.net/bugs/133723916:06
ubot5`bug 1337239 in powerd "Digitiser still works when phone locked" [Undecided,Confirmed] https://launchpad.net/bugs/133723916:06
ahayzenyey 2 bots \o/16:07
balloonsahayzen, why the status change?16:08
ahayzenballoons, it was changed to fix released by accident16:08
ahayzenballoons, and it isn't fixed :P16:08
ahayzenballoons, just me, victor and jim can't change it back :/16:09
balloonsahayzen, I also cannot, I would ask in #ubuntu-bugs16:11
ahayzenballoons, thanks :)16:12
ahayzenballoons, when u have a spare moment would you mind scanning over https://code.launchpad.net/~andrew-hayzen/music-app/ap-helper-refactor-002/+merge/231815 ?16:13
popeyahayzen: done16:16
ahayzenpopey, sweet thanks :)16:17
popeynp16:17
* popey goes to make food16:17
swordfishHello app-develepers, I'm having some issues building the latest trunk of terminal-app. This is the the output I'm getting: http://pastebin.com/wk448Uji. I already setup an i386 emulator with a 14.10 chroot, and I'm able to deploy simple application on the emulator. Am I missing something or is this a problem in the CMakeFile.txt of the project?16:17
DanChapmanybon right I have a solution on the way are you going to be around in an hour or so? I've got to pop out.16:20
twstddevswordfish, Hello. Got to projects in creator and in "build" tab add -DCLICK_MODE=on to CMake arguments. As well in manifest.json change architecture to i386 in order to launch the app in emulator16:21
ybonDanChapman: yes, just ping me when needed :)16:21
swordfishtwstddev, And that was it! :D ... Two hours trying everything and it was only the arch in the manifest. Thank you!16:26
twstddevno worries :)16:26
mihirnik90: ping16:32
nik90mihir: give me a few minutes, on a call16:33
mihirnik90: no issues, what are PPA for adding timezone modules?16:33
mihirballoons: hi16:33
balloonsmihir, hello16:34
gerlowskijaballoons: if you get a chance today, can you please take a look at the revisions I made on https://code.launchpad.net/~gerlowskija/ubuntu-calendar-app/fix-for-bug1350605/+merge/231252?16:40
mihirgerlowskija: it looks good to me16:41
mihirgerlowskija: it passes all the test cases as well16:42
nik90mihir: what timezone modules?16:42
mihirnik90: nothing resolved16:42
mihirnik90: it was my mistake16:42
balloonsgerlowskija, certainly16:42
nik90mihir: oh ok :)16:43
balloonsgerlowskija, can we just chat in IRC to finish?16:45
* popey approves camera 3.0.0.360 into the store /cc bfiller 16:48
bfillerthanks popey, gallery coming too16:48
popeywill keep an eye out16:49
popeyooh its there16:49
popeybfiller: done.16:50
popeybug 123416:50
gerlowskijaballoons: sure, do you have time now, or want to chat later?16:50
ubot2Launchpad bug 1234 in launchpad "Gina is an unmaintainable mess of command line options, environment variables and shell scripts" [Medium,Fix released] https://launchpad.net/bugs/123416:50
ubot5`bug 1234 in Launchpad itself "Gina is an unmaintainable mess of command line options, environment variables and shell scripts" [Medium,Fix released] https://launchpad.net/bugs/123416:50
IdleOnehmm16:52
balloonsgerlowskija, now is fine. I guess I should just comment on the mp16:52
popeythanks IdleOne16:53
balloonsI can't kick popey now :-(16:53
popey\o/16:54
IdleOnewelcome16:54
* popey goes to check on pie16:54
popeymmmm pie16:54
popeyhttp://drool.popey.com/16:54
IdleOnebug 123416:56
ubot5`bug 1234 in Launchpad itself "Gina is an unmaintainable mess of command line options, environment variables and shell scripts" [Medium,Fix released] https://launchpad.net/bugs/123416:56
=== ubot5` is now known as ubot5
=== gatox_lunch is now known as gatox
=== salem_` is now known as _salem
=== _salem is now known as salem_
DanChapmanybon hey, please could you try this click for me http://people.ubuntu.com/~dpniel/dekko/click/com.ubuntu.developer.dpniel.dekko_0.2.5_armhf.click. Hopefully should work or at least give a better idea of what's going on.18:20
ybonDanChapman: sure, doing that now18:22
ybonDanChapman: do you know from the top of you head the command line to install it? I usually install from QtCreator18:23
DanChapmanybon from commandline i usually use 'adb push' then 'phablet-shell' then i think it's pkcon install-local dekko.click. There's probably a better way :-) I usually use QtCreator aswell18:27
balloonsgerlowskija, approved18:27
ybonok thanks :)18:27
balloonsleft a couple comments18:27
gerlowskijaballoons: Thanks balloons, I'll take a look in a little bit and respond if I can.18:28
ybonDanChapman: Installed   com.ubuntu.developer.dpniel.dekko-0.2.5.armhf (installed:click,removable=1,app_name=dekko)summary goes here19:03
ybonbut still crash on start :/19:03
ybonDanChapman: should I modifiy/delete the config file?19:03
DanChapmanybon, no the config file should be fine now. The log should have a bit more info in it now though, could you paste it somewhere again for me?19:06
ybonDanChapman: humm, I don't see a 0.2.5 log file19:07
ybonnot sure it's installed so19:07
ybonwhen I long click on Dekko icon, it still says 0.2.419:07
ybonDanChapman: I need to step out for diner, bbiab19:08
DanChapmanybon I usually have to reboot to see a local install. Sure... enjoy your dinner :-)19:08
ogra_searching helps ...19:16
ogra_just search for something and the .desktop files get refreshed19:16
=== salem_ is now known as _salem
=== DanChapman is now known as DanChapman|afk
balloonsnik90, did you get your translation stuff worked out?19:35
nik90balloons: ?19:37
balloonsnik90, I remember last week the clock reboot needed something with translations?19:38
nik90balloons: dpm added the translation support in clock reboot.19:39
nik90balloons: the desktop file is not translated however19:39
nik90balloons: but I haven't any translations in the clock reboot though19:39
nik90not sure if it is a bug19:39
balloonsnik90, yes, and that's a problem as it's not replaced the clock app yet19:39
balloonsand I'm not sure it shows up as needing help19:40
nik90balloons: but even if it does, it will still stay in lp:ubuntu-clock-app/reboot?19:40
nik90or do we switch that to lp:ubuntu-clock-app ?19:40
balloonshttps://launchpad.net/ubuntu-clock-app/+translations19:40
balloonshmm https://translations.launchpad.net/ubuntu-clock-app/reboot/+translations19:41
balloonsnik90, so we can switch the translation focus for instance19:43
balloonsand we also need to import on the reboot branch I think19:43
nik90balloons: I tried manually to add translations for my language for reboot, but couldn't find any way to do so19:44
nik90balloons: but yes we will come back to this when we do the switch19:44
balloonsnik90, well I'm going to ask for a big translation push from everyone, and I want to make sure clock gets it19:44
=== _salem is now known as salem_
balloonswe really need to make the switch19:44
nik90yeah19:45
nik90when r u planning to make the call?19:46
balloonsnik90, starting this week19:47
balloonstoday/tomorrow19:47
balloonsI worry about the focus going to the current clock app (which is already happening)19:48
nik90hmm19:48
ybonDanChapman|afk: rebooted, but still the same, I will investigate19:51
=== renato is now known as Guest55515
balloonsnik90, QA efforts are also focusing on the old app.. just feeling the crunch19:52
balloonsI didn't mean this to turn into a guilt trip, heh, my apologies19:53
nik90sry19:54
ybonis pkcon install-local xxx.click the command to install a click package by hand on the device?19:57
ybonIt's says installed, but then it still seem to be the old version19:57
ybonhumm, even if I try to uninstall it from the UI, it's still there :s20:04
ybonI'm trying pkcon remove, but not luck to find the expected parameter, dekko doesn't work, full package name either20:07
ybonok, reboot + pkcon remove seems to have done it20:11
ybonDanChapman|afk: https://gist.github.com/yohanboniface/8e8ab888fba106a90bf3 new log20:16
ybon(still crashing at start)20:16
mihir_nik90:20:44
mihir_nik90: i have pushed the new changes20:45
mihir_https://code.launchpad.net/~ubuntu-calendar-dev/ubuntu-calendar-app/revamp-repetition-deisgn/+merge/23196720:45
mihir_nik90: it has small bugs , i will need to resolve that , i am doing that right nows20:45
mihir_now*20:45
nik90mihir_: ok. will check it now20:46
mihir_nik90: i am still left with the slider and all, as focusing on functionlity first20:46
nik90ok20:48
mihir_nik90: will you leave comments over there , i might probably go to bed21:05
nik90mihir_: ui wise it is mostly good21:06
nik90Just some small tweaks only21:06
nik90I will add comments tomorrow morning21:06
mihir_nik90: hmm , i am fixing functionally bugs i have noticed21:06
mihir_nik90: after this , we can merge our branch , and big task will be AP21:07
nik90Yes21:30
=== salem_ is now known as _salem
=== _salem is now known as salem_

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