diff --git a/CHANGELOG.md b/CHANGELOG.md
index 931bc86f1..7f9d91a1e 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,6 +1,15 @@
Cross Platform Modules Changelog
==============================
+
+# [4.1.1](https://github.com/NativeScript/NativeScript/compare/4.1.0...4.1.1) (2018-07-18)
+
+
+### Bug Fixes
+
+* 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))
+
+
# [4.1.0](https://github.com/NativeScript/NativeScript/compare/4.0.1...4.1.0) (2018-05-28)
diff --git a/tns-core-modules/globals/globals.ts b/tns-core-modules/globals/globals.ts
index 5b3162d63..15b61854e 100644
--- a/tns-core-modules/globals/globals.ts
+++ b/tns-core-modules/globals/globals.ts
@@ -206,7 +206,7 @@ export function Deprecated(target: Object, key?: string | symbol, descriptor?: a
var originalMethod = descriptor.value;
descriptor.value = function (...args: any[]) {
- console.log(`${key} is deprecated`);
+ console.log(`${key.toString()} is deprecated`);
return originalMethod.apply(this, args);
}
@@ -225,7 +225,7 @@ export function Experimental(target: Object, key?: string | symbol, descriptor?:
var originalMethod = descriptor.value;
descriptor.value = function (...args: any[]) {
- console.log(`${key} is experimental`);
+ console.log(`${key.toString()} is experimental`);
return originalMethod.apply(this, args);
}
diff --git a/tns-core-modules/package.json b/tns-core-modules/package.json
index c2376241a..dbf50de26 100644
--- a/tns-core-modules/package.json
+++ b/tns-core-modules/package.json
@@ -1,7 +1,7 @@
{
"name": "tns-core-modules",
"description": "Telerik NativeScript Core Modules",
- "version": "4.1.0",
+ "version": "4.1.1",
"homepage": "https://www.nativescript.org",
"repository": {
"type": "git",
diff --git a/tns-core-modules/ui/frame/frame.android.ts b/tns-core-modules/ui/frame/frame.android.ts
index 8f4c2f51f..9758e97b1 100644
--- a/tns-core-modules/ui/frame/frame.android.ts
+++ b/tns-core-modules/ui/frame/frame.android.ts
@@ -42,7 +42,7 @@ let fragmentId = -1;
export let moduleLoaded: boolean;
if (global && global.__inspector) {
- const devtools = require("tns-core-modules/debugger/devtools-elements");
+ const devtools = require("tns-core-modules/debugger/devtools-elements.js");
devtools.attachDOMInspectorEventCallbacks(global.__inspector);
devtools.attachDOMInspectorCommandCallbacks(global.__inspector);
}