-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
rongjiang
committed
Dec 12, 2017
1 parent
f316f75
commit 3d48ea8
Showing
13 changed files
with
642 additions
and
38 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
{ | ||
".url": { | ||
"org.example.synokvm": { | ||
"type": "url", | ||
"allUsers": true, | ||
"title": "synoKVM", | ||
"icon": "images/icon_{0}.png", | ||
"protocol": "http", | ||
"url": "/", | ||
"port": "8000" | ||
} | ||
} | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
<html> | ||
<body> | ||
<frameset> | ||
<iframe src="http://192.168.1.202:8000" frameborder="0" | ||
scrolling="0" width=100% height=100%> | ||
</frameset> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,23 +2,30 @@ | |
<project name="Ant SPK Task" basedir="." default="spk" xmlns:ivy="antlib:org.apache.ivy.ant" xmlns:syno="antlib:net.filebot.ant.spk"> | ||
|
||
<property name="package" value="synokvm" /> | ||
<property name="version" value="1.2" /> | ||
<property name="version" value="1.6" /> | ||
|
||
<target name="spk" description="Build SPK package"> | ||
<syno:spk destdir="dist" name="${package}" version="${version}" arch="x86_64" compression="gzip"> | ||
<info name="displayname" value="SynoKVM" /> | ||
<info name="description" value="libvirt, kvm for synology DSM" /> | ||
<info name="description" value="libvirt, qemu, webvirtmgr bundle for synology DSM." /> | ||
|
||
<info name="maintainer" value="[email protected]" /> | ||
<info name="maintainer_url" value="https://github.com/bsdcpp/synoKVM" /> | ||
|
||
<info name="dsmappname" value="org.example.synokvm" /> | ||
<info name="dsmuidir" value="dsm" /> | ||
|
||
<icon size="72" file="app/dsm/images/icon_72.png" /> | ||
<icon size="256" file="app/dsm/images/icon_256.png" /> | ||
|
||
<wizard dir="spk/wizard" /> | ||
<scripts dir="spk/scripts" filemode="755" /> | ||
|
||
<package dir="app" includes="**/*" filemode="755" /> | ||
<package dir="app" includes="**/*" filemode="644" /> | ||
<package dir="app" includes="**/sbin/*" filemode="755" /> | ||
<package dir="app" includes="**/bin/*" filemode="755" /> | ||
<package dir="app" includes="**/*.sh" filemode="755" /> | ||
<package dir="app" includes="**/.secret_key_store" filemode="600" /> | ||
|
||
<codesign keyid="D545C93D" secring="gpg/secring.gpg" password="" /> | ||
</syno:spk> | ||
|
Oops, something went wrong.