1. eeb68fc Revert to flash player version 11.1 by Piotr Zarzycki · 6 years ago
  2. d5ea26a Update nightly build to 4.17.0 by Piotr Zarzycki · 6 years ago
  3. d908672 Update apache rat in ApproveSDK script by Piotr Zarzycki · 6 years ago apache-flex-sdk-4.16.1
  4. f1fac8f Add information to use Extension Manager CS6 which fix problem with hang of Extension Manager CS5 on Windows 10 by Piotr Zarzycki · 6 years ago
  5. d242fd9 Update rat version in releasecandidate.xml file by Piotr Zarzycki · 7 years ago
  6. 7cc34f9 missing headers by Alex Harui · 7 years ago
  7. 91f196e ignore saxon parts by Alex Harui · 7 years ago
  8. 35103c6 add AwesomeUtils by Alex Harui · 7 years ago
  9. 0b9764c Change CURRENT_VERSION to 4.16.1 by Piotr Zarzycki · 7 years ago
  10. 0e0220d More version updates by Piotr Zarzycki · 7 years ago
  11. d474c80 Update version to 4.16.1 by Piotr Zarzycki · 7 years ago
  12. 0f96a26 Update release notes to 4.16.1 by Piotr Zarzycki · 7 years ago
  13. 752b1d3 FLEX-35364 - Run air-setup-mac on all non windows OS by Piotr Zarzycki · 7 years ago
  14. 7cd99a7 FLEX-35364 - Fix issue where "air-setup-mac" target launched their dependents targets on windows before checking condition (it is default ant behavior) by Piotr Zarzycki · 7 years ago
  15. 4c60183 FLEX-35362 CAUSE: the DropDownController signals that the DropDownListBase is open immediately, even before the latter has actually made that change on stage. Since the opening takes one or two frames, it leaves a few milliseconds in which code which relies on that open/closed state erroneously assumes that it can use elements that should be on stage or initialized. In this case it's the layout property, which, due to the skin of the DropDownList, is only initialized once the drop down is actually open. by Mihai Chira · 7 years ago
  16. 23a306c FLEX-35362 Added unit test to reproduce the bug. As expected, it currently fails. by Mihai Chira · 7 years ago
  17. 243507a FLEX-35321 CAUSE: if the object isn't on stage when we'd normally set its initialized flag to true, we correctly skip this step, but we also need to set its updateCompletePendingFlag back to false, so that in case it's added to stage again it can work correctly, and have its initialized flag set to true as expected. This second step was skipped in the previous commit. This could be noticed, for example, in DataGrid, which would not show the renderers which it initially used in GridViewLayout.updateTypicalCellSizes(). by Mihai Chira · 7 years ago
  18. fcc2586 FLEX-18746 CAUSE: HierarchicalCollectionView.updateLength() was ignoring nodes without children, as it should. However, the function it called for the nodes with children, getChildren() unfortunately had a necessary side-effect (which is a poor design choice, to be sure), which was to add an event listener to the children collection. So the empty collections of nodes were not listened to, which meant that once the node was open any children that were added to that node were not counted towards the length of the collection. And one way this inconsistency surfaced was through the expandItem() fatal. by Mihai Chira · 7 years ago
  19. 5fb2fb6 FLEX-18746 Adding another unit test which goes to the heart of the bug - the length calculation in HierarchicalCollectionView. (Currently the test function test_opening_closing_with_Jill_having_no_children_to_begin_with() fails, as expected.) by Mihai Chira · 7 years ago
  20. 7a519a3 FLEX-18746 Added the same test, but without using opening animation. (This way the bug cannot be reproduced, which is a good clue.) by Mihai Chira · 7 years ago
  21. b175cd6 FLEX-35351 FLEX-18746 Now unit tests can be run for the mx project, and they're also included in the entire frameworks suite by Mihai Chira · 7 years ago
  22. cd060ca FLEX-18746 Renamed the main test function and increased the timeout a bit. by Mihai Chira · 7 years ago
  23. f804380 FLEX-18746 Added unit test (current fails). by Mihai Chira · 7 years ago
  24. fea9be9 Merge remote-tracking branch 'origin/develop' into develop by Mihai Chira · 7 years ago
  25. bb7447f FLEX-35329: fixed issue where initializing member variable/constant that is [Deprecated] incorrectly throws extra warning by Josh Tynjala · 7 years ago
  26. 0226437 Merge remote-tracking branch 'origin/develop' into develop by Mihai Chira · 7 years ago
  27. e66554e sync up our KEYS file with dist by Alex Harui · 7 years ago
  28. 42c7c38 Add my public key by piotrz · 7 years ago
  29. 9c5cbbe FLEX-35321 CAUSE: If a component is removed from stage during a validation cycle, the LayoutManager nevertheless sets its initialized flag to true, even if it's not on stage anymore. That's because it doesn't check at the end whether the component is still on stage. by Mihai Chira · 7 years ago
  30. 442b5f8 FLEX-35321 Refined tests, including checking for how many validation steps happen for size, properties and display list. Without the fix all those expected to fail fail (the last one is not expected to fail without the fix, because it's there just to make sure no regression is introduced by the fix), while with the fix all of them pass. by Mihai Chira · 7 years ago
  31. 75b4d39 FLEX-35321 test_object_removed_from_stage_via_user_action_is_not_initialized() needed one more frame to complete (made sure it fails without the proposed fix, and passes with it). Also made some variable and function renames, plus now we can also test how many times each validation function has been called. by Mihai Chira · 7 years ago
  32. f475aed FLEX-35321 LayoutManager.validateNow() doesn't use phased instantiation, so it wasn't the best idea to test it with that, at least the test where we fake a user request for the removal of the component in the next frame. Also added a test that tries to make sure that objects removed from stage and then readded are indeed validated and initialized. by Mihai Chira · 7 years ago
  33. 5ea79a2 FLEX-35321 Made the unit test more realistic (by having the user's action happen in the next frame), and prevented an error when tearDown() tries to remove a component which is no longer on stage. by Mihai Chira · 7 years ago
  34. 53a7710 FLEX-35321 Adding unit test (currently fails, as expected). by Mihai Chira · 7 years ago
  35. 2750254 FLEX-35306 Addd unit test. Fails when reverting the fix, passes with the fix. by Mihai Chira · 7 years ago
  36. 59cefd8 FLEX-35306 Reverting the fix for FLEX-19651 because it introduced the FLEX-35306 regression. by Mihai Chira · 7 years ago
  37. d726aee FLEX-35260 When calling localToGlobal() on gridColumnHeaderGroup, the result does not reflect its horizontal scroll position, which means that we need to include it manually (in GridHeaderViewLayout.getHeaderIndexAt()). However, the 'x' function argument is assumed to include it, so we're not adding it anymore when calling GridDimensionsView.getColumnIndexAt(). by Mihai Chira · 7 years ago
  38. 60ccf24 FLEX-35280 FLEX-35260 Recent changes to FLEX-35267 made it so that the y value in GridHeaderViewLayout.getHeaderIndexAt() started to be considered, when before it was simply ignored. But one caller of this function, GridColumnHeaderGroup.eventToHeaderLocations(), simply used '0' for that argument, instead of the real value, knowing that (before these changes) it wasn't being considered. Now the real value is used. by Mihai Chira · 7 years ago
  39. 7d3073b FLEX-35267 Updated unit test to support horizontal scrolling and two new grid profiles. Currently tests fail, but for perplexing reasons (seems like a failure to validate, despite the unit test calling validateNow() way too many times...). by Mihai Chira · 7 years ago
  40. a1c61c5 FLEX-35267 Updated unit test - made it easier to read, and now we're also testing GridColumnHeaderGroup.containsGlobalCoordinates(). For the test to pass I've improved the logic in GridHeaderViewLayout.getHeaderIndexAt() which, in turn, made a few functions redundant in GridColumnHeaderGroup. All tests currently pass. by Mihai Chira · 7 years ago
  41. 56abc7d FLEX-35267 Updated unit test - made it easier to read, and now we're also testing GridColumnHeaderGroup.containsGlobalCoordinates(). For the test to pass I've improved the logic in GridHeaderViewLayout.getHeaderIndexAt() which, in turn, made a few functions redundant in GridColumnHeaderGroup. All tests currently pass. by Mihai Chira · 7 years ago
  42. 5787e9b FLEX-35260 Now we are taking into account paddingTop and paddingBottom in getHeaderIndexAt(). Unit test updated as well (and passes, including a second data grid configuration). by Mihai Chira · 7 years ago
  43. 6bc7ad5 Merge remote-tracking branch 'origin/develop' into develop by Mihai Chira · 7 years ago
  44. d7299c3 FLEX-35260 Now the unit test passes, having been updated to check the column header view boundaries. Other changes: by Mihai Chira · 7 years ago
  45. 1040357 Merge branch 'develop' of https://git-wip-us.apache.org/repos/asf/flex-sdk into develop by Justin Mclean · 7 years ago
  46. a616e55 Merge branch 'release4.16.0' into develop by Justin Mclean · 7 years ago
  47. 9e2620e FLEX-35260 Now in the unit test we're also verifying areCoordinatesOverAHeaderView(). Currently fails (for point "b"). by Mihai Chira · 7 years ago
  48. f985937 FLEX-35260 GridHeaderViewLayout.getHeaderIndexAt() (which calls GridDimensions.getColumnIndexAt()) used to return a valid headerIndex (when it was expected to return -1) for an y < 0. Fixed. by Mihai Chira · 7 years ago
  49. 2adccce FLEX-35260 GridHeaderViewLayout.getHeaderIndexAt() (which calls GridDimensions.getColumnIndexAt()) used to return a valid headerIndex (when it was expected to return -1) for an x < 0. Fixed. by Mihai Chira · 7 years ago
  50. ad48251 FLEX-35267 FLEX-35260 FLEX-35029 by Mihai Chira · 7 years ago
  51. a603b07 FLEX-35267 FLEX-35260 by Mihai Chira · 7 years ago
  52. 7185ca6 This closes #45 by Harbs · 7 years ago
  53. 14c9664 update version by Justin Mclean · 7 years ago release4.16.0 apache-flex-sdk-4.16.0 apache-flex-sdk-4.16.0RC3
  54. f9e7038 update version and remove duplicate air line by Justin Mclean · 7 years ago
  55. 7157375 fix download cache by Alex Harui · 7 years ago
  56. a360157 Hard code saxon jar name so ant scripts work by Justin Mclean · 7 years ago
  57. 531c837 Fixed downlaod ant script to copy saxon9 notices by Justin Mclean · 7 years ago apache-flex-sdk-4.16.0RC2
  58. 28b035f Added saxon9 notice files as we can no longer easily download them. Can't place in lib/external as it's cleaned and git ignored by Justin Mclean · 7 years ago
  59. c8c6327 Fix 3rd party download issues by Justin Mclean · 7 years ago
  60. 7418641 FLEX-35149 updating release notes with fix for FLEX-27509 by Mihai Chira · 7 years ago
  61. 4102e70 FLEX-27509 by Mihai Chira · 7 years ago
  62. 6c577a5 FLEX-27509 by Mihai Chira · 7 years ago
  63. db8c1bf Merge branch 'release4.16.0' of https://git-wip-us.apache.org/repos/asf/flex-sdk into release4.16.0 by Justin Mclean · 7 years ago
  64. 4523974 Fix regression issue. Turns out LabelUtil.itemToLabel has side effects and text was not updated on control unless called by Justin Mclean · 7 years ago
  65. 442b844 don't run jar checks on Windows by Alex Harui · 7 years ago
  66. d7fdb19 Update year to 2017 by Justin Mclean · 7 years ago
  67. 2cdc95a Update year to 2017 by Justin Mclean · 7 years ago
  68. 48a9ed8 Update year to 2017 by Justin Mclean · 7 years ago
  69. 3f03b2e Update year to 2017 by Justin Mclean · 7 years ago
  70. 458ae5a Update year to 2017 by Justin Mclean · 7 years ago
  71. 3a084ac use raw so we don't have to deal with redirects from http to https that Ant can't handle by Alex Harui · 7 years ago
  72. ed0c314 Added no browse option to top finder from popping up by Justin Mclean · 7 years ago
  73. 9e7632d Copy contents of directory rather than directory by Justin Mclean · 7 years ago
  74. 0ebd3e5 Added support for FP 24.0 by Justin Mclean · 7 years ago
  75. 65a1de5 update to mention support for AIR/Flash 24.0 by Justin Mclean · 7 years ago
  76. f6b2262 Added support for AIR and flash player 24.0 by Justin Mclean · 7 years ago
  77. 7726874 try to fix install by Alex Harui · 7 years ago
  78. a5b11cd download using ant vars by Alex Harui · 7 years ago
  79. 24c14c0 fix a few things by Alex Harui · 7 years ago
  80. bc87665 Changed saxon download link to one that works by Justin Mclean · 7 years ago
  81. 44960c0 Bring back loading installer config from flex.apache.org website. by OmPrakash Muppirala · 7 years ago
  82. 3a90722 Ensure Ant 1.7 behavior by Om Muppirala · 7 years ago apache-flex-sdk-4.16.0RC1
  83. 8036b68 Add support for Adobe AIR SDK 24+ which are being served as .dmg files instead of .tbz2 files by Om Muppirala · 7 years ago
  84. a5b04e1 Ensure Ant 1.7 behavior by Om Muppirala · 7 years ago
  85. 952a5e6 update release notes by Justin Mclean · 7 years ago
  86. f95a016 hide asc classes by Alex Harui · 7 years ago
  87. 617b736 didn't mean to commit that file by Alex Harui · 7 years ago
  88. 77d6955 FLEX-35084 add -broker-local-connection and -broker-product-manager options by Alex Harui · 7 years ago
  89. dec79b5 Add support for Adobe AIR SDK 24+ which are being served as .dmg files instead of .tbz2 files by Om Muppirala · 7 years ago
  90. 4aae545 update hash by Justin Mclean · 7 years ago
  91. 78431c6 Merge branch 'develop' into release4.16.0 by Mihai Chira · 7 years ago
  92. 4ead771 FLEX-34880 by Mihai Chira · 7 years ago
  93. 1318395 Merge branch 'develop' into release4.16.0 by Mihai Chira · 7 years ago
  94. 286a0ca Revert FLEX-34880 part 3 by Mihai Chira · 7 years ago
  95. 3f5638d Revert FLEX-34880 part 2 by Mihai Chira · 7 years ago
  96. 332e075 Revert FLEX-34880 part 1 by Mihai Chira · 7 years ago
  97. b7ea704 Merge branch 'release4.16.0' of https://git-wip-us.apache.org/repos/asf/flex-sdk into release4.16.0 by Justin Mclean · 7 years ago
  98. fc70d58 Doesn't always like https link - may be mirror dependant? by Justin Mclean · 7 years ago
  99. 51eae4b update release notes by Justin Mclean · 8 years ago
  100. 249ed42 FLEX-34811 allow apostrophe in user name part of email address by Justin Mclean · 8 years ago