{ "id": "172563", "key": "TIMOB-26523", "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": "20412", "name": "Release 8.1.0", "archived": false, "released": true, "releaseDate": "2019-08-13" } ], "resolution": { "id": "1", "description": "A fix for this issue is checked into the tree and tested.", "name": "Fixed" }, "resolutiondate": "2019-04-25T12:04:24.000+0000", "created": "2018-11-06T11:41:51.000+0000", "priority": { "name": "Medium", "id": "3" }, "labels": [ "2019-cl" ], "versions": [], "issuelinks": [ { "id": "57171", "type": { "id": "10003", "name": "Relates", "inward": "relates to", "outward": "relates to" }, "inwardIssue": { "id": "171256", "key": "TIMOB-25847", "fields": { "summary": "iOS: Accessibility support for Dynamic Type", "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": "2", "description": "A new feature of the product, which has yet to be developed.", "name": "New Feature", "subtask": false } } } }, { "id": "57172", "type": { "id": "10003", "name": "Relates", "inward": "relates to", "outward": "relates to" }, "inwardIssue": { "id": "111591", "key": "TIMOB-13187", "fields": { "summary": "iOS: Kerning for fonts in Titanium.", "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": "Low", "id": "4" }, "issuetype": { "id": "2", "description": "A new feature of the product, which has yet to be developed.", "name": "New Feature", "subtask": false } } } } ], "assignee": { "name": "vijaysingh", "key": "vijaysingh", "displayName": "Vijay Singh", "active": true, "timeZone": "America/Los_Angeles" }, "updated": "2019-04-25T12:04:28.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": "Titanium is pretty well suited regarding dynamic fonts, which becomes more and more important in larger scale applications. We need one more style which is currently missing ({{UIFontTextStyleLargeTitle}}) which will complete the dynamic font support.\r\n\r\nNote: Until the below PR is merged, the following enum raw value will allow to use it today:\r\n{code}\r\nfont: {\r\n textStyle: 'UICTFontTextStyleTitle0' // Raw value of UIFontTextStyleLargeTitle\r\n}\r\n{code}", "attachment": [], "flagged": false, "summary": "iOS 11+: Support large title style (dynamic fonts)", "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, "closedSprints": [ { "id": 1124, "state": "closed", "name": "2019 Sprint 8", "startDate": "2019-03-31T18:03:00.000Z", "endDate": "2019-04-12T18:03:00.000Z", "completeDate": "2019-04-12T19:04:50.175Z", "originBoardId": 114 }, { "id": 1128, "state": "closed", "name": "2019 Sprint 9", "startDate": "2019-04-14T19:05:00.000Z", "endDate": "2019-04-26T19:05:00.000Z", "completeDate": "2019-04-26T22:05:13.933Z", "originBoardId": 114 } ], "comment": { "comments": [ { "id": "443326", "author": { "name": "hknoechel", "key": "hansknoechel", "displayName": "Hans Knöchel", "active": true, "timeZone": "Europe/Berlin" }, "body": "PR: https://github.com/appcelerator/titanium_mobile/pull/10425\r\nTest-Case:\r\n{code:js}\r\n\r\nvar win = Ti.UI.createWindow({\r\n backgroundColor: '#fff',\r\n extendSafeArea: false\r\n});\r\n\r\nvar scrollView = Ti.UI.createScrollView({ layout: 'vertical', top: 50 });\r\n\r\nvar textStyles = [\r\n Ti.UI.TEXT_STYLE_HEADLINE,\r\n Ti.UI.TEXT_STYLE_SUBHEADLINE,\r\n Ti.UI.TEXT_STYLE_BODY,\r\n Ti.UI.TEXT_STYLE_FOOTNOTE,\r\n Ti.UI.TEXT_STYLE_CAPTION1,\r\n Ti.UI.TEXT_STYLE_CAPTION2,\r\n Ti.UI.TEXT_STYLE_CALLOUT,\r\n Ti.UI.TEXT_STYLE_TITLE1,\r\n Ti.UI.TEXT_STYLE_TITLE2,\r\n Ti.UI.TEXT_STYLE_TITLE3,\r\n Ti.UI.TEXT_STYLE_LARGE_TITLE,\r\n];\r\n\r\nfor (var i = 0; i < textStyles.length; i++) {\r\n var textStyle = textStyles[i];\r\n scrollView.add(Ti.UI.createLabel({\r\n top: 20,\r\n text: textStyle,\r\n font: {\r\n textStyle: textStyle\r\n }\r\n }));\r\n}\r\n\r\nwin.add(scrollView);\r\nwin.open();\r\n{code}", "updateAuthor": { "name": "hknoechel", "key": "hansknoechel", "displayName": "Hans Knöchel", "active": true, "timeZone": "Europe/Berlin" }, "created": "2018-11-06T11:50:17.000+0000", "updated": "2018-11-06T11:54:40.000+0000" }, { "id": "447572", "author": { "name": "kmahalingam", "key": "kmahalingam", "displayName": "Keerthi Mahalingam", "active": false, "timeZone": "America/Los_Angeles" }, "body": "FR passed. danger failed .waiting for resolving that to merge.", "updateAuthor": { "name": "kmahalingam", "key": "kmahalingam", "displayName": "Keerthi Mahalingam", "active": false, "timeZone": "America/Los_Angeles" }, "created": "2019-04-09T23:14:57.000+0000", "updated": "2019-04-09T23:14:57.000+0000" }, { "id": "447833", "author": { "name": "lchoudhary", "key": "lchoudhary", "displayName": "Lokesh Choudhary", "active": true, "timeZone": "America/Los_Angeles" }, "body": "PR Merged.", "updateAuthor": { "name": "lchoudhary", "key": "lchoudhary", "displayName": "Lokesh Choudhary", "active": true, "timeZone": "America/Los_Angeles" }, "created": "2019-04-22T17:22:33.000+0000", "updated": "2019-04-22T17:22:33.000+0000" }, { "id": "447951", "author": { "name": "smohammed", "key": "smohammed", "displayName": "Samir Mohammed", "active": true, "timeZone": "America/Los_Angeles" }, "body": "Closing ticket, fix verified in SDK Version 8.1.0.v20190423134840\r\n\r\nTest and other information can be found at: \r\nhttps://github.com/appcelerator/titanium_mobile/pull/10425", "updateAuthor": { "name": "smohammed", "key": "smohammed", "displayName": "Samir Mohammed", "active": true, "timeZone": "America/Los_Angeles" }, "created": "2019-04-25T12:04:28.000+0000", "updated": "2019-04-25T12:04:28.000+0000" } ], "maxResults": 6, "total": 6, "startAt": 0 } } }