1.1.0 (2015, June)
- View and GesturesObserver classes have some breaking changes related to gesture operations. More info within issue #242.
1.0.0 (2015, April 29)
- New options for camera module. Added a resizing options along with keep-aspect-ratio options. More information about how to use it can be found at the dedicated camera help article.
- First-file search order changed. Now package.json is searched first, then index.js and bootstrap.js is being searched last.
- Taking a full size picture in Android with NativeScript camera module.
- Pages no more freeze on cancelling back-navigation via swipe gesture
- Items having verticalAlignment set to center now have correct layout bounds
- Camera for ios no more throws a Null pointer error
- iOS dialog OK button now appears last
image-cachenow stores native image instances, i.e.android.graphics.BitmaporUIImage.Image.srcproperty is now of typeanyand can accept either a string containing an image url or a native image instance.- Gesture related enum values changed to start with a small letter in order to be consistent with all other enums within NativeScript. For example "gesturesModule.GestureType.Tap" should be used like "gesturesModule.GestureType.tap".
knownEventsmodules within all UI controls are removed and replaced with a static string values. In that case all possible events will be visible through the inheritance tree. These static strings have anEventsuffix. At every place whereviewModule.knownEvents.loadedis used should be changed toviewModule.View.loadedEventorpageModule.Page.loadedEvent. This change is relevant to code-behind only (xml declaration will not be affected).
-
In addition to binding converters introduced in version 0.42 static (global) place for most common converters is added. This place is named
application.resources. More information how to use it can be found in the special help topic regardingData binding. -
Using plain objects (numbers, strings also an entire object) as binding context via
$value. More information can be found at the dedicatedData bindinghelp topic.
- Image:
urlproperty renamed tosrc - Image:
sourceproperty renamed toimageSource - TabView:
TabEntryrenamed toTabViewItem - Module
local-settingschanged toapplication-settings.Only the name of the module is changed (API remains the same), hence therequirestatements must be updated, i.e.require("local-settings")should be changed torequire("application-settings").