**** BEGIN LOGGING AT Wed Mar 25 02:59:58 2015 Mar 25 07:39:03 Tofe: Ping Mar 25 07:42:55 Herrie: I just triggered a new build for you with the ofono-conf changes Mar 25 07:43:07 that should deactivate the ril modem for non ril-platforms Mar 25 07:43:36 OK Mar 25 07:43:45 YOu think that will enable bars on TP4G again? Mar 25 07:43:56 Herrie: http://pastebin.com/raw.php?i=Zx9RGv2G <- is that all you got in the journal? Mar 25 07:44:01 Herrie: no, it will not Mar 25 07:44:09 its just a first cleanup step Mar 25 07:45:09 Ah ok Mar 25 07:45:18 I'm happy to test other steps ;) Mar 25 07:47:34 Herrie: and the SIM card you've plugged in is PIN-locked? Mar 25 07:48:14 No doesn't have PIN Mar 25 07:48:26 Atleast not in legacy so I guess also not in LuneOS Mar 25 07:48:49 good Mar 25 07:48:56 you have time for a few things now? Mar 25 07:51:07 Need to run to office but can try there just type here Mar 25 07:51:17 Will pick up in 15-20th mins Mar 25 07:52:00 ok Mar 25 07:52:12 mdbus2 -s org.ofono Mar 25 07:52:33 mdbus2 -s org.ofono org.ofono.ConnectionContext.GetProperties Mar 25 07:52:48 sorry, that should have been Mar 25 07:52:54 mdbus2 -s org.ofono /ril_0/context1 org.ofono.ConnectionContext.GetProperties Mar 25 07:53:27 mdbus2 -s org.ofono /ril_0 org.ofono.SimManager.GetProperties Mar 25 07:53:33 mdbus2 -s org.ofono /ril_0 org.ofono.Modem.GetProperties Mar 25 07:53:50 please adjust to your setup (replace ril_0 with modem name) Mar 25 08:09:26 Let me see how adb is today. Mar 25 08:09:48 Hopefully will have my new laptop soon. SSD and memory still not delivered it seems :- Mar 25 08:09:50 :S Mar 25 08:09:55 :) Mar 25 08:11:01 They have last year's Lenovo X240 but without SSD and only 4GB mem. Now waiting for 8GB + SSD so can upgrade before migrating stuff :P Mar 25 08:12:13 Herrie|Veer: pongĀ² Mar 25 08:12:39 morphis: I saw the issue report you created, was is on N4? Mar 25 08:12:50 it* Mar 25 08:13:09 Tofe: Got rotation lock working in general, just need a little help from you on how to have it proper Mar 25 08:13:09 Tofe: yes Mar 25 08:13:38 It works with normal portrait on N4 but when it's rotated I can't get it locked in rotated state Mar 25 08:13:57 Let me update my code and put it somewhere Mar 25 08:16:13 Herrie|Veer: ok Mar 25 08:16:16 great Mar 25 08:45:03 Tofe: https://github.com/Herrie82/luna-next-cardshell/commit/3269bee2ec16d60e899ea3727934ab217cf1267c Mar 25 08:46:10 The transform was a trial for locking rotated screen. It works with just the 0 orientationAngle when screen not rotated. Mar 25 08:47:14 the modifications on transform and Behavior can be avoided, they are useless here Mar 25 08:47:38 OK Mar 25 08:47:56 Should we focus on just the orientationAngle then or... ? Mar 25 08:48:17 yes Mar 25 08:49:04 so, what you need is simply to replace "0" with the remembered rotated value, isn't it Mar 25 08:49:33 Tofe: In case it's rotationlocked I replaced it with 0 for now Mar 25 08:49:43 Which works when screen not rotated Mar 25 08:50:00 But not when rotated because it will rotate it back then. Mar 25 08:50:57 Currently, what do you want to achieve ? Just lock rotation, and not especially remember it across a reboot? Mar 25 08:51:04 We should later also care about the orientation value stored (but that's at startup) Mar 25 08:52:15 For now just rotation lock in each orientation. For future the screen needs to rotate based on pref value for orientation that can be found in the luna prefs somewhere, display accordingly and lock if neccessary Mar 25 08:53:47 Legacy remembers orientation across reboots by storing it Mar 25 08:53:53 Let me find the key for it Mar 25 08:54:08 well, as is I can propose something to you Mar 25 08:54:35 Rotation lock in all orientations would be a good start Mar 25 08:55:17 ok, so create a new real property __lockedRotationAngle: 0 Mar 25 08:56:08 create a Connections { target: properties; onRotationLockedChanged: if( properties.rotationLocked ) __lockedRotationAngle = orientationAngle; } Mar 25 08:56:23 then replace your "0" with __lockedRotationAngle Mar 25 08:56:34 that's it Mar 25 08:56:42 OK :) Mar 25 08:57:00 Will give it a go when ADB allows otherwise tonight :P Mar 25 08:57:21 :) Mar 25 08:57:24 If we now can fix the hanging of LNC we're pretty OK to merge already I guess Mar 25 08:57:48 yes, that's be great to fix that Mar 25 08:58:04 unfortunately this week-end I won't be near a computer Mar 25 08:58:15 I think nizovn is working on that :) Mar 25 08:58:19 Tofe: Same here :P Mar 25 08:58:21 ah, there's still the vkbd to fix too Mar 25 08:58:56 Yeah Mar 25 08:58:59 True Mar 25 08:59:00 I think the whole rotation management inside the main qml file has to be reviewed Mar 25 09:01:58 I needed to add the prefs to the orientationHelper, which might not be optimal either? Mar 25 09:14:17 Herrie|Veer: ah, well, maybe could add a property bool rotationLocked, and set it from the main qml file eventually. But really I'm not sure it would make much sense Mar 25 09:16:05 Yeah it'd fine like this in general Mar 25 09:51:29 Tofe: where should I put the Connections? It tells me target: properties is not defined when I add it after Behavior Mar 25 09:53:27 ah sorry it's preferences, not properties, I've written too quickly :) Mar 25 09:55:46 Does the location matter of the Connections? Mar 25 09:56:44 not really, just put it wherever makes more sense to you Mar 25 09:59:28 ah it should be preferences.rotationLock instead of properties.rotationLocked I guess? Mar 25 10:04:01 yes Mar 25 10:05:13 Hmmz still doesn't work... Mar 25 10:05:37 When already rotated and locking it will rotate back to original portrait position Mar 25 10:06:19 can you push the updated version? Mar 25 10:06:41 Yeah gimme a minute Mar 25 10:07:49 There now Mar 25 10:08:05 Did it with GH web interface so don't mind whitespac diffs Mar 25 10:08:07 onRotationLockedChanged -> onRotationLockChanged Mar 25 10:08:37 I've put typos everywhere :) Mar 25 10:09:46 You needed more coffee Mar 25 10:09:56 :P Mar 25 10:10:23 Any way to kill QPA? Will save me rebooting N4 all the time when I push update LOL Mar 25 10:11:22 Works now :D Mar 25 10:13:03 ok great ! Mar 25 10:13:36 killall luna-next && systemctl restart sensorfwd Mar 25 10:16:06 OK great Mar 25 10:29:39 Tofe did PR for master, including indicators, leaving out the OrientationHelper.qml for now until QPA is sorted Mar 25 10:50:02 Herrie|Veer: ok thanks Mar 25 10:55:58 ... is the webOS / libhybris port deprecated? Looks a lot different, than the one checked out. Therefore I think, it is deprecated. ... and the change was around the 20.01.2014... ? Mar 25 10:57:48 sewziq: We're using a quite old version of libhybris afaik and just cherry pick fixes we need Mar 25 10:57:58 But Tofe/morphis can tell you more. Mar 25 10:58:19 I think we're overdue an update but focus has been elsewhere ;) Mar 25 11:02:20 Herrie: Thanks :-) I wonder, because the one which is check out to build the "Build" looks different to the libhybris github source under webOS-ports... so that looks to me, that the Makefile for bitbaking the zip fetches the source-code from another source than webOS-ports... (I have to find the correct receipe... it's a bit complicated currently, it takes time to get familiar with...) Mar 25 11:03:03 Herrie|Veer: that isn't true Mar 25 11:03:05 we're very close to upstream Mar 25 11:03:07 just with one or two patches on top of a bit older upstream version Mar 25 11:03:21 sewziq: no, it fetches it from github.com/webOS-ports/libhybris branch webOS-ports/master Mar 25 11:08:07 morphis: ah! I looked into "master" instead of webOS-ports/master... Thanks! Mar 25 11:11:08 :) Mar 25 11:18:34 morphis: OK I was wrong then LOL :P Mar 25 11:18:41 Good you set me straight :) Mar 25 11:20:09 morphis: Seems ADB on TP doesn't work on laptop, only with N4 so will check tonight Mar 25 12:32:33 morphis: Did PR for Dizzy for LNC update Mar 25 13:02:37 Herrie: good, will wait then Mar 25 13:02:39 will pick the PR Mar 25 13:28:13 Tofe: you ahve time to look at the bug I raised this morning? Mar 25 14:00:23 morphis: The error is thrown from qeglfswindow.cpp->resetSurface() I think. But in which one should I have a look for the Nexus7? Could you give me a tip? in grouper-webos-linux...hwcomposer...? (Because I shouldn't use hwcomposer...) Mar 25 14:19:44 that is the one from qtbase Mar 25 14:19:56 but in the end you will end at the eglCreateSurface call Mar 25 16:29:27 please help. I tried some changes (just to see if I'm on the right track...) in files under webos-ports/tmp-glibc/work ... but if I run the bitbaking process, the file is not recompiled... could you imagine, what I did wrong? Mar 25 16:36:41 sewziq: you need to recompile modified package, like: MACHINE=grouper bb luna-next -f -c compile Mar 25 16:43:10 nizovn: ah, and after that again a "MACHINE=grouper bb luna-dev-package" to rebuild the install-file. Thanks a lot! :-) (is there somewhere a list of the package-names?) Mar 25 16:49:24 sewziq: seems MACHINE=grouper bb -p -s Mar 25 16:52:25 nizovn: :-) Thanks! Mar 25 16:57:52 sewziq: btw. you can also just push the single file you've rebuild Mar 25 16:58:18 sewziq: also see http://webos-ports.org/wiki/Building_a_component_in_OE Mar 25 17:14:50 morphis: thanks! :-) Mar 25 17:20:18 morphis: I don't replay it with my build from friday Mar 25 17:21:07 I open memos, click on text zone, it brings vkb, then clic on gesturearea, it works Mar 25 17:21:54 hm Mar 25 17:21:57 I have my orientation stuff installed on the N4, but still, I don't think it would be related Mar 25 17:22:04 maybe it's only my local build with 5.4.1 Mar 25 17:22:19 Tofe: see morphis/dizzy Mar 25 17:22:42 you applied the patch about window coordinates in qtwayland, right? Mar 25 17:25:20 which one? Mar 25 17:25:25 ah but we have our own branch now, I forgot Mar 25 17:25:38 so it must be ok Mar 25 17:25:40 :) Mar 25 17:28:23 morphis: you can't get rid of the vkb by clicking on a non-text zone? Mar 25 17:28:49 and it happens both for enyo and qml apps? Mar 25 17:32:15 Tofe: I can get rid of the vkb Mar 25 17:32:23 yeah and happens for both Mar 25 17:59:36 ok, so it would be so that the vkbd mouse area overlaps the gesture area somehow... Mar 25 18:00:01 or can you still take screenshots? Mar 25 18:03:51 Tofe: the gesture area is still visible Mar 25 18:03:57 but swiping on it is not possible Mar 25 18:06:13 ok, so it seems to be a window positionning inconsistency Mar 25 18:06:31 maybe a regression in qtwayland Mar 25 18:07:02 oh, but wait Mar 25 18:07:15 for qtwayland, don't you need to rebase it with Qt 5.4.1 ? Mar 25 18:19:05 morphis: ping Mar 25 18:28:54 morphis: Can you give me write access on luneos-components or create a Mochi branch where I can push the WIP stuff to? Mar 25 18:31:38 Herrie|Veer: sure Mar 25 18:32:00 Herrie|Veer: but you can still fork it and push there :) Mar 25 18:34:56 Yeah have it in a branch on my fork already. It's very much WIP still so don't want to PR against master Mar 25 18:37:48 Herrie|Veer: https://github.com/Herrie82/luneos-components/tree/Mochi? Mar 25 18:38:33 Herrie|Veer: btw. you added some files you shouldn't have added :) Mar 25 18:51:38 Yeah Mar 25 18:52:03 That's the one. I just pushed files Benjamin emailed. Didn't check or cleanup for now Mar 25 19:00:40 He doesn't have his GH mojo up to speed yet. Some stuff he needs for building on Mac it seems. Mar 25 19:02:38 Herrie|Veer: PR it against the new pending-moch-work branch Mar 25 19:03:33 ok Mar 25 19:04:15 We'll clean it up a bit more going forward just want to check with you and Tofe if Benjamin is on right track etc ;) Mar 25 19:08:23 basically looks ok Mar 25 19:08:35 I would be a bit picky about the code style but .. :) Mar 25 19:10:27 You mean the coding itself or spacing etc? Mar 25 19:10:39 Tofe: looks like the problem isn't even bound to the keyboard Mar 25 19:10:45 got it in settings too now Mar 25 19:11:06 I didn't review yet, just quickly pushed to my GH before running out of office Mar 25 19:11:18 Herrie|Veer: spacing, indentation etc. Mar 25 19:11:32 Ah that's a quick reformat :P Mar 25 19:11:56 QTCreator can do that (usually) but crashes sometimes Mar 25 19:12:04 I saw that as well indeed :P Mar 25 19:17:55 But that's mainly user habit/preference ;) I don't code too much so I can easily adjust :P Mar 25 20:13:02 morphis: TP4G: http://pastebin.com/mWEKAAND Mar 25 20:13:32 mdbus2 -s org.ofono /mbm_0/context1 org.ofono.ConnectionContext.GetProperties doesn't work by the way Mar 25 20:14:18 Seems like modem is offline Mar 25 20:42:03 Set modem to online, still no bars it seems Mar 25 20:43:02 I have a mbm_0/context1, mbm_0/context2 and mbm_0/operator and mbm_0/operator/20404 now though! Mar 25 21:20:16 cellular is available via connmanctl and enabled Mar 25 21:20:23 Just not connected Mar 25 21:33:20 connmanctl connect cellular_204049010165541_context1: Error /net/connman/service/cellular_204049010165541_context1: Operation aborted **** ENDING LOGGING AT Thu Mar 26 02:59:58 2015