-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bump version to 10, add build process, update gadget.xml
Why version "10"? Why not? New baseline version #ing.
- Loading branch information
Showing
4 changed files
with
16 additions
and
5 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 @@ | ||
@powershell ./build.ps1 |
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,6 @@ | ||
#Build the src directory into the gadget (which is nothing more than a zip file with the .gadget extension) | ||
#Assumes PowerShell 3 and at least .Net 4.0 | ||
|
||
del hyper-v-gadget.gadget | ||
Add-Type -A System.IO.Compression.FileSystem | ||
[IO.Compression.ZipFile]::CreateFromDirectory('src', 'hyper-v-gadget.gadget') |
Binary file not shown.
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 |
---|---|---|
@@ -1,21 +1,25 @@ | ||
<?xml version="1.0" encoding="utf-8" ?> | ||
<gadget> | ||
<name>Hyper-V Monitor</name> | ||
<namespace>HV.Monitor</namespace> | ||
<version>5.2.5</version> | ||
<author name="Tore Lervik"> | ||
<version>10.0.0</version> | ||
<author name="Walden Leverich"> | ||
<info url="https://github.com/WaldenL/hyper-v-gadget" /> | ||
</author> | ||
<!-- Original Author and copyright info | ||
<author name="Tore Lervik"> | ||
<info url="mindre.net" /> | ||
</author> | ||
<copyright>2010</copyright> | ||
--> | ||
<description>Hyper-V Monitor Gadget</description> | ||
<icons> | ||
<icon height="100" width="92" src="Icon.png" /> | ||
</icons> | ||
<hosts> | ||
<host name="sidebar"> | ||
<base type="HTML" apiVersion="5.2.5" src="Gadget.html" /> | ||
<base type="HTML" apiVersion="1.0.0" src="Gadget.html" /> | ||
<permissions>full</permissions> | ||
<platform minPlatformVersion="0.3" /> | ||
<platform minPlatformVersion="1.0" /> | ||
</host> | ||
</hosts> | ||
</gadget> |