[00:00] it was using some global that I could not find defined in the project [00:00] gerlowskija, have you been able to reproduce the bug? [00:00] The only recurrence-related code I found was in NewEvent.qml and EditEvent.qml, which makes me think that handling recurrence was all done in the plugin. [00:00] yep [00:01] out of curiosity, what was the bug you gave up on? Kindof intrigued now. [00:01] gerlowskija, exactly. I was wondering if there was perhaps some project files not being listed in the qml project [00:01] sec [00:03] oh I think it was the bug about ... sheesh [00:03] i remember [00:03] * Akiva-Thinkpad keeps looking [00:03] https://bugs.launchpad.net/ubuntu-calendar-app/+bug/1359306 [00:03] Ubuntu bug 1359306 in Ubuntu Calendar App "New Event - Selecting start time should update end time to be 1 hour ahead" [Wishlist,Confirmed] [00:04] looks like someone took it over [00:04] at least that is what I think it was [00:04] oh, that would be awesome to have done [00:04] gerlowskija, I am curious though what his merge proposal looks like [00:04] if he solved my issue, maybe it can give you a hint [00:04] sec [00:05] makes sense. back in 5 btw. [00:06] gerlowskija, https://code.launchpad.net/~twstd-dev/ubuntu-calendar-app/1359306/+merge/232942 ah yah - [00:06] this diff makes sense [00:07] wow, surprisingly simple haha [00:10] and you said when you were looking at that, you were looking at functions in one of the components? [00:11] gerlowskija, well I didnt know before about Date() ; that is something I just discovered the other day [00:12] oh, understood; I'm now JS-wizard either. What I'm actually wondering I guess is if you know how to recompile a plugin/component. Since it looks to me like the bug I'm looking at is an issue in the component, I'd like to add some debugging to the C++ code, and run the app with the modified plugin [00:13] s/now/no/g [00:13] gerlowskija, interesting question... [00:13] But I have no idea how to rebuild a plugin like that. I was hoping you might know [00:14] I like a challenge [00:14] doing nothing anyways; lets both take a spin at this [00:16] ok, I'll dig back in and let you know if I came up with anything. [00:16] s/came/come/g [00:17] thanks for the help [00:21] I've been trying to build the qtorganizer5-eds plugin (bzr branch lp:qtorganizer5-eds)...maybe that's part of my problem, so I figured I'd mention it. [00:24] anybody know how to delete a file from QML without resorting to a C++ plugin? [00:25] mhall119, isnt that sort of thing supposed to be impossible? [00:25] mhall119, I am pretty sure I made an ask ubuntu question about that some time back. [00:25] Akiva-Thinkpad: it should be possible to do in the folder that my app uses for data storage [00:26] mhall119, Ah interesting theory [00:27] mhall119: I know less than nothing about this, but can you delete it with Javascript? http://www.java2s.com/Tutorial/JavaScript/0600__MS-JScript/FileDelete.htm [00:28] oops, that was some MS specific thing...looks like you can't do that in JS, which makes sense. [00:28] gerlowskija: that looks to be exposing ActiveX APIs over javascript, so that won't work for me [00:29] yeah, I got a little Google happy and forgot to look closely [00:32] mhall119, http://askubuntu.com/questions/519375/anybody-know-how-to-delete-a-file-from-qml-without-resorting-to-a-c-plugin [00:32] :) [00:38] Akiva-Thinkpad: trying to build on my utopic desktop gives me: http://paste.ubuntu.com/8219377/...looks like the original error message is complaining about not having the most up-to-date version of a package called "libecal" installed. [00:39] hmmm? [00:39] * Akiva-Thinkpad branches latest [00:41] as far as I can tell I have the most recent libecal for utopic installed (at least according to this link: https://launchpad.net/ubuntu/utopic/+package/libecal-1.2-16) [00:42] gerlowskija, did you install the -dev? [00:43] bah apple wifi not letting me ssl :/ [00:43] and the mall is closing [00:43] brb as I move to the library [01:29] gerlowskija, how goes the battle [01:29] ? [01:36] you weren't kidding about the road-warrior thing! [01:36] And not well. I haven't made much progress. [01:36] I found references to a libecal-1.2-15 package with a version of 3.8 [01:37] but it doesn't look like it's available on recent-ish versions of ubuntu. [01:37] (instead we have libecal-1.2-16...note the 16 vs. 15) [01:38] I convinced myself that since 16 > 15, then maybe the version you and I have installed by default is actually a more recent version, but cmake just can't tell that. [01:38] tbh I think that's a lie I'm just telling myself. [01:39] I commented out the check from CMakeLists.txt and it looks like I get a little further, but I still get errors I'm not sure how to correct (I'll post a link, just a sec). [01:40] ugh, actually my laziness wins...its the same error as in: http://paste.ubuntu.com/8219377/ [01:40] just without the warning about the missing libecal package [01:40] hrmmm [01:41] I'm starting to think that this plugin is dependent on the environment it'd find on a phone image. But I'm not sure. === _salem is now known as salem_ [01:42] gerlowskija, wait, are you just trying to compile calendar? [01:42] -compile +build [01:44] no...I want to add debugging to one of the C++ plugins that the calendar uses: qtorganizer5-eds [01:44] or at least that's what I *think* I'm doing. [01:45] gerlowskija, include ? [01:45] what is that? [01:45] gerlowskija, is this a qt project? [01:45] erp [01:45] is the code you are looking at [01:45] is it c++? [01:45] yep. [01:46] gerlowskija, yah qt has a great library called qDebug [01:46] the syntax to use it is fairly easy [01:47] qDebug() << "snakes" [01:47] or [01:47] qDebug("Snakes") [01:47] oh, cool cool. Sorry, I blanked for a minute. I'm using qDebug for writing my debugging info [01:48] but I'm getting these error when I go to recompile (with or without my added debug) [01:48] ah [01:48] so okay; this plugin; did you download the source for it, and are trying to compile it? [01:51] yep! [01:51] (back in 5) [01:54] cool [01:55] (back) [01:55] gerlowskija, whats the package? [01:55] so I can grab the source [01:56] bzr branch lp:qtorganizer5-eds [01:56] okay great [01:57] In the meantime btw, I started looking at a different bug, which also looks to me like an issue with the qtorganizer component. I feel like I'm going nuts and am just imagining these things [01:57] :-) [01:58] ha ha [01:59] ah and now I have fun [01:59] -- package 'libedataserver-1.2>=3.8' not found [02:02] mmmmm no I got errors in building [02:02] worked out fine for me [02:07] worked out fine? so you got it to build? [02:10] gerlowskija, yah no executable though, [02:10] being that this is an api I gather [02:11] gerlowskija, proof http://imgur.com/XJDXpij [02:15] gerlowskija, sudo apt-get install libedata-cal1.2-dev should work [02:15] that was the dependency I needed [02:16] ok, hmm. [02:17] so, when I ran this on the command line, I ran cmake in the base dir. It looks like you ran it in the organizer sub directory (or that's what the SDK did at least). Maybe that's what I'm doing wrong. Just a sec. [02:19] So dumb question, when you imported the repo into the SDK, what file did you open to bring in the project? [02:19] Akiva-Thinkpad: [02:19] That is the joy of c++ and cmake; make a silly syntax error, and you are giving some benign error [02:20] gerlowskija, after branching, I went to the parent folder of the branch [02:20] and did [02:20] qtcreator CMakeLists.txt [02:21] I used the desktop environment to compile [02:21] * Akiva-Thinkpad doesnt really understand this armh platform stuff. [02:22] * gerlowskija doesnt really understand anything apparently [02:22] Still seeing the issue, but at least I learned about a new command..never seen that invoked from the command line before [02:23] I'm logging off..might be back in an hour or so. Thanks for the troubleshooting help! [02:23] gerlowskija, just tried it today :P [02:24] gerlowskija, yah don't worry I know the pain === salem_ is now known as _salem === chihchun_afk is now known as chihchun [03:53] nik90_: with pleasure :) Sometimes we do good things too ;) [06:52] good morning === wendar_ is now known as wendar [07:51] wouldn't it be nice to be able to do some stuff like IFTTT ? [07:52] I have that on my android phone, and it automaticly mutes my phone when I arrive at work and sets the ringtone back to 100% when I leave work [07:52] but you can do all sorts of stuff there [08:02] Morning all [08:03] salut davidcalle === chihchun is now known as chihchun_afk === chihchun_afk is now known as chihchun === zsombi is now known as zsombi|afk === chihchun is now known as chihchun_afk [09:20] Good morning all; happy Another Look Unlimited Day! :-D [10:22] jdstrand, I wasn't quite sure if you just said "yeah, the approach makes sense" or "feel free to push" - in any case, here's the MP: https://code.launchpad.net/~dholbach/click-reviewers-tools/1364449/+merge/233088 :) [10:53] popey: do you know if I am missing packages for filemanager, or I need to set some env variable? I get this file:///home/tim/dev/ubuntu-filemanager-app/src/app/qml/filemanager.qml:20:1: module "org.nemomobile.folderlistmodel" is not installed import org.nemomobile.folderlistmodel 1.0 [10:54] t1mp: qtdeclarative5-nemo-qml-plugin-folderlistmodel === MacSlow is now known as MacSlow|lunch [10:55] apt-get cannot find it E: Unable to locate package qtdeclarative5-nemo-qml-plugin-folderlistmodel [10:56] maybe this one, but I have it installed already: qml-module-qt-labs-folderlistmodel is already the newest version. [10:57] popey: ^ [10:57] * t1mp trying to run filemanager on desktop [10:58] on utopic? [10:58] works here [10:58] i apt-got it from the daily ppa [11:19] popey: is there a script you use which would go get a branch, make a click package and install it on the phone? [11:20] popey: designer wants to test some of my branches [11:20] nik90_: no, I'd just use click-buddy or spit a click out from qtc [11:21] popey: but does click-buddy create a click for armhf arch? [11:21] or does one need to use qtc explicitly? [11:21] well, that's what _I_ use. [11:21] or you could yank the click from jenkins? [11:22] oh, hang on, it wont have built for armhf will it ☹ [11:22] yeah [11:22] ok, so yes, I'd be inclined to use an armhf chroot via qtc [11:22] that's complicated. I will probably do what I do with you which is to share a dropbox folder and put the click package there [11:27] nik90_: oh, sorry, I'm not suggesting you get the designer to use qtc [11:27] i thought you were asking about what I do for you [11:27] yes, totally spam them with clicks [11:28] yeah I am going to share the folder with the designer which has the clicks === MacSlow|lunch is now known as MacSlow [11:32] k [11:41] popey: when the designer tries phablet-shell it says "Job is already running: ssh" [11:46] nik90_, and ? [11:46] you dont like that it tells you that ? [11:46] no it doesn't go into the phone then [11:46] well, but thats most likely unrelated to that message [11:47] nik90_, to debug shell scripts, change the "set -e" at the top to "set -ex" and store the output in a file [11:47] it says [11:48] ssh-keygen: /home/giorgioventuri/.ssh/known_hosts: No such file or directory [11:48] ogra_: ^^ [11:48] so he has no local ssh key it seems [11:48] how does one create that? [11:49] nik90_: seahorse would be the easiest on ubuntu [11:49] yeah [11:49] nik90_: new key ssh [11:49] ok [11:50] nik90_: infact File→New... and from the dialogue that pops up click ssh [11:52] davmor2: in the dialog do I press "Create and setup" [11:52] or "jsut create" [11:54] ogra_: so in "seahorse", it shows that he already has a personal ssh key [11:55] hmm, try touching /home/giorgioventuri/.ssh/known_hosts then [11:55] ogra_: gventuri has that issue [11:56] ogra_: id_rsa id_rsa.pub ubuntudevice_0184e5d0b03696f2_id_rsa ubuntudevice_0184e5d0b03696f2_id_rsa.pub [11:56] ogra_: that's the contents of his .ssh folder [11:57] right, try touching the file above [11:57] ogra_: which file? [11:57] hmm, try touching /home/giorgioventuri/.ssh/known_hosts then [11:57] ogra_: no I don't see the known_hosts? [11:58] or may be you are referrign to the ubuntudevice-** file? [11:58] type in: [11:58] touch /home/giorgioventuri/.ssh/known_hosts [11:58] then try phablet-shell again [11:59] ha it works [11:59] ogra_: thanks! [11:59] file a bug against phablet-tools please that thouch command should be added there [11:59] I will do that. thnx [12:00] thanks ... feel free to assign to me directly [12:12] dholbach: done [12:15] ogra_: bug 1364913 [12:15] bug 1364913 in phablet-tools (Ubuntu) "phablet-shell spits out error ssh-keygen: /home/username/.ssh/known_hosts: No such file or directory" [Undecided,New] https://launchpad.net/bugs/1364913 [12:15] thanks ! [12:53] jdstrand, thanks! [13:20] seb128, with the thumbnailer revert being landed, would it make sense to retry some of the MP test runs? http://people.canonical.com/~dpm/core-apps-sponsoring/ [13:20] hey guys do we have a doc published anywhere on how to register an app with download manager? I had a quick google and couldn't see anything [13:20] dholbach, I guess so [13:22] nevermind found it I was looking under released not development versions [13:25] dholbach: no [13:26] dholbach: jenkins needs some TLC from francis [13:39] nik90_: can you confirm something for me please. Create an alarm, save it, click on the alarm change the sound, save it again, then let the alarm go off and see if it changed or not from the default? I basically think it is grabbing the setting from the first save and not editing it after. [13:40] davmor2: sure let me try [13:43] davmor2: its a bug [13:43] Yay! [13:44] lol [13:44] nik90_: see how I think of you, I knew you were low on work and would love to do some debugging and fix some code ;) [13:45] hehe [13:45] davmor2: bug report pls [13:48] davmor2, can you tag the bug with 'testcase exploratory' [13:48] nik90_: https://bugs.launchpad.net/ubuntu-clock-app/+bug/1364949 [13:48] Ubuntu bug 1364949 in Ubuntu Clock App "Editing alarm sounds doesn't actually change them" [Undecided,New] [13:48] davmor2:thnx [13:49] brendand: done [13:55] o/ all [13:55] mhall119, I'm planning a to hold a workshop next week with my loco on app development [13:55] I recall that there was a wiki with some slides all set for it, but I can't find the wiki :( [13:56] rickspencer3, here are the materials for our app dev training: https://drive.google.com/a/canonical.com/#folders/0B2SKL58Ipf7eeEdpYW5SdVlUU3M [13:56] rickspencer3, I plan to have them all finished by the end of the week [13:56] dholbach, here's where I am organizing my workshop, fwiw [13:56] https://wiki.ubuntu.com/RickSpencer/UbuntuSDKWorkshop [13:57] dholbach, I'll have a link to me deck there, so you guys can do what you want with it ;) [13:57] rickspencer3, they'll consist of 4 parts: 1) intro to ubuntu for devices, 2) get started (install sdk, what the emulator can do, etc.), 3) short intro to what qml looks like, our design building blocks, 4) workshop: write your first app (students to work on their own, ask teachers when issues arise) [13:57] rickspencer3, 1) and 4) are already in the docs folder I mentioned [13:57] dholbach, perfect [13:57] rickspencer3, great, I'll take a look at yours as well [13:58] rickspencer3, let me know if you have comments :) [13:58] dholbach, I'll def. start with your slides [13:58] rock on! [13:58] davmor2: I think it is a indicator-datetime bug since I just outputted the alarm sound at the end of updating an alarm and it shows the correct alarm sound that was chosen [13:58] dholbach, your rss reader looks perfect [13:58] rpadovani: mzanetti can we bump the reminders meeting to tomorrow? i have a clash? [13:59] I'll use that and give you feedback on how it goes [13:59] rickspencer3, I had quite a bit of help from mhall119 with that one :) [13:59] popey, tomorrow only morning or before 4.30 PM [13:59] * mzanetti won't be here tomorrow at all [14:00] nik90_: feel free to reassign I'm sure charles is just as unbusy and desperate for extra work :D [14:00] charles: bug 1364949 [14:00] bug 1364949 in Ubuntu Clock App "Editing alarm sounds doesn't actually change them" [Medium,Confirmed] https://launchpad.net/bugs/1364949 [14:00] I couldn't even type that and keep a straight face [14:00] charles: seems like a regression [14:00] davmor2: lol [14:01] rpadovani: mzanetti ok, how about in 30 mins? [14:01] popey: I have my standup in 30. but 45 would work for me [14:01] hm, i have a clash [14:01] haha [14:02] how hard can it be :D [14:02] how about 16:30 UTC? [14:02] ok [14:02] rpadovani: ^ [14:02] popey, mzanetti: Midnight I bet neither of you are doing anything at midnight? [14:02] davmor2: what does the explanatory tag indicate? Does it require a manual test update? [14:03] brendand: ^ [14:03] davmor2: I meant exploratory [14:05] davmor2, nik90_, :-) === zsombi|afk is now known as zsombi [14:06] davmor2, it's for our internal purposes [14:06] popey, mzanetti maybe later today? [14:07] nik90_: That is going to be how the issue was found I was just tatting with alarms so it was during exploratory testing. Testcase how ever would mean you need a manual or automated testcase adding for it I guess :) [14:07] charles: so on outputting the alarm sound just after pressing the save button I notice that the alarm sound is the correct one. But what is being played is the default one [14:08] charles: so if I create an alarm with a different sound it plays the new sound. So it is only edited ones that don't change the sound playing :( [14:09] nik90_, davmor2, sorry about my lag time; I'm also in an indicator-transfer discussion. could one of you two please confirm that the new sound's filename is saved in ~/.local/share/evolution/tasks/$foo/tasks.ics ? [14:09] charles: sure give me 5 [14:09] davmor2, ty [14:11] rpadovani: is 16:30 UTC no good for you? [14:11] popey, today? Yap, I miss the message [14:12] ok, lets do that then [14:14] charles: it isn't changing, http://paste.ubuntu.com/8223844/ [14:14] davmor2, that's good to know! [14:15] charles: same here [14:15] davmor2, the joke answer is that's good to know because it's not an indicator-datetime bug :-) [14:15] davmor2, the more serious answer is that it narrows down where the problem is [14:15] :) [14:15] nik90_, davmor2, the next step would be for nik90_ to confirm that his app's going through the right motions of saving the modified event [14:16] nik90_, davmor2, if that's confirmed, then the problem is either in ubuntu-ui-toolkit or qtorganizer5-eds [14:16] charles: before I call alarm.save(), I outputted the alarm sound property. [14:17] charles: it shows the new chosen alarm sound. [14:17] rpadovani: https://code.launchpad.net/~rpadovani/reminders-app/bottomEdge/+merge/231118 [14:17] charles: which means that once save() is called, it is not setting it properly in the task.ics file [14:17] charles: I could do some more debugging to confirm this [14:22] nik90_, please do so [14:22] charles: hmm I suspect the issue is in the SDK since zsombi did some changes related to alarm edits ;D recently [14:23] charles: but I will take care of this [14:23] nik90_: ?? [14:23] zsombi: https://launchpad.net/bugs/1364949 [14:23] Ubuntu bug 1364949 in Ubuntu Clock App "Editing alarm sounds doesn't actually change them" [Medium,Confirmed] [14:24] nik90_: you might want to check what happens if you change the time too if you are doing a bit more digging [14:24] nik90_: ah, ok, that can be the toolkit thingie... it could be that the flag fro changing that wasn't set [14:24] zsombi: to summarise, when the user edit a saved alarm and changes the alarm sound, it is not changed. [14:25] zsombi: May I toss it over to the toolkit and tag it rtm14. [14:25] nik90_: just incase it is the whole thing that isn't editable once set [14:25] nik90_: yup, I'll check it [14:27] davmor2: what! [14:27] davmor2: so changing other properties of the alarm doesnt work? [14:27] nik90_: I haven't checked, I did say if you were digging a little bit more [14:28] nik90_: I can have a quick look [14:29] davmor2: in my testing, alarm time,day seems to change as expected [14:30] charles: I just noticed that http://paste.ubuntu.com/8223955/ has two alarm sounds :P [14:31] charles: but again has to do with the changes in the sdk === fgallina is now known as lunch [15:43] nik90_, agreed wrt the sdk, but still that's useful information, make sure it's in the ticket :-) [15:56] mhall119: nik90_: I have pushed a new Trusty QtC plugin backport of the today's release to the Tools Development PPA. This release contains the scope development support and the upcoming new adb policy support. It is an important release. Please bug me if you find anything wrong with it. If you are happy with that release then I will copy the packages to the SDK Release PPA. === lunch is now known as fgallina [16:08] bzoltan: ack === alecu_ is now known as alecu === nik90__ is now known as nik90_ [16:08] mhall119: can you test the scope development support as I don't do scopes (yet) :P === JamesTait is now known as Guest46019 [16:09] bzoltan: so is this update already available on utopic since you mentioned trusty backport? [16:09] gerlowskija, yes I am working on that :D === JamesTai1 is now known as JamesTait === davmor2_ is now known as davmor2 === popey_ is now known as popey [16:22] davmor2, nik90_ - did you see that alarms are going off 1 minute later than scheduled as well? [16:22] * nik90_ tries that [16:22] brendand: mine went off at 17:00 [16:23] davmor2, mine went off at 16:21, set for 16:20 [16:23] * brendand tries again [16:24] mine went off on time too [16:25] brendand: mine went of on time as well [16:25] next one did [16:25] ah well [16:27] brendand: was the first alarm scheduled a long time after the current time? [16:27] brendand: it could be that when the phone is in sleep, time skips [16:31] tsdgeos: hey, quick question when you open the clock-app in Catalan, do the translations show up? [16:32] tsdgeos: I changed my phone language to italian just to test and rebooted the phone. But on opening the clock app no strings are translated [16:33] nik90_: yes, the utopic version was released just few hours ago [16:33] renatu: cool. Quick question then if you have the time. Is there a way to run an app (specifically the calendar-app, which uses qtorganizer5-eds) against a modified version of the plugin, without installing the modified plugin across my whole system? [16:34] bzoltan: cool I will test it there [16:36] renatu: or, rephrased, do you have a suggested way of testing changes in qtorganizer5-eds by running an app against it [16:48] nik90_: i get translations for almost everything yes === seb128_ is now known as seb128 [16:57] mzanetti, the modify works well, updated the branch [16:58] gerlowskija, the plugin is loaded by qt, maybe you could try export QT_PLUGIN_PATH [16:58] I never tried [17:00] oh, hmm. how do you test changes you make then? does qtorganizer5-eds have its own unit/integration tests? [17:15] gerlowskija, I am creating the plugin manually: QOrganizerEDSEngine *engine = QOrganizerEDSEngine::createEDSEngine(QMap()); [17:25] bzoltan: I'll update my QtC and test it, will give you and zbenjamin feedback === ybon1 is now known as ybon [17:50] popey, balloons, are we still suffering jenkins outage? [17:58] ahayzen, yep [17:59] balloons, :( any eta or are you still battling? [19:21] mhall119, could you get a description on how dekko uses the custom url scheme delegation? is there some other way to accomplish this? [19:22] DanChapman, ^^ [19:22] balloons, music-app seems to be running nicely so far in jenkins thanks for whatever you guys did to fix it :) [19:23] * ahayzen waits patiently to see if it will fully pass :) [19:26] ahayzen, it appears we might be out of the woods [19:26] balloons, \o/ ... i'm just checking which mps we would like to land before the next push to store with victor.... [19:28] balloons, 'Finished: SUCCESS' :D [19:35] pmcgowan: http://bazaar.launchpad.net/~dpniel/dekko/trunk-1/view/head:/src/Ubuntu/qml/MessageView/HtmlPart.qml#L41 [19:37] Trojita core uses URLs like trojita-imap:// and such to load message parts [19:37] mhall119, wondering if there is another way to implement it which would be easier than providing this in oxide [19:38] pmcgowan: possibly [19:38] looking at this code, maybe just allowing an override of the QNetworkAccessmanager used by Oxide would do it [19:39] let me add that pointer to the bug [19:39] mhall119, thanks [19:41] so it looks like 2 things are happening: [19:41] 1) They have a custom QNetworkAccessManager that knows to query trojita core API for things like trojita-imap:// [19:42] 2) A wrapper class to for QNetworkReply that I assume makes it more QML-friendly [20:25] kenvandine: hi. quick question: I have images in my app I want to export. I know how create a source so others can import it, but can I actively push it to the gallery from my app? or having a list of things that could potentially handle it and let the user pick one? [20:26] mzanetti, yup [20:26] create a transfer and charge it [20:26] basically add the ContentPeerPicker [20:27] aha! [20:27] missed it in the docs [20:27] * mzanetti tries [20:27] with ContentHandler.Destination [20:27] that will show peers that can open it [20:29] bbiab :) [20:30] kenvandine: I have the same question, actually [20:30] so once you charge it, do you have to do anything else? [20:30] nope [20:30] also, what's the difference between a destination and a share? [20:30] once it's charged, the destination app should get focus [20:30] mhall119, technically none :) [20:30] ok :) [20:30] but... we make you choose one of the other so you can present it to the user differently [20:31] but on the backend it does the same thing [20:35] kenvandine: file:///home/micha/Develop/dronefly/app/components/ImageGallery.qml:158:5: created by hub [20:35] kenvandine: as I saw you asking for feedback :) this could be a bit more verbose. took me a while [20:35] ? [20:35] oh [20:35] kenvandine: doesn't that mean its registered as qmlRegisterUncreatableType? [20:35] yeah, it could be [20:36] yes [20:36] which is that? [20:36] paste the source [20:36] ContentTransfer {} [20:36] yeah... you can't do that :) [20:36] the peer picker will give you a transfer [20:36] yeah. figured by now. but could say "ContentTransfer can't be created this way. Get one from ContentHub" :) [20:36] but yes... we could have a better message there [20:37] yes [20:37] * kenvandine fixes now [20:37] :) [20:41] why does google always redirect me to sdk-1.0 docs... no wonder I totally missed the export api. /me notes down to check sdk version in url [20:43] mzanetti, i proposed a branch :) [20:43] "Not creatable as an object, please use ContentPeer::request()" [20:43] ah. exactly what I needed. was still searching where to get it from [20:43] thanks :) [20:43] np :) [20:43] kenvandine: is there a way to tell ContentPeerPicker not to show the app that initiated it? [20:43] ContentPeerPicker has a selected signal [20:43] kenvandine: my app is both an importer and exporter of images [20:44] mhall119, no... sorry [20:44] good idea though [20:44] mhall119, file a bug :) [20:44] that'll take a little more thought [20:44] but we should be able to filter it out of the model automatically [20:45] mhall119, i'm really wishing i had a way to open pdf files on my phone [20:45] * kenvandine hides [20:46] kenvandine: https://bugs.launchpad.net/content-hub/+bug/1365148 [20:46] Ubuntu bug 1365148 in content-hub "ContentPeerPicker shouldn't show the app that is using it" [Undecided,New] [20:46] kenvandine: there's an app in the store for viewing PDFs [20:46] it's quite nice [20:46] mhall119, but does it show up in the peer picker for downloads? [20:46] kenvandine: conveniently it can use the filemanager-app as a picker :) [20:47] right... [20:47] kenvandine: ah, I don't think so no [20:47] :-D [20:47] i was giving you an opening for making a jab :) [20:47] it would be nice if filemanager-app was also a destination for ContentType.All [20:47] ^^ happy :) [20:48] kenvandine: is there a way in QML to delete files that I've imported via content-hub? [20:48] not in pure QML [20:48] :( [20:50] mhall119, so if you don't choose a content store, the files won't persist [20:51] but that doesn't help if you need them to live longer [20:51] yeah, I want them to live longer, and let the user delete them from my app === salem_ is now known as _salem [20:59] kenvandine: does this make sense? http://paste.ubuntu.com/8226754/ [21:00] mzanetti, so why not use the ContentPeerPicker? [21:00] kenvandine: ? [21:01] what does the content picker have to do with it? [21:01] ContentPeerPicker shows the list of peers [21:01] nik90_, ping [21:01] oh... contentpeerpicker [21:01] what you did there would give you the default peer for share and pictures [21:01] which i don't think exists [21:01] not a "default" [21:03] http://bazaar.launchpad.net/~ken-vandine/+junk/hub-exporter/view/head:/hub-exporter.qml#L409 [21:03] mzanetti, ^^ [21:03] a complete example [21:03] i c [21:03] thanks [21:03] np [21:04] twstddev: pong [21:05] nik90_, http://146.185.188.87/?lat=40.714270&long=-74.005970 [21:05] that should stay there, it's on popey's server [21:06] twstddev: oh cool [21:08] nik90_, as well I had a look at the cpu high load issue in the clock app. You do a software accelerated animation, you basically create your own animation loop with 100 fps and rotate the image. I found that animator components should render on gpu, but honestly have not noticed much of a difference [21:08] probably on my vm it cannot initialise GL [21:09] so, the best probably make a one second tick [21:09] :) [21:09] :P [21:09] thats what we had at the beginning [21:09] you can check on the device [21:09] with RotationAnimator [21:09] will do [21:09] documentation claims that should be hardware accelerated [21:10] not RotationAnimation, but RotationAnimator :P [21:11] yup [21:11] http://qt-project.org/doc/qt-5/qml-qtquick-rotationanimator.html [21:12] fginther: I am getting mixed results on https://code.launchpad.net/~nik90/ubuntu-clock-app/conditionally-load-alarmmodel/+merge/232412 [21:12] fginther: it says it passed Continous Integration but failed autolanding [21:13] nik90_, same i just had one of the music-app landings explode [21:13] hmm strange [21:14] nik90_, yep :/ you can see it go green for a bit...then red ...then maybe green again? http://91.189.93.70:8080/job/generic-mediumtests-utopic/ [21:15] ahayzen, one of your music-app landings failed due to an incomplete fix for the recent jenkins issue, I've reappoved the MP [21:15] nik90_, looking [21:15] fginther, oh cool thanks [21:17] nik90_, I see one problem, the clock reboot branch job was still trying to merge those MPs [21:18] fginther: oh the first time it failed, I waited an hour before top-approving again [21:18] nik90_, well, there were two autolanding jobs being triggered simultaneously [21:19] ok [21:19] nik90_, the other problem is that the tests are not passing on a mako: https://jenkins.qa.ubuntu.com/job/generic-click-autopilot-runner-mako/472 [21:20] fginther: that's a known issue..its due an upstream autopilot bug [21:20] fginther: related to the datetime picker [21:20] nik90_, ok [21:20] although I thought we skipped it on the device [21:22] the autolanding job for lp:ubuntu-clock-app have been running mako tests for a while now. When the project trunk was switched, it also meant it started running mako tests on the reboot branch [21:23] nik90_, is that expected? [21:23] fginther: hmm then that could indicate real failure [21:23] * balloons reads [21:24] fginther: let me try with another branch. The tests in this MP failed initially on my laptop. But I fixed it, checked it locally and then pushed. [21:24] fginther: and then I noticed jenkins passed it. But I did not check on mako [21:24] nik90_, https://jenkins.qa.ubuntu.com/job/generic-click-autopilot-runner-mako/472/testReport/junit/ubuntu_clock_app.tests.test_alarm/TestAlarm/test_add_recurring_type_alarm_must_add_to_alarm_list_random_/ this does not look like the datepicker bug [21:25] balloons: yeah, let me test on mako and see where the issue is [21:34] balloons: does the instructions at http://www.theorangenotebook.com/2014/02/click-buddy-and-you-how-to-test-your.html still valid? [21:35] balloons: I get errors that the custom C++ plugins like DateTime, Timezone are not loaded [21:41] nik90_, http://developer.ubuntu.com/apps/sdk/tutorials/building-cross-architecture-click-applications/ is the definitive reference for building armhf binaries [21:41] this is a rough version I did which contains info about how I build things: http://www.theorangenotebook.com/2014/05/building-cross-platform-click-packages.html [21:42] balloons: ok so I build it that way and install the click package manually and then do phablet-test-run? [21:42] nik90_, yea build and install it, make sure you can load it and it runs [21:42] then you can run the tests however you feel [21:43] ok [21:46] I like using autopkgtest for this as it does everything you need. You can literally plug the phone in and hit the command and it runs [21:46] it grabs depends, setups up ap, copies the tests, etc [21:47] balloons: but I thought that didnt work for the new clock app [21:47] what didn't work? autopkgtest? [21:48] balloons: also when I install the click myself, would phablet-test-run grab the tests from /opt/com.ubuntu.clock folder? [21:48] balloons: autopkgtest yes [21:49] https://bugs.launchpad.net/ubuntu-clock-app/+bug/1355145 [21:49] Ubuntu bug 1355145 in Ubuntu Clock App ""make autopilot" fails in autopkgtest" [Undecided,New] [21:50] on that bug.. hmm.. However, it's not needed to run tests on the device. autopkgtest keys off the manifest file for a click [21:50] nik90_, works for me; adt-run --click com.ubuntu.clock --- ssh -s adb [21:50] ^^ that will run the tests for whatever version of clock I have installed on my device [21:51] balloons: but where does autopkgtest grab the tests from? [21:51] I just want to make sure I am runnign the latest tests and not some old trunk ones [21:51] it reads the click manifest and grabs them. in your case, you should pass the local tests along so it uses those instead [21:51] so, adt-run ubuntu-clock-app-local-folder/ --click com.ubuntu.clock --- ssh -s adb [21:52] ah [21:52] no worries, I have a post actually on promoting this a bit more.. I did an initial post when support landed, but things have gotten easier/better since [21:52] it's come time to push folks to adopting it :-) [21:53] hmm let me guess I need to try this on utopic since trusty doesnt have latest autopkgtest [21:53] you can actually just grab the utopic deb, it works fine [21:53] so, yes trusty is fine :-) [21:53] http://mirrors.kernel.org/ubuntu/pool/main/a/autopkgtest/autopkgtest_3.4_all.deb [21:53] a backport should be done.. we can bug pitti to do it :-) [21:54] balloons, fginther (and others who helped) thanks for getting jenkins back up, all of the backlog of music-app has now landed \o/ thanks again :) [21:54] good to hear ahayzen [21:54] ahayzen, sorry for the mess [21:55] ahayzen, and you're welcome :-) [21:55] balloons, popey when u have a moment a store build of music would be appreciated (hopefully it will fix the krillin CI issues) [21:55] balloons: if you upload, I'll approve. [21:55] popey, yep, trying [21:55] #611 should be the latest [21:55] I can't get reminders to upload, it keeps rejecting [21:56] I hope music fairs better [21:56] heh [21:56] rejecting how? [21:56] I have trouble with the upload form.. it often stops, or fails validation [22:01] balloons: i can't download clicks to review, sound the beuno alarm! [22:05] yikes! glad it's not just me [22:07] nik90_, btw, https://people.debian.org/~mpitt/autopkgtest/README.click-tests.html should explain in more detail what I just said [22:08] balloons: ok [22:09] balloons: turns out it is a real failure on device :/ [22:10] balloons: basically the clock app freezes when you try swiping the bottom edge up while the alarm database is loading...although it happens only in that branch. [22:14] hmm,interesting === daker_ is now known as daker [22:23] "There was an error connecting to the download server. Please try again later." [22:27] balloons, u got a moment for a quick autopilot question? [22:29] shoot [22:30] balloons, when doing an assertThat to a property should there be lambda before it or can it directly go as the first parameter? (I'm just trying to tidy up more old code) [22:30] balloons, so this is directly going to the qml property not to a helper method [22:30] popey, ahayzen wahoo, music uploaded fine [22:30] balloons, \o/ [22:31] ahayzen, using eventually requires a function [22:31] but otherwise you don't need lambda in an assert [22:31] balloons, hmmm so doing self.assertThat(self.player.isPlaying, Eventually(Equals(True))) ? [22:32] ahayzen, I would think that is just fine [22:32] balloons, ok because before we were sometimes doing..actual_title = lambda: self.player.currentMetaTitle ... then self.assertThat(actual_title, Eventually(Equals(whatever))) [22:32] does it complain? If so, you can construct something ofc [22:33] balloons, so should that be able to move directly as the first parameter [22:33] right [22:33] I believe so.. but hey, python will yell if it's not true [22:33] balloons, ok i'll try it.... i'm just trying not to make 'flaky' tests :) [22:34] ahayzen, right.. either way won't be flaky, heh, it's syntax.. but making lambda functions needlessly should be avoided [22:34] it's confusing [22:34] balloons, exactly why i'm trying to remove them :) [22:38] balloons: do we need to go through and retry all the merges or has that been tried? [22:38] popey, slowly but surely yes [22:38] I don't want to overrun jenkins so I've been rebuilding the important ones [22:38] feel free to do the same [23:24] balloons: fginther I'm getting 500 when trying to retry a build. [23:24] https://code.launchpad.net/~dpm/ubuntu-filemanager-app/desktop-i18n/+merge/230591 to http://91.189.93.70:8080/job/generic-mediumtests-utopic/1705/console [23:50] renatu: ping