{ "id": "168333", "key": "TIMOB-24805", "fields": { "issuetype": { "id": "2", "description": "A new feature of the product, which has yet to be developed.", "name": "New Feature", "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": "19906", "description": "", "name": "Release 6.3.0", "archived": false, "released": true, "releaseDate": "2017-11-01" } ], "resolution": { "id": "1", "description": "A fix for this issue is checked into the tree and tested.", "name": "Fixed" }, "resolutiondate": "2017-10-31T16:58:57.000+0000", "created": "2017-06-10T12:33:27.000+0000", "epic": { "id": 168100, "key": "TIMOB-24772", "name": "iOS: Support iOS 11 / Xcode 9", "summary": "iOS: Add support for iOS 11 and Xcode 9", "color": { "key": "color_1" }, "done": false }, "priority": { "name": "Medium", "id": "3" }, "labels": [ "ios11" ], "versions": [], "issuelinks": [ { "id": "55181", "type": { "id": "10020", "name": "Depends", "inward": "is dependent of", "outward": "depends on" }, "outwardIssue": { "id": "168103", "key": "TIMOB-24775", "fields": { "summary": "iOS 11: Add Xcode 9 macros & utilities", "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": "High", "id": "2" }, "issuetype": { "id": "7", "description": "gh.issue.story.desc", "name": "Story", "subtask": false } } } } ], "assignee": { "name": "hknoechel", "key": "hansknoechel", "displayName": "Hans Knöchel", "active": true, "timeZone": "Europe/Berlin" }, "updated": "2017-11-14T23:22:03.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": "iOS 11 offers a new way of setting a large window-title like nearly all system apps (Music, Settings, Phone, ..) do. See [this StackOverflow post|https://stackoverflow.com/questions/44409173/use-the-increased-navigation-bar-title-in-ios-11] for more infos.\r\n\r\nProposed new API's:\r\n* largeTitleEnabled: \\[true/false]\r\n* largeTitleDisplayMode: \\[Ti.UI.iOS.LARGE_TITLE_DISPLAY_MODE_*]\r\n\r\nAlso, the existing {{titleAttributes}} should be applied to these as well.", "attachment": [], "flagged": false, "summary": "iOS: Support large window-titles", "creator": { "name": "hknoechel", "key": "hansknoechel", "displayName": "Hans Knöchel", "active": true, "timeZone": "Europe/Berlin" }, "subtasks": [], "reporter": { "name": "hknoechel", "key": "hansknoechel", "displayName": "Hans Knöchel", "active": true, "timeZone": "Europe/Berlin" }, "environment": null, "comment": { "comments": [ { "id": "421699", "author": { "name": "hknoechel", "key": "hansknoechel", "displayName": "Hans Knöchel", "active": true, "timeZone": "Europe/Berlin" }, "body": "PR: https://github.com/appcelerator/titanium_mobile/pull/9136\r\n\r\nTest-Case:\r\n{code:js}\r\nvar win = Ti.UI.createWindow({\r\n backgroundColor: '#fff',\r\n title: 'Titanium rocks!',\r\n \r\n // Also applied for large titles\r\n titleAttributes: {\r\n color: 'red'\r\n },\r\n \r\n // NEW in iOS 11!\r\n largeTitleEnabled: true,\r\n largeTitleDisplayMode: Ti.UI.iOS.LARGE_TITLE_DISPLAY_MODE_ALWAYS\r\n});\r\n \r\nvar nav = Ti.UI.iOS.createNavigationWindow({\r\n window: win\r\n});\r\n \r\nwin.add(Ti.UI.createLabel({\r\n title: 'Hello world!'\r\n}));\r\n \r\nnav.open();\r\n{code}\r\n\r\nExpected behavior: A large window title should be shown. Change the {{largeTitleDisplayMode}} to {{Ti.UI.iOS.LARGE_TITLE_DISPLAY_MODE_NEVER}} and it should not show the large title anymore.", "updateAuthor": { "name": "hknoechel", "key": "hansknoechel", "displayName": "Hans Knöchel", "active": true, "timeZone": "Europe/Berlin" }, "created": "2017-06-10T12:59:12.000+0000", "updated": "2017-09-23T15:25:34.000+0000" }, { "id": "426860", "author": { "name": "emerriman", "key": "emerriman", "displayName": "Eric Merriman ", "active": true, "timeZone": "America/Los_Angeles" }, "body": "Moving this out of 6.2.0 so we can address TIMOB-24775. Both with be included in our release for iOS 11 support.", "updateAuthor": { "name": "emerriman", "key": "emerriman", "displayName": "Eric Merriman ", "active": true, "timeZone": "America/Los_Angeles" }, "created": "2017-08-17T19:10:32.000+0000", "updated": "2017-08-17T19:10:32.000+0000" }, { "id": "427869", "author": { "name": "vijaysingh", "key": "vijaysingh", "displayName": "Vijay Singh", "active": true, "timeZone": "America/Los_Angeles" }, "body": "[~hknoechel] Can you create back ported PR for 6_3_X? Thanks.", "updateAuthor": { "name": "vijaysingh", "key": "vijaysingh", "displayName": "Vijay Singh", "active": true, "timeZone": "America/Los_Angeles" }, "created": "2017-09-14T09:26:36.000+0000", "updated": "2017-09-14T09:26:36.000+0000" }, { "id": "427873", "author": { "name": "hknoechel", "key": "hansknoechel", "displayName": "Hans Knöchel", "active": true, "timeZone": "Europe/Berlin" }, "body": "PR (6_3_X): https://github.com/appcelerator/titanium_mobile/pull/9431", "updateAuthor": { "name": "hknoechel", "key": "hansknoechel", "displayName": "Hans Knöchel", "active": true, "timeZone": "Europe/Berlin" }, "created": "2017-09-14T09:56:47.000+0000", "updated": "2017-09-14T09:56:47.000+0000" }, { "id": "428961", "author": { "name": "smohammed", "key": "smohammed", "displayName": "Samir Mohammed", "active": true, "timeZone": "America/Los_Angeles" }, "body": "Verified feature on {{6.3.0.v20171011114247}}\r\n\r\nTest and other information can be found at: \r\nhttps://github.com/appcelerator/titanium_mobile/pull/9431 (6_3_X)\r\n\r\nWaiting for Master Branch for 7.0.0 testing. ", "updateAuthor": { "name": "smohammed", "key": "smohammed", "displayName": "Samir Mohammed", "active": true, "timeZone": "America/Los_Angeles" }, "created": "2017-10-11T19:30:42.000+0000", "updated": "2017-10-11T19:30:42.000+0000" }, { "id": "428989", "author": { "name": "smohammed", "key": "smohammed", "displayName": "Samir Mohammed", "active": true, "timeZone": "America/Los_Angeles" }, "body": "^ Verified improvement in SDK Version 7.0.0.v20171011152516", "updateAuthor": { "name": "smohammed", "key": "smohammed", "displayName": "Samir Mohammed", "active": true, "timeZone": "America/Los_Angeles" }, "created": "2017-10-11T23:54:01.000+0000", "updated": "2017-10-11T23:54:01.000+0000" }, { "id": "429322", "author": { "name": "hknoechel", "key": "hansknoechel", "displayName": "Hans Knöchel", "active": true, "timeZone": "Europe/Berlin" }, "body": "Reopening an edge-case we may missed before:\r\n\r\n{code:js}\r\nvar win = Ti.UI.createWindow( {\r\n backgroundColor : 'white'\r\n});\r\n\r\nvar btn = Ti.UI.createButton({\r\n title: 'Trigger'\r\n});\r\n\r\nbtn.addEventListener('click', openWindow);\r\nwin.add(btn);\r\n\r\nvar nav = Ti.UI.iOS.createNavigationWindow({\r\n window: win\r\n});\r\n\r\nnav.open();\r\n\r\nfunction openWindow() {\r\n var win = Ti.UI.createWindow( {\r\n backgroundColor : 'white'\r\n } );\r\n\r\n nav.openWindow(win);\r\n}\r\n{code}\r\nExpected behavior: No error-log shown", "updateAuthor": { "name": "hknoechel", "key": "hansknoechel", "displayName": "Hans Knöchel", "active": true, "timeZone": "Europe/Berlin" }, "created": "2017-10-20T07:34:47.000+0000", "updated": "2017-10-20T07:34:47.000+0000" }, { "id": "429323", "author": { "name": "hknoechel", "key": "hansknoechel", "displayName": "Hans Knöchel", "active": true, "timeZone": "Europe/Berlin" }, "body": "PR (master): https://github.com/appcelerator/titanium_mobile/pull/9541\r\nPR (6_3_X): https://github.com/appcelerator/titanium_mobile/pull/9542", "updateAuthor": { "name": "hknoechel", "key": "hansknoechel", "displayName": "Hans Knöchel", "active": true, "timeZone": "Europe/Berlin" }, "created": "2017-10-20T07:36:35.000+0000", "updated": "2017-10-20T07:36:35.000+0000" }, { "id": "429713", "author": { "name": "smohammed", "key": "smohammed", "displayName": "Samir Mohammed", "active": true, "timeZone": "America/Los_Angeles" }, "body": "6_3_X FR passed and Merged: https://github.com/appcelerator/titanium_mobile/pull/9542", "updateAuthor": { "name": "smohammed", "key": "smohammed", "displayName": "Samir Mohammed", "active": true, "timeZone": "America/Los_Angeles" }, "created": "2017-10-26T22:57:11.000+0000", "updated": "2017-10-26T22:57:11.000+0000" }, { "id": "430623", "author": { "name": "ewieber", "key": "ewieber", "displayName": "Eric Wieber", "active": false, "timeZone": "America/Los_Angeles" }, "body": "Verified in SDK builds 6.3.0.GA & 7.0.0.v20171114134144", "updateAuthor": { "name": "ewieber", "key": "ewieber", "displayName": "Eric Wieber", "active": false, "timeZone": "America/Los_Angeles" }, "created": "2017-11-14T23:22:03.000+0000", "updated": "2017-11-14T23:22:03.000+0000" } ], "maxResults": 11, "total": 11, "startAt": 0 } } }