Skip to content
This repository was archived by the owner on Nov 17, 2022. It is now read-only.

Commit 794188f

Browse files
committed
Update external files
1 parent e603715 commit 794188f

File tree

3 files changed

+133
-2
lines changed

3 files changed

+133
-2
lines changed

plugins/plugins.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ my-plugin/
110110

111111
* `platforms\android`: This directory contains any native Android libraries packaged as `*.jar` and `*.aar` packages. These native libraries can reside in the root of this directory or in a user-created sub-directory. During the plugin installation, the NativeScript CLI will configure the Android project in `platforms\android` to work with the plugin.
112112
* `platforms\android\res`: (Optional) This directory contains resources declared by the `AndroidManifest.xml` file. You can look at the folder structure [here](http://developer.android.com/guide/topics/resources/providing-resources.html#ResourceTypes).
113-
* `platforms\ios`: This directory contains native iOS frameworks (both static and shared). During the plugin installation, the NativeScript CLI will copy these files to `lib\iOS` in your project and will configure the iOS project in `platforms\ios` to work with the frameworks.
113+
* `platforms\ios`: This directory contains native iOS dynamic libraries (`.framework`). During the plugin installation, the NativeScript CLI will copy these files to `lib\iOS` in your project and will configure the Android project in `platforms\ios` to work with the library.
114114
* `platforms\android\include.gradle`: This file modifies the native Android configuration of your NativeScript project such as native dependencies, build types and configurations. For more information about the format of `include.gradle`, see [include.gradle file](#includegradle-specification).
115115

116116
### Package.json Specification

releases/Cross-Platform Modules.md

Lines changed: 111 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,124 @@ previous_url: /Changelogs/Cross-Platform Modules
88

99
Cross Platform Modules Changelog
1010
==============================
11-
##1.5.0 (2015, November ??)
11+
##1.5.0 (2015, November 24)
1212

1313
### Breaking changes
1414
- The XML namespace (xmlns) of the validator XSD schema changed from
1515
`xmlns="http://www.nativescript.org/tns.xsd"` to
1616
`xmlns="http://schemas.nativescript.org/tns.xsd"`.
1717
For convenience, the file can now get downloaded via the [same URL](http://schemas.nativescript.org/tns.xsd).
1818

19+
### Fixed
20+
21+
- [(#1089)](https://github.com/NativeScript/NativeScript/pull/1089) http toString will raise error if response cannot be converted to string
22+
23+
- [(#1082)](https://github.com/NativeScript/NativeScript/issues/1082) Null reference exception in view.android.setOnTouchListener method
24+
25+
- [(#1081)](https://github.com/NativeScript/NativeScript/pull/1081) file-system writeTextSync will now unlock the file when it is done writing
26+
27+
- [(#1038)](https://github.com/NativeScript/NativeScript/issues/1038) WebView with HTML string source does not render on old Android
28+
29+
- [(#1028)](https://github.com/NativeScript/NativeScript/issues/1028) [iOS] SelectedIndex property of the TabView widget does not work
30+
31+
- [(#1021)](https://github.com/NativeScript/NativeScript/issues/1021) page.loaded and page.navigatedTo events are fired twice on iOS
32+
33+
- [(#1019)](https://github.com/NativeScript/NativeScript/pull/1019) search-bar color not applied correctly
34+
35+
- [(#1012)](https://github.com/NativeScript/NativeScript/issues/1012) TextField/TextView CSS color not applied to cursor
36+
37+
- [(#1010)](https://github.com/NativeScript/NativeScript/issues/1010) Slider CSS color/background-color support
38+
39+
- [(#1007)](https://github.com/NativeScript/NativeScript/issues/1007) When application.start() is called twice on iOS, a meaningful error should be thrown
40+
41+
- [(#1004)](https://github.com/NativeScript/NativeScript/issues/1004) ActivityIndicator CSS color support
42+
43+
- [(#1000)](https://github.com/NativeScript/NativeScript/issues/1000) Border radius is not working on Android API 17
44+
45+
- [(#998)](https://github.com/NativeScript/NativeScript/pull/998) web-view images now will be loaded correctly with base url
46+
47+
- [(#993)](https://github.com/NativeScript/NativeScript/issues/993) CSS does not support new lowercase element names
48+
49+
- [(#990)](https://github.com/NativeScript/NativeScript/issues/990) Android 6 Webview onReceivedError
50+
51+
- [(#986)](https://github.com/NativeScript/NativeScript/issues/986) [iOS] The switch widget does not show up on the page
52+
53+
- [(#973)](https://github.com/NativeScript/NativeScript/pull/973) iOS owner pattern changed to use WeakRef in order to prevent memory leaks
54+
55+
- [(#966)](https://github.com/NativeScript/NativeScript/issues/966) Observable emits two `propertyChange` events when created with JSON
56+
57+
- [(#963)](https://github.com/NativeScript/NativeScript/issues/963) Always set base URL in WebView
58+
59+
- [(#955)](https://github.com/NativeScript/NativeScript/pull/955) Gestures event arguments for Android fixed
60+
61+
- [(#941)](https://github.com/NativeScript/NativeScript/issues/941) global.ios missing (consistency)
62+
63+
- [(#940)](https://github.com/NativeScript/NativeScript/issues/940) ListView: Inconsistency retrieving bindingContext in tap handler
64+
65+
- [(#936)](https://github.com/NativeScript/NativeScript/pull/936) Subsequent animation of transition and rotation or scale will appear jumpy in iOS
66+
67+
- [(#889)](https://github.com/NativeScript/NativeScript/issues/889) vertical-align css inconsistency
68+
69+
- [(#820)](https://github.com/NativeScript/NativeScript/issues/820) The x and y components of an Android translate or scale animation are not animated together when delay is specified
70+
71+
- [(#801)](https://github.com/NativeScript/NativeScript/issues/801) Chained animations lose state on iOS
72+
73+
- [(#789)](https://github.com/NativeScript/NativeScript/issues/789) Error in Page Navigating Events order
74+
75+
- [(#781)](https://github.com/NativeScript/NativeScript/issues/781) ios page.showModal platform inconsistancies & bugs
76+
77+
- [(#715)](https://github.com/NativeScript/NativeScript/issues/715) Frame crashes on app restore occasionally
78+
79+
- [(#642)](https://github.com/NativeScript/NativeScript/issues/642) Ability to style other native widgets
80+
81+
### New
82+
83+
- [(#1001)](https://github.com/NativeScript/NativeScript/pull/1001) Embed utility fonts: Awesome, Icons, etc
84+
85+
- [(#1102)](https://github.com/NativeScript/NativeScript/issues/1102) Ability to specify an animation easing, i.e. curve in a platform-independent manner
86+
87+
- [(#1086)](https://github.com/NativeScript/NativeScript/pull/1086) This will now allow the dialog to call the resolve function when cancelled by clicking outside
88+
89+
- [(#1057)](https://github.com/NativeScript/NativeScript/issues/1057) Expose scroll event on ScrollView
90+
91+
- [(#1048)](https://github.com/NativeScript/NativeScript/issues/1048) Event for start/end of an event
92+
93+
- [(#1041)](https://github.com/NativeScript/NativeScript/issues/1041) Support binding for `class` property of views
94+
95+
- [(#1034)](https://github.com/NativeScript/NativeScript/issues/1034) Support CSS white-space: nowrap and normal
96+
97+
- [(#1020)](https://github.com/NativeScript/NativeScript/pull/1020) DatePicker and TimePicker stylers added
98+
99+
- [(#1014)](https://github.com/NativeScript/NativeScript/issues/1014) Button wrapText property
100+
101+
- [(#977)](https://github.com/NativeScript/NativeScript/issues/977) Smarter LiveSync
102+
103+
- [(#954)](https://github.com/NativeScript/NativeScript/pull/954) added simple showModal() overload
104+
105+
- [(#926)](https://github.com/NativeScript/NativeScript/issues/926) Context as to whether a navigation was back or not
106+
107+
- [(#922)](https://github.com/NativeScript/NativeScript/issues/922) Feature request: Add loading wheel to Dialogs module
108+
109+
- [(#875)](https://github.com/NativeScript/NativeScript/issues/875) CSS feature request: `text-decoration`
110+
111+
- [(#856)](https://github.com/NativeScript/NativeScript/issues/856) Android 6 support
112+
113+
- [(#849)](https://github.com/NativeScript/NativeScript/issues/849) Implement dismissSoftInput() for search-bar
114+
115+
- [(#841)](https://github.com/NativeScript/NativeScript/issues/841) Distribute TypeScript definitions
116+
117+
- [(#767)](https://github.com/NativeScript/NativeScript/issues/767) Change Android navigation and tabs title color
118+
119+
- [(#727)](https://github.com/NativeScript/NativeScript/issues/727) Provide a way to get a reference to the currently showing modal page instance
120+
121+
- [(#693)](https://github.com/NativeScript/NativeScript/issues/693) ListView - the position of the item after scroll down is not correct
122+
123+
- [(#597)](https://github.com/NativeScript/NativeScript/issues/597) Some Complex Properties are Inconsistent with rest of API - Discussion
124+
125+
- [(#551)](https://github.com/NativeScript/NativeScript/issues/551) Ship a verified image picker plugin
126+
127+
- [(#364)](https://github.com/NativeScript/NativeScript/issues/364) Ability to use built-in system icons on ActionBarItems
128+
19129
##1.4.0 (2015, October 12)
20130

21131
### Fixed

releases/iOS Runtime.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,27 @@ slug: ios-changelog
66
previous_url: /Changelogs/iOS Runtime
77
---
88

9+
1.5.0
10+
=====
11+
12+
## Bug Fixes
13+
- [Unicode console logs in stderr](https://github.com/NativeScript/ios-runtime/issues/28)
14+
- [Fix out struct marshalling](https://github.com/NativeScript/ios-runtime/pull/370)
15+
- [Prefix modulemap link directives with "lib" as the linker would](https://github.com/NativeScript/ios-runtime/pull/381)
16+
- [Log Clang diagnostics when parsing modulemaps](https://github.com/NativeScript/ios-runtime/issues/316)
17+
- [Metadata generator build fails on older machines](https://github.com/NativeScript/ios-runtime/issues/388)
18+
- Fix some errors in TypeScript declarations - [#33](https://github.com/NativeScript/ios-metadata-generator/pull/33), [#34](https://github.com/NativeScript/ios-metadata-generator/pull/34)
19+
20+
## What's New
21+
22+
- [Add more bridged types](https://github.com/NativeScript/ios-runtime/pull/358)
23+
- [Implement `console.dir` method](https://github.com/NativeScript/ios-runtime/commit/a654ad28e8e78b29a5b0cd3c60306836e955fb0a)
24+
- [Persist NativeScript Inspector breakpoints](https://github.com/NativeScript/ios-runtime/pull/374)
25+
26+
## Breaking Changes
27+
- [Automatic memory management of CoreFoundation functions marked with `CF_IMPLICIT_BRIDGING_ENABLED`](https://github.com/NativeScript/ios-runtime/pull/351)
28+
- [Manual memory management of CoreFoundation functions not-marked with `CF_IMPLICIT_BRIDGING_ENABLED`](https://github.com/NativeScript/ios-runtime/pull/386)
29+
930
1.4.1
1031
==
1132

0 commit comments

Comments
 (0)