From 770cd5852ab89b29a1f446a6d397e60a3c8298f6 Mon Sep 17 00:00:00 2001 From: Nedyalko Nikolov Date: Fri, 24 Apr 2015 11:16:58 +0300 Subject: [PATCH 1/2] Updated changeLog for gestures and knownEvents. --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index b708c8135..79592c2d7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -33,3 +33,5 @@ Cross Platform Modules Changelog * `image-cache` now stores native image instances, i.e. `android.graphics.Bitmap` or `UIImage`. * `Image.src` property is now of type `any` and 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. Now "gesturesModule.GestureType.Tap" should be used like "gesturesModule.GestureType.tap". +* `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 string 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). From f5f5006e710e5668abd2d0f05ff538f14abcd8ab Mon Sep 17 00:00:00 2001 From: Nedyalko Nikolov Date: Fri, 24 Apr 2015 11:22:27 +0300 Subject: [PATCH 2/2] Some wording and typos change. --- CHANGELOG.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 79592c2d7..84d6c9b09 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -33,5 +33,5 @@ Cross Platform Modules Changelog * `image-cache` now stores native image instances, i.e. `android.graphics.Bitmap` or `UIImage`. * `Image.src` property is now of type `any` and 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. Now "gesturesModule.GestureType.Tap" should be used like "gesturesModule.GestureType.tap". -* `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 string 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). +* 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". +* `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).