Skip to content
Open
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
12 changes: 6 additions & 6 deletions server/mirth-client.jnlp
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
<jnlp>
<information>
<title>Mirth Connect Administrator</title>
<vendor>NextGen Healthcare</vendor>
<homepage href="http://www.nextgen.com"/>
<title>Open Integration Engine</title>
<vendor>Open Integration Engine</vendor>
<homepage href="https://openintegrationengine.org/"/>
<description>Open Source Healthcare Integration Engine</description>

<icon href="images/NG_MC_Icon_128x128.png"/>
<icon href="images/MirthConnect_Logo_WordMark_Big.png" kind="splash"/>
<icon href="images/oie_logo_only_white_background_48x48.png"/>
<icon href="images/oie_logo_only_white_background_48x48.png" kind="splash"/>

<offline-allowed/>

<shortcut online="true">
<!-- put a shortcut on the desktop -->
<desktop/>
<!-- put shortcut in start menu too -->
<menu submenu="Mirth Connect"/>
<menu submenu="Open Integration Engine"/>
</shortcut>

</information>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -543,15 +543,15 @@ private static String normalizeWhitespace(String input) {
}

private static String CORE_JNLP = "<jnlp codebase=\"https://localhost:8443\" version=\"4.5.2\">\n"
+ " <information>\n" + " <title>Mirth Connect Administrator 4.5.2</title>\n"
+ " <vendor>NextGen Healthcare</vendor>\n" + " <homepage href=\"http://www.nextgen.com\"/>\n"
+ " <information>\n" + " <title>Open Integration Engine 4.5.2</title>\n"
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

might as well bump the version while you are at it?

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is a test fixture. I've submitted #286 to correct the production version being here.

+ " <vendor>Open Integration Engine</vendor>\n" + " <homepage href=\"https://openintegrationengine.org/\"/>\n"
+ " <description>Open Source Healthcare Integration Engine</description>\n" + " \n"
+ " <icon href=\"images/NG_MC_Icon_128x128.png\"/>\n"
+ " <icon href=\"images/MirthConnect_Logo_WordMark_Big.png\" kind=\"splash\"/> \n" + " \n"
+ " <icon href=\"images/oie_logo_only_white_background_48x48.png\"/>\n"
+ " <icon href=\"images/oie_logo_only_white_background_48x48.png\" kind=\"splash\"/> \n" + " \n"
+ " <offline-allowed/>\n" + "\n" + " <shortcut online=\"true\">\n"
+ " <!-- put a shortcut on the desktop -->\n" + " <desktop/>\n"
+ " <!-- put shortcut in start menu too -->\n"
+ " <menu submenu=\"Mirth Connect\"/>\n" + " </shortcut>\n" + " \n"
+ " <menu submenu=\"Open Integration Engine\"/>\n" + " </shortcut>\n" + " \n"
+ " </information>\n" + " \n" + " <security>\n" + " <all-permissions/>\n" + " </security>\n"
+ " \n" + " <update check=\"timeout\" policy=\"always\"/>\n" + " \n" + " <resources>\n"
+ " <j2se href=\"http://java.sun.com/products/autodl/j2se\" java-vm-args=\"--add-modules=java.sql.rowset --add-exports=java.base/com.sun.crypto.provider=ALL-UNNAMED --add-exports=java.base/sun.security.provider=ALL-UNNAMED --add-opens=java.base/java.lang=ALL-UNNAMED --add-opens=java.base/java.lang.reflect=ALL-UNNAMED --add-opens=java.base/java.math=ALL-UNNAMED --add-opens=java.base/java.net=ALL-UNNAMED --add-opens=java.base/java.security=ALL-UNNAMED --add-opens=java.base/java.security.cert=ALL-UNNAMED --add-opens=java.base/java.text=ALL-UNNAMED --add-opens=java.base/java.util=ALL-UNNAMED --add-opens=java.base/sun.security.pkcs=ALL-UNNAMED --add-opens=java.base/sun.security.rsa=ALL-UNNAMED --add-opens=java.base/sun.security.x509=ALL-UNNAMED --add-opens=java.desktop/com.apple.eawt=ALL-UNNAMED --add-opens=java.desktop/com.apple.eio=ALL-UNNAMED --add-opens=java.desktop/java.awt=ALL-UNNAMED --add-opens=java.desktop/java.awt.color=ALL-UNNAMED --add-opens=java.desktop/java.awt.font=ALL-UNNAMED --add-opens=java.desktop/javax.swing=ALL-UNNAMED --add-opens=java.xml/com.sun.org.apache.xalan.internal.xsltc.trax=ALL-UNNAMED\" max-heap-size=\"512m\" version=\"1.9+\"/>\n"
Expand Down
Loading