Skip to content

Commit 263396c

Browse files
committed
updating known issues
1 parent fa69523 commit 263396c

File tree

2 files changed

+7
-12
lines changed

2 files changed

+7
-12
lines changed
Lines changed: 6 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
+++
22
title = "Release Notes"
3-
date = 2019-02-22T15:27:38-05:00
3+
date = 2022-01-13T15:27:38-05:00
44
weight = 5
55
pre = "<b> </b>"
66
+++
77

88
### Recent Changes
99

10-
- For "Model in Image" domains, added the ability to configure and push an auxiliary image.
11-
- Added these capabilities:
10+
- For "Model in Image" domains, added the ability to configure, push, and use an auxiliary image.
11+
- Added these actions:
1212
- Update and uninstall the WebLogic Kubernetes Operator
1313
- Uninstall the ingress controller
1414
- Undeploy the WebLogic domain
@@ -19,17 +19,11 @@ pre = "<b> </b>"
1919

2020
- On Linux, the application depends on libGL being installed. libGL is not currently listed in the dependencies list for the `rpm` (or `deb`) installers. Therefore, you will need to install libGL using your package manager. For example:
2121
```
22-
sudo yum install libGL
22+
sudo yum install libGL
2323
```
2424

2525
- When trying to run the application on a Linux machine and display it on a Windows machine, do not use the Xming X server. There appears to be a bug (presumably with their OpenGL support) that prevents applications using Electron 13.x or later from working (for example, Microsoft VS Code doesn't work either).
2626

27-
- On Linux, when running the application that was installed using the `rpm` or `deb` installers, the following error messages will appear in the log. These are expected and can safely be ignored. The errors are due to the fact that the electron-updater package being used to perform application updates supports only upgrading Linux applications when run using an `AppImage` binary.
28-
```
29-
info: Checking for update
30-
error: Error: Error: ENOENT: no such file or directory, open '/opt/WebLogic Kubernetes Toolkit UI/resources/app-update.yml'
31-
error: Application auto-updater failed: ENOENT: no such file or directory, open '/opt/WebLogic Kubernetes Toolkit UI/resources/app-update.yml'
32-
error: Error: ENOENT: no such file or directory, open '/opt/WebLogic Kubernetes Toolkit UI/resources/app-update.yml'
33-
```
34-
3527
- The application is limited to working with archive files whose size is less than 2 GB.
28+
29+
- On MacOS, after editing a model in the Model Code View's model editor pane, you must click outside the editor pane prior to using the Menu to save or perform other actions that need the latest model content. This is due to Electron bug [31915](https://github.com/electron/electron/issues/31915) that fails to generate the proper events when the Menu is selected on MacOS.

electron/app/js/wktWindow.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1000,6 +1000,7 @@ function createApplicationMenu(newWindow) {
10001000
for(let key in menu.items) {
10011001
let item = menu.items[key];
10021002
item.submenu.on('menu-will-show', () => {
1003+
getLogger().debug('got menu-will-show event');
10031004
sendToWindow(newWindow, 'blur-focused-item');
10041005
});
10051006
}

0 commit comments

Comments
 (0)