mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
Release 6.1.2 (#6315)
* Release 6.1.2 Signed-off-by: Sebastian Malton <sebastian@malton.name> * Remove get-logs telemetry event (#6296) Signed-off-by: Juho Heikka <juho.heikka@gmail.com> Signed-off-by: Juho Heikka <juho.heikka@gmail.com> * Delete old extensions when app is updated on Windows (#6301) * Add missing space in "Remove x items" (#6290) Signed-off-by: Sebastian Malton <sebastian@malton.name> Signed-off-by: Juho Heikka <juho.heikka@gmail.com> Co-authored-by: Juho Heikka <juho.heikka@gmail.com> Co-authored-by: Andy Hall <andy.hall@yubico.com>
This commit is contained in:
parent
aa4a5012f2
commit
7efe974966
@ -1,4 +1,7 @@
|
|||||||
!macro customInit
|
!macro customInit
|
||||||
|
; Make sure all old extensions are removed
|
||||||
|
RMDir /r "$INSTDIR\resources\extensions"
|
||||||
|
|
||||||
; Workaround for installer handing when the app directory is removed manually
|
; Workaround for installer handing when the app directory is removed manually
|
||||||
${ifNot} ${FileExists} "$INSTDIR"
|
${ifNot} ${FileExists} "$INSTDIR"
|
||||||
DeleteRegKey HKCU "Software\Microsoft\Windows\CurrentVersion\Uninstall\{${UNINSTALL_APP_KEY}}"
|
DeleteRegKey HKCU "Software\Microsoft\Windows\CurrentVersion\Uninstall\{${UNINSTALL_APP_KEY}}"
|
||||||
|
|||||||
@ -3,7 +3,7 @@
|
|||||||
"productName": "OpenLens",
|
"productName": "OpenLens",
|
||||||
"description": "OpenLens - Open Source IDE for Kubernetes",
|
"description": "OpenLens - Open Source IDE for Kubernetes",
|
||||||
"homepage": "https://github.com/lensapp/lens",
|
"homepage": "https://github.com/lensapp/lens",
|
||||||
"version": "6.1.1",
|
"version": "6.1.2",
|
||||||
"main": "static/build/main.js",
|
"main": "static/build/main.js",
|
||||||
"copyright": "© 2022 OpenLens Authors",
|
"copyright": "© 2022 OpenLens Authors",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
|
|||||||
@ -100,10 +100,6 @@ const terminal = [
|
|||||||
"create-terminal-tab",
|
"create-terminal-tab",
|
||||||
];
|
];
|
||||||
|
|
||||||
const logs = [
|
|
||||||
"get-logs",
|
|
||||||
];
|
|
||||||
|
|
||||||
const telemetryWhiteListForFunctionsInjectable = getInjectable({
|
const telemetryWhiteListForFunctionsInjectable = getInjectable({
|
||||||
id: "telemetry-white-list-for-functions",
|
id: "telemetry-white-list-for-functions",
|
||||||
instantiate: () => [
|
instantiate: () => [
|
||||||
@ -114,7 +110,6 @@ const telemetryWhiteListForFunctionsInjectable = getInjectable({
|
|||||||
...externalActions,
|
...externalActions,
|
||||||
...uiInteraction,
|
...uiInteraction,
|
||||||
...terminal,
|
...terminal,
|
||||||
...logs,
|
|
||||||
],
|
],
|
||||||
decorable: false,
|
decorable: false,
|
||||||
});
|
});
|
||||||
|
|||||||
@ -195,7 +195,7 @@ class NonInjectedItemListLayoutContent<
|
|||||||
)
|
)
|
||||||
: (
|
: (
|
||||||
<p>
|
<p>
|
||||||
Remove
|
{"Remove "}
|
||||||
<b>{selectedCount}</b>
|
<b>{selectedCount}</b>
|
||||||
{" items "}
|
{" items "}
|
||||||
<b>{selectedNames}</b>
|
<b>{selectedNames}</b>
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user