Skip to content

Commit

Permalink
Release 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
weichunsheng committed Jan 4, 2021
1 parent 3080ae3 commit 4bf621e
Show file tree
Hide file tree
Showing 5 changed files with 45 additions and 44 deletions.
43 changes: 22 additions & 21 deletions .idea/artifacts/MultiSignTool.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

15 changes: 0 additions & 15 deletions Release/JavaFXApp.jnlp

This file was deleted.

16 changes: 8 additions & 8 deletions Release/JavaFXApp.html → Release/MultiSignTool.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<script>
function launchApplication(jnlpfile) {
dtjava.launch( {
url : 'JavaFXApp.jnlp'
url : 'MultiSignTool.jnlp'
},
{
javafx : '8.0+'
Expand All @@ -15,14 +15,14 @@
</script>

<script>
function javafxEmbedJavaFXApp_id() {
function javafxEmbedMultiSignTool_id() {
dtjava.embed(
{
id : 'JavaFXApp_id',
url : 'JavaFXApp.jnlp',
id : 'MultiSignTool_id',
url : 'MultiSignTool.jnlp',
placeholder : 'javafx-app-placeholder',
width : '700',
height : '450'
width : '800',
height : '530'
},
{
javafx : '8.0+'
Expand All @@ -31,12 +31,12 @@
);
}
<!-- Embed FX application into web page once page is loaded -->
dtjava.addOnloadCallback(javafxEmbedJavaFXApp_id);
dtjava.addOnloadCallback(javafxEmbedMultiSignTool_id);
</script>

</head><body>
<h2>Test page for <b>MultiSignTool</b></h2>
<b>Webstart:</b> <a href='JavaFXApp.jnlp' onclick="return launchApplication('JavaFXApp.jnlp');">click to launch this app as webstart</a><br><hr><br>
<b>Webstart:</b> <a href='MultiSignTool.jnlp' onclick="return launchApplication('MultiSignTool.jnlp');">click to launch this app as webstart</a><br><hr><br>

<!-- Applet will be inserted here -->
<div id='javafx-app-placeholder'></div>
Expand Down
Binary file not shown.
15 changes: 15 additions & 0 deletions Release/MultiSignTool.jnlp
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<jnlp spec="1.0" xmlns:jfx="http://javafx.com" href="MultiSignTool.jnlp">
<information>
<title>MultiSignTool</title>
<vendor>魏春生</vendor>
<description>APK二次签名工具和多渠道打包,支持v1和v2签名.</description>
<offline-allowed/>
</information>
<resources>
<j2se version="1.6+" href="http://java.sun.com/products/autodl/j2se"/>
<jar href="MultiSignTool.jar" size="52927" download="eager" />
</resources>
<jfx:javafx-desc width="800" height="530" main-class="com.wei_spring.signtool.Main" name="MultiSignTool" />
<update check="background"/>
</jnlp>

0 comments on commit 4bf621e

Please sign in to comment.