发布日期 2023年05月05日

JxBrowser 7.32

Chromium 113

We upgraded Chromium to 113.0.5672.63.

This update contains 15 security fixes.

Releasing JS/DOM objects

The lifetime of JavaScript and DOM objects returned by JxBrowser API is bound to the lifetime of the page. We persist these objects in memory as long as the page exists: Chromium will never garbage collect them until the page is unloaded. That causes memory leaks in single-page applications.

In the new version, you can make these objects visible to the garbage collectors:

Element element = document.findElementById("payment-dialog").get();
JsObject jsObject = mainFrame.executeJavaScript("window.data");

// Allow V8 and Blink to release these objects once needed.
element.close();
jsObject.close();

Quality Enhancements

  • Fixed a memory leak in JavaScript-Java when creating collections.
  • Fixed the issue when the custom SelectColorCallback didn’t work.
  • Fixed incorrect media device discovery.
  • Fixed incorrect browser size after moving to another display in the HiDPI environment.

Download JxBrowser 7.32

请提供您的电子邮箱地址,我们会尽快将下载说明发送给您。

发送...
请检查您的收件箱。

我们无法发送电子邮件。请使用直接链接下载JxBrowser。

如果您已经是我们的注册客户,您无需任何操作,即可轻松享受此次更新。

如果您希望深入了解并体验我们的产品,您可以申请评估许可证。

获取免费 30 天体验
Go Top