2024
- v7.41.4
- v8.1.0
- v8.0.0
- v7.41.3
- v7.41.2
- v7.41.1
- v7.41.0
- v7.40.0
- v7.39.2
- v7.39.1
- v7.39.0
- v7.38.2
- v7.38.1
- v7.38.0
- v7.37.2
- v7.37.1
2023
- v7.37.0
- v7.36.3
- v7.36.2
- v7.36.1
- v7.36
- v7.35.2
- v7.35.1
- v7.35
- v7.34.1
- v7.34
- v7.33.2
- v7.33.1
- v7.33
- v7.32
- v7.31.1
- v7.31
- v7.30.3
- v7.30.2
- v7.30
2022
2021
2020
2019
2018
2017
2016
2015
2014
2013
2012
2011
2010
2009
2008
2007
Posted on October 17, 2019
JxBrowser 7.3
Oracle has released the new JDK, Apple has released the new macOS, and we have released the new JxBrowser, supporting both of them, for you to enjoy the updates right away.
Besides, JxBrowser 7.3 got way more stable and reliable with all the fixes and improvements, introduced in this release.
macOS Catalina
This month Apple has announced the public release of macOS Catalina (10.15). JxBrowser 7.3 has been tested on this operating system and now officially supports it.
Java 13
Oracle announced the GA release of JDK 13. And starting with version 7.3 JxBrowser officially supports it on the Windows, Linux, and macOS platforms.
Browser initiated URL request
In the BeforeSendHeadersCallback
and ReceiveHeadersCallback
callbacks you can access the Browser
instance, which
initiated the corresponding URL request. For example:
network.set(BeforeSendHeadersCallback.class, params -> {
// Access the Browser instance initiated this URL request.
params.browser().ifPresent(browser -> {});
return BeforeSendHeadersCallback.Response.proceed();
});
network.set(ReceiveHeadersCallback.class, params -> {
// Access the Browser instance initiated this URL request.
params.browser().ifPresent(browser -> {});
return ReceiveHeadersCallback.Response.proceed();
});
Disabling BrowserView
Now you can disable/enable both the Swing and JavaFX BrowserView
component in both rendering modes using
the BrowserView.setEnabled(boolean)
method. The disabled BrowserView
renders web content as usual but ignores the
user input.
Improvements
- The library checks all the required dependencies on Linux platform and throws an exception if some dependencies are
missing and must be installed. The checking mechanism takes into account the
LD_LIBRARY_PATH
environment variable. - Swing
BrowserView
is now positioned correctly inside a container without layout manager in the hardware accelerated rendering mode.
Fixed issues
- Wrong scaling when moving
BrowserView
on macOS from an HiDPI to Non-HiDPI display and vice versa. - Broken painting when removing and adding the same Swing
BrowserView
component in the off-screen rendering mode. - Infinite await after closing an
Engine
instance during stopping JavaFX application. - Overriding URL request with the same HTTP headers in the
ReceiveHeadersCallback
callback leading to an issue when some websites stop loading. - The
java.lang.IllegalArgumentException: Failed to determine action class
error when registering a callback which implements two or more callback interfaces. - The Swing
BrowserView
bounds are incorrect when displayed on the monitor with the scale factor > 100% and when the--force-device-scale-factor=1.0
Chromium switch is used. - The web content being displayed at the top left corner of the main screen when a Swing
BrowserView
component is embedded into theJTabbedPane
container. - The
Cookie
expiration time being ignored and invalid when putting a cookie to the cookie store. - The
key
property being empty when the keydown JavaScript event has been fired in the off-screen rendering mode. - Drag and drop not working properly on the Bing maps, HTML sliders, and the WebGL content in the off-screen rendering mode.
- The
java.lang.NullPointerException
error during constructing aJsError
instance. - Flickering during resizing WebGL content on Linux in the off-screen rendering mode.
- Memory leak when loading the web pages with the different domains in the off-screen rendering mode when
the
BrowserView
is displayed in both Swing and JavaFX. - The pending Chromium render processes when killing Java process when Chromium Sandbox is disabled on Windows.
- Wrong
BrowserView
being displayed when two or moreBrowserView
instances are used inJTabbedPane
in the hardware-accelerated rendering mode on macOS. - Wrong Frame in the
PointInspection
structure for an HTML element located inside anIFRAME
. CookieStore
not being able to delete the cookies which were set by a web server.- Native crash when displaying a JavaFX Stage with the
TabPane
that containsBrowserView
in the hardware-accelerated rendering mode on Windows and Java 10 and higher. - Right click context menu not working for some web pages on Windows in the off-screen rendering mode.
Download JxBrowser 7.3
Please share your email with us, and we'll send you download instructions.
We were unable to send the email. Please use the direct link to download JxBrowser.
If you are a registered customer you don't need to do anything to use this update.
If you would like to evaluate the product, you need an evaluation license.
Follow @JxBrowserTeam to get notified of the library updates.
Subscribe to our RSS feed to get instant updates on new releases.
Subscribe to get notifications about the latest releases.