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 March 9, 2022
JxBrowser 7.23
In this update we extend the API with functionality that allows autofill web forms with user data profiles and credit cards, upgrade Chromium to version 98, and fixed several important issues.
Chromium 98
Chromium has been upgraded to version 98.0.4758.102.
This Chromium version includes many security fixes, so we recommend that you upgrade to this version.
Web form autofill
User data profiles
Now you can autofill web forms with user data profile that includes address, city, phone, first name, etc. To access all stored user data profiles use the following API:
profile.userDataProfiles().all().forEach(userDataProfile -> {
String email = userDataProfile.email();
String city = userDataProfile.address().city();
});
Credit cards
Remember the credit card details, autofill web forms with it, manage the saved credit card details using the brand new API:
profile.creditCards().all().forEach(creditCard -> {
String number = creditCard.number();
CreditCardNetwork network = creditCard.network();
});
Linux Widevine
Use Widevine on Linux to watch DRM protected movies and audio. By default, Widevine is disabled. To enable it, please use the following option:
Engine engine = Engine.newInstance(
EngineOptions.newBuilder(renderingMode)
.enableProprietaryFeature(ProprietaryFeature.WIDEVINE)
.build());
macOS dictation
Now you can dictate messages and documents on Mac in both rendering modes.
Windows’ emoji
Use the Windows’ Emoji window in the off-screen rendering mode.
Quality enhancements
- Restore Picture in Picture on Windows, Linux, and macOS in the off-screen rendering mode.
- Fix the issue when the
Cmd
key is never released when pressingCmd+A
on macOS in JavaFX. - Fix the issue when the Pages Per Sheet setting is used, the printing either hangs or takes a lot of time (more than 5 minutes).
- Fix JVM crash when closing a child modal window that contains
BrowserView
on macOS. - Fix JVM crash when hiding IME window on macOS Apple Silicon.
- Fix the issue when the library fails to extract the default printer capabilities if printer and device name of a single printer are different.
- If you stop navigation during taking bitmap, Chromium will hang. To handle such cases
Browser.bitmap()
now throwscom.teamdev.jxbrowser.browser.BitmapTimeoutException
.
Download JxBrowser 7.23
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.