== Meeting information == * #ubuntu-touch-meeting: Ubuntu Touch Calculator app meeting, 13 Jun at 17:02 — 17:43 UTC * Full logs at [[http://ubottu.com/meetingology/logs/ubuntu-touch-meeting/2013/ubuntu-touch-meeting.2013-06-13-17.02.log.html]] == Meeting summary == ''LINK:'' https://code.launchpad.net/~dalius-sandbox/ubuntu-calculator-app/official-design ''LINK:'' https://dl.dropboxusercontent.com/u/50603128/calculator_design_notes.pdf ''LINK:'' https://dl.dropboxusercontent.com/u/50603128/Calculator_01.2.mp4 == Vote results == == Action items == * (none) == People present (lines said) == * daliusd (99) * popey (66) * boiko (11) * meetingology (3) == Full Log == 17:02 #startmeeting Ubuntu Touch Calculator app meeting 17:02 Meeting started Thu Jun 13 17:02:03 2013 UTC. The chair is popey. Information about MeetBot at http://wiki.ubuntu.com/meetingology. 17:02 17:02 Available commands: #accept #accepted #action #agree #agreed #chair #commands #endmeeting #endvote #halp #help #idea #info #link #lurk #meetingname #meetingtopic #nick #progress #rejected #replay #restrictlogs #save #startmeeting #subtopic #topic #unchair #undo #unlurk #vote #voters #votesrequired 17:02 Some links... 17:02 hi guys 17:03 blueprint: https://blueprints.launchpad.net/ubuntu-phone-commons/+spec/initial-calculator-development 17:03 bugs: https://bugs.launchpad.net/ubuntu-calculator-app/+bugs?orderby=-id&start=0 17:03 reviews: https://code.launchpad.net/ubuntu-calculator-app/+activereviews 17:03 burndown: http://status.ubuntu.com/coreapps-13.10/ 17:03 So, how we doing? 17:03 Basically this 17:04 Got some input on design 17:04 I have started applying design to app 17:04 (you can see branch if you want to) 17:04 ooh, show me ☻ 17:04 https://code.launchpad.net/~dalius-sandbox/ubuntu-calculator-app/official-design 17:05 that's nice 17:05 Currently missing: text annotation icon and delete icon 17:05 I don't like how design team propose to implement delete action 17:05 I don't like that very much because they propose to show button to users 17:05 what's the current proposal? 17:06 one minute 17:06 https://dl.dropboxusercontent.com/u/50603128/calculator_design_notes.pdf 17:06 https://dl.dropboxusercontent.com/u/50603128/Calculator_01.2.mp4 17:07 I will implement delete from history the way I think it should be done 17:07 so 3rd image on page 3? 17:07 (of the pdf) 17:07 Yes 17:08 the swipe to delete thing? 17:08 I will make "Drag further to Delete" and "Release to Delete" 17:08 yes 17:09 the video doesn't show delete 17:09 did you expect it to? 17:09 Video doesn't but 4th image in 3rd page shows buttons 17:09 that'll be a standard pattern across all apps I think 17:09 boiko, buttons? 17:10 daliusd: the swipe to delete, not sure to show buttons 17:10 i can see why the buttons are there 17:10 swipe to delete is OK 17:10 given the whole ui is swipe based, it would be quite easy to accidentally delete a calculation by swiping in from the left 17:10 as swipe in from left is used to bring the launcher out 17:11 you might be going for the launcher and accidentially delete your work 17:11 So I can make it swipe by half screen from the left 17:13 are they expecting it to stop there? 17:13 do you have a video showing the delete swipe action? 17:13 I don't 17:13 hmm 17:14 Whatever, I will do the way I think it should be done 17:14 heh 17:14 and somebody will need to test it with real device 17:14 i have one, and can test 17:14 Good :) 17:14 So if you will say - no 17:14 we will adapt design team proposal 17:14 so if you want to ping me at any time with a branch I can test 17:14 cool! 17:14 Thanks 17:14 np 17:14 OK 17:14 What else 17:15 Keyboard 17:15 video shows some cool stuff with keyboard 17:15 that is not yet available through SDK 17:16 swiping the keyboard left/right? 17:16 yes 17:16 and color of keyboard 17:16 so I have contacted one person that I was advised to contact 17:16 who was that? 17:16 and he said that custom keyboard will be available in the future 17:17 let me find it 17:17 Thomas Moenicke 17:17 ok 17:17 I was not given any estimates 17:17 I'll see if I can get some more detail 17:17 but I basically have promise that it will be possible to have custom keyboard with context 17:18 color override is planned as well but it is low priority as far as I understand 17:18 yeah, the SDK guys are working pretty hard at the moment, so it's on the list with all the other things 17:18 and some bad news 17:18 video shows nice 17:19 behavior when new operation starts 17:19 i would expect some consistency in colours between the designs from design team 17:19 when number scrolls slowly to top 17:19 I have added that (3 lines of code) 17:19 but that breaks tear-off of active calculation 17:19 It feels like Qt Quick bug actually 17:19 so I'm not sure what to do actually 17:20 is that in your branch? 17:20 No it is not in my branch 17:20 I can say what to add into which file 17:20 ok 17:21 You should add 17:21 Behavior on height { 17:21 SequentialAnimation{ 17:21 NumberAnimation { 17:21 duration: 50 17:21 } 17:21 } 17:21 } 17:21 before Divider 17:21 or before> Behavior on x 17:21 it doesn't really matter 17:21 you will get nice behavior as in video 17:22 but it will break swipe up to start new calculation 17:22 maybe I added it wrong, it didn't break for mew 17:22 -w 17:22 daliusd: is that inside a listview? 17:23 boiko - yes 17:23 or is it a repeater? 17:23 inside repeater in listview 17:24 daliusd: if it was just a listview, we could set the "add" transition on listview 17:24 problem is that Behavior or animation somehow affects atYEnd of Listview 17:25 daliusd: not sure it is the case 17:25 daliusd: http://qt-project.org/doc/qt-5.0/qtquick/qml-qtquick2-listview.html#add-prop 17:25 boiko, I know about transitions 17:25 popey, you say that swipe-up still works for you 17:25 with that change 17:25 daliusd: ah ok, just thought I'd point it :) 17:26 Repeater does not have transitions :-) 17:26 ListView already uses some 17:26 yes 17:26 * daliusd checks for updates 17:26 assuming i added it correctly 17:26 but that's on my pc, not on-device 17:27 popey, if it adds animation for operations then you have added it correctly 17:28 hmm 17:28 you might consider adding longer duration: like 200 17:28 ok 17:29 hah, 2000 is a bit big 17:29 yes, that works 17:29 OK strange now it works for me 17:29 I have not changed anything 17:30 must be sun spots or something ㋛ 17:30 :D 17:30 Let's test again 17:31 Now it doesn't work 17:32 * popey tries on a device 17:33 tried 6 times: 2 times work, 4 doesn't 17:33 seems broken on device too 17:33 i cant break off the result to start a new calculation 17:34 OK I will report Qt bug 17:34 They have access to source code as everyone else 17:34 nice to see a bit of colour on the device ㋛ 17:35 :) 17:35 I believe that's it from me 17:35 bugs for autopilot 17:35 are kind of blocked as well 17:35 yeah, lots of those 17:35 because if we will change keyboard 17:35 we will need to throw out all tests 17:36 even the swipe ones? 17:36 except those :) 17:36 heh 17:36 while no 17:36 even those 17:36 as you need keyboard 17:36 to create some test data 17:36 ah right 17:37 I am less concerned about the ap tests right now 17:37 focus for now would be implementing the design 17:37 I can find someone to help with AP later 17:38 ok 17:38 be good to see some of the design stuff landing 17:38 ? 17:39 in trunk, the work you're doing at the moment 17:39 Well when I will implement icons 17:39 I will request merge 17:40 sweet. 17:40 I didn't have anything else to raise right now. 17:41 any other issues you guys have? 17:41 No 17:41 As you know we've been dogfooding the devices 17:42 I was out having a meal last night.. we used the calculator app.. in the real world! 17:42 ☻ 17:42 to work out the bill 17:42 cool :) 17:42 and the restuarant didn't complain that we didn't pay enough, so good work there! :D 17:43 ok, lets wrap up then. thanks guys! 17:43 #endmeeting Generated by MeetBot 0.1.5 (http://wiki.ubuntu.com/meetingology)