Skip to content

Update jxbrowser to 7.19 #5783

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Oct 26, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ flutter-intellij.jar
flutter-intellij.zip
lib/*.jar
lib/jxbrowser/*
!lib/jxbrowser/jxbrowser-7.17.jar
!lib/jxbrowser/jxbrowser-swing-7.17.jar
!lib/jxbrowser/jxbrowser-7.19.jar
!lib/jxbrowser/jxbrowser-swing-7.19.jar
!lib/java-string-similarity-2.0.0.jar
material-design-icons/
out/
Expand Down
10 changes: 5 additions & 5 deletions flutter-intellij-community.iml
Original file line number Diff line number Diff line change
Expand Up @@ -92,11 +92,11 @@
<orderEntry type="module" module-name="intellij.android.projectSystem" />
<orderEntry type="library" name="Trove4j" level="project" />
<orderEntry type="module" module-name="intellij.android.observable" />
<orderEntry type="library" name="jxbrowser-7.17" level="project" />
<orderEntry type="library" name="jxbrowser-7.19" level="project" />
<orderEntry type="module-library">
<library>
<CLASSES>
<root url="jar://$MODULE_DIR$/lib/jxbrowser/jxbrowser-7.17.jar!/" />
<root url="jar://$MODULE_DIR$/lib/jxbrowser/jxbrowser-7.19.jar!/" />
</CLASSES>
<JAVADOC />
<SOURCES />
Expand All @@ -105,15 +105,15 @@
<orderEntry type="module-library">
<library>
<CLASSES>
<root url="jar://$MODULE_DIR$/lib/jxbrowser/jxbrowser-swing-7.17.jar!/" />
<root url="jar://$MODULE_DIR$/lib/jxbrowser/jxbrowser-swing-7.19.jar!/" />
</CLASSES>
<JAVADOC />
<SOURCES />
</library>
</orderEntry>
<orderEntry type="library" name="Trove4j" level="project" />
<orderEntry type="module" module-name="intellij.android.observable" />
<orderEntry type="library" name="jxbrowser-7.17" level="project" />
<orderEntry type="library" name="jxbrowser-7.19" level="project" />
<orderEntry type="library" name="studio-plugin-git4idea" level="project" />
<orderEntry type="library" name="studio-plugin-yaml" level="project" />
<orderEntry type="library" name="studio-plugin-gradle" level="project" />
Expand Down Expand Up @@ -160,4 +160,4 @@
<orderEntry type="module" module-name="intellij.yaml" />
<orderEntry type="library" name="mockito" level="project" />
</component>
</module>
</module>
6 changes: 3 additions & 3 deletions flutter-intellij.iml
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@
<orderEntry type="module-library">
<library>
<CLASSES>
<root url="jar://$MODULE_DIR$/lib/jxbrowser/jxbrowser-7.17.jar!/" />
<root url="jar://$MODULE_DIR$/lib/jxbrowser/jxbrowser-7.19.jar!/" />
</CLASSES>
<JAVADOC />
<SOURCES />
Expand All @@ -100,7 +100,7 @@
<orderEntry type="module-library">
<library>
<CLASSES>
<root url="jar://$MODULE_DIR$/lib/jxbrowser/jxbrowser-swing-7.17.jar!/" />
<root url="jar://$MODULE_DIR$/lib/jxbrowser/jxbrowser-swing-7.19.jar!/" />
</CLASSES>
<JAVADOC />
<SOURCES />
Expand All @@ -127,4 +127,4 @@
<orderEntry type="library" name="java-string-similarity-2.0.0" level="project" />
<orderEntry type="library" name="org.mockito:mockito-core:2.2.2" level="project" />
</component>
</module>
</module>
Binary file not shown.
Binary file not shown.
2 changes: 1 addition & 1 deletion src/io/flutter/utils/JxBrowserUtils.java
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

public class JxBrowserUtils {
private static final String JXBROWSER_FILE_PREFIX = "jxbrowser";
private static final String JXBROWSER_FILE_VERSION = "7.17";
private static final String JXBROWSER_FILE_VERSION = "7.19";
private static final String JXBROWSER_FILE_SUFFIX = "jar";
public static final String LICENSE_PROPERTY_NAME = "jxbrowser.license.key";

Expand Down