Skip to content

Commit

Permalink
synokvm-1.6 update
Browse files Browse the repository at this point in the history
  • Loading branch information
rongjiang committed Dec 12, 2017
1 parent f316f75 commit 3d48ea8
Show file tree
Hide file tree
Showing 13 changed files with 642 additions and 38 deletions.
13 changes: 13 additions & 0 deletions ant-spk/app/dsm/config
@@ -0,0 +1,13 @@
{
".url": {
"org.example.synokvm": {
"type": "url",
"allUsers": true,
"title": "synoKVM",
"icon": "images/icon_{0}.png",
"protocol": "http",
"url": "/",
"port": "8000"
}
}
}
Binary file modified ant-spk/app/dsm/images/icon_256.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified ant-spk/app/dsm/images/icon_72.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 8 additions & 0 deletions ant-spk/app/dsm/index.html
@@ -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>
13 changes: 10 additions & 3 deletions ant-spk/build.xml
Expand Up @@ -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="bsdcpp@gmail.com" />
<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>
Expand Down

0 comments on commit 3d48ea8

Please sign in to comment.