Skip to content

Instantly share code, notes, and snippets.

@toddanglin
Last active September 16, 2015 07:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save toddanglin/330097bfa063c0b247ad to your computer and use it in GitHub Desktop.
Save toddanglin/330097bfa063c0b247ad to your computer and use it in GitHub Desktop.
Consolidated NativeScript 1.3 Changlog

Cross Platform Modules Changelog

1.3.0 (2015, September 16)

Fixed

  • (#680) Fix dialogs module parameter positions and add title as optional parameter
  • (#587) Animation promise in iOS may never be resolved nor rejected.
  • (#581) HtmlView only for single line?
  • (#557) Handlebar syntax in view with comma breaks silently
  • (#540) border-radius CSS property not applying properly to image on Android
  • (#513) Android backgroundColor animation is not gradual.
  • (#508) iOS Page lack of a background screws the page transitions

New

  • (#680) Fix dialogs module parameter positions and add title as optional parameter
  • (#670) Add a cross platform "openUrl"
  • (#634) Make SegmentedBarItem bindable.
  • (#551) Implement an image picker
  • (#548) Expose public API controlling whether a Page should be added to the navigation backstack or not
  • (#541) Make TabViewItem properties data-bindable.
  • (#481) Support padding on TextField and Button elements

Breaking changes

  • (#473) The application.ios.removeNotificationObserver method now requires an observer instance to be supplied as the first argument. The observer instance is obtained from the application.ios.addNotificationObserver method:
var observer = application.ios.addNotificationObserver(UIDeviceBatteryLevelDidChangeNotification,
    function (notification) {
        console.log(notification);
    });
application.ios.removeNotificationObserver(observer, UIDeviceBatteryLevelDidChangeNotification);

NativeScript CLI Changelog

1.3.0 (2015, September 16)

New

Fixed

  • Fixed #662: Failed tns platform add android command leaves the project in inconsistent state.
  • Fixed #730: tns livesync android throws stdout maxBuffer exceeded.
  • Fixed #772: tns platform update ios command does not update metadata generator.
  • Fixed #793: The NativeScript CLI writes errors on stdout.
  • Fixed #797: Plugin add does not merge plugins's Info.plist file.
  • Fixed #811: tns livesync <Platform> --watch reports an error when platform specific file is changed.
  • Fixed #826: Failed tns prepare <Platform> command leaves the project in inconsistent state.
  • Fixed #829: Fail to build the project when nativescript-telerik-ui plugin is added before the platform.
  • Fixed #866: The NativeScript CLI is not able to detect java on Ubuntu.
  • Fixed #896: tns run <Platform> after tns livesync <Platform> starts the last synced app on the device.

Android Runtime Changelog

1.3.0

What's New

Bug Fixes

Performance

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment