{ "id": "162730", "key": "TIMOB-23799", "fields": { "issuetype": { "id": "4", "description": "An improvement or enhancement to an existing feature or task.", "name": "Improvement", "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": "17608", "name": "Release 6.1.0", "archived": false, "released": true, "releaseDate": "2017-05-26" } ], "resolution": { "id": "1", "description": "A fix for this issue is checked into the tree and tested.", "name": "Fixed" }, "resolutiondate": "2017-03-30T22:08:33.000+0000", "created": "2016-08-22T16:19:27.000+0000", "priority": { "name": "Medium", "id": "3" }, "labels": [ "qe-5.5.0" ], "versions": [ { "id": "18253", "name": "Release 5.5.0", "archived": false, "released": true, "releaseDate": "2016-09-13" } ], "issuelinks": [ { "id": "52505", "type": { "id": "10003", "name": "Relates", "inward": "relates to", "outward": "relates to" }, "inwardIssue": { "id": "161074", "key": "TIMOB-23519", "fields": { "summary": "iOS10: Expose new Ti.UI.Pasteboard APIs", "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": "52504", "type": { "id": "10003", "name": "Relates", "inward": "relates to", "outward": "relates to" }, "inwardIssue": { "id": "162720", "key": "TIMOB-23797", "fields": { "summary": "iOS: Improve Pasteboard support", "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": "4", "description": "An improvement or enhancement to an existing feature or task.", "name": "Improvement", "subtask": false } } } } ], "assignee": { "name": "vijaysingh", "key": "vijaysingh", "displayName": "Vijay Singh", "active": true, "timeZone": "America/Los_Angeles" }, "updated": "2017-03-31T17:34:22.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": "Being able to create Named Pasteboards is a large feature of Pasteboards described in https://developer.apple.com/reference/uikit/uipasteboard that we currently do not support.\r\n\r\nIdeally, we would support this feature in addition to the General Pasteboard that we support now.", "attachment": [], "flagged": false, "summary": "iOS: Support Named Pasteboards", "creator": { "name": "ewieber", "key": "ewieber", "displayName": "Eric Wieber", "active": false, "timeZone": "America/Los_Angeles" }, "subtasks": [], "reporter": { "name": "ewieber", "key": "ewieber", "displayName": "Eric Wieber", "active": false, "timeZone": "America/Los_Angeles" }, "environment": "MacOS 10.12 (16A239m)\r\nTi SDK 5.5.0.v20160822000355\r\nAppc NPM 4.2.7\r\nAppc CLI 5.5.0-5\r\nAlloy 1.9.1\r\nXcode 8.0 (8S201h)", "closedSprints": [ { "id": 865, "state": "closed", "name": "2017 Sprint 07 SDK", "startDate": "2017-03-26T22:01:37.741Z", "endDate": "2017-04-09T22:01:00.000Z", "completeDate": "2017-04-10T15:40:13.586Z", "originBoardId": 114 } ], "comment": { "comments": [ { "id": "406680", "author": { "name": "vijaysingh", "key": "vijaysingh", "displayName": "Vijay Singh", "active": true, "timeZone": "America/Los_Angeles" }, "body": "PR: https://github.com/appcelerator/titanium_mobile/pull/8821\r\n\r\nTest Case -\r\n\r\n{code:java}\r\nvar win = Ti.UI.createWindow({\r\n backgroundColor: '#fff'\r\n});\r\n\r\nvar btn = Ti.UI.createButton({\r\n title: 'Trigger'\r\n});\r\n\r\nbtn.addEventListener('click', function() {\r\n\r\nvar clipboard = Ti.UI.createClipboard({\r\n allowCreation: true,\r\n name: 'test',\r\n});\r\nTi.API.info('clipboard name is: ' +clipboard.name);\r\nclipboard.setText('Hello');\r\nTi.API.info('clipboard text is: ' +clipboard.getText());\r\n\r\nvar uniqueClipboard = Ti.UI.createClipboard({\r\n persistent: true,\r\n unique: true\r\n});\r\nTi.API.info('Unique clipboard name is: ' + uniqueClipboard.name);\r\nuniqueClipboard.setText('Hello');\r\nTi.API.info('Unique clipboard text is: ' + uniqueClipboard.getText());\r\n\r\n});\r\n\r\nwin.add(btn);\r\nwin.open();\r\n\r\n{code}\r\n", "updateAuthor": { "name": "vijaysingh", "key": "vijaysingh", "displayName": "Vijay Singh", "active": true, "timeZone": "America/Los_Angeles" }, "created": "2017-02-09T04:55:32.000+0000", "updated": "2017-03-06T10:21:46.000+0000" }, { "id": "416515", "author": { "name": "smohammed", "key": "smohammed", "displayName": "Samir Mohammed", "active": true, "timeZone": "America/Los_Angeles" }, "body": "Verified in SDK version 6.1.0.v20170330151255. Test information and other information can be found at https://github.com/appcelerator/titanium_mobile/pull/8821. ", "updateAuthor": { "name": "smohammed", "key": "smohammed", "displayName": "Samir Mohammed", "active": true, "timeZone": "America/Los_Angeles" }, "created": "2017-03-31T17:34:15.000+0000", "updated": "2017-03-31T17:34:15.000+0000" } ], "maxResults": 2, "total": 2, "startAt": 0 } } }