Skip to content

Commit db81e4f

Browse files
author
Vladimir Enchev
committed
Merge remote-tracking branch 'origin/master' into release
Conflicts: package.json
2 parents a46168d + a4d879f commit db81e4f

247 files changed

Lines changed: 10383 additions & 4759 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitignore

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,14 @@
44
.sublime-grunt.cache
55
tscommand*.tmp.txt
66
.tscache
7-
*.js
87

98
node_modules/
109
dist/
1110

11+
*.js
1212
!gruntfile.js
1313
!js-libs/**/*.*
14+
!fetch/**/*.*
1415
!apps/TelerikNEXT/lib/**/*.*
1516
CrossPlatformModules.sln.ide/
1617
*.suo
@@ -20,3 +21,7 @@ CrossPlatformModules.csproj.user
2021
bin/
2122
obj/
2223
.vs/
24+
25+
.baseDir.ts
26+
.ctags-exclude
27+
tags

CHANGELOG.md

Lines changed: 48 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,60 @@
11
Cross Platform Modules Changelog
22
==============================
3-
1.1.0 (2015, June)
3+
4+
##1.1.0 (2015, June 10)
45

56
### New
7+
- [(#280)](https://github.com/NativeScript/NativeScript/issues/280) Change NativeActivity Pbase class in order to be compatible with Android runtime
8+
9+
- [(#244)](https://github.com/NativeScript/NativeScript/issues/244) Expose application level events as real events. [See an example...](https://github.com/NativeScript/NativeScript/blob/master/apps/tests/app/app.ts)
10+
11+
- [(#233)](https://github.com/NativeScript/NativeScript/issues/233) Application module event handlers are lacking in parameters. [See an example...](https://github.com/NativeScript/NativeScript/blob/master/apps/tests/app/app.ts)
12+
13+
- [(#221)](https://github.com/NativeScript/NativeScript/pull/221) view parent exposed in itemLoading event
14+
15+
- [(#214)](https://github.com/NativeScript/NativeScript/pull/214) Repeater component added. [Read more...](https://github.com/NativeScript/docs/blob/master/layouts.md#repeating-layout-children)
16+
17+
- [(#207)](https://github.com/NativeScript/NativeScript/pull/207) Optimizations
18+
19+
- [(#199)](https://github.com/NativeScript/NativeScript/issues/199) TabView.selectedIndexChanged event
20+
21+
- [(#184)](https://github.com/NativeScript/NativeScript/issues/184) Hint property for TextView
22+
23+
- [(#176)](https://github.com/NativeScript/NativeScript/issues/176) Implement navigatingTo, navigatedTo, navigatingFrom and navigatedFrom events on Page
624

725
### Fixed
26+
- [(#267)](https://github.com/NativeScript/NativeScript/issues/267) SegmentedBar CSS color not applied correctly when items are bound
27+
28+
- [(#257)](https://github.com/NativeScript/NativeScript/pull/257) Fix some crashes for ListView's iOS UITableView
29+
30+
- [(#242)](https://github.com/NativeScript/NativeScript/issues/242) Cannot attach gesture observer for more than one gesture (Android).
31+
32+
- [(#234)](https://github.com/NativeScript/NativeScript/issues/234) DatePicker and TimePicker property bindings do not work in Android 5.x
33+
34+
- [(#228)](https://github.com/NativeScript/NativeScript/issues/228) ListPicker for Android shows text after bound to an empty array.
35+
36+
- [(#222)](https://github.com/NativeScript/NativeScript/issues/222) ListPicker showing number of items in list (Ticket938420)
37+
38+
- [(#196)](https://github.com/NativeScript/NativeScript/issues/196) Layout is incorrect after device rotation in iOS when there is navbar
39+
40+
- [(#193)](https://github.com/NativeScript/NativeScript/issues/193) Layout is broken when there is optionsMenu on the first page in iOS
41+
42+
- [(#189)](https://github.com/NativeScript/NativeScript/issues/189) Changing `bindingContext` affects UI elements that has a binding to `bindingContext`.
43+
44+
- [(#188)](https://github.com/NativeScript/NativeScript/issues/188) Remaining item when cleared page options menu in ios.
45+
46+
- [(#187)](https://github.com/NativeScript/NativeScript/issues/187) Custom source for UI element binding fails.
47+
48+
- [(#186)](https://github.com/NativeScript/NativeScript/issues/186) Using object get property syntax for binding expressions
49+
50+
- [(#175)](https://github.com/NativeScript/NativeScript/issues/175) Implement weak-event pattern on ListView (when bound to observable)
51+
852

953
### Breaking changes
10-
* View and GesturesObserver classes have some breaking changes related to gesture operations. More info within issue [#242](https://github.com/NativeScript/NativeScript/issues/242).
54+
- [(#242)](https://github.com/NativeScript/NativeScript/issues/242) View and GesturesObserver classes have some breaking changes related to gesture operations
1155

1256

13-
1.0.0 (2015, April 29)
57+
##1.0.0 (2015, April 29)
1458

1559
### New
1660
* 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.
@@ -29,8 +73,7 @@ Cross Platform Modules Changelog
2973
* 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".
3074
* `knownEvents` modules 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 an `Event` suffix. At every place where `viewModule.knownEvents.loaded` is used should be changed to `viewModule.View.loadedEvent` or `pageModule.Page.loadedEvent`. This change is relevant to code-behind only (xml declaration will not be affected).
3175

32-
0.10.0 (2015, April 17)
33-
==
76+
##0.10.0 (2015, April 17)
3477

3578
### Fixed
3679

0 commit comments

Comments
 (0)