diff --git a/LICENSE b/LICENSE index a399a8372e..841736290b 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2020 Lakend Labs, Inc. +Copyright (c) 2020 Mirantis, Inc. All rights reserved. diff --git a/package.json b/package.json index cceecd8989..23cd13f145 100644 --- a/package.json +++ b/package.json @@ -4,11 +4,11 @@ "description": "Lens - The Kubernetes IDE", "version": "3.6.0-dev", "main": "out/main.js", - "copyright": "© 2020, Lakend Labs, Inc.", + "copyright": "© 2020, Mirantis, Inc.", "license": "MIT", "author": { - "name": "Lakend Labs, Inc.", - "email": "info@lakendlabs.com" + "name": "Mirantis, Inc.", + "email": "info@k8slens.dev" }, "scripts": { "dev": "concurrently -k \"yarn dev-run -C\" \"yarn dev:main\" \"yarn dev:renderer\"", diff --git a/src/common/tracker.ts b/src/common/tracker.ts index 2476c47dbd..5b222c5bab 100644 --- a/src/common/tracker.ts +++ b/src/common/tracker.ts @@ -18,7 +18,7 @@ export class Tracker { } catch (error) { this.visitor = ua(GA_ID) } - this.visitor.set("dl", "https://lensapptelemetry.lakendlabs.com") + this.visitor.set("dl", "https://telemetry.k8slens.dev") } public async event(eventCategory: string, eventAction: string) { diff --git a/src/main/menu.ts b/src/main/menu.ts index 82aef3d5fe..52a6628998 100644 --- a/src/main/menu.ts +++ b/src/main/menu.ts @@ -21,7 +21,7 @@ function showAbout(_menuitem: MenuItem, browserWindow: BrowserWindow) { const appDetails = [ `Version: ${app.getVersion()}`, ] - appDetails.push(`Copyright 2020 Lakend Labs, Inc.`) + appDetails.push(`Copyright 2020 Mirantis, Inc.`) let title = "Lens" if (isWindows) { title = ` ${title}` @@ -169,7 +169,7 @@ export default function initMenu(opts: MenuOptions, promiseIpc: any) { { label: 'License', click: async () => { - shell.openExternal('https://lakendlabs.com/licenses/lens-eula.md'); + shell.openExternal('https://k8slens.dev/licenses/eula.md'); }, }, { diff --git a/src/renderer/themes/kontena-dark.json b/src/renderer/themes/kontena-dark.json index 7066b1670a..a227abd968 100644 --- a/src/renderer/themes/kontena-dark.json +++ b/src/renderer/themes/kontena-dark.json @@ -1,7 +1,7 @@ { "name": "Lens Dark Theme", "type": "dark", - "author": "Lakend Labs", + "author": "Mirantis", "colors": { "blue": "#3d90ce", "magenta": "#c93dce", @@ -102,4 +102,4 @@ "radioActiveBackground": "#36393e", "menuActiveBackground": "#36393e" } -} \ No newline at end of file +} diff --git a/src/renderer/themes/kontena-light.json b/src/renderer/themes/kontena-light.json index b485676924..2e3813524f 100644 --- a/src/renderer/themes/kontena-light.json +++ b/src/renderer/themes/kontena-light.json @@ -1,7 +1,7 @@ { "name": "Lens Light Theme", "type": "light", - "author": "Lakend Labs", + "author": "Mirantis", "colors": { "blue": "#3d90ce", "magenta": "#c93dce", @@ -103,4 +103,4 @@ "radioActiveBackground": "#f1f1f1", "menuActiveBackground": "#e8e8e8" } -} \ No newline at end of file +} diff --git a/webpack.renderer.ts b/webpack.renderer.ts index 26ee62faed..91611b84d1 100755 --- a/webpack.renderer.ts +++ b/webpack.renderer.ts @@ -45,7 +45,7 @@ export function webpackConfigReact(): webpack.Configuration { extractComments: { condition: "some", banner: [ - `Lens - The Kubernetes IDE. Copyright ${new Date().getFullYear()} by Lakend Labs, Inc. All rights reserved.` + `Lens - The Kubernetes IDE. Copyright ${new Date().getFullYear()} by Mirantis, Inc. All rights reserved.` ].join("\n") } })