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

electron 7.2.3

Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com>
This commit is contained in:
Jari Kolehmainen 2020-04-20 19:17:18 +03:00
parent c7f92494e0
commit 6f21afc7b2
8 changed files with 1751 additions and 1803 deletions

View File

@ -1,3 +1,3 @@
disturl "https://atom.io/download/electron"
target "6.1.10"
target "7.2.3"
runtime "electron"

View File

@ -190,7 +190,7 @@
"bootstrap-vue": "^2.0.0-rc.28",
"concurrently": "^5.1.0",
"css-loader": "^3.2.0",
"electron": "6.1.10",
"electron": "7.2.3",
"electron-builder": "^22.4.0",
"electron-notarize": "^0.2.1",
"electron-webpack": "^2.7.4",

View File

@ -15,7 +15,6 @@ export class ClusterStore {
private constructor() {
this.store = new ElectronStore({
name: "lens-cluster-store",
projectVersion: getAppVersion(),
accessPropertiesByDotNotation: false, // To make dots safe in cluster context names
migrations: {
"2.0.0-beta.2": version200Beta2.migration,

View File

@ -20,7 +20,6 @@ export class UserStore {
private constructor() {
this.store = new ElectronStore({
projectVersion: appUtil.getAppVersion(),
migrations: {
"2.1.0-beta.4": version210Beta4.migration,
}

View File

@ -1,8 +1,6 @@
import * as k8s from "@kubernetes/client-node"
import * as os from "os"
import { all } from "q";
import * as yaml from "js-yaml"
import { V1beta1ValidatingWebhookConfiguration } from "@kubernetes/client-node";
import logger from "./logger";
const kc = new k8s.KubeConfig()

View File

@ -45,7 +45,7 @@ export default function initMenu(opts: MenuOptions, promiseIpc: any) {
const mt: MenuItemConstructorOptions[] = [];
const macAppMenu: MenuItemConstructorOptions = {
label: app.getName(),
label: app.name,
submenu: [
{
label: "About Lens",

View File

@ -97,7 +97,7 @@ export class ShellSession extends EventEmitter {
env["PTYPID"] = process.pid.toString()
env["KUBECONFIG"] = this.kubeconfigPath
env["TERM_PROGRAM"] = app.getName()
env["TERM_PROGRAM"] = app.name
env["TERM_PROGRAM_VERSION"] = app.getVersion()
if (this.preferences.httpsProxy) {
env["HTTPS_PROXY"] = this.preferences.httpsProxy

3542
yarn.lock

File diff suppressed because it is too large Load Diff