All Versions
179
Latest Version
Avg Release Cycle
61 days
Latest Release
22 days ago

Changelog History
Page 5

  • v8.0.8 Changes

    June 15, 2021

    ๐Ÿ› Bug Fixes

  • v8.0.7 Changes

    June 02, 2021

    ๐Ÿ› Bug Fixes

    • animations: stop keyframe animations after View unloaded (#9421) (04381fa)
    • box-shadow: support for 'none' (#9418) (263c920)
    • core: guard unstable page/frame init contexts under async conditions (#9428) (d3bc4d5)
    • core: typings for Utils.queueMacrotask and static methods on Observable (#9425) (d589ac6)

    ๐Ÿ”‹ Features

    • WebView: allow JS bound window frame navigation to be intercepted through loadStarted (#9430) (3806b85)
  • v8.0.6 Changes

    May 20, 2021

    ๐Ÿ› Bug Fixes

    ๐Ÿ”‹ Features

  • v8.0.5 Changes

    May 10, 2021

    ๐Ÿ› Bug Fixes

    • android: image asset handling regarding requestLegacyExternalStorage (#9373) (f311151)

    ๐Ÿ”‹ Features

  • v8.0.4 Changes

    May 05, 2021

    ๐Ÿ› Bug Fixes

    ๐Ÿ”‹ Features

    • โž• add additional android global methods (#9365) (a6cb46d)
  • v8.0.3 Changes

    April 24, 2021

    ๐Ÿ› Bug Fixes

    • core: protected class getter/setter webpack issue (6076047)
    • core: typings issue around Trace.categories.All (27c545d)
  • v8.0.2 Changes

    April 20, 2021

    ๐Ÿ› Bug Fixes

    • a11y: Accessibility breaks limiting metadata (#9332) (cbdff1f)
    • a11y: ios voiceover crash during touch (#9318) (9a407ce)

    ๐Ÿ”‹ Features

    • text-base: allow subclass to override createFormattedTextNative (#9334) (b29e145)
  • v8.0.1 Changes

    April 07, 2021

    ๐Ÿ› Bug Fixes

    • android: accessibility crash on View not extending android.view.View (#9303) (fde666d)
    • android: crash on slide transition (#9289) (e73cebf)
    • core: Enums deprecation adjustment (#9306) (f42acd8)
  • v8.0.0 Changes

    April 06, 2021

    ๐Ÿ› Bug Fixes

    ๐Ÿ”‹ Features

    ๐Ÿ’ฅ BREAKING CHANGES

    • core: BottomNavigation and Tabs moved to @nativescript-community

    โšก๏ธ If using BottomNavigation, just install @nativescript-community/ui-material-bottom-navigation and update your imports to use it.

    โšก๏ธ If using Tabs, just install @nativescript-community/ui-material-tabs and update your imports to use it.

    • core: support web standard #rrggbbaa format

    BEFORE:

    // #aarrggbb
    
    const color = new Color('#ff00ff00');
    
    Label {
        background-color: #ff00ff00;
    }
    

    AFTER:

    // #rrggbbaa
    
    const color = new Color('#00ff00ff');
    
    Label {
        background-color: #00ff00ff;
    }
    
  • v7.3.0 Changes

    February 27, 2021

    ๐Ÿ› Bug Fixes

    • core: AndroidTransitionType symbol export handling (#9252) (ac7f041)

    ๐Ÿ”‹ Features

    • android: types for API Level 30 and cleanup (#9219) (ebcc0e2)

    ๐Ÿ’ฅ BREAKING CHANGES

    • core: AndroidTransitionType is now a static member of the Transition class.

    BEFORE:

    import { AndroidTransitionType } from '@nativescript/core/ui/transition';
    

    AFTER:

    import { Transition } from '@nativescript/core';
    Transition.AndroidTransitionType.enter; // etc.
    
    • android: If you were usingnative.Array for any of your own custom plugin typings, you can switch them to androidNative.Array

    BEFORE:

    public writeAsync(path: string, bytes: native.Array<number>) ...
    

    AFTER:

    public writeAsync(path: string, bytes: androidNative.Array<number>) ...