1. 7c47bb9 one more Java 8 version bump by Josh Tynjala · 9 weeks ago develop
  2. 789e430 fix Xerces download URL by Josh Tynjala · 9 weeks ago
  3. 8277d9e build.properties: FP and AIR 32.0 by Josh Tynjala · 9 weeks ago
  4. d3e0be9 update README with new requirements and updated URLs by Josh Tynjala · 9 weeks ago
  5. 7c740fc require Java 8 minimum because newer Java's can't target anything older by Josh Tynjala · 9 weeks ago
  6. a71088d frameworks: more mappings of playerglobal versions to swf versions (up to 32.0) by Josh Tynjala · 9 weeks ago
  7. 414b9a3 downloads.xml: Maven repo downloads require https by Josh Tynjala · 3 years, 2 months ago
  8. 21e6767 downloads.xml: handle https mirror URLs by Josh Tynjala · 3 years, 2 months ago
  9. eba6217 adding my gpg sign in order to sign releases by Carlos Rovira · 4 years, 6 months ago
  10. 5d6f446 -Xbootclasspath/p is no longer supported as of JDK9 and JDK12 is the latest version. Changed to /p to /a. by Mark Kessler · 5 years ago
  11. 027dd9b Update KEYS with new key piotrz by Piotr Zarzycki · 6 years ago
  12. ac89884 Add missing CDATA section in TabNavigatorSkin by Piotr Zarzycki · 6 years ago
  13. 9a92a08 Make restrictToMaskPattern and updatePrompt protected to allow overriding by Piotr Zarzycki · 6 years ago
  14. c23af10 FLEX-35375 CAUSE: DataGrids didn't dispatch a VALUE_COMMIT event when a new dataProvider cleared the selection, thus allowing the selectedItem, selectedIndex, selectedItems, selectedIndexes to become null without a notification. Which also means that if there was any binding set up for any of those variables, it won't be triggered. by Mihai Chira · 6 years ago
  15. 9e3619c Ignore failure on copying flash flex kit as it doesn't exist on linux. May be a better way of doing this as it could hide other failures. by Justin Mclean · 6 years ago
  16. d63dadf mobile theme docs are not compiling on Linux (probably old AIR version?) by Justin Mclean · 6 years ago
  17. 75ace9f no support for automation flash flex kit on linux by Justin Mclean · 6 years ago
  18. bacc8cc source clean was removing player libs on jenkins job by Justin Mclean · 6 years ago
  19. b0ef9c4 order matters when you compile the flash integration by Justin Mclean · 6 years ago
  20. e928537 setup does a clean which is removing the flash player downloads in the jenkins job by Justin Mclean · 6 years ago
  21. cfc1947 flash integration not supported on linux by Justin Mclean · 6 years ago
  22. 35214ff testing if we can make a release build target without running the tests by Justin Mclean · 6 years ago
  23. eeb68fc Revert to flash player version 11.1 by Piotr Zarzycki · 6 years ago
  24. d5ea26a Update nightly build to 4.17.0 by Piotr Zarzycki · 6 years ago
  25. d908672 Update apache rat in ApproveSDK script by Piotr Zarzycki · 6 years ago apache-flex-sdk-4.16.1
  26. 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
  27. d242fd9 Update rat version in releasecandidate.xml file by Piotr Zarzycki · 6 years ago
  28. 7cc34f9 missing headers by Alex Harui · 7 years ago
  29. 91f196e ignore saxon parts by Alex Harui · 7 years ago
  30. 35103c6 add AwesomeUtils by Alex Harui · 7 years ago
  31. 0b9764c Change CURRENT_VERSION to 4.16.1 by Piotr Zarzycki · 7 years ago
  32. 0e0220d More version updates by Piotr Zarzycki · 7 years ago
  33. d474c80 Update version to 4.16.1 by Piotr Zarzycki · 7 years ago
  34. 0f96a26 Update release notes to 4.16.1 by Piotr Zarzycki · 7 years ago
  35. 752b1d3 FLEX-35364 - Run air-setup-mac on all non windows OS by Piotr Zarzycki · 7 years ago
  36. 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
  37. 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
  38. 23a306c FLEX-35362 Added unit test to reproduce the bug. As expected, it currently fails. by Mihai Chira · 7 years ago
  39. 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
  40. 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
  41. 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
  42. 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
  43. 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
  44. cd060ca FLEX-18746 Renamed the main test function and increased the timeout a bit. by Mihai Chira · 7 years ago
  45. f804380 FLEX-18746 Added unit test (current fails). by Mihai Chira · 7 years ago
  46. fea9be9 Merge remote-tracking branch 'origin/develop' into develop by Mihai Chira · 7 years ago
  47. bb7447f FLEX-35329: fixed issue where initializing member variable/constant that is [Deprecated] incorrectly throws extra warning by Josh Tynjala · 7 years ago
  48. 0226437 Merge remote-tracking branch 'origin/develop' into develop by Mihai Chira · 7 years ago
  49. e66554e sync up our KEYS file with dist by Alex Harui · 7 years ago
  50. 42c7c38 Add my public key by piotrz · 7 years ago
  51. 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
  52. 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
  53. 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
  54. 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
  55. 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
  56. 53a7710 FLEX-35321 Adding unit test (currently fails, as expected). by Mihai Chira · 7 years ago
  57. 2750254 FLEX-35306 Addd unit test. Fails when reverting the fix, passes with the fix. by Mihai Chira · 7 years ago
  58. 59cefd8 FLEX-35306 Reverting the fix for FLEX-19651 because it introduced the FLEX-35306 regression. by Mihai Chira · 7 years ago
  59. 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
  60. 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
  61. 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
  62. 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
  63. 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
  64. 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
  65. 6bc7ad5 Merge remote-tracking branch 'origin/develop' into develop by Mihai Chira · 7 years ago
  66. 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
  67. 1040357 Merge branch 'develop' of https://git-wip-us.apache.org/repos/asf/flex-sdk into develop by Justin Mclean · 7 years ago
  68. a616e55 Merge branch 'release4.16.0' into develop by Justin Mclean · 7 years ago
  69. 9e2620e FLEX-35260 Now in the unit test we're also verifying areCoordinatesOverAHeaderView(). Currently fails (for point "b"). by Mihai Chira · 7 years ago
  70. 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
  71. 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
  72. ad48251 FLEX-35267 FLEX-35260 FLEX-35029 by Mihai Chira · 7 years ago
  73. a603b07 FLEX-35267 FLEX-35260 by Mihai Chira · 7 years ago
  74. 7185ca6 This closes #45 by Harbs · 7 years ago
  75. 14c9664 update version by Justin Mclean · 7 years ago release4.16.0 apache-flex-sdk-4.16.0 apache-flex-sdk-4.16.0RC3
  76. f9e7038 update version and remove duplicate air line by Justin Mclean · 7 years ago
  77. 7157375 fix download cache by Alex Harui · 7 years ago
  78. a360157 Hard code saxon jar name so ant scripts work by Justin Mclean · 7 years ago
  79. 531c837 Fixed downlaod ant script to copy saxon9 notices by Justin Mclean · 7 years ago apache-flex-sdk-4.16.0RC2
  80. 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
  81. c8c6327 Fix 3rd party download issues by Justin Mclean · 7 years ago
  82. 7418641 FLEX-35149 updating release notes with fix for FLEX-27509 by Mihai Chira · 7 years ago
  83. 4102e70 FLEX-27509 by Mihai Chira · 7 years ago
  84. 6c577a5 FLEX-27509 by Mihai Chira · 7 years ago
  85. 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
  86. 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
  87. 442b844 don't run jar checks on Windows by Alex Harui · 7 years ago
  88. d7fdb19 Update year to 2017 by Justin Mclean · 7 years ago
  89. 2cdc95a Update year to 2017 by Justin Mclean · 7 years ago
  90. 48a9ed8 Update year to 2017 by Justin Mclean · 7 years ago
  91. 3f03b2e Update year to 2017 by Justin Mclean · 7 years ago
  92. 458ae5a Update year to 2017 by Justin Mclean · 7 years ago
  93. 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
  94. ed0c314 Added no browse option to top finder from popping up by Justin Mclean · 7 years ago
  95. 9e7632d Copy contents of directory rather than directory by Justin Mclean · 7 years ago
  96. 0ebd3e5 Added support for FP 24.0 by Justin Mclean · 7 years ago
  97. 65a1de5 update to mention support for AIR/Flash 24.0 by Justin Mclean · 7 years ago
  98. f6b2262 Added support for AIR and flash player 24.0 by Justin Mclean · 7 years ago
  99. 7726874 try to fix install by Alex Harui · 7 years ago
  100. a5b11cd download using ant vars by Alex Harui · 7 years ago