{ "id": "120471", "key": "TIMOB-15353", "fields": { "issuetype": { "id": "1", "description": "A problem which impairs or prevents the functions of the product.", "name": "Bug", "subtask": false }, "project": { "id": "10153", "key": "TIMOB", "name": "Titanium SDK/CLI", "projectCategory": { "id": "10100", "description": "Titanium and related SDKs used in application development", "name": "Client" } }, "fixVersions": [ { "id": "15707", "description": "2013 Sprint 23", "name": "2013 Sprint 23", "archived": true, "released": true, "releaseDate": "2013-11-15" }, { "id": "15708", "description": "2013 Sprint 23 API", "name": "2013 Sprint 23 API", "archived": true, "released": true, "releaseDate": "2013-11-15" }, { "id": "14982", "description": "Release 3.2.0", "name": "Release 3.2.0", "archived": false, "released": true, "releaseDate": "2013-12-19" } ], "resolution": { "id": "1", "description": "A fix for this issue is checked into the tree and tested.", "name": "Fixed" }, "resolutiondate": "2013-11-14T23:23:19.000+0000", "created": "2013-09-26T00:31:58.000+0000", "priority": { "name": "Critical", "id": "1" }, "labels": [ "in-call", "ios7", "position", "statusbar", "triage" ], "versions": [ { "id": "15593", "description": "Release 3.1.3", "name": "Release 3.1.3", "archived": true, "released": true, "releaseDate": "2013-09-18" } ], "issuelinks": [ { "id": "32734", "type": { "id": "10003", "name": "Relates", "inward": "relates to", "outward": "relates to" }, "inwardIssue": { "id": "121150", "key": "TIMOB-15492", "fields": { "summary": "iOS7: incorrect title bar height when switching fullscreen to regular tab", "status": { "description": "The issue is considered finished, the resolution is correct. Issues which are closed can be reopened.", "name": "Closed", "id": "6", "statusCategory": { "id": 3, "key": "done", "colorName": "green", "name": "Done" } }, "priority": { "name": "Medium", "id": "3" }, "issuetype": { "id": "1", "description": "A problem which impairs or prevents the functions of the product.", "name": "Bug", "subtask": false } } } } ], "assignee": { "name": "vduggal", "key": "vduggal", "displayName": "Vishal Duggal", "active": false, "timeZone": "America/Los_Angeles" }, "updated": "2015-05-30T13:09:20.000+0000", "status": { "description": "The issue is considered finished, the resolution is correct. Issues which are closed can be reopened.", "name": "Closed", "id": "6", "statusCategory": { "id": 3, "key": "done", "colorName": "green", "name": "Done" } }, "components": [ { "id": "10206", "name": "iOS", "description": "iOS Platform" } ], "description": "h4. Problem Description \r\nWhen the \"in-call status\" bar is showing, new windows and then the root window change their top position incorrectly. \r\n\r\nTry this test which opens subsequent windows in a NavigationWindow (with random colors). \r\n\r\nh4. Steps to reproduce\r\nIn the simulator, open some windows, then in the simulator menu, go to Hardware > Toggle In-Call Status Bar.\r\n\r\nThe window moves down, as expected at first. Now open some more windows, and you should see the windows showing incorrectly, despite being set at fullscreen:false \r\n\r\nNow go back to the root window and see that it's wrong too. \r\n\r\nIf your app can re-orientate in tiapp.xml, it seems to reset after being upside down. \r\n\r\nAlso try turning the bar off and on again. \r\n\r\nh4. Test Case \r\n{code}\r\n/* \r\n \r\n Fun with NavigationWindow!\r\n \r\n creates random coloured windows which create buttons which create random coloured windows which create buttons which...\r\n you get the picture ;)\r\n \r\n Required : Titanium SDK 3.1.3 or higher.\r\n \r\n Kosso\r\n \r\n*/\r\n \r\n \r\nfunction randomColor(){\r\n return '#'+(function lol(m,s,c){return s[m.floor(m.random() * s.length)] + (c && lol(m,s,c-1));})(Math,'0123456789ABCDEF',4);\r\n}\r\n \r\n// Works with Release 3.1.3 and later\r\nvar rootWin = Ti.UI.createWindow({\r\n\t\tbackgroundColor:randomColor(),\r\n\t\tfullscreen:false,\r\n\t\tbarColor:randomColor(),\r\n\t\tnavTintColor:randomColor(),\r\n\t\ttranslucent:false\r\n\t});\r\n \r\n \r\n \r\nvar b1 = Ti.UI.createButton(\r\n\t{\r\n\t\ttitle:'NEW',\r\n\t\tborderColor:'black',\r\n\t\tborderWidth:2,\r\n\t\twidth:200,\r\n\t\theight:60,\r\n\t\tborderRadius:30,\r\n\t\ttintColor:'red',\r\n\t\tbackgroundColor:'white'\r\n\t});\r\n\t\r\nb1.addEventListener('click',function(){ \r\n\tnavWin.openWindow(buildNewWindow({\r\n\t\tbackgroundColor:randomColor(),\r\n\t\tfullscreen:false,\r\n\t\tbarColor:randomColor(),\r\n\t\tnavTintColor:randomColor(),\r\n\t\ttranslucent:true\t\t\r\n\t})); \r\n});\r\n \r\nrootWin.add(b1);\r\n \r\nvar navWin = Ti.UI.iOS.createNavigationWindow({window:rootWin});\r\n \r\n \r\nfunction buildNewWindow(args){\r\n\t\r\n\tvar _self = Ti.UI.createWindow(args);\r\n\tvar btn_new = Ti.UI.createButton(\r\n\t{\r\n\t\ttitle:'NEW',\r\n\t\ttop:20,\r\n\t\tborderColor:'black',\r\n\t\tborderWidth:2,\r\n\t\twidth:200,\r\n\t\theight:60,\r\n\t\tborderRadius:30,\r\n\t\ttintColor:'red',\r\n\t\tbackgroundColor:'white'\r\n\t});\t\r\n\t_self.add(btn_new);\r\n\t\r\n\tbtn_new.addEventListener('click', function(){\r\n\t\tnavWin.openWindow(buildNewWindow({\r\n\t\t\t\t\t\t\t\tbackgroundColor:randomColor(),\r\n\t\t\t\t\t\t\t\tfullscreen:false,\r\n\t\t\t\t\t\t\t\tbarColor:randomColor(),\r\n\t\t\t\t\t\t\t\tnavTintColor:randomColor(),\r\n\t\t\t\t\t\t\t\ttranslucent:true\r\n\t\t\t\t\t\t\t}\r\n\t\t\t\t\t\t)\r\n\t\t\t\t\t); \r\n\t});\r\n \r\n\tvar btn_back = Ti.UI.createButton(\r\n\t{\r\n\t\ttitle:'< BACK',\r\n\t\tbottom:40,\r\n\t\tborderColor:'white',\r\n\t\tborderWidth:2,\r\n\t\twidth:200,\r\n\t\theight:60,\r\n\t\tborderRadius:30,\r\n\t\ttintColor:'white',\r\n\t\tbackgroundColor:'#333'\r\n\t});\t\r\n\t_self.add(btn_back);\r\n\t\r\n\tbtn_back.addEventListener('click', function(){\r\n\t\tnavWin.closeWindow(_self);\r\n\t});\t\r\n\t\r\n\treturn _self;\r\n\t\r\n}\r\n \r\n \r\nnavWin.open();\r\n\r\n\r\n{code}\r\n\r\n\r\n", "attachment": [ { "id": "43454", "filename": "NatigationBarIncomingPhoneCall.zip", "author": { "name": "penrique", "key": "penrique", "displayName": "Pedro Enrique", "active": false, "timeZone": "America/Los_Angeles" }, "created": "2013-10-25T17:55:37.000+0000", "size": 75967, "mimeType": "application/zip" } ], "flagged": false, "summary": "iOS7: Window moves incorrectly when in-call/hotspot/etc. status bar is showing", "creator": { "name": "kosso", "key": "kosso", "displayName": "kosso", "active": true, "timeZone": "Europe/London" }, "subtasks": [], "reporter": { "name": "kosso", "key": "kosso", "displayName": "kosso", "active": true, "timeZone": "Europe/London" }, "environment": "iOS7 Ti 3.1.3", "comment": { "comments": [ { "id": "273151", "author": { "name": "kosso", "key": "kosso", "displayName": "kosso", "active": true, "timeZone": "Europe/London" }, "body": "I think this should be marked as urgent. Many of my testers use their devices as hotspots and are having to deal with this issue. \r\n\r\nIt seems to reset if the device is re-oriented.", "updateAuthor": { "name": "kosso", "key": "kosso", "displayName": "kosso", "active": true, "timeZone": "Europe/London" }, "created": "2013-09-27T14:38:45.000+0000", "updated": "2013-09-27T14:38:45.000+0000" }, { "id": "273172", "author": { "name": "ingo", "key": "ingo", "displayName": "Ingo Muschenetz", "active": true, "timeZone": "America/Los_Angeles" }, "body": "[~kosso] We'll investigate. All--is there a reason no severity was attached?", "updateAuthor": { "name": "ingo", "key": "ingo", "displayName": "Ingo Muschenetz", "active": true, "timeZone": "America/Los_Angeles" }, "created": "2013-09-27T16:09:41.000+0000", "updated": "2013-09-27T16:09:41.000+0000" }, { "id": "273485", "author": { "name": "kosso", "key": "kosso", "displayName": "kosso", "active": true, "timeZone": "Europe/London" }, "body": "No reason other than I missed the option to set one. \r\n\r\nThis is urgent for me and my apps. I'm still waiting for a fix. \r\n\r\nI see it's now set to 'High' severity.\r\n\r\n", "updateAuthor": { "name": "kosso", "key": "kosso", "displayName": "kosso", "active": true, "timeZone": "Europe/London" }, "created": "2013-10-01T13:05:27.000+0000", "updated": "2013-10-01T13:05:27.000+0000" }, { "id": "273956", "author": { "name": "kosso", "key": "kosso", "displayName": "kosso", "active": true, "timeZone": "Europe/London" }, "body": "Here's also a simpler test which shows that something VERY wrong is going on with the positioning of the root window/navWindow/(also tabGroup behaves the same) when the device is re-oriented (as well as when opening windows) WHEN the In-Call status bar is showing. \r\n\r\n\r\nBe sure to allow for orientation changes in the tiapp.xml \r\n\r\nSimply run this app.js code, activate the In-Call status bar and turn your device upside down and back upright again. \r\n\r\napp.js\r\n\r\n{code}\r\n\r\nvar rootWin = Ti.UI.createWindow({\r\n backgroundColor:'#ff9900',\r\n fullscreen:false,\r\n title:'test window',\r\n barColor:'blue',\r\n navTintColor:'#111',\r\n translucent:false\r\n });\r\n\r\nvar top_marker = Ti.UI.createLabel({\r\n\ttext:'this is the top',\r\n\ttop:0,\r\n\tborderWidth:4,\r\n\tborderColor:'#000',\r\n\tleft:0,\r\n\twidth:200,\r\n\theight:Ti.UI.SIZE\r\n}); \r\n \r\nrootWin.add(top_marker);\r\n\r\nvar navWin = Ti.UI.iOS.createNavigationWindow({window:rootWin});\r\n\r\nnavWin.open();\r\n\r\n\r\n{code}\r\n\r\n\r\n\r\n\r\n\r\n\r\n", "updateAuthor": { "name": "kosso", "key": "kosso", "displayName": "kosso", "active": true, "timeZone": "Europe/London" }, "created": "2013-10-06T17:54:14.000+0000", "updated": "2013-10-06T17:55:23.000+0000" }, { "id": "274975", "author": { "name": "kosso", "key": "kosso", "displayName": "kosso", "active": true, "timeZone": "Europe/London" }, "body": "Any idea when this is going to be resolved. It's pretty serious imho, since every iOS7 app will be affected by the broken window positioning when the In-call status bar is showing. \r\n\r\nI've had people waiting for an update for a couple weeks now - which does't look good for anyone. \r\n\r\nSorry for urgency, but it seems pretty crucial to everyone. \r\n\r\n\r\n\r\n", "updateAuthor": { "name": "kosso", "key": "kosso", "displayName": "kosso", "active": true, "timeZone": "Europe/London" }, "created": "2013-10-14T17:45:13.000+0000", "updated": "2013-10-14T17:45:13.000+0000" }, { "id": "276122", "author": { "name": "kosso", "key": "kosso", "displayName": "kosso", "active": true, "timeZone": "Europe/London" }, "body": "Is this going to get fixed for 3.1.3 at all?\r\n\r\nI really do NOT want to have to wait for 3.2.0 to have this fixed. \r\n\r\nSurely it's an 'easy' fix? It seems like something simple has not been taken into account when adjusting the window frame. \r\n\r\nI'm now one month late with an app update for iOS7 due to this serious bug. \r\n\r\n\r\n\r\n\r\n", "updateAuthor": { "name": "kosso", "key": "kosso", "displayName": "kosso", "active": true, "timeZone": "Europe/London" }, "created": "2013-10-22T11:09:36.000+0000", "updated": "2013-10-22T11:09:36.000+0000" }, { "id": "276150", "author": { "name": "ingo", "key": "ingo", "displayName": "Ingo Muschenetz", "active": true, "timeZone": "America/Los_Angeles" }, "body": "[~kosso] We don't plan on having another official 3.1.X release, but if we fix this in the CI builds of 3.1.X, would you be able to grab the fix from there?", "updateAuthor": { "name": "ingo", "key": "ingo", "displayName": "Ingo Muschenetz", "active": true, "timeZone": "America/Los_Angeles" }, "created": "2013-10-22T15:30:44.000+0000", "updated": "2013-10-22T15:30:44.000+0000" }, { "id": "276153", "author": { "name": "kosso", "key": "kosso", "displayName": "kosso", "active": true, "timeZone": "Europe/London" }, "body": "Absolutely! :)\r\n\r\n\r\nAnd 'Yes Please!' ", "updateAuthor": { "name": "kosso", "key": "kosso", "displayName": "kosso", "active": true, "timeZone": "Europe/London" }, "created": "2013-10-22T15:39:16.000+0000", "updated": "2013-10-24T18:09:27.000+0000" }, { "id": "276693", "author": { "name": "penrique", "key": "penrique", "displayName": "Pedro Enrique", "active": false, "timeZone": "America/Los_Angeles" }, "body": "We can only reproduce this on upside down mode. Tested with native app and reproduced the same issue. This seems to be an Apple bug.\n\nMarking as not our bug.", "updateAuthor": { "name": "penrique", "key": "penrique", "displayName": "Pedro Enrique", "active": false, "timeZone": "America/Los_Angeles" }, "created": "2013-10-24T22:10:06.000+0000", "updated": "2013-10-24T22:10:06.000+0000" }, { "id": "276782", "author": { "name": "kosso", "key": "kosso", "displayName": "kosso", "active": true, "timeZone": "Europe/London" }, "body": "If you use either of the test codes above, with the phone the right way up and open and close new windows with the in-call status bar showing, our new window is incorrectly placed. \r\n\r\nTurning it upside down and back again seems to be the only way to fix it (until the next window is opened). Be sure to also try this with the in-call bar showing then close the app completely and re-open it. \r\n\r\nAlso, the second test code will show that when the in-call status is toggled on, our app window is hidden behind it, instead of being pushed down, as it should. As you say, you might see it OK and not the right way up, but try this : While showing the bar on the device (ie: turn your hotspot on if you can) go and close the app totally and re-open it. You will see the our app window behind the hotspot status bar. Again, inverting the device and back again will fix it. \r\n\r\n\r\nWhich version/branch/hash Titanium SDK are you testing this against? \r\n\r\nSince the Ti CLI 3.2.0 does not yet correctly work with detecting the Android SDKs (bug filed), I can't possibly use Titanium 3.2.0 yet. \r\n\r\n", "updateAuthor": { "name": "kosso", "key": "kosso", "displayName": "kosso", "active": true, "timeZone": "Europe/London" }, "created": "2013-10-25T14:49:02.000+0000", "updated": "2013-10-25T14:49:02.000+0000" }, { "id": "276786", "author": { "name": "kosso", "key": "kosso", "displayName": "kosso", "active": true, "timeZone": "Europe/London" }, "updateAuthor": { "name": "kosso", "key": "kosso", "displayName": "kosso", "active": true, "timeZone": "Europe/London" }, "created": "2013-10-25T15:24:02.000+0000", "updated": "2013-10-25T15:24:02.000+0000" }, { "id": "276789", "author": { "name": "ingo", "key": "ingo", "displayName": "Ingo Muschenetz", "active": true, "timeZone": "America/Los_Angeles" }, "body": "[~kosso] I think the suggestion was that it may be a bug, but that the bug was reproducible identically in a native application, so it's an Apple bug we can't do much about until they fix it.", "updateAuthor": { "name": "ingo", "key": "ingo", "displayName": "Ingo Muschenetz", "active": true, "timeZone": "America/Los_Angeles" }, "created": "2013-10-25T15:44:22.000+0000", "updated": "2013-10-25T15:44:22.000+0000" }, { "id": "276793", "author": { "name": "kosso", "key": "kosso", "displayName": "kosso", "active": true, "timeZone": "Europe/London" }, "body": "Which 'native apps' were tested? I've just tried most of Apple's own apps with the status bar showing and all work fine as expected (try ones which allow for full-reorientation eg: iMovie) \r\n\r\nYou can see the top of the window re-adjust itself in the 'native' apps I tried. \r\n\r\nOur implementation is quite simply, broken. I'd say it's 'our' bug : imho. ", "updateAuthor": { "name": "kosso", "key": "kosso", "displayName": "kosso", "active": true, "timeZone": "Europe/London" }, "created": "2013-10-25T15:55:58.000+0000", "updated": "2013-10-25T15:57:12.000+0000" }, { "id": "276794", "author": { "name": "ingo", "key": "ingo", "displayName": "Ingo Muschenetz", "active": true, "timeZone": "America/Los_Angeles" }, "body": "[~penrique] Can you post the native application we used to test so [~kosso] can try for himself? [~kosso], what's an example native app you used?", "updateAuthor": { "name": "ingo", "key": "ingo", "displayName": "Ingo Muschenetz", "active": true, "timeZone": "America/Los_Angeles" }, "created": "2013-10-25T15:59:25.000+0000", "updated": "2013-10-25T15:59:25.000+0000" }, { "id": "276798", "author": { "name": "kosso", "key": "kosso", "displayName": "kosso", "active": true, "timeZone": "Europe/London" }, "body": "I tried: \r\nMail (allows portrait and landscape) \r\nMaps (allows portrait and landscape) \r\nContacts (allows portrait and landscape) \r\niMovie (allows all orientations)\r\niTunes (portrait only)\r\nFacebook.\r\n\r\n+ others which are portrait only.\r\n\r\n.. all work as expected. \r\n\r\nAlso, if you try the first test case app.js but edit tiapp.xml to ONLY allow Ti.UI.PORTRAIT you will find the app open with the window placed incorrectly and n amount of re-orientation will fix it. \r\n\r\n\r\n\r\n\r\n", "updateAuthor": { "name": "kosso", "key": "kosso", "displayName": "kosso", "active": true, "timeZone": "Europe/London" }, "created": "2013-10-25T16:20:00.000+0000", "updated": "2013-10-25T16:20:00.000+0000" }, { "id": "276812", "author": { "name": "penrique", "key": "penrique", "displayName": "Pedro Enrique", "active": false, "timeZone": "America/Los_Angeles" }, "body": "Kosso, we could only reproduce this on upside down orientation. I have a attached the native simple app I created which shows what we think is an apple bug. Can you upload you simple Titanium project? (without the build folder). I want to make sure we're testing the same exact thing.", "updateAuthor": { "name": "penrique", "key": "penrique", "displayName": "Pedro Enrique", "active": false, "timeZone": "America/Los_Angeles" }, "created": "2013-10-25T17:55:37.000+0000", "updated": "2013-10-25T17:55:37.000+0000" }, { "id": "276822", "author": { "name": "kosso", "key": "kosso", "displayName": "kosso", "active": true, "timeZone": "Europe/London" }, "body": "The code I'm testing is the same Test Case app.js code at the top of this bug report. Just use that with a fresh app project. \r\n\r\nIt might be worth testing if it's different with a TabGroup too, as opposed to my test code which uses the new NavigationWindow.\r\n\r\n\r\n", "updateAuthor": { "name": "kosso", "key": "kosso", "displayName": "kosso", "active": true, "timeZone": "Europe/London" }, "created": "2013-10-25T18:24:59.000+0000", "updated": "2013-10-25T18:24:59.000+0000" }, { "id": "276830", "author": { "name": "kosso", "key": "kosso", "displayName": "kosso", "active": true, "timeZone": "Europe/London" }, "body": "Try this test app project : https://dl.dropboxusercontent.com/u/60353877/testing.zip\r\n\r\n", "updateAuthor": { "name": "kosso", "key": "kosso", "displayName": "kosso", "active": true, "timeZone": "Europe/London" }, "created": "2013-10-25T18:51:48.000+0000", "updated": "2013-10-25T18:51:48.000+0000" }, { "id": "278763", "author": { "name": "kosso", "key": "kosso", "displayName": "kosso", "active": true, "timeZone": "Europe/London" }, "body": "btw: I have noticed that the behaviour changes depending on the setting of 'UIViewControllerBasedStatusBarAppearance' which I have needed to use in tiapp.xml for on e of my apps.\r\n\r\n{code}\r\n UIViewControllerBasedStatusBarAppearance\r\n \r\n{code}\r\n\r\n\r\nIt seems to have less issues (and more like how you described it, in that the bug appears only when upside down) when this is set to true. \r\n\r\n\r\n\r\n\r\n", "updateAuthor": { "name": "kosso", "key": "kosso", "displayName": "kosso", "active": true, "timeZone": "Europe/London" }, "created": "2013-11-08T11:31:05.000+0000", "updated": "2013-11-08T11:31:05.000+0000" }, { "id": "279217", "author": { "name": "ingo", "key": "ingo", "displayName": "Ingo Muschenetz", "active": true, "timeZone": "America/Los_Angeles" }, "body": "[~kosso] Is there a reason you have to set it to false?", "updateAuthor": { "name": "ingo", "key": "ingo", "displayName": "Ingo Muschenetz", "active": true, "timeZone": "America/Los_Angeles" }, "created": "2013-11-12T21:43:33.000+0000", "updated": "2013-11-12T21:43:33.000+0000" }, { "id": "279222", "author": { "name": "kosso", "key": "kosso", "displayName": "kosso", "active": true, "timeZone": "Europe/London" }, "body": "To try and deal with this issue. \r\n\r\nIt seems to mitigate the original issue down to only occurring when upside down. \r\n\r\n", "updateAuthor": { "name": "kosso", "key": "kosso", "displayName": "kosso", "active": true, "timeZone": "Europe/London" }, "created": "2013-11-12T22:10:06.000+0000", "updated": "2013-11-12T22:10:06.000+0000" }, { "id": "279224", "author": { "name": "ingo", "key": "ingo", "displayName": "Ingo Muschenetz", "active": true, "timeZone": "America/Los_Angeles" }, "body": "Wait--so you have _less_ issues when you set it to _false_ or to _true_? From above it sounded as if there were less issues for you when it was set to true.", "updateAuthor": { "name": "ingo", "key": "ingo", "displayName": "Ingo Muschenetz", "active": true, "timeZone": "America/Los_Angeles" }, "created": "2013-11-12T22:18:39.000+0000", "updated": "2013-11-12T22:18:39.000+0000" }, { "id": "279251", "author": { "name": "kosso", "key": "kosso", "displayName": "kosso", "active": true, "timeZone": "Europe/London" }, "body": "When set to false (or omitted), the issues are worse and happen when the device is upright. \r\n\r\nIf the hotspot/in-call bar is showing:\r\n\r\nWhen false:\r\n- the navbar is not positioned correctly on launch - it requires turning upside down and back again. \r\n- the navbar then slips up again when opening a new window from a TabGroup OR a NavigationWindow (tested both)\r\n\r\nWhen set to true:\r\n- The navbar positioning only fails when upside down (as Pedro found) - and corrects itself when put upright again. \r\n\r\nBUT.. when this is set to true I can't get the LIGHT_CONTENT status bar to work correctly - ie: show white text on dark background. \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n", "updateAuthor": { "name": "kosso", "key": "kosso", "displayName": "kosso", "active": true, "timeZone": "Europe/London" }, "created": "2013-11-12T23:41:04.000+0000", "updated": "2013-11-12T23:41:04.000+0000" }, { "id": "279650", "author": { "name": "vduggal", "key": "vduggal", "displayName": "Vishal Duggal", "active": false, "timeZone": "America/Los_Angeles" }, "body": "Pull pending against master\r\nhttps://github.com/appcelerator/titanium_mobile/pull/4976", "updateAuthor": { "name": "vduggal", "key": "vduggal", "displayName": "Vishal Duggal", "active": false, "timeZone": "America/Los_Angeles" }, "created": "2013-11-14T22:58:18.000+0000", "updated": "2013-11-14T22:58:18.000+0000" }, { "id": "279660", "author": { "name": "penrique", "key": "penrique", "displayName": "Pedro Enrique", "active": false, "timeZone": "America/Los_Angeles" }, "body": "Merged into master!", "updateAuthor": { "name": "penrique", "key": "penrique", "displayName": "Pedro Enrique", "active": false, "timeZone": "America/Los_Angeles" }, "created": "2013-11-14T23:23:19.000+0000", "updated": "2013-11-14T23:23:19.000+0000" }, { "id": "279672", "author": { "name": "kosso", "key": "kosso", "displayName": "kosso", "active": true, "timeZone": "Europe/London" }, "body": "This is such good news. \r\n\r\n\r\nWhich SDK version can I now find this in? \r\nThe latest master 3.2.0 CI? Or will it get rolled into 3.1.x? \r\n\r\n\r\n\r\n", "updateAuthor": { "name": "kosso", "key": "kosso", "displayName": "kosso", "active": true, "timeZone": "Europe/London" }, "created": "2013-11-14T23:50:32.000+0000", "updated": "2013-11-14T23:50:32.000+0000" }, { "id": "279673", "author": { "name": "vduggal", "key": "vduggal", "displayName": "Vishal Duggal", "active": false, "timeZone": "America/Los_Angeles" }, "body": "3.2.0 CI. Should be available later today ", "updateAuthor": { "name": "vduggal", "key": "vduggal", "displayName": "Vishal Duggal", "active": false, "timeZone": "America/Los_Angeles" }, "created": "2013-11-14T23:53:38.000+0000", "updated": "2013-11-14T23:53:38.000+0000" }, { "id": "279676", "author": { "name": "kosso", "key": "kosso", "displayName": "kosso", "active": true, "timeZone": "Europe/London" }, "body": "Thanks Vishal. Much appreciated. \r\n\r\nHopefully Studio and CLI will play nicely too. ;)", "updateAuthor": { "name": "kosso", "key": "kosso", "displayName": "kosso", "active": true, "timeZone": "Europe/London" }, "created": "2013-11-14T23:56:44.000+0000", "updated": "2013-11-14T23:56:44.000+0000" }, { "id": "281732", "author": { "name": "sdowse", "key": "sdowse", "displayName": "Samuel Dowse", "active": true, "timeZone": "America/Los_Angeles" }, "body": "Verified fixed on:\nMac OSX 10.9 Mavericks\nTitanium Studio, build: 3.2.0.201311262027\nTitanium SDK, build: 3.2.0.v20131127114913\nCLI: 3.2.0-beta\nAlloy: 3.2.0-beta\niOS Simulator: 7.0.3\n\nApplication window moves correctly when in-call.\nClosing", "updateAuthor": { "name": "sdowse", "key": "sdowse", "displayName": "Samuel Dowse", "active": true, "timeZone": "America/Los_Angeles" }, "created": "2013-11-27T23:12:42.000+0000", "updated": "2013-11-27T23:12:42.000+0000" }, { "id": "300755", "author": { "name": "pilo", "key": "pilo", "displayName": "erez pilosof", "active": true, "timeZone": "Asia/Jerusalem" }, "body": "still happening ... not closed !", "updateAuthor": { "name": "pilo", "key": "pilo", "displayName": "erez pilosof", "active": true, "timeZone": "Asia/Jerusalem" }, "created": "2014-04-13T16:06:16.000+0000", "updated": "2014-04-13T16:06:16.000+0000" }, { "id": "300782", "author": { "name": "pilo", "key": "pilo", "displayName": "erez pilosof", "active": true, "timeZone": "Asia/Jerusalem" }, "body": "ok it was because of:\r\nUIViewControllerBasedStatusBarAppearance\r\n\r\n\r\na quick hack to enable hiding status bar while not using UIViewControllerBasedStatusBarAppearance:\r\n\r\nTiWindowProxy.m:\r\n\r\n-(void)setStatusBarHide:(id)hide\r\n{\r\n hidesStatusBar=[TiUtils boolValue:hide def:YES];\r\n if(focussed) {\r\n TiThreadPerformOnMainThread(^{\r\n [[[TiApp app] controller] updateStatusBar];\r\n }, YES);\r\n }\r\n}\r\n\r\n\r\n\r\n\r\n\r\n", "updateAuthor": { "name": "pilo", "key": "pilo", "displayName": "erez pilosof", "active": true, "timeZone": "Asia/Jerusalem" }, "created": "2014-04-14T08:55:24.000+0000", "updated": "2014-04-14T08:55:24.000+0000" }, { "id": "353932", "author": { "name": "kosso", "key": "kosso", "displayName": "kosso", "active": true, "timeZone": "Europe/London" }, "body": "This appears to have returned since updating to Appcelerator Studio and SDK 4.0.0.GA \r\n\r\nTry the same test code above and the window is incorrectly placed when the hotspot area is visible, *after* turning the device upside down and back again. \r\n\r\n!https://mobods.com/test/hotspot_bug.png|width=400!\r\n\r\n", "updateAuthor": { "name": "kosso", "key": "kosso", "displayName": "kosso", "active": true, "timeZone": "Europe/London" }, "created": "2015-05-30T13:02:16.000+0000", "updated": "2015-05-30T13:02:16.000+0000" }, { "id": "353933", "author": { "name": "kosso", "key": "kosso", "displayName": "kosso", "active": true, "timeZone": "Europe/London" }, "body": "This also happens on the simulator. Use the menu Hardware > Toggle In-call Status bar to test. Making sure to add the required orientation ability in tiapp.xml\r\n\r\nRotating the device causes the window to _slip_ up. \r\n\r\n", "updateAuthor": { "name": "kosso", "key": "kosso", "displayName": "kosso", "active": true, "timeZone": "Europe/London" }, "created": "2015-05-30T13:09:20.000+0000", "updated": "2015-05-30T13:09:20.000+0000" } ], "maxResults": 36, "total": 36, "startAt": 0 } } }