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:
parent
c7f92494e0
commit
6f21afc7b2
2
.yarnrc
2
.yarnrc
@ -1,3 +1,3 @@
|
|||||||
disturl "https://atom.io/download/electron"
|
disturl "https://atom.io/download/electron"
|
||||||
target "6.1.10"
|
target "7.2.3"
|
||||||
runtime "electron"
|
runtime "electron"
|
||||||
|
|||||||
@ -190,7 +190,7 @@
|
|||||||
"bootstrap-vue": "^2.0.0-rc.28",
|
"bootstrap-vue": "^2.0.0-rc.28",
|
||||||
"concurrently": "^5.1.0",
|
"concurrently": "^5.1.0",
|
||||||
"css-loader": "^3.2.0",
|
"css-loader": "^3.2.0",
|
||||||
"electron": "6.1.10",
|
"electron": "7.2.3",
|
||||||
"electron-builder": "^22.4.0",
|
"electron-builder": "^22.4.0",
|
||||||
"electron-notarize": "^0.2.1",
|
"electron-notarize": "^0.2.1",
|
||||||
"electron-webpack": "^2.7.4",
|
"electron-webpack": "^2.7.4",
|
||||||
|
|||||||
@ -15,7 +15,6 @@ export class ClusterStore {
|
|||||||
private constructor() {
|
private constructor() {
|
||||||
this.store = new ElectronStore({
|
this.store = new ElectronStore({
|
||||||
name: "lens-cluster-store",
|
name: "lens-cluster-store",
|
||||||
projectVersion: getAppVersion(),
|
|
||||||
accessPropertiesByDotNotation: false, // To make dots safe in cluster context names
|
accessPropertiesByDotNotation: false, // To make dots safe in cluster context names
|
||||||
migrations: {
|
migrations: {
|
||||||
"2.0.0-beta.2": version200Beta2.migration,
|
"2.0.0-beta.2": version200Beta2.migration,
|
||||||
|
|||||||
@ -20,7 +20,6 @@ export class UserStore {
|
|||||||
|
|
||||||
private constructor() {
|
private constructor() {
|
||||||
this.store = new ElectronStore({
|
this.store = new ElectronStore({
|
||||||
projectVersion: appUtil.getAppVersion(),
|
|
||||||
migrations: {
|
migrations: {
|
||||||
"2.1.0-beta.4": version210Beta4.migration,
|
"2.1.0-beta.4": version210Beta4.migration,
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,8 +1,6 @@
|
|||||||
import * as k8s from "@kubernetes/client-node"
|
import * as k8s from "@kubernetes/client-node"
|
||||||
import * as os from "os"
|
import * as os from "os"
|
||||||
import { all } from "q";
|
|
||||||
import * as yaml from "js-yaml"
|
import * as yaml from "js-yaml"
|
||||||
import { V1beta1ValidatingWebhookConfiguration } from "@kubernetes/client-node";
|
|
||||||
import logger from "./logger";
|
import logger from "./logger";
|
||||||
|
|
||||||
const kc = new k8s.KubeConfig()
|
const kc = new k8s.KubeConfig()
|
||||||
|
|||||||
@ -45,7 +45,7 @@ export default function initMenu(opts: MenuOptions, promiseIpc: any) {
|
|||||||
|
|
||||||
const mt: MenuItemConstructorOptions[] = [];
|
const mt: MenuItemConstructorOptions[] = [];
|
||||||
const macAppMenu: MenuItemConstructorOptions = {
|
const macAppMenu: MenuItemConstructorOptions = {
|
||||||
label: app.getName(),
|
label: app.name,
|
||||||
submenu: [
|
submenu: [
|
||||||
{
|
{
|
||||||
label: "About Lens",
|
label: "About Lens",
|
||||||
|
|||||||
@ -97,7 +97,7 @@ export class ShellSession extends EventEmitter {
|
|||||||
|
|
||||||
env["PTYPID"] = process.pid.toString()
|
env["PTYPID"] = process.pid.toString()
|
||||||
env["KUBECONFIG"] = this.kubeconfigPath
|
env["KUBECONFIG"] = this.kubeconfigPath
|
||||||
env["TERM_PROGRAM"] = app.getName()
|
env["TERM_PROGRAM"] = app.name
|
||||||
env["TERM_PROGRAM_VERSION"] = app.getVersion()
|
env["TERM_PROGRAM_VERSION"] = app.getVersion()
|
||||||
if (this.preferences.httpsProxy) {
|
if (this.preferences.httpsProxy) {
|
||||||
env["HTTPS_PROXY"] = this.preferences.httpsProxy
|
env["HTTPS_PROXY"] = this.preferences.httpsProxy
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user