FazBrowse GitHub Viewer | Trending |
URL:
| Home
Tools: [Download Repo ZIP]   [Original HTTPS Page]

release: cut the 4.1.1 release (#6084) · NativeScript/NativeScript@4cd3a32 · GitHub

Commit 4cd3a32

Browse files
authored andcommitted
release: cut the 4.1.1 release (#6084)
* fix: require devtools-elements.js with the extension mentioned explicitly (#6079) This is a workaround for the issue with `@ngtools/webpack@6.1.0-rc.2`, described here: NativeScript/nativescript-dev-webpack#607 (comment) * release: cut the 4.1.1 release * chore: Fix TS transpile error with 2.9 (#5906)
1 parent 86f9d38 commit 4cd3a32

4 files changed

Lines changed: 13 additions & 4 deletions

File tree

‎CHANGELOG.md‎

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,15 @@
11
Cross Platform Modules Changelog
22
==============================
33

4+
<a name="4.1.1"></a>
5+
# [4.1.1](https://github.com/NativeScript/NativeScript/compare/4.1.0...4.1.1) (2018-07-18)
6+
7+
8+
### Bug Fixes
9+
10+
* require devtools-elements.js with the extension mentioned explicitly ([#6079](https://github.com/NativeScript/NativeScript/issues/6079)) ([1a15aa2](https://github.com/NativeScript/NativeScript/commit/1a15aa2))
11+
12+
413
<a name="4.1.0"></a>
514
# [4.1.0](https://github.com/NativeScript/NativeScript/compare/4.0.1...4.1.0) (2018-05-28)
615

‎tns-core-modules/globals/globals.ts‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ export function Deprecated(target: Object, key?: string | symbol, descriptor?: a
206206
var originalMethod = descriptor.value;
207207

208208
descriptor.value = function (...args: any[]) {
209-
console.log(`${key} is deprecated`);
209+
console.log(`${key.toString()} is deprecated`);
210210

211211
return originalMethod.apply(this, args);
212212
}
@@ -225,7 +225,7 @@ export function Experimental(target: Object, key?: string | symbol, descriptor?:
225225
var originalMethod = descriptor.value;
226226

227227
descriptor.value = function (...args: any[]) {
228-
console.log(`${key} is experimental`);
228+
console.log(`${key.toString()} is experimental`);
229229

230230
return originalMethod.apply(this, args);
231231
}

‎tns-core-modules/package.json‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "tns-core-modules",
33
"description": "Telerik NativeScript Core Modules",
4-
"version": "4.1.0",
4+
"version": "4.1.1",
55
"homepage": "https://www.nativescript.org",
66
"repository": {
77
"type": "git",

‎tns-core-modules/ui/frame/frame.android.ts‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ let fragmentId = -1;
4242
export let moduleLoaded: boolean;
4343

4444
if (global && global.__inspector) {
45-
const devtools = require("tns-core-modules/debugger/devtools-elements");
45+
const devtools = require("tns-core-modules/debugger/devtools-elements.js");
4646
devtools.attachDOMInspectorEventCallbacks(global.__inspector);
4747
devtools.attachDOMInspectorCommandCallbacks(global.__inspector);
4848
}

0 commit comments

Comments
 (0)

Back | FazBrowse Home | New Git URL