Skip to content

Commit 02ceb14

Browse files
committed
Feathers 3.2.0 version update
1 parent 4eb022a commit 02ceb14

File tree

4 files changed

+10
-13
lines changed

4 files changed

+10
-13
lines changed

README.md

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,12 @@
1-
# Feathers 3.2.0-beta
2-
3-
---
4-
5-
**Warning:** This is a pre-release version of Feathers UI. It may contain bugs or unfinished features. It is not recommended for production apps because it is considered potentially *unstable*. Use at your own risk. To download a stable build, visit the [Feathers website](https://feathersui.com/).
6-
7-
---
1+
# Feathers 3.2.0
82

93
Say hello to [Feathers UI](https://feathersui.com/), a library of light-weight, skinnable, and extensible UI controls for mobile and desktop. The components run on [Starling Framework](http://starling-framework.org/) and the [Adobe Flash runtimes](https://www.adobe.com/devnet/games/runtimes.html) — offering blazing fast GPU powered graphics to create a smooth and responsive experience. Build completely standalone, native applications on iOS, Android, Windows, and Mac OS X, or target Adobe Flash Player in desktop browsers. Created by [Josh Tynjala](https://twitter.com/joshtynjala) from Bowler Hat LLC, Feathers UI is free and open source.
104

115
## Quick Links
126

137
* [Website](https://feathersui.com/)
14-
* [Beta Help](https://feathersui.com/beta/help/)
15-
* [Beta API Reference](https://feathersui.com/beta/api-reference/)
8+
* [Help](https://feathersui.com/help/)
9+
* [API Reference](https://feathersui.com/api-reference/)
1610
* [Discussion Forum](http://forum.starling-framework.org/forum/feathers)
1711
* [Github Project](https://github.com/BowlerHatLLC/feathers)
1812

RELEASENOTES.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Noteworthy changes in official, stable releases of [Feathers UI](http://feathersui.com/).
44

5-
## 3.2.0 - In Development
5+
## 3.2.0 - April 2017
66

77
* PullToRefresh: new example that demonstrates how to support the popular "pull to refresh" gesture with Feathers lists and other scrolling containers.
88
* TabNavigator: support for swiping between tabs.
@@ -26,9 +26,11 @@ Noteworthy changes in official, stable releases of [Feathers UI](http://feathers
2626
* FeathersControl; layoutData is set to null when disposed to avoid potential memory leaks.
2727
* FeathersControl: Removes event listeners on styleNameList when disposed so that they cannot be called for no reason.
2828
* FeathersControl; added ignoreNextStyleRestriction() to allow components to set defaults during initialization while still allowing a theme to replace styles later.
29+
* FeathersControl: fixed an issue where measured minimum dimensions were not affected by explicit maximum dimensions.
2930
* GroupedList: similar to items, an error is thrown if duplicate header or footer data appears in the data provider.
3031
* HorizontalLayout, VerticalLayout: fixed issue where includeInLayout was ignored when distributing item sizes.
31-
* HorizontalLayout, VerticalLayotu: fixed issue where includeInLayout was ignored when using percent dimensions.
32+
* HorizontalLayout, VerticalLayout: fixed issue where includeInLayout was ignored when using percent dimensions.
33+
* HorizontalLayout, VerticalLayout: fixed issue where the typicalItem could not resize after layout.
3234
* ImageLoader: supports asynchronous texture uploads to improve performance when uploading textures to the GPU.
3335
* ImageLoader: exposed sourceToTextureCacheKey() to allow subclasses to override the key used in the TextureCache for non-URL sources.
3436
* ImageLoader: createTextureOnRestore accepts sources that are non-URLs to allow subclasses to override this behavior.
@@ -52,6 +54,7 @@ Noteworthy changes in official, stable releases of [Feathers UI](http://feathers
5254
* SpinnerList: fixed issue where scroll position was not updated if layout snapInterval changed.
5355
* StageTextTextEditor: position of StageText can no longer be larger than 8191 or smaller than -8192 to avoid a runtime error.
5456
* StageTextTextEditor: added clearButtonMode property to support new StageText API.
57+
* StageTextTextEditor: does not call assignFocus() on StageText if StageText already has focus because this can cause soft keyboard to close and re-open on iOS.
5558
* TabBar: fixed issue where setSelectedIndexWithAnimation() and setSelectedItemWithAnimation() did not change the value of the selectedItem property.
5659
* TabBarSlideTransitionManager: moved to feathers-compat project.
5760
* TextBlockTextRenderer: fixed issue where a new line width would not be properly detected when using content property, and optimized for the standard text case.

build.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,6 @@ themes.output = ${output.path}/themes
2424

2525
swf.version = 30
2626

27-
feathers.version = 3.2.0-beta
27+
feathers.version = 3.2.0
2828

2929
footer.text = <a href='http://feathersui.com/' target='_top'>Feathers</a> | <a href='https://github.com/BowlerHatLLC/feathers' target='_top'>Github Project</a> | <a href='http://forum.starling-framework.org/forum/feathers' target='_top'>Support Forum</a>

source/feathers/FEATHERS_VERSION.as

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,5 @@ package feathers
1919
*
2020
* @productversion Feathers 2.1.0
2121
*/
22-
public const FEATHERS_VERSION:String = "3.2.0-beta";
22+
public const FEATHERS_VERSION:String = "3.2.0";
2323
}

0 commit comments

Comments
 (0)