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

Akiva-ThinkpadRTM is close00:39
Akiva-ThinkpadAny huge bugs that need to be attacked?00:39
Akiva-Thinkpad;_; I wish lenovo thinkpads did not suck... IBM was so good to us.02:09
* Akiva-Thinkpad desires a coreboot, open hardware laptop with a trackpoint 02:10
Bharathi04:31
Bharati need someone who can help me with installing ubuntu touch on my samsung galaxy tab 10.1 with android running04:31
Bharatanyone?04:32
Bharathi04:32
=== chihchun_afk is now known as chihchun
=== alecu_ is now known as alecu
dholbachgood morning06:55
justCarakasgood morning07:02
mihirgood morning all :)07:22
liuxgif I want to use sqlite or u1db to save settings, may I know what kind of policy I should in the app. So far, only if I set the template to "unconfined" to make it work.08:39
mihirpopey: which is the latest release for image?08:41
mihirdevel-proposed ?08:42
popeymihir: thats what I use, yes09:01
mihirpopey: okay09:03
mihirnik90: ping09:04
nik90mihir: pong09:09
mihirnik90: so , shall we fix AP on that branch and merge it to trunk ?09:11
mihiror what would you suggest09:11
mihir?09:11
nik90mihir: you said you wanted to move some code to a new file?09:11
nik90mihir: the remind me if I remember correctly09:12
mihirnik90: yup , i am almost done, it should go in this branch only. ok i'll push that by today09:12
mihirpopey: nik90 what would you suggest on this bug , https://bugs.launchpad.net/ubuntu-calendar-app/+bug/1362962 ?09:13
ubot5Ubuntu bug 1362962 in Ubuntu Calendar App "Calendar icon usually shows the wrong date" [Undecided,New]09:13
nik90mihir: it shouldn't change the UI?09:14
nik90mihir: just code being moved around?09:14
mihirnik90: but it uses hard code icon image right?09:15
nik90mihir: yeah the same bug was reported against the clock app :)09:15
nik90mihir: I will have to ask around if it is possible to change the icon dynamically09:16
popeymihir: i wondered who would bring that up one day.09:17
mihirpopey: hehehe ,09:18
popeymihir: wishlist imo, we can't do it without platform changes09:21
* mihir mark bug #1362962 as wishlist09:21
ubot5bug 1362962 in Ubuntu Calendar App "Calendar icon usually shows the wrong date" [Undecided,Confirmed] https://launchpad.net/bugs/136296209:21
nik90popey: oh btw, I had some good luck with testing the location finding MP this morning. I know how to get the location prompt to be shown by resetting some config files. After some code fixes, I will update the MP and the instructions to test it easily.09:22
mihirpopey: https://bugs.launchpad.net/ubuntu-calendar-app/+bug/136278109:24
ubot5Ubuntu bug 1362781 in Ubuntu Calendar App "After date recurrence end is not functioning." [Critical,Confirmed]09:24
popeynik90: awesome09:29
seb128who is working on the calendar? is anyone looking at making the hours follow the locale rather than being am/pm only?09:34
nik90mihir: ^^09:36
nik90seb128: out of curiosity, where? In the New Event Page or in the calendar view?09:36
mihirseb128: in day view / or new event page or event details ?09:37
nik90seb128: In the New Event Page, they use the SDK DateTime Picker which doesn't follow the user locale. A bug has already been reported09:37
mihirnik90: now, i am configuring my device , if i want to run calendar app from my device , i need to push click pacakge, or i can do it directly from SDK09:39
mihirnik90: i configured all the required kits as well09:39
mihirnik90: i can see run option while creating new application but not while using calendar or calculator app09:40
nik90mihir: through manual click package installation09:40
nik90mihir: your source tree is not compatible with the sdk09:40
nik90mihir: not sure how to fix it09:40
mihirnik90: :|09:40
mihirso, if i have to build project ,push that click package to device and then run , right ?09:41
nik90yes09:41
* mihir checks how to run manual click package09:41
nik90adb push .clickPackage /tmp09:41
nik90phablet-shell09:41
nik90pkcon install-local /tmp/.clickpakcage09:41
nik90run app09:41
seb128mihir, nik90, day/week views, the column09:45
nik90seb128: oh yeah..just realised.09:49
nik90mihir: ^^ should be easy to fix09:49
nik90seb128: can you report a bug pls?09:49
mihirnik90: yup , currently , it is just am/pm format there is no locale we have implemented.09:51
seb128nik90, sure, going for lunch now but doing that once I'm back09:51
mihirnik90: i believe it is in locale , text: new Date(0, 0, 0, index).toLocaleTimeString(Qt.locale(), i18n.tr("hh ap"))09:55
=== daker_ is now known as daker
=== lool- is now known as lool
=== nik90_ is now known as nik90
=== greyback__ is now known as greyback
=== popey_ is now known as popey
nik90_popey: can you check if https://i.imgur.com/amYuW2b.png looks okay. That's the logic we have for GPS at the moment11:01
=== MacSlow is now known as MacSlow|lunch
=== dkessel_ is now known as dkessel
DanChapmanhey guys. need some translation advice. At the moment dekko uses qsTr() throughout it's qml files but i'm wanting to change to use i18n.tr but how do I handle translating ListElement properties? See http://pastebin.ubuntu.com/8177658/ I have previously been using QT_TR_NOOP, on askubuntu i came across using the dynamicRoles property is a workaround for i18n.tr & listviews which i have yet to try but what about OptionSelectors and oth11:08
DanChapmaner ubuntu components11:08
=== me4oslav_ is now known as me4oslav
nik90_DanChapman: here's what I did http://paste.ubuntu.com/8177705/11:09
nik90_In the delegate I use text: _resultsList.model.title(index)11:11
DanChapmannik90_, that's perfect thanks :-) although i was kind of expecting there to be something similar to QT_TR_NOOP with i18n.11:16
nik90_DanChapman: I don't know QT_TR_NOOP at all, so I just pasted what I use :D11:17
brendandDanChapman, not sure if this is exactly the same use-case but it sounds similar: http://paste.ubuntu.com/8177767/11:17
nik90_brendand: ooh I like your method better11:19
brendandnik90_, thanks :)11:20
brendandnik90_, it was the cleanest way i could find11:20
DanChapmanbrendand, ooh that's pretty neat!! :-).... I like that. Thanks11:21
nik90_m-b-o: when you called position source stop() and start() does it work as expected? I get http://paste.ubuntu.com/8177801/11:23
nik90_m-b-o: and it continues trying to get the gps coordinates11:23
nik90_m-b-o: I also tried setting active = false, but same issue11:24
=== _salem` is now known as _salem
=== _salem is now known as salem_
m-b-onik90_ with which image have you tried?11:50
* nik90_ checks11:50
nik90_m-b-o: 21311:50
nik90_m-b-o: I manually started the location services by "start ubuntu-location-service-trust-stored"11:51
nik90_m-b-o: http://people.ubuntu.com/~nik90/touchwiki/#!pages/tricks.md11:51
m-b-onik90_ will install it and try with that one11:51
m-b-ofine! :)11:51
nik90_m-b-o: i see that error on utopic desktop as well even thoug it gets the location correctly11:53
seb128nik90_, https://bugs.launchpad.net/ubuntu-calendar-app/+bug/136306211:58
ubot5Ubuntu bug 1363062 in Ubuntu Calendar App "day/week view should use time format adapted to the locale" [Undecided,New]11:58
nik90_seb128: thnx. confirmed11:59
seb128thanks11:59
seb128is anyone going to look at it? or should I try to add that to my todo? ;-)11:59
nik90_seb128: erm I think mihir will look at it. If not I will do it.12:00
seb128thanks12:00
nik90_:P12:00
seb128it makes the calendar quite confusing to use atm ;-)12:00
nik90_it should be an easy fix since they must be using a repeater to show those labels. I will help them out with it12:01
=== DanChapman is now known as DanChapman|afk
seb128great12:07
=== jgdxx is now known as jgdx
=== renato is now known as Guest28580
m-b-opopey: the fontcolor is fixed in weather! Made the changes on top of the pagestack-branch. We would get a merge conflict otherwise.12:28
popey\o/12:28
popeythanks m-b-o12:28
popeym-b-o: triggered a rebuild of https://code.launchpad.net/~martin-borho/ubuntu-weather-app/pagestack/+merge/231093 now jenkins is apparently fixed12:31
beuno_lso12:40
beuno_sl12:40
=== beuno_ is now known as beuno
beunoare there any apps we should be highlighting in the store, that we aren't?12:40
=== Pici` is now known as Pici
popeym-b-o: failed differently http://91.189.93.70:8080/job/generic-mediumtests-utopic-weather-app/63/console12:43
popeybeuno: dekko12:43
m-b-opopey: yeah, will have a look12:43
beunopopey, ack, anything else?12:44
popeybeuno: quick memo is nice.12:44
popeybeuno: blabble if you want a nice puzzle game.12:45
m-b-opopey: that's a flaky test, which happens sometimes. Could you restart, please?12:45
popeym-b-o: sure12:45
m-b-oballoons: ping12:45
popeydone12:45
m-b-opopey: thanks12:46
popeyhttps://code.launchpad.net/~martin-borho/ubuntu-weather-app/1363023-header-overlay-textcolor/+merge/232698 failed too12:46
popeywant me to re-run?12:46
m-b-opopey: not now... depends on the one running now12:47
popeyok12:47
mihir_seb128: i'll try to look into it12:52
m-b-opopey: seems someting more serious, will have a look12:52
seb128mihir_, thanks12:52
popeythanks m-b-o12:53
nik90_popey: hey, not sure if you got my message do you freenode network ddos, does https://i.imgur.com/amYuW2b.png look good wrt location finding?12:55
nik90_s/do you/due to12:55
popeyi didnt, lets see12:57
popeynik90_: do we need to do location detection every time we wake?12:58
popeynik90_: also, what does it look like if someone says "no" to location detection?12:58
rpadovanipopey, are you good with CMAKE?12:59
nik90_popey: I was thinking of the use-case where the user just keep the clock app in the background before catching a train and then on arriving at the destination opens the clock app. It is a rare use case though12:59
nik90_popey: perhaps I can make it more intelligent by checking the time at suspend and again when it is active, if the time difference is more than 30-60 mins I can start GPS again?12:59
popeyrpadovani: I am not ☻13:00
nik90_popey: I haven't looked at what happens if someone says no to location detection. Let me try that13:00
nik90_mzanetti: would you have time later today to review https://code.launchpad.net/~nik90/ubuntu-clock-app/conditionally-load-alarmmodel/+merge/232412 ?13:03
nik90_mzanetti: its mostly using a qmml loader and then doing corresponding changes for that to work.13:04
mzanettinik90_: I guess if I do that rpadovani will kill me... I have a bunch of his branches on my todo still :)13:04
rpadovanimzanetti, and an hangout :P13:05
mzanettinik90_: but maybe I can get to them today13:05
* mzanetti hides13:05
nik90_mzanetti: hehe13:05
nik90_mzanetti: np, I will try to find someone for the review13:05
mzanettiok... need some food now13:05
mzanettibbl13:05
rpadovanimzanetti, well, for hangout there is no problem, we can have a chat :-) Good lunch!13:05
mzanetti:)13:06
seb128does anyone know if there is a gettext string variant, which can be used in qml, including a "context"?13:07
seb128e.g to allow the same string to be listed several times in the template with different translations13:07
beunopopey, update.13:08
seb128that's useful if you have the same word that might have different translations in different context13:08
seb128like in https://bugs.launchpad.net/ubuntu/+source/ubuntu-system-settings/+bug/136214313:08
ubot5Ubuntu bug 1362143 in ubuntu-system-settings (Ubuntu) "Change translation for "None" in Lock Security" [High,Triaged]13:08
popeybeuno: http://popey.mooo.com/screenshots/device-2014-08-29-140833.png13:08
beunopopey, it's like I have root on your phone13:09
popeyhaha ☻13:10
popey(C) sabdfl13:10
beunowell remembered!13:10
mihir_nik90_: wrt , the time display , i feel it is already have locale , but it is not converting with resepct to hour display , have you done that in clock ?13:11
mihir_nik90_: currently it says, new Date(0, 0, 0, index).toLocaleTimeString(Qt.locale(), i18n.tr("hh ap"))13:11
mihir_nik90_: where index is , repeater index13:11
nik90_mihir_: yup you shouldn't have toLocaleTimeString(Qt.locale(), i18n.tr("hh ap"))13:12
rpadovaniThe ubuntu logo in the dashboard is awesome13:12
nik90_mihir_: can you check the clock app to see what I have done13:12
mihir_nik90_: then it ends up with messy data13:13
nik90_mihir_: I just meant that  toLocaleTimeString(Qt.locale(), i18n.tr("hh ap")) should be replaced with a better locale function which clock uses13:14
popeybeuno: will we ever get search-by-author?  I know the name of someone who submitted an app but cant recall the app name...13:16
mihir_nik90_: hmm yup i did check , but when i test on desktop , again clock is not behaving the  same.13:18
mihir_nik90_: i change my time format to 24 hrs, the analog clcock displayed time in AM , PM format13:18
beunopopey, sure, will add that to the ToDo13:19
popeythanks13:19
mihir_nik90_: i meant digital mode13:21
seb128mihir_, nik90_, sorry in fact that bug is invalid, it's a translation issue13:21
popeybeuno: we have a problem... https://myapps.developer.ubuntu.com/dev/click-apps/reviewer/ i dont see payui listed13:21
popeybeuno: https://myapps.developer.ubuntu.com/dev/click-apps/878/changerequest/ directly shows it has an update13:21
popeybeuno: seems sometimes we don't see apps that need updating13:22
popeyoh, nvm, dholbach beat me to it 6 hours ago13:22
beunopopey, right, see at the bottom13:22
beuno"Apps waiting on dev updates"13:22
beunoif you expand that, it's there13:22
popeygatox: dholbach rejected it13:23
nik90_mihir_, seb128: I don't think so.13:23
gatoxpopey, dholbach why?13:23
popey"ERROR: could not find desktop hook for 'payui'13:23
popey"13:23
seb128nik90_, it's the "hh ap" format option, which can be translated13:23
seb128"                // TRANSLATORS: this is a time formatting string,13:23
seb128                // see http://qt-project.org/doc/qt-5.0/qtqml/qml-qtquick2-date.html#details for valid expressions13:23
seb128                text: new Date(0, 0, 0, index).toLocaleTimeString(Qt.locale(), i18n.tr("hh ap"))"13:23
nik90_mihir_, seb128: When you display the time using Qt.formatTime(new Date()), format time should return the correct time according to the user locale13:23
gatoxpopey, yes, and we talked about that yesterday with jdstrand and it was ok13:23
seb128nik90_, that's the code ^13:23
nik90_seb128: the "hh ap" shouldn't be there, that's my point13:23
gatoxpopey, ted explain it why13:24
dholbachgatox, popey: looks like jdstrand pushed some changes to click-reviewers-tools - now I get: http://paste.ubuntu.com/8178671/13:24
seb128nik90_, that might be a valid point indeed13:24
nik90_seb128: the "hh ap" should be used only when the dev wants to overwrite the time format13:24
seb128k13:24
popeydholbach: do you want to approve it?13:24
seb128nik90_, well, what I'm saying is that translating "hh ap" to "hh" resolves it13:24
dholbachthis error message is new since 0.3.15:  - lint_hooks_redflag_payui13:24
dholbach(MANUAL REVIEW) 'pay-ui' not allowed13:24
seb128nik90_, but it's true that shouldn't even be there13:24
popeyyes, it is dholbach13:24
mihir_nik90_: because , if you check qt time formats , http://qt-project.org/doc/qt-5/qml-qtqml-date.html#details13:25
gatoxdholbach, yes, that was approved by jdstrand yesterday13:25
nik90_seb128: true, but changing "hh ap" to "hh" is just half the solution since qt already offers to do this automatically for you13:25
dholbachaha!13:25
dholbachgatox, popey: I wonder if we should somehow document what's approved and what isn't13:25
dholbachkind of keep a mapping of apps we know override some of the checks13:25
seb128nik90_, yeah, we agree13:25
nik90_mihir_: I tested the clock app on the phone using Netherlands locale and US locale. In netherlands it correctly shows time in 24 hrs while in US it shows 12 hrs format13:26
mihir_nik90_: i tested on desktop , with just changing time format..13:26
nik90_mihir_: I know, I tested on desktop and it doesn't change it but I am not sure why13:26
dholbachpopey, what do you think ^?13:26
mihir_nik90_: so , the whole locale should change or it should also affect if you have diff  timeformat?13:27
popeydholbach: perhaps, dunno where you'd put that?13:27
dholbachpopey, into c-r-t itself13:27
nik90_mihir_: but setting "hh ap" is not the way to go for sure. Unfortunately I don't have time to debug why it doesnt work on the desktop since it is not a high priority13:27
dholbachgatox, ok, I'll approve it with a short note, saying that jdstrand approved it13:27
nik90_mihir_: so everything should depend on the locale, like the date, time format, the currency etc etc13:27
gatoxdholbach, ack, thanks13:27
dholbachpopey, I'll have a look at it13:28
seb128nik90_, mihir_, speaking of desktop, I would like to ship the calendar app on there by default next cycle, we currently don't have a calendar at all and I think it would fit nicely13:28
nik90_seb128: you mean in unity7 desktop or unity-next desktop?13:28
seb128nik90_, both13:28
popeygatox: sorry it didnt land in the image.13:29
nik90_seb128: wow cool13:29
seb128is there any reason it wouldn't work/fit on unity7?13:29
nik90_seb128: it won't have global menus?13:29
nik90_seb128: basically requires some desktop integration features13:29
mihir_nik90_: agreed, then i have to test on device, in desktop it is not fit, i'll try that on device13:29
gatoxpopey, no problem at all.... i knew that something might be wrong with all this exceptions13:30
nik90_seb128: also it requires contenthub to add guests in the new event page which won't work13:30
seb128oh, hum, good point13:30
seb128nik90_, well, menus are not required13:30
jdstrandpopey, dholbach: if we are going to keep track of what came before and what didn't, I think it needs wider discussion13:30
seb128if it would only display e-d-s events and be able to create some it would already be useful13:30
seb128even if it's not integrated with e.g contacts13:30
seb128nik90_, but we shouldn't show options that don't work13:30
jdstrandpopey, dholbach: it is a good topic, but it can get unsafe quickly13:31
nik90_seb128: true13:31
* jdstrand imagines an app that requests some weird permission, needs a manual review, gets it and is approved, then the next update add something seemingly innocuous like the networking permission, but also adds malicious code to ship off data exposed via the weird permission13:32
popeyi worry about that too13:33
dholbachjdstrand, ok - what's your gut feeling? where would you store that information? what would you like to make sure? personally, I just wanted to make popey's and my life a bit easier - so: errors/warnings are still shown, but they're shown under a "overridden" category, and the last line says "pass" instead then - I thought I'd just store app name, check name and check result in a json file or something13:33
mihir_nik90_: we can change date/time zone from time date setting ,but i couldn't see anywhere , where i can change time format, like 12 hr or 24hr13:33
mihir_nik90_: how can we do that?13:33
=== Guest28580 is now known as renatu
nik90_mihir_: you can't change time format from 12hr-24hr yet. I think it should be part of system settings app.13:34
popeydholbach: be nice if it said "this is overriden, but be aware this list of things has changed since the last version in the store:-" (which I admit may be hard to do)13:34
dholbachpopey, it could list new issues, and list the old known ones13:35
mihir_nik90_: so in all case time will be 12 hr only ?13:35
nik90_mihir_: yes13:36
nik90_mihir_: well it will be different in different locales13:36
mihir_nik90_: i selected PST and again it was in 12 hr format, any locale you know can dispaly time in 00 to 23?13:36
nik90_let me check13:37
nik90_mihir_: netherlands?13:37
nik90_mihir_: I am only able to change the language of the phone. Does that also change the locale?13:39
mihir_nik90_: i am looking for time format change , so that i can test 12 hr or 24 hr :|13:39
nik90_mihir_: ok I got it working13:40
nik90_mihir_: change language to Dutch (Netherlands) and then restart phone13:40
nik90_mihir_: It then changed from 12hr to 24hr format for me13:40
* mihir_ tries13:41
nik90_mihir_: in the language menu, it is Nederlands13:42
=== giuseppe is now known as Guest78046
m-b-opopey: who can help me with a autopilot problem?14:17
popeym-b-o: wassup?14:18
m-b-opopey: the test which fails is related to a problem in ubuntu-ui-toolkit-autopilot14:19
m-b-othe test want to lcik an action , without the overflow menu is visible14:19
m-b-ohttp://91.189.93.70:8080/job/generic-mediumtests-utopic-weather-app/lastSuccessfulBuild/artifact/ubuntu_weather_app.tests.test_settings.TestSettings.test_switch_wind_scale%20%28with%20mouse%29.ogv14:19
popeythe menu doesn't appear?14:22
m-b-oit's not checked, if it has appeared14:23
* balloons looks14:23
popeythanks balloons14:24
m-b-oballoons it's probably in AppHeader method "_get_action_button_in_overflow()"14:24
balloonsm-b-o, which mp?14:25
m-b-ohttps://code.launchpad.net/~martin-borho/ubuntu-weather-app/pagestack/+merge/23109314:26
m-b-oballoons: that is where it fails: http://bazaar.launchpad.net/~martin-borho/ubuntu-weather-app/pagestack/view/head:/tests/autopilot/ubuntu_weather_app/tests/test_settings.py#L3414:27
balloonswell I will say one thing, those methods are we;; used and tested, so I'm curious about the issue14:28
m-b-oballoons: me too... :)14:28
m-b-oballoons: had no luck to reproduce this, on desktop and on device14:29
balloonsthat's what I'm trying atm14:30
balloonsm-b-o, is your action bar in any way custom?14:40
beunodholbach, popey, so14:42
beunoautomatic reviews have landed14:42
m-b-oballoons: no, I guess not14:42
m-b-ohttp://bazaar.launchpad.net/~martin-borho/ubuntu-weather-app/pagestack/view/head:/components/LocationTab.qml#L15314:42
beunoyou'll see them on each review14:42
beunowe need to land the updated review scripts14:42
beunoso they're slightly out of date until Mon14:42
beunobut14:42
beunoall apps will get the  review scripts auto-run against them14:42
beunopindonga will now work on auto-rejections first14:43
beunoand then, auto-aprovals14:43
balloonsm-b-o, I can see some animation of them painting.. I'm not sure I've seen that before14:43
beunoso what you should see in the next few weeks is that the review queue thins up quite a bit14:43
m-b-oballoons: we had the same issue two weeks ago, if you remember.14:44
m-b-osame failing test14:44
dholbachbeuno, woohoo wooohooo wooooohooooo14:45
dholbachpopey, champagne! :)14:45
balloonsm-b-o, no I don't, refresh my memory14:45
popeyooh!14:45
dholbachbeuno, in which way are the review scripts updated?14:45
mihirnik90_: ping , need litlte help on QML14:45
balloonsm-b-o, well what we can do is override the helper and try and see if we can account for the animation.14:46
beunodholbach, we do it via bzr, atm14:47
balloonsthen we can push the change upstream to the helper and when released, remove the override from the tests14:47
beunoit's a bzr-based dependency in our deploy14:47
dholbachbeuno, so an incoming app has all the test run, then which apps will be rejected next?14:48
DanChapman|afkpopey hey, just replying to the email. Quick question has any indication been given on when it will like be deprecated in the image by?14:48
=== DanChapman|afk is now known as DanChapman
m-b-oballoons: sounds like a plan. what would be the best way to override the helper?14:48
m-b-ooverwrite (with a modified copy) AppHeader as such?14:49
balloonsm-b-o, more or less14:49
balloonsdid get 1 fail on the device, but otherwise it worked14:50
dholbachbeuno, you and everybody who worked on this are heroes!14:50
m-b-oballoons: yeah, a flaky one14:51
balloonsso I'm looking at the header helper again14:52
popeypmcgowan: DanChapman is asking about qtwebkit.. do you have a timeline? (I emailed the guys about the bug you filed)14:52
beunodholbach, the script runs, if there are any ERRORs, it gets rejected with the errors14:52
beunodholbach, the user has a chance to manually request a review14:52
dholbachbeuno, how about warnings?14:52
beunofor whatever reason14:52
beunodholbach, we don't reject on warnings, but do tell the user about them14:52
dholbachbeuno, will the app be ACKed in case of warnings?14:53
beunodholbach, not sure what ACKed means14:53
beunowe'll approve, yes14:53
beunowlel14:54
dholbachbeuno, ok14:54
beunoactually14:54
beunowe can do whatever14:54
beunoit's software14:54
beunothis is my proposal, actually14:54
dholbachI don't know what's the best option14:54
beunoif you feel differently, we can do it differently14:54
beunoit seemed to be warnings would be where we put deprectations and best practices14:54
beunoFYIs14:54
beunoERRORS, rejects14:54
m-b-oballoons: I'll try to make a workaround in the tests14:54
beunoand if no errors, Profit.14:54
dholbachI don't - it just feels like something that should be discussed somehow - or we need to doublecheck our list of errors/warnings and make sure we all interpret it the same way14:55
beunoinitially, there's no whitelisting of errors for reserved APIs14:55
beunoso that'll need to be manually requested a review every time, for now14:55
beunodholbach, yes14:55
beunodholbach, I'll have pindonga kick off that thread14:55
pmcgowanpopey, it would need to happen in the next 3 weeks I'd say, ideally by 9.1114:56
balloonsm-b-o, you can completely remove the Tabs class I think14:56
nik90_mihir: what's up?14:56
popeyDanChapman: ^14:56
mihirnik90_: i am trying to pass index to parent page , and setting up value same as i am doing for other , http://pastebin.ubuntu.com/8179239/ (Child Page)14:56
mihirnik90_: parent page code , http://paste.ubuntu.com/8179248/14:57
popeyzbenjamin: http://paste.ubuntu.com/8179353/ why am I seeing amd64 packages on an armhf chroot!?14:57
mihiri wrote signal as well , it is not changing index anytime14:57
balloonsm-b-o, did you see http://pad.lv/1318829?14:57
ubot5Launchpad bug 1318829 in Autopilot Qt Support "Get a property that is an object" [Undecided,New]14:57
popeyzbenjamin: I used maintain, and did an "apt-get" and got amd64 packages in it14:57
zbenjaminpopey: yeah you have to add a :armhf suffix when installing libraries for you app14:57
dholbachbeuno, perfect - thanks a bunch14:58
balloonsm-b-o, the helper notes the header must be linked to a flickable that fills the main view14:58
dholbachperfect way to start the weekend :-D14:58
zbenjaminpopey: apt-get install mylibrary:armhf14:58
dholbachpopey, automated reviews - can you believe it?14:58
popey(click-ubuntu-sdk-14.10-armhf)root@deep-thought:/home/alan# dpkg --print-architecture14:58
popeyamd6414:58
popeythat seems wrong14:58
popeydholbach: I am being automated out of a job. I'll join a union.14:58
popeyzbenjamin: surely it should default to the right one?14:59
m-b-oballoons: thats right, but I'm unsure it _show is called in that test14:59
zbenjaminpopey: no basically you have a amd64 chroot with armhf crossbuild tools and libraries in it14:59
popeyahhh14:59
popeymakes more sense ☻14:59
popeyI trust you ☻14:59
dholbachpopey, haha, brilliant14:59
zbenjaminpopey: the problem is what is the right arch, for tools you want amd64 so they can be executed, for libraries you want to link you need armhg15:00
nik90_mihir: may be try changing the variable names? I am not sure tbh15:00
zbenjaminarmhf15:00
popeygot it15:00
mihirnik90_: it should work right ?15:00
nik90_mihir: I think so15:01
nik90_mihir: try it out with a sample app to be sure15:01
nik90_mihir: just the variable value passing back and forht15:01
nik90_forth*15:01
DanChapmanpmcgowan, ouch!! :-/ that's not very long... ok thanks15:01
mhall119popey: ah yeah, package arch has bitten me more than once :)15:02
popey\o/ it builds15:02
* popey hugs zbenjamin 15:02
* zbenjamin hugs popey back :D15:02
popeymhall119: http://popey.mooo.com/screenshots/device-2014-08-29-160222.png15:02
mhall119pmcgowan: can we get priority work on Ubuntu.Web.WebView if we need additions to it in order to port dekko?15:02
mzanettirpadovani: hehe: http://i.imgur.com/anhouzM.png15:03
pmcgowanmhall119, yes we can try, if you guys can identify the feature set15:03
mhall119DanChapman: is it just the schemaHandlers that you need?15:03
pmcgowanmhall119, DanChapman  there is also the option to include the package with the app short term15:03
mihirnik90_: hmmm , let me try that.i hope it is not an issue of creating Object15:04
rpadovanimzanetti, this is an interesting feature :P15:04
mzanettinot sure if this accounts as feature15:04
mzanettibut interesting is definitely true :D15:04
balloonsm-b-o, you are correct _show() is not run15:04
=== om26er is now known as om26er|dinner
m-b-oballoons: I've traced it to _get_action_button_in_overflow, I'm currently overwrite that one and use wait_select_single instead of select_single15:05
m-b-owhat do you mean?15:06
DanChapmanmhall119, yes the custom url schemes is probably the biggest blocker.15:07
DanChapmanpmcgowan, yeah I suppose that is a short term option. Not ideal though, I want to try and avoid that if possible :)15:08
popeyballoons: when m-b-o is done with you, I have one for you ☻15:08
mhall119DanChapman: let's see if osomon can implement those custom handlers in our component in the timeframe we have15:11
mhall119even if it's in a like-wise "experimental" namespace15:11
mzanettirpadovani: https://code.launchpad.net/~rpadovani/reminders-app/editNotebooksName/+merge/23112415:11
rpadovanimzanetti, mhh, what's your doubt? I need to hide the label to switch to textfield15:15
mzanettirpadovani: actually onls line 44 is the bad one15:15
rpadovanimzanetti, hum, let me check, probably I addded it before you did your branch for the backend15:16
mzanettirpadovani: you're breaking the binding. so if the title changes on the server, this wouldn't update any more15:16
mzanettibecause it's assigned to some value with =15:16
rpadovanimzanetti, so how can I update the value of the notebook?15:18
mzanettirpadovani: it should update automagically15:19
mzanettinot working?15:19
rpadovanimzanetti, mhhh nope15:19
mzanettiok. that sounds like a bug in my code then15:20
mzanettilet me check15:20
rpadovanimzanetti, more: it updates online, but the label doesn't update15:22
mzanettirpadovani: yeah, definitely a bug in the plugon15:22
balloonsm-b-o, I don't believe it has any issue getting the button15:24
balloonspopey, shoot15:28
balloonsm-b-o, here's my version of emulators.py15:28
balloonshttp://paste.ubuntu.com/8179587/15:28
popeyballoons: https://code.launchpad.net/~twstd-dev/ubuntu-terminal-app/require-password-check/+merge/23207815:29
balloonsI assume with the sleep between getting the button and clicking it, it will work. If so, we'll need to figure out a better way to account for that animation time. I checked the buttons and objects and didn't find any animation properties or things we could wait_for15:29
balloonsm-b-o, ^^15:29
dholbachbeuno, in myapps there's a "move to waiting for updates queue" - is that for when we provided an update of what's wrong and where we expect the app author to reply?15:30
m-b-oballoons: okay, I'll use your version. Where shoudl I put it?15:30
balloonspopey, so what's up with it?15:30
balloonsm-b-o, that's a complete copy of emulator.py I pasted15:31
balloonsI removed the Tabs helper in there; didn't seem to be used15:31
balloonsI also converted to importing ubuntuuitoolkit directly15:31
popeyballoons: fails AP ☻15:32
balloonsm-b-o, https://bugs.launchpad.net/reminders-app/+bug/1341681 is the bug for deprecated module use15:32
ubot5Ubuntu bug 1341681 in Ubuntu Calculator App "Autopilot tests should stop using deprecated emulators module" [Low,In progress]15:32
mihirnik90_: bad luck , it didn't work ,15:33
mihirnik90_: main page , http://paste.ubuntu.com/8179628/15:33
mihirnik90_: child page , http://paste.ubuntu.com/8179632/15:33
m-b-oballoons: yes saw, will have a look15:33
popeyFriday is _easily_ the busiest day in this channel!!15:33
balloonsm-b-o, it's simple to fix, but that's the changes I did in emulators.py while I was at it :-)15:33
balloonsm-b-o, you could even remove emulators.py and put it in __init__.py15:34
nik90_mihir: erm both pastbins are the same page15:34
balloonspopey, did you see the video? It's black15:35
beunodholbach, yes15:35
dholbachbeuno, ok15:35
mihirnik90_: sorry, http://paste.ubuntu.com/8179653/15:35
mzanettirpadovani: here's a fix: https://code.launchpad.net/~mzanetti/reminders-app/fix-model-update-on-notebook-change/+merge/23272115:35
mzanettirpadovani: so you can remove that line 44 from your branch, it'll start working when mine merges on top of it15:36
rpadovanimzanetti, already removed15:36
rpadovaninow I test your branch15:36
mzanettiack15:36
popeyballoons: I would if I could find the video...15:37
balloonspopey, http://91.189.93.70:8080/job/generic-mediumtests-utopic/1737/?15:37
dholbachpopey, I moved the two apps which had been sitting in the "updates available" queue elsewhere15:37
popeydholbach: so i see, thank you15:38
mihirnik90_: that's only thing i am stuck :( rest all is done15:38
dholbachpopey, I can't believe that the queue is officially empty15:38
nik90_mihir: then just start the AP tests15:38
m-b-oballoons: we need Tabs for     def get_tabs(self):, aren't we?15:38
nik90_mihir: let's postpone the repeat page15:38
popeydholbach: great way to start the weekend15:38
nik90_mihir: sry, Remind page15:38
mihirrepeat or reminder15:38
dholbachoh god - my life makes no sense any more15:38
mihirokay , nik90_ i am still trying to fix that, if i can15:38
mihirjust left with passing an index rest all is done.15:39
balloonsm-b-o, I'm not sure. There is a tabs helper; it was confusing to me and I did a quick search and never saw it called in the tests15:39
popeyballoons: any idea why they are black?15:39
m-b-oballoons: ok, will remove it15:39
nik90_mihir: I am a bit busy trying to merge some stuff for the clock app. So I won't have time to help with AP.15:39
nik90_mihir: also it doesnt work for me because of the fixture errors still15:39
mihirnik90_: sure, i am looking at APs15:39
balloonspopey, might be something with the jenkins.. but before I go crazy, trying to debug locally15:40
popeyballoons: kk15:40
popeyballoons: i need to land this asap and push to the store - two major terminal updates that need to land15:40
balloonspopey, ahh I see an issue right off the top. So for filemanager we had to do the same thing.. no passcode on the desktop15:40
popeyballoons: i can understand it having no passcode, but don't get why it's blank.15:41
balloonspopey, no, I mean the code needs changed to not prompt for a passcode15:41
balloonsthen everything should work15:41
balloonslet me look at fm merge15:42
popeyta15:42
balloonspopey, http://bazaar.launchpad.net/~ubuntu-filemanager-dev/ubuntu-filemanager-app/require-screenlock-password/revision/26515:43
balloonsit does appear to be in the mp as it is15:44
rpadovanimzanetti, works good, thanks15:46
rpadovanitopapproved15:46
gerlowskijaballoons: ping15:47
popeyballoons: so do we create a merge for terminal based on that, and then land the first and then this one?15:48
dholbachpopey, I uploaded an app for you!15:49
dholbachjust so you don't get bored15:49
popeydoes it have cats?15:49
balloonspopey, well it appears the PAM module has the code I wanted in it.. So I'm confused why I'm seeing the prompt on the desktop15:49
balloonsgerlowskija, pong15:49
popeyballoons: oh15:49
dholbachpopey, I'm afraid not15:50
popeyREJECT15:50
dholbachthat's it15:50
popeyAPPROVED15:50
balloonswe'll have to look closer at the changes15:50
dholbachI'm switching to arch15:50
popey\o/15:50
balloons^^ +115:50
popeyFinally, is that _all_ it took?15:50
dholbachyeah, you know what - I never really liked you15:51
dholbachany of you15:51
dholbachand now you reject my app15:51
dholbachI can't believe it!15:51
* balloons notes it's getting personal15:51
dholbachand you shut down my favourite mailing list15:51
dholbach:-P15:51
* popey ticks that off his bucket list15:51
* dholbach hugs popey15:51
* popey hugs dholbach 15:51
dholbachand on that high note I think I can start the weekend :-)15:52
gerlowskijaballoons: You might be the wrong person to ask about this..if so just let me know.  I was looking at: http://unity.ubuntu.com/autopilot/tutorial/good_tests.html#scenarios...is there a way to specify that the scenarios are only used on some of the tests in the class?  My understanding is that each test is run once for each scenario in the list.  Is15:52
gerlowskijathere a way to override that, or do tests that use scenarios and tests that don't always have to be in separate classes?15:52
mhall119dholbach: have a good one15:52
dholbachbut yeah, I'll see what I can do in terms of cats15:52
dholbachmaybe we should have a separate app category called CATS15:52
m-b-oballoons: pushed. Tabs still need, though15:52
dholbachin capital letters15:52
mhall119Department->OMGLOLCATS!!!111ELEVEN15:53
beunojust say the word...15:54
balloonsgerlowskija, a good question. Why don't you repeat it in #ubuntu-autopilot? As far as I know, they would need to be seperate classes. But I suspect if there is a way, the folks in #ubuntu-autopilot would know15:58
balloonsm-b-o, so we wait now then and see if it passes15:59
dholbachhave a great weekend everyone - see you all on Monday!15:59
gerlowskijaok, thanks for the pointer balloons..will do.15:59
m-b-oballoons: #242 it should be http://91.189.93.70:8080/job/ubuntu-weather-app-ci/16:00
balloonsm-b-o, yep it's running16:00
mihirnik90_: bingo , find another way so now it works :D16:03
mihirnik90_: i am proposing new branch against your branch lets get it merged , and will start working on AP16:03
mihirballoons: ping16:06
balloonsmihir, pong16:09
=== elopio_ is now known as elopio
=== om26er|dinner is now known as om26er
=== gatox is now known as gatox_lunch
balloonsmeh looks like we're still waiting for a testrunner m-b-o16:29
balloonspopey, I'll note https://code.launchpad.net/~ubuntu-terminal-dev/ubuntu-terminal-app/require-password-screenlock/+merge/231064 did pass.. I wonder what the diff between david's and twistd's is16:36
nik90_mihir: awesome16:37
nik90_mihir: ping me link to the MP when doe16:37
nik90_done*16:37
popeyballoons: bah!16:37
popeyballoons: i think david's didn't have the qml frontend16:38
balloonsthat would make sense for it to pass then, hehe16:40
=== chihchun is now known as chihchun_afk
popeythats what we asked twistd to add..16:41
popeyballoons: building to test on desktop here16:41
balloonspopey, you can just try running the binary.. it shouldn't prompt but does16:44
balloonswe can look closer after the call16:44
popeywell, once it builds, sure ㋛16:44
=== chihchun_afk is now known as chihchun
m-b-oballoons: it runs16:52
balloonsm-b-o, I see failures16:55
dakert1mp: :) https://www.dropbox.com/s/8j4u693w1xi9jz9/out-3.ogv?dl=016:55
balloonsm-b-o, http://91.189.93.70:8080/job/generic-mediumtests-utopic-weather-app/67/consoleText16:56
balloonsahayzen, howdy16:57
ahayzenballoons, yo16:57
balloonsI started looking at your refactor3 a bit., but there's some other pending things I need to look at16:57
balloonsfeel free to merge without me.16:57
m-b-oballoons: I have no clue... I have to go now, will try otomorrow again16:57
balloonsm-b-o, we will see the full results soon enough. It's complaining about not finding objects again, the videos may explain more16:58
balloonsbut it seems it's not so simple. My guess is nothing has chnaged16:58
balloonsthe menus aren't opening16:58
balloonsm-b-o, guten nacht!16:58
m-b-oballoons: danke :)16:58
ahayzenballoons, ok cool....did u see the strange jenkins errors we had one that mp and another at around the same time last night16:58
ahayzenballoons, both on the same tests as well which was even more weird16:59
ahayzenballoons, they looked network related or something?! i wasn't sure wht it was saying...16:59
balloonsahayzen, link to what you are talking about? and no I didn't see though16:59
balloonsthough jenkins is acting a bit funny16:59
popeyballoons: terminal runs fine on desktop here16:59
ahayzenballoons, this mp https://code.launchpad.net/~vthompson/music-app/allow-current-to-resize/+merge/232659 failed with this http://91.189.93.70:8080/job/generic-mediumtests-utopic/173117:00
ahayzenballoons, this mp https://code.launchpad.net/~andrew-hayzen/music-app/ap-helper-refactor-003/+merge/232655 failed with this http://91.189.93.70:8080/job/generic-mediumtests-utopic/173017:00
balloonsahayzen, ok, wild17:00
ahayzenballoons, same two tests ...completely different mps touching completely different code!17:01
balloonspopey, runs fine, as in, no password prompt?17:01
ahayzenballoons, do we just rerun and ignore?17:01
balloonsahayzen, I've asked ci to have a look.. we'll re-run after they look at the boxes17:02
popeyballoons: yes17:03
ahayzenballoons, cool thanks17:03
popeyballoons: https://imgur.com/lav6TEy17:03
t1mpdaker: cool. you made the new header available in html5? :)17:05
mihirnik90_:  here is the link , https://code.launchpad.net/~ubuntu-calendar-dev/ubuntu-calendar-app/revamp-reminder-deisgn/+merge/23272517:06
balloonspopey, you built with cmake ., make?17:08
balloonsthen ran the app? or did you build with qtcreator17:08
popeyballoons: debuild17:08
popeyi built the deb, installed it and ran it17:08
balloonspopey, hmmm17:08
balloonsI didn't do that. but I suppose we could steal the debs from jenkins as well to see17:09
dakert1mp: WIP :)17:09
ahayzenballoons, are our (music-app) tests running under python2?17:10
nik90_mihir: nice, clean code looks good17:10
balloonsahayzen, it's possible they are17:11
ahayzenballoons, i see this in the cmake... COMMAND python -c "from distutils.sysconfig import get_python_lib; print get_python_lib()"17:11
balloonswe've pushed for python3, but the default is py217:11
balloonslook at the output you will see17:11
ahayzenballoons, shall i convert to py3? and put in another mp?17:11
ahayzenballoons, oh which output?17:12
balloonsahayzen, yea, it's py217:12
balloonsahayzen, it's up to jenkins to run as py317:12
ahayzenballoons, is it best to move to py3 while i'm refactoring anyway?...as there are some unicode things that would need tweaking?17:12
* ahayzen doesn't mind doing the transition17:13
balloonsahayzen, tests are already py317:13
balloonsi only run everything as py317:13
ahayzenballoons, hmmmm17:13
ahayzenballoons, and it all passes?17:15
balloonsahayzen, lol.. yes.. ahayzen python2 is not even on the devices17:15
balloonsall tests run as python317:15
ahayzenballoons, hmmm ok... popey, maybe my assumption is not correct ^^17:16
ahayzenballoons, yeah i do see some py3 looking encode()'s in the code now....so what is that line in the cmake doing?17:16
balloonsit's attempting to determine whether or not to run py2 or py317:17
balloonsI think.. the point is everythng should run in jenkins as py3, but it's up to ci to make that change17:17
balloonsfor now though, i doubt py2/py3 is the source of any issues17:17
ahayzenballoons, ah ok...and phablet-test-run would be py3 as well then ?17:17
ahayzenballoons, just wanted to double check with our patches we do on the db17:18
balloonsphablet-test-run would be why it's making it py217:18
balloonsthe check is broken imho17:19
balloonsbut we're off target, why the fascination with py2?17:19
ahayzenballoons, just some error popey sent me ;)17:20
balloonspopey, you are correct the deb package from jenkins runs fine17:21
balloonsmmm.. you know, we need to change jenkins to produce a subunit file as well so we can get a screenshot of the errors17:23
balloonsso popey I'll do a few things to the tests and see if it makes jenkins happier17:26
balloonstrouble is, it's not my branch17:26
ahayzenballoons, no worries about the py2/3 issue we've found a fix on #ubuntu-ci-eng17:27
balloonsahayzen, was it the encoding thing?17:27
balloonslol17:27
ahayzenballoons, yep17:27
ahayzenballoons, i just saw unicode erorrs and remembered some issues i had converting my own apps from py2->3 so wanted to be sure17:28
balloonsahayzen, makes more sense now.. I was really confused by what you were wondering about17:29
ahayzenballoons, hah sorry17:29
nik90_balloons: is it possible to reply to a bug report via email?17:32
nik90_s/reply/comment17:32
t1mpdaker: looks very good :)17:32
t1mpdaker: ..until everybody starts using it and my qml work becomes useless ;)17:33
balloonsnik90_, I've never tried actually17:33
ahayzennik90_, i have replied to the launchpad emails for a bug before and then eventually appear in the bug as comments17:33
dakert1mp: :)17:33
nik90_ahayzen: ah ok...I am waiting on mine to appear17:34
ahayzennik90_, can take a while i've found17:34
t1mpperhaps we should come up with some hints when html is good and when qml and when cpp17:34
ahayzennik90_, usually i get impatient and then post via the website and then end up with a double post :P17:34
t1mpI'd have problems deciding for myself if I had to pick one right now17:34
nik90_ahayzen: :D it just appeared17:34
dakert1mp: yes17:34
ahayzennik90_, \o/17:35
nik90_popey, jdstrand: https://bugs.launchpad.net/ubuntu-clock-app/+bug/136280317:35
ubot5Ubuntu bug 1362803 in Ubuntu UX "Clock should support creating one-time alarms on any day of the current week" [Wishlist,Confirmed]17:35
t1mpnik90_: it also needs a stopwatch :p17:35
* t1mp going to do some fitness now and I bring along my old sonyericsson phone to use as a stopwatch17:35
nik90_t1mp: lol don't get me started...I already have way too much work to do :P17:36
t1mpnik90_: just sayin' :)17:36
nik90_t1mp: both timer and stopwatch will return post-rtm17:36
t1mpnik90_: hmm.. if you have so much work to do, try the pomodoro technique17:36
t1mpnik90_: do you know it?17:36
t1mpnik90_: all you need for that is.... lp17:36
nik90_t1mp: yes17:37
t1mp;p17:37
t1mpnik90_: you just need a timer :p17:37
nik90_t1mp: :D17:37
=== gatox_lunch is now known as gatox
=== john-mca` is now known as john-mcaleely
=== sergiusens_ is now known as sergiusens
popeyballoons: so once music and terminal are happy bunnies, it would be good to do a sweep of the core apps and push them to the store for weekend testing ☻18:10
* balloons is having fun with terminal still18:11
=== chihchun is now known as chihchun_afk
nik90_popey: what do you think of https://bugs.launchpad.net/ubuntu-clock-app/+bug/1362803/comments/4 from a user's perspective?18:11
ubot5Ubuntu bug 1362803 in Ubuntu UX "Clock should support creating one-time alarms on any day of the current week" [Wishlist,Confirmed]18:12
mihirnik90_:  :)18:13
mihirnik90_: did you merge ?18:13
nik90_mihir: I haven't tested it yet.18:14
mihirnik90_: okay , no issues.18:14
nik90_mihir: feel free to merge it if you want18:14
nik90_mihir: since you will be fixing the AP stuff in the main branch anyway18:14
mihirnope , it would be great, if you can test and merge18:14
nik90_ok18:14
balloonspopey, it would be lovely if you could kick off builds of everything18:15
balloonsmakes it easy for me to grab and push18:15
popeyballoons: will do18:16
popeynik90_: left a comment18:22
nik90_popey: I don't follow "It's not reasonable to expect me to set tomorrow (being Tuesday) repeat alarm for Mon-Fri now (on Monday) and have to wait until Saturday to set it."18:33
nik90_at the moment you can set repeat alarms for any day. The issue is with one-time alarms18:34
josharensonI'm trying to deploy the clock app from my desktop to my tablet via the SDK (so I can debug), but the sdk says its not signed. Is there a work around?18:37
nik90_josharenson: which image are you running?18:37
josharensonnik90_ a recent (last week?) build on Nex718:38
nik90_josharenson: I think somewhere around image 205-208 the phone accepted only signed click packages. This was however fixed later in 209 and higher18:38
josharensonah, ok ill upgrade18:38
nik90_josharenson: Can you try upgrading to the latest image to make sure you dont get that error.18:39
josharensonnik90_ sure, ill let you know what happens after the download/flash18:39
nik90_ok18:39
popeynik90_: just setting my expectations18:51
nik90_popey: I know I was trying to understand what you meant by having to wait until saturday to set your mon-fri repeat alarms.18:54
popeythe implication from design is that anything other than the next 23:59 is not possible18:55
nik90_popey: ah..I think design meant anything other than the next 23.59 is not possible for one-time alarms18:56
nik90_which in itself is debatable18:56
popeybeuno: "Changes can not be accepted and published at this time. Please try again later." on https://myapps.developer.ubuntu.com/dev/click-apps/403/changerequest/18:58
popeyi just approved 8 others...18:58
beunopopey, looking19:09
mhall119pmcgowan: are you able to set a higher priority on https://bugs.launchpad.net/oxide/+bug/1260016 ?19:10
ubot5Ubuntu bug 1260016 in Oxide "Add an API to allow defining custom URL scheme delegates" [Undecided,Confirmed]19:10
mhall119I don't have access19:11
beunopopey, looks like the update isn't signed19:11
beunotrying to figure out why19:11
pmcgowanmhall119, yes19:12
beunopopey, while I do, you downloaded and ran the script locally?  one way it wouldn't be signed is if it's not really a proper click19:12
popeybeuno: i didnt upload the click19:12
beunopopey, nm, I see the error to sign in out logs19:13
popeybeuno: i downloaded it, checked it and then tried to approve it19:13
beuno*our19:13
beunoI'll chase19:13
popeyk ta19:13
beunomay need to request a reupload19:13
popeylet balloons know when you do19:13
beunoyeah, it's a leftover from turning on signing19:13
beunowhich we'll fix properly19:13
beunobut I suggest uploading a newer version, balloons19:14
josharensonnik90_ new image works, thanks19:14
nik90_josharenson: cool19:14
nik90_josharenson: what did you want to debug in clock btw?19:14
josharensonnik90_ clock is fine :-) I just want to instrument it to help debug a qtmir issue19:15
nik90_josharenson: ah ok19:15
nik90_:)19:15
popeyballoons: reminders in case it wasnt clear19:16
vitimitiI want to use a folders selector to choose where to save some files, and can't find anything, maybe because I'm not looking for it with the right words. What should I look for?19:16
balloonspopey, so re-upload what for reminders?19:17
nik90_vitimiti: Your app won't have permission to save in any other folder other than your local app cache folder.19:17
beunoballoons, a new version19:17
vitimitinik90_, thanks19:17
balloonsso not https://myapps.developer.ubuntu.com/dev/click-apps/403/changerequest/?19:17
popeywill need a version bump?19:18
popeyugh19:18
beunoyes19:20
beunosorry19:20
popeyballoons: if we fixed the AP issue then other merges could land ㋛19:22
mhall119thanks pmcgowan19:24
ahayzen_balloons, do you reckon this change will have the same affect? http://bazaar.launchpad.net/~andrew-hayzen/music-app/fix-for-unicode-errors/revision/60619:24
ahayzen_balloons, but still work under jenkins when it does that py2 thing19:25
balloonspopey, yes, I know19:29
beunoballoons, popey, https://bugs.launchpad.net/software-center-agent/+bug/136322519:29
ubot5Ubuntu bug 1363225 in Software Center Agent "failure to sign upload due to existing file" [Undecided,New]19:29
beunosorry, etc19:29
beunoalso19:29
balloonsahayzen_, jenkins didn't like the former huh?19:29
beunoDEBSIG dkbfsjkl;afkljkdghfskj;kdjlshfglskhlfdjdsljgfkjhdf19:29
ahayzen_balloons, yep because some tool is py2....lookie here http://91.189.93.70:8080/job/generic-mediumtests-utopic/1743/console19:30
ahayzen_balloons, TypeError: 'encoding' is an invalid keyword argument for this function19:30
balloonsahayzen_, we can try asking plars to bump music to python3.. not sure he would be able19:30
ahayzen_balloons, popey thought infact it may be one of the other tools?19:31
popeywell, it saw an apt-get which pulled in python-setuptools19:31
popeywhich seemed very py219:31
ahayzen_yeah19:31
ahayzen_balloons, i've got dinner now so i'll wait for the response from jenkins :)19:32
ahayzen_balloons, why is jenkins exploding? https://code.launchpad.net/~andrew-hayzen/music-app/fix-for-unicode-errors/+merge/23273020:36
ahayzen_balloons, and i need to check that the mp works on the device before landing as that is the point of it ;)20:36
balloonsI left you a message20:36
ahayzen_yeah i saw :) ....20:37
ahayzen_balloons, just need to check it works on krillin as that is the point of the mp20:38
balloonsit always worked for me on krillin.. it's lucas that had the issue20:38
ahayzen_balloons, yeah some encoding thing....20:39
ahayzen_balloons, as victor said to me ' wouldn't think char encoding would be device specific'20:40
ahayzen_balloons, so it is a little odd but hopefully we've fixed it20:40
ahayzen_balloons, any ideas why those two tests keep failing?...is it us or jenkins?20:40
balloonsi've no idea, and sadly francis isn't around20:41
balloonsassume it's you I guess20:41
ahayzen_:/20:41
ahayzen_hmm ok i may see if i can spot anything specific to those two tests20:41
nik90_balloons: you are running utopic with latest sdk? Can you test something for me?20:43
balloonsyes and sure20:43
nik90_balloons: can you get the latest clock app code, create an alarm and most importantly try to change the alarm sound. For me the clock app crashes if I try to choose a different alarm.20:44
nik90_balloons: i tried various branches of mine, and same result. just want to make sure its my system at fault20:44
nik90_balloons: I meant clock app crashes when trying to choose a different alarm sound*20:44
balloonsnik90_, ugh I lied.. I have to build clock now20:46
nik90_balloons: ?20:47
nik90_balloons: how did you get from "yes and sure" to ^^ :D20:47
ahayzen_balloons, also to add to the weirdness...there are 3 videos but 2 failures? http://91.189.93.70:8080/job/generic-mediumtests-utopic/1746/20:47
ahayzen_balloons, and the autolanding just failed20:49
balloonsnik90_, I get sound20:49
balloonsnik90_, that said, there was a long pause when I first went into the sound selection20:49
nik90_balloons: as in the page where you can choose different sounds opens correctly?20:49
balloonsnik90_, yep and previews work20:49
balloonsi like counterpoint20:49
nik90_balloons: the sound plays only when you choose a sound. So when it loads it doesnt play anything automatically20:49
nik90_balloons: ok my system at fault, phew :)20:50
balloons:-)20:50
nik90_hmm I get http://paste.ubuntu.com/8181794/ :/20:51
balloonsahayzen_, jenkins still dislikes you strongly20:52
ahayzen_balloons, our love hate relationship continues :/ grrrrr20:52
balloonsahayzen_, so honestly for those 2 test failures the app never even starts20:52
balloonsit's the SAME exact code for each for laucnhing20:52
ahayzen_balloons, victor says he is seeing the same with trunk on his VM20:53
ahayzen_balloons, yeah wtf20:53
balloonsahayzen_, well that's a good place to look.. reproduce it locally it if fails locally, it's you :'-)20:53
ahayzen_balloons, i'm just trying to update my vm20:53
ahayzen_balloons, but why those two tests arrrggggg lol20:53
mzanettihi. trying to create a click chroot I get this error: click chroot: error: schroot not installed and configured; install click-dev and schroot20:56
mzanettibut they are installed...20:56
mzanettican't figure what I broke... anyone seen this before?20:56
balloonsmzanetti, I can point you at http://developer.ubuntu.com/apps/sdk/tutorials/building-cross-architecture-click-applications/ to use qtcreator20:59
balloonsmzanetti, I believe if you look into click, there is some sort of config required after schroot is installed. I don't remember, I don't use it20:59
mzanettiballoons: yeah... that's exactly where I'm getting this error20:59
balloonsoO, not on the command line?21:00
mzanettiwell, I figured the command line that qtcreator executes here and tried it myself, but getting the same error21:00
mzanettiballoons: http://i.imgur.com/cMGbvyU.png21:01
balloonsif it's inside qtcreator you'll get more love :-) you could ask sergiusens, I don't even see my old notes21:01
balloonswild.. I haven't tried to make a new one, one sec, I will21:02
mzanettisergiusens: :) ^21:02
mzanettiprobably I broke something. It used to work 2 weeks back when I last tried21:02
mzanettibut I just can't figure what it is... I tried reinstalling all involved packages21:03
mzanettimk-sbuild etc works fine, just click doesn't21:03
ahayzen_balloons, ok so victor is saying he can't even run the app on his VM and it was working yesterday....here is the log http://paste.ubuntu.com/8181853/21:04
balloonsmzanetti, yea, works fine for me here21:04
balloonsI assumed you were doing something on the command line with it.. still interesting you managed to break it21:04
mzanettiwell, I get the same error on the command line, with everything "click chroot"21:05
nik90_ahayzen_: I get that same error on my VM -> http://paste.ubuntu.com/8181794/21:06
nik90_ahayzen_: me and victor have the same issue on utopic vm then.21:06
nik90_balloons: ^^21:06
ahayzen_nik90_, is that running music?21:06
nik90_ahayzen_: no I am running clock21:06
ahayzen_nik90_, yey join our club :)21:06
nik90_ahayzen_: is victor online?21:07
ahayzen_nik90_, yep....on hangouts21:07
nik90_ahayzen_: ah21:07
ahayzen_nik90_, balloons this is what changed on his VM this morning http://paste.ubuntu.com/818187821:07
nik90_ahayzen_: I am not how to get that list on my vm21:08
balloonsnik90_, clock is broken for me now21:08
balloonsmwahahah21:08
ahayzen_he says even dropping letters is broken!21:08
balloonssomeone broke something21:08
ahayzen_something bad has happened21:08
nik90_balloons: let me guess you updated utopic?21:08
nik90_yay21:08
balloonsnik90_, it was updating in the background earlier21:08
nik90_I was a bit worries that I broke my vm21:08
balloonsso I thought I'd try again when I noticed21:08
nik90_ahayzen_: oh tell victor hi from me21:08
popeyheh21:09
balloonsand with that, I'm off to labor day fun21:09
sergiusensmzanetti: creating the click chroot?21:09
* ahayzen_ 's VM is broken beyond belief ... GTK is broken and it won't update due to some unity-schemas conflicting with unity-common or something21:09
* balloons waves21:09
mzanettisergiusens: yeah21:09
* balloons can't stop laughing21:09
sergiusensmzanetti: clic fails as well?21:09
ahayzen_nik90_, so what has broken everything21:10
popeyballoons: have fun!21:10
nik90_ahayzen_: no idea21:10
ahayzen_victor> Waves with both hands. in a non-distressed manner21:10
balloonsindividual package rollback time21:10
mzanettisergiusens: yep. whenever I use "click chroot something"21:10
balloonswho wants to try?21:10
nik90_ahayzen_: I was running my qml unit tests and noticed the tests hanging. And then on testing manually I noticed the error21:10
nik90_balloons: I upgraded nearly 50 packages today21:11
balloonspopey, way to exciting to leave now.. but it was funny21:11
mzanettisergiusens: http://paste.ubuntu.com/8181930/21:11
popeythis isn't the systemd thing thats broken everyone elses systems?21:11
nik90_balloons: since I dont update my vm too often21:11
balloonsnik90_, I would focus on toolkit stuff21:11
ahayzen_hmm well my VM needs flattening as it is properly broken21:11
ahayzen_nik90_, victor's VM changes this morning http://paste.ubuntu.com/8181878/21:11
ahayzen_popey, systemd thing?21:11
balloonslet me compare with yours and mine21:12
sergiusensmzanetti: sudo click chroot -aarmhf -fubuntu-sdk-14.10 -s utopic create21:12
sergiusensmzanetti: does that work?21:12
mzanettisergiusens: same error21:12
balloonsnik90_, can you share your updates>21:12
sergiusensnot sure why you get that schroot is not installed, it may be a false positive21:12
nik90_balloons: is there a quick way to find out what packages I updated today?21:12
balloonstail var/log/apt/history.log21:12
ahayzen_nik90_, cat /var/log/apt/history.log21:13
ahayzen_or ^^21:13
popeythere was an issue earlier today where a number of people had broken utopic systems21:13
popey(me included)21:13
sergiusensmzanetti: sudo apt install --reinstall click21:13
sergiusensare you on utopic btw?21:13
popeymostly related to guis tho21:13
* sergiusens is still not living the dream21:13
ahayzen_popey, mine is flashing! lol21:13
mzanettisergiusens: :D yes I am on utopic21:13
sergiusensmzanetti: I'll test this on my chromebook21:14
mzanettisergiusens: reinstalled click, same error still21:14
sergiusensthat's on utopic21:14
nik90_ahayzen_, balloons: http://paste.ubuntu.com/8181953/21:14
* balloons diffs21:15
nik90_popey: me and victor are getting http://paste.ubuntu.com/8181794/21:15
nik90_popey: when running music, clock, dropping letters etc21:15
mzanettisergiusens: apt-get purge schroot click click-dev and reinstalling ubuntu-sdk did it21:16
ahayzen_nik90_, nothing in gst/media-hub has changed recently right?21:16
nik90_ahayzen_: no idea21:16
* nik90_ looks at the packages that got upgraded21:16
sergiusensmzanetti: your schroot configs might have been busted then21:16
nik90_balloons: could it be glib-networking-services?21:16
ahayzen_jhodapp, you don't have any idea what this log means? http://paste.ubuntu.com/8181794/21:17
nik90_ahayzen_: hmm actually you could be right21:17
jhodappahayzen_, what is that from?21:17
ahayzen_nik90_, seems to be related to any apps that have audio right?21:17
nik90_ahayzen_: clock app crashes only when tryingn to load Audio{}21:18
ahayzen_jhodapp, when running clock/music/dropping letters on utopic21:18
balloonsit's really small21:18
ahayzen_jhodapp, the applications fail to start21:18
nik90_jhodapp: clock app crashes when trying to load the page which has Audio{} while music crashes on start itself21:19
balloonsglib-networking-services is one that is common to all21:19
mzanettisergiusens: looks like... I still can't figure what's different now... but well. at least it works21:19
balloonslet's roll it back21:19
ahayzen_or what nik90_ said :)21:19
sergiusensmzanetti: /var/lib/schroots has some configs in there; destroying those with the purge might have set things right21:19
jhodappnot sure what's going on there21:19
nik90_jhodapp: do you have the latest utopic?21:20
mzanettisergiusens: ah. that might be it... thanks21:20
ahayzen_jhodapp, ok ... has pulse/gst/media-hub changed recently in utopic ?21:20
jhodappno21:20
jhodappwell gst might have21:20
jhodapp1.2 to 1.4...check your version21:20
popeyyou can check /var/log/dpkg.log to see what changed21:20
ahayzen_hmm jhodapp do you have utopic? if so do the apps run for you?21:21
jhodappahayzen_, desktop?21:21
balloonsnik90_, ahayzen_ nope, didn't fix it21:21
nik90_jhodapp: yes21:21
ahayzen_jhodapp, yeah we're seeing in VMs21:21
jhodappno haven't run them...they don't use media-hub there21:21
jhodapp*yet21:21
ahayzen_hah21:22
nik90_oh yeah21:22
balloonsglib-networking* didn't help21:22
ahayzen_so why would it just suddenly break...and sometimes break in jenkins..21:22
jhodappthat's straight QML to QtMultimedia to Gst21:22
jhodappahayzen_, check your gst version please21:22
ahayzen_jhodapp, my vm doesn't work... nik90_ ?21:22
nik90_jhodapp: what's the package name?21:23
jhodappnik90_: just dpkg --get-selections | grep gstreamer21:23
nik90_gir1.2-gst-plugins-base-1.0?21:23
jhodappno21:23
jhodappyou want the one that is just gstreamer-1.0 something21:23
nik90_jhodapp: yup 1.421:24
popeyhmm, yes, nik90_ i have the same issue here.21:24
jhodappmight have changed things21:24
jhodapp1.4 that is21:24
jhodapptough to say21:24
nik90_mzanetti: would you know how to run qmltestrunner on a device or emulator?21:25
nik90_hmm I see two gstream packages being upgraded21:26
nik90_but they are not the 1.4 versions ones..but some other versions21:26
popeynik90_: have we got a bug for this?21:28
nik90_popey: well we are not sure package is responsible yet21:28
nik90_which package*21:28
mzanettinik90_: you log into the device and execute it. You might need to pass --desktop_file_hint21:28
nik90_mzanetti: so I would also need to build the plugins in the phone then21:30
mzanettinik90_: well, you can also create a click package and cross compile them21:30
mzanettibasically using the ones from the package you already have21:31
nik90_mzanetti: ah21:31
nik90_mzanetti: hmm I get phablet@ubuntu-phablet:/tmp/tests/unit$ qmltestrunner -input tst_alarmLabel.qml21:37
nik90_qmltestrunner: could not exec '/usr/lib/arm-linux-gnueabihf/qt5/bin/qmltestrunner': No such file or directory21:37
mzanettiits not installed21:37
nik90_mzanetti: ah it autocompleted the command, so i thought it had it21:37
mzanettiyeah, its from qtchooser...21:37
mzanettiwhich just installs a symlink21:37
nik90_mzanetti: hmm strange, I installed qtdeclarative5-dev-tools to get qmltestrunner and also the qmltestplugin. But on running I get http://paste.ubuntu.com/8182111/21:42
nik90_not sure why it split the -input option like that21:43
mzanettihmm... don't know atm21:43
mzanettisame here21:45
nik90_do you guys run unity8 tests on the device?21:46
nik90_or just on desktop?21:46
mzanettion desktop and in xvfb21:47
nik90_ah ok21:47
balloonswell nik90_ ahayzen__ I rolled back many packages but no luck21:52
ahayzen__:/21:52
ahayzen__balloons, i'm just reinstalling my VM21:53
nik90_balloons: hmm that's scary21:53
ahayzen_nik90_, how far did u get .... my internet decided it didn't like me anymore..22:23
ahayzen_nik90_, and FYI i've taken the latest cd image of utopic (it is displaying the set of updates that victor installed this morning todo)..and am going to try running music on that22:24
=== salem_` is now known as _salem
ahayzen_nik90_, ok so i installed the cd image, ubuntu sdk, ran music-app and it doesn't work22:27
ahayzen_nik90_, so you should be able to rule out these packages http://pastebin.ubuntu.com/8182405/22:29
dakernik90_: did you try --input instead of -input ?22:39
dakerjust ignore me :|22:43
ahayzen__nik90_, this diff may be interesting...http://people.canonical.com/~ogra/touch-image-stats/214.changes ... especially if the CI fails :) and then we'll find out if it is related to only the desktop or not22:54
nik90_ahayzen__: I will try upgrading phone to 214 and check22:54
nik90_daker: I tried both --input and -input :)22:55
ahayzen__nik90_, good luck :)22:55
=== mhall119_ is now known as mhall119
nik90_ahayzen__: it works!23:06
nik90_ahayzen__: no crashes23:06
ahayzen__nik90_, \o/23:06
nik90_ahayzen__: well we are still stuck at why it crashes on our desktops23:06
ahayzen__nik90_, well the main difference is it doesn't use media-hub23:07
nik90_yes23:07
ahayzen__nik90_, so http://cdimage.ubuntu.com/daily-live/20140829/ is broken...i wonder if http://cdimage.ubuntu.com/daily-live/20140828/ is ok?23:07
nik90_ahayzen__: but in the clock app, I am just importing Qt Multimedia and using the standard Audio{} component23:08
ahayzen__nik90_, yeah but that still goes through media-hub on device23:08
nik90_ahayzen__: so media-hub shouldn't affect since that would mean all qt audio players will crash then23:08
ahayzen__nik90_, doesn't it...23:08
nik90_ahayzen__: well let me try vlc then23:08
nik90_vlc works23:08
ahayzen__nik90_, well it maybe something in the way qtmultimedia is exposed/starts up inside qml23:08
nik90_no crashes23:08
nik90_I suppose23:09
ahayzen__nik90_, but this is above my knowledge of how things work23:10
ahayzen__nik90_, so who do we ask next?23:11
nik90_no idea23:12
ahayzen__hah23:13
ahayzen__nik90_, well it means we can't land anything as jenkins explodes so this is pretty serious23:13
ahayzen__popey, any ideas?23:13
nik90_ahayzen__: I know, same23:14
popeysorry, was afk23:14
popeywassup?23:14
ahayzen__popey, we have identified that the issue is only on desktop23:14
ahayzen__popey, it is present here http://cdimage.ubuntu.com/daily-live/20140829/23:15
popeyhow did you figure that? boot a live cd and then?23:15
ahayzen__popey, well my VM was stuffed so i made one from that installed the ubuntu-sdk attempted to run music-app and kaboom!23:16
popeycan you define 'kaboom'?23:16
ahayzen__popey, something like http://paste.ubuntu.com/8181794/23:17
ahayzen__popey, and nothing appears23:17
ahayzen__and note that these packages are still being listed to be installed (which i haven't) so they can be ruled out http://pastebin.ubuntu.com/8182405/23:18
ahayzen__popey, so who do we talk to next to try and figure out where the issue is?23:19
ahayzen__popey, as it is blocking landings for music/clock as jenkins doesn't pass23:19
popeytried running under strace?23:19
ahayzen__not yet...23:20
popeyhttp://paste.ubuntu.com/8182778/23:20
popeyhangs like that23:20
ahayzen__popey, yep i get the same23:20
nik90_me too23:21
popeybug 1235484 seems related23:22
ubot5bug 1235484 in thumbnailer (Ubuntu) "UI toolkit introduced dependency on two versions of gstreamer on the desktop" [Critical,Fix released] https://launchpad.net/bugs/123548423:22
nik90_balloons: ping23:22
popeyi suspect it only affects desktop because the packages landed in the archive and haven't landed in a phone image yet23:22
ahayzen__popey, blimey that looks exactly the same as us23:22
popeyso expect this to bork tomorrow23:22
nik90_popey: how the hell did you find that 1 year old bug. It does seem similar though23:22
ahayzen__popey, #214 image was just made and thats fine23:22
ahayzen__popey, but yeah ur probably correct http://people.canonical.com/~ogra/touch-image-stats/214.changes23:23
popeyhm23:23
nik90_ahayzen__: i think 215 will bork23:23
ahayzen__yeah maybe23:23
popeyhttps://lists.canonical.com/archives/utopic-changes/2014-August/009104.html23:24
popeyhave we received that yet?23:24
nik90_ahayzen__, popey: I remember seeing thumbnailer being in a silo 2 days ago. Could that be the issue? Since it is also the issue in the bug report you linked23:24
ahayzen__yeah i do as well23:24
popeyii  libthumbnailer0:armhf       1.2+14.10.20140827 armhf              generate thumbnails from files23:25
ahayzen__hmmm can't we remove the thumbnailer and still run music ? it just doesn't render any of the images23:25
popeyin the current image23:25
nik90_popey: I have that in my desktop23:26
nik90_214 has it as well23:26
ahayzen_damn internet...23:27
popeyso questions are 1) when did it break, 2) how can we reproduce23:28
ahayzen_popey, victor claims it was fine yesterday23:28
ahayzen_popey, run latest utopic to reproduce23:29
* popey grabs http://cdimage.ubuntu.com/daily-live/20140828/23:29
nik90_well reproducing is easy23:29
nik90_not sure when it started23:29
popeyi mean, if i take a live cd, what commands do i need to say "this works" or "this is broken"23:29
nik90_most likely yesterday or today23:29
popey28th is the oldest iso on cdimage23:30
popeylemme boot that on my other pc23:30
ahayzen_popey, sudo apt-get install ubuntu-sdk ... then branch clock/music and run it23:30
popeythen whats the test case?23:30
popeyok23:30
ahayzen_^^ what i did23:30
* popey dd's23:30
ahayzen_:)23:30
ahayzen_victor and me predict 28 'should' be fine...but we'll see23:31
* popey hugs ddrescue23:31
popeyso the question is what changed between 28/8 and 29/823:32
ahayzen_yep23:32
popeyhttps://lists.canonical.com/archives/utopic-changes/2014-August/23:32
popey23:32
ahayzen_\o/23:32
ahayzen_assuming 28th works...23:32
popeywell indeed23:32
popeyI'll write a 29 image while 28 boots23:33
popey*exciting* friday evening! ☻23:33
ahayzen_eventful is another word that springs to ones mind23:34
nik90_lol23:34
* popey is glad that two USB3.0 32GB sticks arrived today!23:35
ahayzen_\o/23:35
nik90_ooh usb 3.0 sticks..I got to try them23:38
popeyfyi on a live cd you need to edit sources.list and add universe/multiverse23:38
popeyotherwise sdk not found23:38
popeyok, installing23:38
* popey puts bins out23:38
ahayzen_hmmm mine just appeared....23:39
ahayzen_i did a sudo apt-get update ... and apt-get install bzr ...23:39
ahayzen_oh live cd...yeah23:39
* popey branches23:43
popeycore dump23:44
popeysuspect I'm missing mediascanner, thumbnailer etc on a live cd23:44
popeylemme get the deb from the ppa23:44
ahayzen_start mediascanner-2.023:45
ahayzen_popey, ^^23:45
ahayzen_popey, the ms2 service doesn't automatically start forgot to tell u u need to start it23:45
popeyheh23:45
popeyok, on 28th image it fails with the glib thing23:45
ahayzen_awww damn23:45
popeyhowever, it could be an sdk thing given I had to install that23:46
ahayzen_yeah i suppose23:46
ahayzen_popey, so who do we talk to/poke about this issue?23:47
popeyhmmm23:47
popeyso it's qmlscene that barfs...23:48
ahayzen_but could be anywhere from gstreamer up... i guess?23:48
ahayzen_or have we identified it is actually inside QML ?23:48
popeycan we simplify the issue23:49
popeyit's limited to a small set of apps right?23:49
ahayzen_popey, anything that uses Audio {} right nik90_ ?23:50
ahayzen_or MediaPlayer {]23:50
ahayzen_i'll create a mini app23:50
nik90_yes23:50
nik90_Audio{} triggers it I think since clock app opens fine and functions normally23:51
nik90_only when you get to to the alarm sound page it freezes23:51
popeyso if I reboot and bzr branch music app, whats the bare minimum packages I need to install to make it work?23:51
popeyi.e. not the full ubuntu-sdk metapackage?23:52
ahayzen_popey, ubuntu-sdk .... errrr23:52
ahayzen_popey, i guess whats in our deb/control?23:52
popeyof course23:52
popeynot sure that's going to get us anywhere really23:54
ahayzen_popey, bzr+ssh://bazaar.launchpad.net/~andrew-hayzen/+junk/test-mediaplayer-app/23:54
ahayzen_or https://code.launchpad.net/~andrew-hayzen/+junk/test-mediaplayer-app23:54
ahayzen_popey, ^^ explodes and that is the simplest thing ever!23:54
ahayzen_popey, all i've done is do 'Simple UI' template then put in import QtMultimedia 5.0 and MediaPlayer {}23:55
ahayzen_nik90_, ^^ fail for u as well?23:55
nik90_ahayzen_: let me check23:55
nik90_ahayzen_: yup it crashed on start23:56
ahayzen_nik90_, cool so same behaviour as music-app23:56
ahayzen_nik90_, and thats as simple as u can go :) http://bazaar.launchpad.net/~andrew-hayzen/+junk/test-mediaplayer-app/view/head:/main.qml23:57
nik90_yup indeed23:57
popeyso what libs are required for that to work?23:57
popeyif you only import those two..23:57
popeyclearly some deps - turtles all the way down23:57
popeybut whats the minimum23:57
ahayzen_import QtMultimedia 5.0 ... which is...23:57
popeyqtdeclarative5-qtmultimedia-plugin23:58
ahayzen_qtdeclarative5-qtmultimedia-plugin23:58
ahayzen_yeah23:58
nik90_qtdeclarative5-qtmultimedia-plugin23:58
ahayzen_and then the minimum to get a Ubuntu qml project running23:58
* nik90_ goes to sleep..nite23:59
ahayzen_nik90_, night o/23:59
popeynn23:59
nik90_nite, cya later23:59

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