=== aaron is now known as ahoneybun | ||
suebt | Is it possible to set a zoom factor in Oxide? | 09:59 |
---|---|---|
DanChapman | oSoMoN, ^^ | 10:01 |
oSoMoN | DanChapman, suebt: no, this is tracked by bug #1447395 | 10:02 |
ubot5 | bug 1447395 in webbrowser-app (Ubuntu) "[browser] Zoom needed for better readability" [High,Confirmed] https://launchpad.net/bugs/1447395 | 10:02 |
suebt | DanChapman, oSoMon: Allright, thanks. | 10:03 |
justxux | Hello. I'm a beginner in programming, was playing around making some very simple apps,yet nothing that can distribute. I Love the way Linux is heading (5 years experience with Linux ,especially Ubuntu ) ,want to help Ubuntu and community with all i can. So how can i start develop for Ubuntu ,need some advices. Thanks in advance. | 10:38 |
nik90 | timp, faenil: Has the new bottom edge landed in the stable phone images? | 11:37 |
faenil | nik90: mmm zsombi_ ^ | 11:37 |
faenil | I think it has, not 100% sure though | 11:38 |
zsombi_ | nik90: yes, it has landed in OTA9 | 11:38 |
nik90 | zsombi_, thnx | 11:38 |
=== _salem is now known as salem_ | ||
nik90 | popey, Can you review https://code.launchpad.net/~nik90/ubuntu-clock-app/minor-last-design-fixes/+merge/287771 | 12:13 |
nik90 | popey, last minute changes proposed by Rae. | 12:14 |
nik90 | Once that MP is in, we can send it back to QA. | 12:14 |
popey | sure | 12:14 |
nik90 | thnx | 12:15 |
popey | nik90: http://people.canonical.com/~alan/screenshots/device-2016-03-02-121759.png | 12:18 |
popey | nik90: http://people.canonical.com/~alan/screenshots/device-2016-03-02-121813.png | 12:18 |
popey | those colours look right to you on the icons at the top? (blue)? | 12:18 |
popey | oh, hang on, broken upload | 12:20 |
popey | http://people.canonical.com/~alan/screenshots/device-2016-03-02-122057.png | 12:21 |
popey | better | 12:21 |
nik90 | popey, yup, they are actually hardcoded :) | 12:24 |
nik90 | https://docs.google.com/presentation/d/1yxUZ0zuKEXkWZFhIFMtXu2MXyzoEh4ao3Sp8Ktxv4Jo/edit#slide=id.g18587dd40_029 | 12:24 |
popey | okay, groovy | 12:25 |
* nik90 was watching the Wintergarten - Marble Machine video ;) | 12:25 | |
popey | nik90: approved! | 12:26 |
popey | haha | 12:26 |
nik90 | popey, its merged to trunk | 12:50 |
popey | excellent, I'll grab the click out of jenkins, test it and update the qa card. thank you! | 12:51 |
nik90 | np | 12:52 |
ays | there any official apis for gui wrapping? | 13:53 |
timp | faenil: I added the unit test to https://code.launchpad.net/~tpeeters/ubuntu-ui-toolkit/75-sectionsScroll/+merge/287620 | 14:44 |
faenil | timp: commneted | 15:02 |
timp | faenil: argh. 'moving' only changes when the USER drags or flicks... | 15:24 |
faenil | what do you mean | 15:25 |
faenil | moving changes when there's interaction | 15:25 |
timp | moving = dragging || flicking | 15:25 |
faenil | yes | 15:25 |
timp | faenil: right. That does not happen after you click the left arrow | 15:25 |
faenil | flicking comes after moving | 15:25 |
timp | so contentX is updated, but moving stays false | 15:25 |
timp | no, flicking is only true when the user flicks | 15:25 |
faenil | of course, remember that's why the header is flickering? | 15:25 |
faenil | (btw, do you remember you have to fix that in the header? :D ) | 15:26 |
timp | faenil: you commented this on my MR: I think here you should use a signal spy to make sure listview.moving never changes after you click | 15:26 |
faenil | timp: if flicking is true, moving is true as well. Flicking starts on mouseRelease | 15:26 |
timp | I implemented it, but it is useless because moving never becomes true | 15:26 |
faenil | timp: in fact, that's why I said "NEVER changes" | 15:26 |
faenil | because you don't want it to change, right? the arrow should be disabled | 15:26 |
timp | faenil: I changed the code so that the bug is there. I click the overlay mousearea, and the sections move to the right while they should not. But MOVING stays false. | 15:27 |
timp | even when the bug is there, moving never changes | 15:27 |
faenil | ah right. then just check the animation never starts | 15:27 |
timp | so I need to check contentX, like I was doing already | 15:27 |
timp | hmm | 15:28 |
timp | instead of movingChanged I can try contentXChanged | 15:28 |
faenil | yes | 15:28 |
faenil | as well | 15:28 |
timp | ok, that works. | 15:28 |
faenil | it would still be useful to have something like "scrolling" | 15:28 |
faenil | that is true when the animation is running or the flickable is moving | 15:28 |
faenil | and then you can rely on that | 15:28 |
timp | right. That would be the 'moving' that I would like to see implemented in qt :) | 15:29 |
timp | faenil: currently that is the same as checking that contentX changed | 15:29 |
timp | for the test | 15:29 |
faenil | yes, but you'll never see it because just that would require some kind of heuristic that associates changes in contentX to "moving" semantics :) | 15:29 |
faenil | and that sounds very, very flaky to implement | 15:30 |
timp | huh? | 15:30 |
timp | what I'll never see? | 15:30 |
timp | I have a signalspy that sees everything | 15:30 |
timp | faenil: I'll do it like this http://pastebin.ubuntu.com/15267419/ | 15:35 |
faenil | timp: looks ok | 15:36 |
faenil | timp: please add the mouse + release test as well | 15:36 |
timp | yes, will do. | 15:36 |
timp | faenil: for some reason, the SignalSpy does not see "started" or even "onRunningChanged" signals for the animation :s | 16:00 |
timp | faenil: do you see something wrong here? http://pastebin.ubuntu.com/15267662/ | 16:00 |
timp | faenil: the signals happen, I have an onStarted: print("STARTED") in the animation and that one shows | 16:01 |
timp | oh. animation=null | 16:02 |
faenil | I was about to say that | 16:02 |
faenil | you should always check that findChild returns a valid value | 16:02 |
timp | shit, an animation is not an Item I guess? | 16:02 |
faenil | you need findInvisibleChild there, I believe | 16:02 |
timp | faenil: right. That works. Thanks :) | 16:03 |
faenil | :) | 16:03 |
timp | faenil: ok, I pushed an update to the MR that adds both unit tests | 16:05 |
timp | https://code.launchpad.net/~tpeeters/ubuntu-ui-toolkit/75-sectionsScroll/+merge/287620 | 16:06 |
faenil | don't see it yet | 16:06 |
timp | faenil: the CI failure that is there was "error: device not found". Hopefully it will go well the next run | 16:08 |
timp | faenil: the diff is there now | 16:08 |
timp | lp was slow | 16:08 |
faenil | not yet | 16:08 |
timp | hmm, the changelog is there but the diff is still updating | 16:08 |
timp | it is still slow ;) | 16:08 |
faenil | :) | 16:08 |
clubuntu | hello | 19:04 |
clubuntu | Does anyone know me to indicate a detailed guide and in Italian on how to write an app for Ubuntu with Ubuntu sdk | 19:04 |
nik90 | balloons, ping | 19:06 |
renatu | nik90, hey, the lunar calendar settings is not persistent | 19:57 |
renatu | nik90, the link with the settings object is missing | 19:57 |
nik90 | renatu, hmm, I am unfamiliar with the lunar calendar implementation since it was done before I joined in. That said let me take a quick peek at the Mp where I revamped the settings page | 19:58 |
renatu | nik90, it is very easy to fix | 20:00 |
renatu | nik90, the code did not create the property on the settings object | 20:00 |
nik90 | renatu, oh | 20:00 |
nik90 | I suppose Gary Wang forgot about it | 20:01 |
dobey | rpadovani: ^^ can you maybe help clubuntu, if that person returns? :) | 20:08 |
rpadovani | dobey, there isn't any italian translations - translating technical docs is a waste of time, since they're updated so often. Also, you need someone who knows the topic | 21:28 |
dobey | rpadovani: sure, i figured as much. but you are italian right? maybe it will be faster for you to help :) | 21:29 |
dobey | my italian is very bad :) | 21:29 |
rpadovani | dobey, yap, we also have an irc chan, #ubuntu-it-dev, so if I'm away you can redirect him there :) | 21:29 |
dobey | rpadovani: ah ok. i wasn't aware of that channel. i'll remember it for future :) | 21:30 |
rpadovani | great! | 21:30 |
dobey | (by remember, i mean it's very likely i'll forget :P) | 21:30 |
rpadovani | of course :D | 21:31 |
=== salem_ is now known as _salem | ||
nik90 | ahayzen, ping | 23:44 |
ahayzen | nik90, pong | 23:44 |
nik90 | ahayzen, Do you know how to swipe delete an item using Autopilot for the new UC 1.3 ListItems? | 23:44 |
ahayzen | nik90, we've definitely done it hang on... | 23:45 |
nik90 | the ones I had for UC 1.1. and 1.2 are failing now | 23:45 |
ahayzen | nik90, we have this i think http://bazaar.launchpad.net/~music-app-dev/music-app/trunk/view/head:/tests/autopilot/music_app/__init__.py#L423 | 23:45 |
ahayzen | yeah that's what it hits here http://bazaar.launchpad.net/~music-app-dev/music-app/trunk/view/head:/tests/autopilot/music_app/tests/test_music.py#L589 | 23:46 |
nik90 | ahayzen, thnx. I will try that out | 23:47 |
ahayzen | no problem :-) | 23:47 |
=== javiercrowsoft1 is now known as javiercrowsoft |
Generated by irclog2html.py 2.7 by Marius Gedminas - find it at mg.pov.lt!