1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00

Update copyright, eula and contact details (#690)

Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com>
This commit is contained in:
Jari Kolehmainen 2020-08-14 16:05:57 +03:00 committed by GitHub
parent 30c14eb6da
commit 81796af508
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
7 changed files with 12 additions and 12 deletions

View File

@ -1,6 +1,6 @@
MIT License
Copyright (c) 2020 Lakend Labs, Inc.
Copyright (c) 2020 Mirantis, Inc.
All rights reserved.

View File

@ -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\"",

View File

@ -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) {

View File

@ -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');
},
},
{

View File

@ -1,7 +1,7 @@
{
"name": "Lens Dark Theme",
"type": "dark",
"author": "Lakend Labs",
"author": "Mirantis",
"colors": {
"blue": "#3d90ce",
"magenta": "#c93dce",

View File

@ -1,7 +1,7 @@
{
"name": "Lens Light Theme",
"type": "light",
"author": "Lakend Labs",
"author": "Mirantis",
"colors": {
"blue": "#3d90ce",
"magenta": "#c93dce",

View File

@ -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")
}
})