{ "id": "155054", "key": "TIMOB-20598", "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": "17707", "name": "Release 5.3.0", "archived": false, "released": true, "releaseDate": "2016-06-04" } ], "resolution": { "id": "1", "description": "A fix for this issue is checked into the tree and tested.", "name": "Fixed" }, "resolutiondate": "2016-03-31T14:02:22.000+0000", "created": "2016-02-22T14:10:09.000+0000", "priority": { "name": "Critical", "id": "1" }, "labels": [ "qe-5.3.0", "supportTeam" ], "versions": [ { "id": "16997", "name": "Release 5.2.0", "archived": false, "released": true, "releaseDate": "2016-02-23" } ], "issuelinks": [ { "id": "51517", "type": { "id": "10002", "name": "Duplicate", "inward": "is duplicated by", "outward": "duplicates" }, "inwardIssue": { "id": "159399", "key": "TIMOB-23169", "fields": { "summary": "Windows: Animations are not animating correctly on iterations or bucles", "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 } } } }, { "id": "51337", "type": { "id": "10003", "name": "Relates", "inward": "relates to", "outward": "relates to" }, "outwardIssue": { "id": "159559", "key": "TIMOB-23209", "fields": { "summary": "Windows: Improve handling of view animations on multiple presses", "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": "4", "description": "An improvement or enhancement to an existing feature or task.", "name": "Improvement", "subtask": false } } } } ], "assignee": { "name": "kiguchi", "key": "kota", "displayName": "Kota Iguchi", "active": false, "timeZone": "America/Los_Angeles" }, "updated": "2016-04-28T22:34:58.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": "12642", "name": "Windows", "description": "Windows authoring support" } ], "description": "To reproduce:\r\n-Start with a view with a left value of 10 (Position 1)\r\n-Animate the view to left 50 (Position 2)\r\n-Animate the view again to left 100 (Position 3)\r\n\r\nExpected: view animates from Position 1 to Position 2, and then from Position 2 to Position 3\r\nActual: view animates from Position 1 to Position 2, then jumps to Position 1 and animates to Position 3\r\n\r\n", "attachment": [], "flagged": false, "summary": "Windows: views not animating correctly", "creator": { "name": "john.surface", "key": "john.surface", "displayName": "John Surface", "active": true, "timeZone": "America/New_York" }, "subtasks": [], "reporter": { "name": "john.surface", "key": "john.surface", "displayName": "John Surface", "active": true, "timeZone": "America/New_York" }, "environment": "Windows 8.1\r\nTi SDK 5.1.2.GA\r\nappc cli 5.1.0", "closedSprints": [ { "id": 614, "state": "closed", "name": "2016 Sprint 07 SDK", "startDate": "2016-03-26T00:38:56.432Z", "endDate": "2016-04-09T00:38:00.000Z", "completeDate": "2016-04-11T04:41:08.231Z", "originBoardId": 114 } ], "comment": { "comments": [ { "id": "378129", "author": { "name": "nsalahin", "key": "nsalahin", "displayName": "Nazmus Salahin", "active": true, "timeZone": "Asia/Dhaka" }, "body": "The bug you have described seems to be not occurring on android. View animates from Position 1 to Position 2, and then from Position 2 to Position 3 for the following code without any problem. If you are trying to say something else or in different platform please mention in details in comment.\r\n\r\n{code}\r\nvar box = Ti.UI.createView({\r\n backgroundColor : 'red',\r\n left : '10',\r\n height : '100',\r\n width : '100'\r\n});\r\nwin.add(box);\r\nvar pos=0;\r\nbox.addEventListener('click', function() {\r\n pos+=50;\r\n var a = Ti.UI.createAnimation({\r\n\tleft: pos,\r\n duration : 2000,\r\n });\r\n box.animate(a);\r\n});\r\n{code}\r\n\r\n*Environment*:\r\n*Operating System:* Windows 8.1\r\n*Device info:* Nexux7 (android 6.0.1)\r\n*Node.js Version:* 0.12.7\r\n*npm Version:* 2.11.3\r\n*Titanium SDKs:* 5.2.0.v20160220080449 and 5.1.2.GA\r\n*Java Development Kit Version:* 1.8.0_73\r\n*Titanium CLI Version:* 5.0.5\r\n", "updateAuthor": { "name": "nsalahin", "key": "nsalahin", "displayName": "Nazmus Salahin", "active": true, "timeZone": "Asia/Dhaka" }, "created": "2016-02-29T08:51:00.000+0000", "updated": "2016-02-29T08:51:00.000+0000" }, { "id": "381019", "author": { "name": "kiguchi", "key": "kota", "displayName": "Kota Iguchi", "active": false, "timeZone": "America/Los_Angeles" }, "body": "https://github.com/appcelerator/titanium_mobile_windows/pull/599", "updateAuthor": { "name": "kiguchi", "key": "kota", "displayName": "Kota Iguchi", "active": false, "timeZone": "America/Los_Angeles" }, "created": "2016-03-30T09:40:01.000+0000", "updated": "2016-03-30T09:40:01.000+0000" }, { "id": "382653", "author": { "name": "htbryant", "key": "htbryant", "displayName": "Harry Bryant", "active": true, "timeZone": "Europe/London" }, "body": "Verified as fixed, on tapping of the view, the element animates from position 1 to 2, and then from position 2 to position 3, etc. \r\n*Note:* However there is an issue with the animations when the view is pressed repeatedly when an animation is currently running. A ticket has been created to improve the handling of such events. _(See related tickets)_\r\n\r\nTested on: \r\nWindows 10 Home & Pro \r\nWindows Phone 10.0 & 8.1 (Microsoft Lumia 640 LTE) \r\nAppc Studio: 4.6.0.201604081249 \r\nTi SDK: 5.3.0.v20160413061223 \r\nAppc NPM: 4.2.5-1 \r\nAppc Core: 5.3.0-12 \r\nNode: v4.4.2\r\n\r\n*Closing Ticket.*\r\n", "updateAuthor": { "name": "htbryant", "key": "htbryant", "displayName": "Harry Bryant", "active": true, "timeZone": "Europe/London" }, "created": "2016-04-13T22:10:34.000+0000", "updated": "2016-04-13T22:10:34.000+0000" } ], "maxResults": 6, "total": 6, "startAt": 0 } } }