{ "id": "161058", "key": "TIMOB-23509", "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": "18253", "name": "Release 5.5.0", "archived": false, "released": true, "releaseDate": "2016-09-13" } ], "resolution": { "id": "1", "description": "A fix for this issue is checked into the tree and tested.", "name": "Fixed" }, "resolutiondate": "2016-07-06T00:05:54.000+0000", "created": "2016-06-13T22:44:12.000+0000", "priority": { "name": "High", "id": "2" }, "labels": [ "ios10", "qe-5.5.0" ], "versions": [], "issuelinks": [ { "id": "52395", "type": { "id": "10003", "name": "Relates", "inward": "relates to", "outward": "relates to" }, "outwardIssue": { "id": "162602", "key": "TIMOB-23778", "fields": { "summary": "iOS: Improve warning when calling iOS10 visual effects for Ti.UI.iOS.BlurView on < iOS10 ", "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": "4", "description": "An improvement or enhancement to an existing feature or task.", "name": "Improvement", "subtask": false } } } } ], "assignee": { "name": "hknoechel", "key": "hansknoechel", "displayName": "Hans Knöchel", "active": true, "timeZone": "Europe/Berlin" }, "updated": "2016-08-15T20:56:23.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": "There are two new properties in iOS 10 to change the blurring behavior:\r\n- {{UIBlurEffectStyleProminent}}\r\n- {{UIBlurEffectStyleRegular}}\r\n\r\nWe should expose them as part of our existing API {{Ti.UI.iOS.BlurView}}.\r\n", "attachment": [], "flagged": false, "summary": "iOS10: Expose new visual effects on Ti.UI.iOS.BlurView", "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": 678, "state": "closed", "name": "2016 Sprint 14 SDK", "startDate": "2016-07-02T00:25:57.921Z", "endDate": "2016-07-16T00:25:00.000Z", "completeDate": "2016-07-18T03:18:29.729Z", "originBoardId": 114 } ], "comment": { "comments": [ { "id": "388246", "author": { "name": "hknoechel", "key": "hansknoechel", "displayName": "Hans Knöchel", "active": true, "timeZone": "Europe/Berlin" }, "body": "PR: https://github.com/appcelerator/titanium_mobile/pull/8060\r\nDemo:\r\n{code:javascript}\r\nvar win = Ti.UI.createWindow({\r\n backgroundColor: \"#fff\"\r\n});\r\n\r\n// Reference image (or view)\r\nvar img = Ti.UI.createImageView({\r\n image: \"/default_app_logo.png\",\r\n top: 100,\r\n width: 300,\r\n height: 300\r\n});\r\n\r\n// Blur view\r\nvar blur = Ti.UI.iOS.createBlurView({\r\n width: Ti.UI.FILL,\r\n height: Ti.UI.FILL\r\n});\r\n\r\nimg.add(blur);\r\n\r\n// Effect controls\r\nvar tabs = Ti.UI.iOS.createTabbedBar({\r\n labels: [\"Extra light\", \"Light\", \"Dark\", \"Regular\", \"Prominent\"],\r\n bottom: 100\r\n});\r\n\r\n// Available blur effects\r\nvar effects = [\r\n Ti.UI.iOS.BLUR_EFFECT_STYLE_EXTRA_LIGHT,\r\n Ti.UI.iOS.BLUR_EFFECT_STYLE_LIGHT,\r\n Ti.UI.iOS.BLUR_EFFECT_STYLE_DARK,\r\n Ti.UI.iOS.BLUR_EFFECT_STYLE_REGULAR,\r\n Ti.UI.iOS.BLUR_EFFECT_STYLE_PROMINENT\r\n];\r\n\r\ntabs.addEventListener(\"click\", function(e) {\r\n blur.setEffect(effects[e.index]);\r\n});\r\n\r\nwin.add(tabs);\r\nwin.add(img);\r\nwin.open();\r\n{code}", "updateAuthor": { "name": "hknoechel", "key": "hansknoechel", "displayName": "Hans Knöchel", "active": true, "timeZone": "Europe/Berlin" }, "created": "2016-06-13T23:29:59.000+0000", "updated": "2016-06-13T23:41:33.000+0000" }, { "id": "392998", "author": { "name": "hknoechel", "key": "hansknoechel", "displayName": "Hans Knöchel", "active": true, "timeZone": "Europe/Berlin" }, "body": "PR (5_5_X): https://github.com/appcelerator/titanium_mobile/pull/8214", "updateAuthor": { "name": "hknoechel", "key": "hansknoechel", "displayName": "Hans Knöchel", "active": true, "timeZone": "Europe/Berlin" }, "created": "2016-08-12T12:12:11.000+0000", "updated": "2016-08-12T12:12:11.000+0000" }, { "id": "393209", "author": { "name": "htbryant", "key": "htbryant", "displayName": "Harry Bryant", "active": true, "timeZone": "Europe/London" }, "body": "Verified as fixed, new BlurView styles for iOS10 are now supported (Regular, Prominent). However a non-descriptive error is returned when attempting to use these styles on devices < iOS10, an improvement ticket has been created in this regard. (TIMOB-23778)\r\n\r\nTested On:\r\niPhone 6S (10.0, 9.3.3) Device & Simulator\r\nMac OSX El Capitan 10.11.6\r\nTi SDK: 5.5.0.v20160815115302\r\nAppc Studio: 4.7.0.201607250649\r\nAppc NPM: 4.2.7\t\r\nApp CLI: 6.0.0-25\r\nXcode 8.0 beta 5 (8S193k)\r\nNode v4.4.7\r\n\r\n*Closing ticket.*", "updateAuthor": { "name": "htbryant", "key": "htbryant", "displayName": "Harry Bryant", "active": true, "timeZone": "Europe/London" }, "created": "2016-08-15T20:55:50.000+0000", "updated": "2016-08-15T20:55:50.000+0000" } ], "maxResults": 3, "total": 3, "startAt": 0 } } }