=== chihchun_afk is now known as chihchun [02:19] hey, just for information, how much time takes the review? :) === chihchun is now known as chihchun_afk === chihchun_afk is now known as chihchun [07:07] t1mp: though I'm still waiting on confirmation of the design, if you wanna have a look, the additions to bubble shape/ pop over to support overflow panel style https://code.launchpad.net/~ubuntu-sdk-team/ubuntu-ui-toolkit/overflowPanel/+merge/226965 [07:17] t1mp: one more ready for review https://code.launchpad.net/~ubuntu-sdk-team/ubuntu-ui-toolkit/testAlarmBackend/+merge/226967 this addresses the hanging qmlplugindump (caused by having eds backend installed) and removes warnings when the backend is intentionally chosen to be for testing === chihchun is now known as chihchun_afk [08:09] Good morning all; happy Apollo 11 Day! :-D [08:51] hey, does anyone know if there is a way to tell the toolkit to not animate the scrolling when changing the index of a itemselector? [08:54] hi [09:06] hi [09:06] oSoMoN: hi [09:06] is any body here [09:06] mzanetti, hey, what’s up? === Nilesh is now known as Guest68016 [09:06] oSoMoN: one more question you know the answer for sure :) [09:06] oSoMoN: the trick with setting the document with meta tag doesn't seem to do for oxide [09:07] oSoMoN: and yes, doesn't seem to read my GID_UNIT_PX settings either [09:07] => everything's tiny [09:07] has anybody worked on SDL [09:07] ?? [09:07] mzanetti, can you take that question to #oxide? [09:07] ack [09:08] yep i dont find him [09:08] #oxide [09:09] SDLSDL [09:10] i'm stuck up in SDL can anybody hlp me [09:11] i dont know if many people have, who are online right now [09:35] mzanetti: hi, good morning. Do you have about 45 seconds? I seem to be hitting an issue which I cannot seem to figure out why. [09:36] 45 secs :) [09:36] nik90_: hit me [09:36] 35 left [09:36] :P [09:36] mzanetti: can you take a look at https://bazaar.launchpad.net/~nik90/ubuntu-clock-app/10-alarm-settings/view/head:/backend/modules/Alarm/Settings/alarmsettings.cpp and https://bazaar.launchpad.net/~nik90/ubuntu-clock-app/10-alarm-settings/view/head:/backend/modules/Alarm/Settings/alarmsettings.h [09:37] mzanetti: and find out why my Q_INVOKABLE function testOutput() is not executed? [09:37] mzanetti: I declared it in the header function and called it in the constructor definition. But I dont see the qDebug() output in the console. [09:39] nik90_: did you import Alarm.Settings somewhere? [09:39] mzanetti: on the qml side of things, I declared it the usual way, AlarmSettings { id: _alarmSettings } [09:39] ah ok [09:39] mzanetti: https://bazaar.launchpad.net/~nik90/ubuntu-clock-app/10-alarm-settings/view/head:/app/ubuntu-clock-app.qml [09:39] line 78 [09:39] can't see an obvious mistake, need to buildit [09:40] nik90_: what is it with those number in branch names lately? [09:40] mzanetti: oh that..I took that after look at t1mp branches...it is basically means the feature implementation takes several MPs and this is the first one :) [09:41] 10, means is the first one [09:41] mhm... [09:41] ::{ [09:41] :P [09:41] :D [09:45] nik90_: found it: [09:45] app/alarm/AlarmSettings.qml [09:45] same class and file name? [09:45] yeah, the QML type AlarmSettings conflicts with the module's class name [09:45] omg I am an idiot [09:45] nik90_: you can either rename one of those [09:45] nik90_: or use [09:46] import Alarm.Settings 1.0 as BackendSettings [09:46] BackendSettings.AlarmSettings {} [09:46] just as an example [09:46] mzanetti: ok. Thnx a lot [09:46] I personally don't like named imports that much [09:53] longest 45 seconds ever [09:57] popey: noah... I recall meetings where they definitely seemed to last longer [09:57] :P [10:02] itemselector? [10:02] epaste [10:02] < seb128> hey, does anyone know if there is a way to tell the toolkit to not animate the scrolling when changing the index of a itemselector? [10:03] seb128: ^ no, the animation is coded inside the itemselector code [10:03] t1mp, hum, ok :-( [10:03] seb128: I think most of our components have something like that.. perhaps it would be an idea to add an "animate" property to all the components [10:03] Laney, ^ fyi [10:04] seb128: can you report a bug/feature request on http://bugs.launchpad.net/ubuntu-ui-toolkit ? Please add your use case [10:04] t1mp: also we're seeing that if you set selectedIndex on construct then it's not scrolled into view [10:04] known/bug? [10:05] Laney: no I don't see a bug for that one yet [10:05] 'kay [10:08] so for u-s-s we have to choose between a delay or not having the selected item scrolled into view ;-) [10:08] I guess the latter is probably preferable? [10:09] Laney, I don't find the small delay to be that much of an issue personally [10:09] it's a bit disconcerting [10:09] but having the list not-scrolled would be fine as well [10:10] in fact you are right, having to scroll would probably feel ok [10:10] so if you want to mp that you have +1 from me [10:13] ok, let me do that / file a bug after I get these tests done [10:16] Laney, do you want me to open the toolkit bug? (I was about to do it) [10:16] seb128: there's two [10:16] - add an animate property [10:16] - scroll properly when setting selectedIndex on constructed [10:16] construction [10:17] you can use the same example with onCompleted or selectedIndex to demonstrate both of them [10:38] mzanetti: Do you know what "symbol lookup error" means? http://paste.ubuntu.com/7802826/ [10:39] nik90_: means the function QDbusConnection::sessionBus() hasn't been found in any of the libs [10:40] nik90_: this can happen if you're missing the linker flags for libqdbus [10:40] mzanetti: hmm...in the CMake files? [10:40] mzanetti: I only added the includes for QDBus in the .cpp file [10:40] nik90_: yeah, let me find the syntax (/me can never remember cmake syntax) [10:41] mzanetti: sry for the trouble [10:41] nik90_: no worries [10:41] nik90_: so you should have this in cmake somewhere: find_package(Qt5DBus) [10:41] mzanetti: ah ok..I have those lines in my main Cmakelist.txt files [10:42] and there's more... still searching [10:42] mzanetti: what about here qt5_use_modules(alarm-settingsbackend Gui Qml Quick) [10:43] nik90_: qt5_use_modules( DBus) [10:43] nik90_: right [10:43] yeah, add DBus there [10:43] hmm that's weird I can't seem to be able to delete a u1db document. deleteDoc seems to delete the contents but the listitem remains and I can't get rid of it [10:44] mzanetti: yeah that seems to work. thnx [10:45] DanChapman: How come? When you swipe delete, you call deleteDoc() which should do both remove the listitem and remove it from u1db? [10:54] nik90_: hey :-) yeah that's what i'm trying http://paste.ubuntu.com/7802872/ but the listitem reappears again even after restarting the app http://people.ubuntu.com/~dpniel/dekko/images/deleteDoc.png the only way to get rid of them is removing th db [10:56] DanChapman: try db.putDoc("", model.docId) [10:57] nik90_: ahh ok i'll try that [10:58] DanChapman: I am using these u1db functions at https://bazaar.launchpad.net/~ubuntu-clock-dev/ubuntu-clock-app/trunk/files/head:/timer/ for adding/deleting timers dynamically from u1db [11:05] nik90_: putDoc("", docId) has the same behaviour. The list item just reappears empty. How bizarre [11:06] oh and it seems it throws some resetDrag error when it re-appears [11:07] DanChapman: yeah that's a known error [11:07] DanChapman: may be the issue is with your U1db.Query and Index [11:07] DanChapman: It shouldn't pick up on the empty ones [11:08] DanChapman: btw, when you do deleteDoc() or the method I suggested, it basically removes the contents and adds a empty item. But that empty item shouldn't be picked up by u1db [11:09] DanChapman: anyways at https://bazaar.launchpad.net/~ubuntu-clock-dev/ubuntu-clock-app/trunk/view/head:/timer/TimerPage.qml I create the timer preset using putDoc(), and the display it in a listview. May be you might be able to see if you have implemented it differently [11:11] nik90_: Ahh so does it have to go through a Query and Index? I just plugged the U1db.Database into the list views model. As i didn't think i would have need to query, i just wanted it all [11:12] DanChapman: Query and Index helps you filter stuff from the model [11:12] DanChapman: so yes you might need it [11:12] DanChapman: but does your listview show non-empty stuff that you saved? [11:12] the valid listitems [11:13] nik90_: right ok, let me try that then :-) === MacSlow is now known as MacSlow|lunch [11:29] nik90_: the Query & Index has sorted it :-) Thanks for your help [11:30] DanChapman: glad it helped. yw welcome [12:01] jdstrand: hey, when I try making a GET call to com.canonical.indicator.datetime I get a AccessDenied error in my app. [12:01] jdstrand: Didn't you say you were adding this exception to the calendar policy group so that the clock app can use it? === _salem is now known as salem_ [12:42] nik90_: what is the output of 'grep DEN /bar/log/syslog'? [12:42] will that spit out a beer ? [12:43] jdstrand: It says no such file or directory [12:43] you want /var [12:43] ogra_: stupid me [12:44] jdstrand: http://paste.ubuntu.com/7803270/ [12:45] freudian slip [12:46] freudian slurp ;) [12:48] jdstrand: Should I report a bug like before? [12:48] nik90_: I did add it, but the interface didn't match [12:48] nik90_: I'll need a new upload [12:48] nik90_: can you file a bug? [12:48] jdstrand: sure. will ping you the bug number [12:49] thanks [12:54] jdstrand: Bug 1342708 [12:54] bug 1342708 in apparmor-easyprof-ubuntu (Ubuntu) "Calendar security should allow dbus calls to com.canonical.indicator.datetime" [Undecided,New] https://launchpad.net/bugs/1342708 [12:54] nik90_: thanks, do you have a moment to help me make sure we have the right policy? [12:54] jdstrand: yeah [12:54] jdstrand: what do I need to do? [12:55] nik90_: ok, can you modify /var/lib/apparmor/profiles/click_com.ubuntu.clock.devel_ubuntu-clock-app_0.1 to have (just before the last '}'): [12:56] bus (receive, send) [12:56] bus=session [12:56] path=/com/canonical/indicator/datetime/AlarmProperties{,**} [12:56] interface=org.freedesktop.DBus.Properties, [12:56] nik90_: then save it, then do: sudo 'apparmor_parser -r /var/lib/apparmor/profiles/click_com.ubuntu.clock.devel_ubuntu-clock-app_0.1' [13:03] nik90_: did that work for you? are there any new denials? [13:03] jdstrand: in the process [13:03] jdstrand: should that be dbus(receive, send) [13:03] nik90_: whoops, sorry, mispaste, yes === greyback is now known as greyback|lunch [13:07] t1mp: https://code.launchpad.net/~ubuntu-sdk-team/ubuntu-ui-toolkit/apiStdErr/+merge/227020 [13:07] Laney, https://bugs.launchpad.net/ubuntu-ui-toolkit/+bug/1342711 (fyi) [13:07] Ubuntu bug 1342711 in Ubuntu UI Toolkit "ItemSelector animation can't be disabled" [Undecided,New] [13:07] kalikiana: hmm, I am unable to overwrite the file even using sudo nano .. [13:07] sry [13:08] jdstrand: ^^ [13:08] Laney, not sure about the scrolling thing, if that should be customisable or a consistant toolkit behaviour [13:09] nik90_: that is weird. sudo vi ... works fine here. that path is in a rw area (otherwise click apps wouldn't install) [13:10] popey: if I'm developing on ubuntu 14.04 can I install 14.10 framework for ubuntu touch? [13:10] jdstrand: can I give you the click package? [13:11] jdstrand: somehow the nano keep asking for a filename which it ignores on pressing enter [13:11] nik90_: what architecture is the click? [13:12] jdstrand: arhmf [13:12] jdstrand: I can give whatever arch you need [13:12] nik90_: what version of the OS is required? [13:12] jdstrand: 14.10 [13:12] no, I mean revision [13:13] promoted, devel-propoed, something specific [13:13] kalikiana: thanks for the fix, happroved https://code.launchpad.net/~ubuntu-sdk-team/ubuntu-ui-toolkit/apiStdErr/+merge/227020 [13:13] snizzo: you can in the emulator [13:13] jdstrand: devel-proposed #133 [13:14] yeah, I don't have that here. I can create a new emulator, but it will take a while [13:14] nik90_: you sure you typed in /var/lib/apparmor/profiles/click_com.ubuntu.clock.devel_ubuntu-clock-app_0.1 ? [13:14] jdstrand: yeah I navigate into the profiles folder and autocompleted the file [13:14] navigated* [13:15] nik90_: and you are doing that as root? [13:16] jdstrand: yeah ..I adb shell and I am root.. [13:16] jdstrand: just to make sure I did "sudo nano file" [13:16] jdstrand: I will just make my phone rw and see if that works [13:17] when I press autocreate for the ubuntu kit it doesn't ask me for 14.10 or something, it just put me 14.04 there [13:18] kalikiana: fyi I made https://bugs.launchpad.net/ubuntu-app-launch/+bug/1329141 critical [13:18] Ubuntu bug 1329141 in Ubuntu Application Launcher "qmlscene crashed while running test_can_launch_multiple_applications" [Critical,Confirmed] [13:19] I don't know who to contact about that but [13:21] also [13:21] Creating new emulator instance. [13:21] unknown flag `arch' [13:25] nik90_: I feel like the terminal isn't setup right for nano. the 'Enter' key isn't doing the right thing [13:25] jdstrand: yeah, I am now using vi for the first time [13:26] ogra_: any tips for nik90_ for using nano on the touch image? [13:26] jdstrand, use vi :P [13:26] wfm [13:26] nano is broken ... or rather adbd is not properly using termcap [13:27] using ssh (which gives you a proper terminal) works too [13:27] and phablet-shell should work as well for nano ... plain adb wont [13:29] nik90_: ^ (try phablet-shell) [13:29] jdstrand: almost done ;) [13:29] ogra_: thanks [13:37] jdstrand: confirmed, that works [13:37] ogra_: thnx phablet-shell helps..(/me is a nano guy :P) [13:38] how can I change framework from 14.04 to 14.10 on ubuntu 14.04? [13:38] snizzo: so I assume you are running Ubuntu 14.04? [13:38] nik90_: yes [13:39] snizzo: First go to Tools->Options->Ubuntu and create a chroot for 14.10 i386 [13:39] (I'm testing on a nexus 5 with daily) [13:40] snizzo: only after the chroot is created will qtcreator pick the correct ubuntu kit for the emualtor [13:40] snizzo: then in the devices, create a emulator and specify the i386 arch emulator with a valid name [13:41] nik90_: http://paste.kde.org/pqxtwemud [13:41] when creating the chroot i386 [13:41] hmm weird [13:41] should I pick x86_64? [13:42] i mean, amd64 [13:42] snizzo: let me check, 1 min [13:42] ok, thank you :) [13:43] snizzo: I have the i386 chroot installed. I think i386 arch is required to match against the i386 emulator arch [13:43] oh ok [13:44] could I install armhf perhaps? I'm testing on a real phone [13:44] zbenjamin: ^^ any idea why snizzo might be hitting this error while creating the i386 chroot http://paste.kde.org/pqxtwemud [13:44] snizzo: for the phone yes, the arm chroot will work [13:45] snizzo: btw, what kind of project are you trying to run on the phone? Does the project have cmake or just qmlproject? [13:45] just qmlproject [13:47] snizzo: let me know when you get the chroot up and running [13:47] snizzo: after which you should be able to select the device and have the correct ubuntu kit. After that, go back to the edit tab, and press Ctrl+F12 to run on phone [13:48] nik90_: yeah, I tried deleting 14.04 framework and recreating 14.10 and wasn't working. Creation of 14.04 still works btw [13:49] snizzo: I have a feeling, there are some left over files of the deleted frameworks which is causing these errors [13:50] nik90_: I can delete it manually, what's the path? [13:50] snizzo: I don't remember sry..I am a newbie at this as well :) [13:52] snizzo: but have you tried running on the phone using the 14.04 chroot? It might work [13:53] nik90_: it works fine using 14.04 on phone with latest daily [13:53] snizzo: awesome [13:53] but to get into store they said me 14.04 is deprecated and I can't use it [13:53] snizzo: ok, then change the framework in the manifest.json file to 14.10 framework [13:53] while still using the 14.04 chroot [13:54] snizzo: I think the only time this might be an issue is when you start cross building click packages for different architectures. [13:54] tried that one, app won't run on phone :( [13:54] snizzo: ok. In that case, try contacting zbenjamin about the chroot issue. [13:54] snizzo: I presume you have all the necessary ppas? [13:55] I think yeah... which one should I get? [13:55] snizzo: you should have the SDK PPA, Phablet-tools PPA [13:55] those 2 should be sufficient [13:55] seb128: well, either way it's not possible to do it currently [13:56] nik90_: I didn't have those I think I'll try now [13:57] Laney, "it"? [13:58] scroll to the index you select on construction [14:02] dpm reminders hangout? [14:02] mzanetti, rpadovani, popey, I'll be in the hangout in a sec, browser crashing... [14:02] and again... [14:03] trying chromium now [14:07] nik90_: upgraded click and got new exciting error: http://paste.kde.org/prsxjya58 [14:08] lol [14:12] snizzo: what are you doing ? ;) [14:13] zbenjamin: as for now, I created a symlink to that utopic script from utopic to gutsy (since also trusty was linking to gutsy) [14:14] on click it says me [14:14] I: Retrieving Release [14:14] I: Retrieving Release.gpg [14:14] I: Checking Release signature [14:14] E: Invalid Release signature (key id 40976EAF437D05B5) [14:15] zbenjamin: http://paste.kde.org/p0onz8oon [14:18] zbenjamin: http://paste.kde.org/pdfcygxov [14:18] aaah [14:18] * t1mp couldn't make sense why the new feature I'm testing for the header doesn't work.... [14:18] I need to set useDeprecatedToolbar: false [14:18] perhaps it is about time we change the default value of that property :) [14:19] t1mp: :) [14:20] t1mp: hey btw why did you name the header branches 10-**, 20-** and so on? [14:21] nik90_: because I am working on a lot of branches at the same time and I need to know in which order they should be merged when they depend on each other [14:21] nik90_: so 10-* goes first, then 20-*, and some times afterwards I think of some changes that go inbetween and I name that 15-* [14:21] mzanetti: there you go :) ^^ [14:21] nik90_: and I have branches without numbers if they are not part of a dependency chain :) [14:22] t1mp: yeah i was starting to use your naming convention and was asked why :D [14:22] * t1mp working on 140-headerSections now :) [14:22] * nik90_ is on 10-alarm-settings ;) [14:22] nik90_: zsombi started to do the same this week for the new list items [14:22] t1mp: lol [14:23] nik90_: I have a whole bunch of those branches, see https://blueprints.launchpad.net/ubuntu-ui-toolkit/+spec/new-header [14:23] t1mp: yeah I have been keeping track of your recent header section branch..will test once the doc is ready [14:24] I'm working on the docs now [14:24] I don't like the user interaction that I have now, but I think I will try to land it like this and discuss it with the designers for improvements after that [14:24] ok [14:24] at least the API is fixed so apps would automatically get the better behavior after that :) === greyback|lunch is now known as greyback [14:27] t1mp: do you know if zsombi's work on new listitems will provide https://docs.google.com/presentation/d/1Kkl7xT8BYo9mT8i3IXh6rPrDlNg6cBxTajahlRYIGlI/edit#slide=id.g18883f09d_011 [14:27] the swipe to delete style [14:28] :D [14:31] nik90_: the trash can with red background? [14:31] t1mp: yes [14:31] nik90_: it will even provide a list of actions and an icon+color for each action :) [14:31] t1mp: hurray! [14:31] nik90_: but the best news is that it will be super-fast :) [14:32] t1mp: is there a API Doc you guys are using for the implementation? [14:32] current listitems get slow when you create thousands of them [14:32] nik90_: let me search for it [14:32] t1mp: thnx..until now I have been using ListItem.Base and creating all of them according to the design spec. Hoping the new listitems will fix that [14:33] nik90_: https://docs.google.com/a/canonical.com/document/d/1uqmhDn_3wlcSuzvn3L44chjzUczQ3hx5yI_kBh2IxhY/edit#heading=h.ftjdgagfx6od [14:33] nik90_: work in progress of course [14:33] nik90_: they will, but only after rtm [14:33] t1mp: oh [15:23] snizzo: there is no support for gutsy anymore ;) [15:25] Hey guys! I have a question regarding Ubuntu Button. I was trying to change the font of the color, but really no luck. 'fontColor' desn't exist and this didn't work: font: Qt.font({family: "Ubuntu", pixelSize: FontUtils.sizeToPixels("medium"), color: "#000000"}) [15:25] any hints? [15:40] It was actually easier for me to roll my own button than to change the font on our Toolkit Button. I would like to improve this situation, even though I'm fine with using my own custom button for now. [15:40] That's not the point though, I'd like to improve the Button component. Perhaps this is a wrong channel to share this particular problem? [15:45] karni: changing the color should be just using the color property [15:45] karni: but I am not sure about the fontColor. [15:46] nik90_: right, I'm interested in particular in making the font of the Button of color white. it's some shade of grey by default. [15:47] karni: I think in that case you will have to custom style it yourself using the style property [15:47] karni: only some customization is exposed like the font, color, size and so on. Font color is not exposed. [15:47] nik90_: right, I believe that was one of (if not the only way) to go. [15:48] nik90_: Do you know if we have any docs on styling? I failed to find it on d.u.c :( [15:48] karni: I was told it would be added , but I don't see any atm [15:48] nik90_: ack, thank you [15:49] karni: np === gatox is now known as gatox_lunch [16:08] jhodapp: can you please approve the branches on the mediaplayer to start the landing process? [16:08] let me get the links. [16:08] https://code.launchpad.net/~barry/mediaplayer-app/py3autopilot/+merge/226857 [16:08] https://code.launchpad.net/~canonical-platform-qa/mediaplayer-app/fix1341956-test_no_video/+merge/226774 [16:08] https://code.launchpad.net/~brendan-donegan/mediaplayer-app/remove_scene_select_test/+merge/226863 [16:09] elopio: who tested it? [16:10] jhodapp: I did. [16:10] elopio: what device(s) did you test on? [16:10] we still see some crashes sometimes, but are not caused by this changes. [16:10] jhodapp: utopic desktop, and mako. [16:10] ok great [16:11] jhodapp: I'll ask for the silo and test there too. [16:11] elopio: ok great [16:15] elopio: do you need top approval as well? [16:15] jhodapp: yes, please. I can't do it myself. [16:19] elopio: ok, code reviewed them and approved [16:19] thanks. [16:19] np === chihchun_afk is now known as chihchun [16:25] dpm, can we polish this off and merge it? https://code.launchpad.net/~dpm/reminders-app/debian-copyright/+merge/225646 [16:26] balloons, I was waiting to leave it there for it to be used as a MP to put in the CI train, but as there are other packaging changes that will need to be done, I think we can just merge it. I know you had a conversation with elopio about licenses in the python code for the tests - would that MP address your issues? [16:27] dpm, yes [16:27] I think we should try and get them sorted before pushing it, since it's entry into the store has been a little delayed [16:28] dpm, although there's one additional license to add for the evernote sdk [16:28] https://github.com/evernote/evernote-sdk-python3/blob/master/LICENSE [16:28] balloons, feel free to top-approve and address that later, or to point to any other additional changes, and I can put them in the branch [16:30] dpm, if you can, just add that license to cover tests/autopilot/evernote [16:38] dpm: when are planning to rename "reminders" into evernote? [16:38] dpm: has it been officially accepted? [16:42] no [16:43] I don't know that we ever will call it Evernote [16:43] probably call it "Notes" or something [16:43] Only 1st party apps can be called Evernote. [16:44] popey: oh ok [16:51] Hi all [16:53] I've got this error in SDK [16:53] Cannot open: file:///usr/lib/i386-linux-gnu/qt5/qml/Ubuntu/Components/ListItems/artwork/ListItemProgressionArrow.png [16:53] It always happens when I start "Shorts" RSS Reader === gatox_lunch is now known as gatox [17:02] nik90_, so yeah, essentially what popey said [17:20] Is someone from SDK team here? [17:42] Is someone from SDK team here? === dpm is now known as dpm-afk === me4oslav is now known as your-nick === your-nick is now known as me4oslav [18:07] jdstrand, Text conflict in debian/changelog [18:10] ok, let me fix that [18:13] beuno: pushed [18:25] jdstrand, reviewed, no blockers, just questions [18:34] zbenjamin: hey, can we talk quickly tomorrow morning about some cmake stuf. I am having a slight trouble when I try to add 2 plugins into the same folder [18:34] mhall119, o/ Did you try 100balls today? What do you think of the new physic? [18:36] rpadovani: have you fixed the physics so i can beat mhall119 ? [18:41] i am in danger of pushing my finger through the screen on that game [18:55] Guys] [18:56] In "Shorts" we always got "Cannot open: file:///usr/lib/i386-linux-gnu/qt5/qml/Ubuntu/Components/ListItems/artwork/ListItemProgressionArrow.png" on start [18:58] qtros: I think the SDK devs are done for the day [18:58] qtros: you should ping them in the morning, afternoon european time (t1mp, kalikiana for instance) [19:11] beuno: ok, responded. thanks for the review! [19:13] nik90_, Hi :) [19:13] Letozaf_: Hi :) [19:14] Letozaf_: I noticed that the bug faced is similar to https://bugs.launchpad.net/ubuntu-clock-app/+bug/1297712 (look at comment #1). However I don't have a solution for it :/ [19:14] Ubuntu bug 1297712 in Ubuntu Clock App "App won't start on desktop" [Undecided,Incomplete] [19:15] nik90_, I found out another thing: launching ubuntu-clock-app, after yesterday's error if I type ctrl-c the clock app opens, but I get this output: http://paste.ubuntu.com/7805025/ [19:16] nik90_, the clock app seems to work all the same though [19:16] nik90_, I will maybe try to install utopic on a VM and see what happens there [19:16] Letozaf_: oh ok, but the new clock app doesnt? [19:16] nik90_, haven't tried, il will try it now [19:18] nik90_, if I launch it with qmlscene I get the error and ctrl-c interrupts everything [19:19] nik90_, http://paste.ubuntu.com/7805052/ [19:22] nik90_, yes the bug looks like my problem [19:23] Letozaf_: curious why the new one stops completely while the old one continues running [19:23] nik90_, yes curios [19:24] Letozaf_: when you open the old clock app, navigate to the alarms tab and see what happens [19:24] Letozaf_: the one difference between the old and new clock app is that in the new one, the alarm model is loaded instantly while in the old one it is only loaded when the user navigates to the alarm tab [19:25] which means that the Alarm Model (dependent on EDS) is the cause of the error [19:25] but I cannot fathom why I cannot cause the error on my machine [19:27] Letozaf_: try removing qtorganizer5-eds package and stop all EDS processes and see if that allows the new clock app to open [19:27] clock app should switch to the memory alarm model [19:29] nik90_, on the old clock app nothing happens if I navigate to the alarms tab [19:30] nik90_, everything seems to work fine after ctrl-c ... let me do what you said next on the new clock app... [19:34] nik90_, removing qtorganizer5-eds removes also calendar app, is there a way not to ? [19:35] Letozaf_: really? you mean the ubuntu-calendar-app? [19:35] q [19:36] nik90_, yes ubuntu-calendar-app and calendar-app [19:36] n [19:36] * Letozaf_ keeps on typing random letters on IRC, sorry :( [19:36] lol [19:37] Letozaf_: hmm wasn't aware of the hard dependency on calendar-app [19:37] nik90_, I have the same error if I lauching calendar-app [19:37] Letozaf_: at this point, I am out of ideas officially [19:37] Letozaf_: similar to that bug I guess [19:38] nik90_, http://paste.ubuntu.com/7805179/ [19:39] nik90_, mmm... I guess I will try on a new VM, I will install utopic there and see what happens [19:39] Letozaf_: yeah sry, I can't think of why this is happening. [19:40] nik90_, no problem, I wouldn't know how to fix this :P [19:40] Letozaf_: once you create the vm and set it up, make a copy as a backup [19:40] nik90_, yes I will thanks [19:54] mzanetti: In the timezonemodel class, why did you do void setSource(const QUrl &source); instead of just void setSource(QUrl source) ? [19:55] mzanetti: was it to prevent duplication of the variable by the compiler? [19:55] nik90_: yeah, the & makes the difference [19:56] it passes only a reference, not a copy of the url [19:56] mzanetti: ok [19:58] nik90_, yay!! it's working the new clock app [19:59] Letozaf_: :) [19:59] nik90_, I removed qtorganizer5-eds with calendar app and it works [19:59] nik90_, I do not need calendar app now :P [19:59] Letozaf_: hehe.. [19:59] Letozaf_: Did you try the new VM? [19:59] nik90_, so it ok for me now :P [20:00] nik90_, no I was still zsyncing the iso [20:00] nik90_, for installing utopic on the VM [20:00] Letozaf_: ok. The removal of EDS is a temporary measure since on the phone that wouldn't be the real case. [20:01] nik90_, ok, my goal is to write the autopilot tests for now :) [20:01] Letozaf_: Also I will have to talk to elopio about this but we have to isolate the clock app alarms from the tester's machine. [20:01] Letozaf_: I dont want your alarms to be filled with autopilot alarms :P [20:02] ahh yes, app isolation [20:02] nik90_, :) [20:02] balloons, hello :) [20:03] https://bugs.launchpad.net/ubuntu-clock-app/+bug/1316746 [20:03] Ubuntu bug 1316746 in Ubuntu Weather App "Autopilot tests should properly setup environment" [Medium,Confirmed] [20:04] balloons: yeah..since it requires isolation from EDS, it is a bit more difficult and I don't know (nor have time due to new clock app) to do it [20:06] nik90_ we spent some time.. heck, quite a bit of time trying.. apparmor makes it very difficult. I'm thinking perhaps jdstrand original suggestion about running under a different user is the way to go. We've got some more things that make this sane now [20:06] I wonder if using adt-run fixes this in the interim anyway .... [20:08] balloons: would that separate user be deleted after runnign the ap tests automatically? [20:08] nik90_, yes [20:09] you could also have a resident autopilot user [20:10] yeah. On the desktop, I could always create a new user just for testing. [20:10] On the phone, I am not so sure how to do that [20:11] nik90_, well you wouldn't do it.. the runner would === dpm-afk is now known as dpm === nik90_ is now known as nik90 [20:15] nik90, since you are about I'll go ahead and do the work to get rid of the deprecation warning about using the emulators module for the autopilot tests. It's alot of renaming [20:16] balloons: ok. I will try to review it today, but if not tomorrow. [20:16] * nik90 is dead tired [20:16] nik90, ahh, it's nothing important :-) [20:20] elopio, nik90 I believe this is not longer a bug. https://bugs.launchpad.net/ubuntu-ui-toolkit/+bug/1289616. Do you agree? [20:20] Ubuntu bug 1289616 in Ubuntu UI Toolkit "SDK AP Emulator function for TextField should wait for object creation" [Undecided,Confirmed] [20:24] balloons: why not? [20:25] nik90, because the sdk does wait now.. the textfield helper has a self.focus.wait_for [20:25] balloons: ah ok..so the bug is Fix Released [20:26] nik90, yes, I believe so.. just want elopio to confirm :-) [20:26] balloons: ok [20:33] nik90, https://code.launchpad.net/~nskaggs/ubuntu-clock-app/switch-emulators-to-proxy-object/+merge/227103 [20:33] if you are curious :-0 [20:35] looking at it now [21:32] popey, yes, now is a bit more realistic and balls are faster :-) But, more important, on mhall119 phone glasses are smaller :P [21:44] hah [21:47] rpadovani: check G+ ☻ [21:47] awww so sweetie! [23:25] rpadovani: don't hate the player :-P [23:25] mhall119, I'm still blocked at 540 :P [23:26] rpadovani: watch the buckets, not the balls [23:27] I'll try! I need to arrive to 2048!!! [23:30] It's a bit later here, so I go to sleep.. Good night to all :-) === salem_ is now known as _salem