-
-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
3 changed files
with
45 additions
and
0 deletions.
There are no files selected for viewing
15 changes: 15 additions & 0 deletions
15
automatic/trafficwatcher/tools/tools/chocolateyInstall.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,15 @@ | ||
$packageName = 'trafficwatcher' | ||
$url = 'http://sourceforge.net/projects/trafficwatcher/files/trafficwatch-2.0.1.zip/download' | ||
$checksum = 'c13fd3e1aed147a782678b27711f1601fdc186d5' | ||
$checksumType = 'sha1' | ||
$toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)" | ||
$installFile = Join-Path $toolsDir "$($packageName).exe" | ||
|
||
Install-ChocolateyZipPackage -PackageName "$packageName" ` | ||
-Url "$url" ` | ||
-UnzipLocation "$toolsDir" ` | ||
-Url64bit "" ` | ||
-Checksum "$checksum" ` | ||
-ChecksumType "$checksumType" ` | ||
|
||
Set-Content -Path ("$installFile.gui") -Value $null |
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,30 @@ | ||
<?xml version="1.0"?> | ||
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd"> | ||
<metadata> | ||
<id>trafficwatcher</id> | ||
<version>2.0.1</version> | ||
<title>TrafficWatcher</title> | ||
<authors>Stefan Kueng</authors> | ||
<owners>dtgm</owners> | ||
<packageSourceUrl></packageSourceUrl> | ||
<licenseUrl>https://www.gnu.org/licenses/gpl-2.0.html</licenseUrl> | ||
<projectUrl>http://stefanstools.sourceforge.net/trafficWatcher.html</projectUrl> | ||
<iconUrl>https://cdn.rawgit.com/dtgm/chocolatey-packages/5814765f80add6789905178b9c1e8c7b5453bffe/icons/trafficwatcher.ico</iconUrl> | ||
<requireLicenseAcceptance>false</requireLicenseAcceptance> | ||
<description>trafficWatcher is a small tool to monitor your network activity. | ||
|
||
Unlike other tools, trafficWatcher can differentiate between traffic inside your LAN and the traffic that reaches the internet. It shows the current up and download speed in a small icon in the system tray. More detailed traffic information can be shown in the dialog. The options page allows to set the network card to use and the max speed you expect. | ||
|
||
[Source code](https://sourceforge.net/p/trafficwatcher/code/HEAD/tree/trunk/)</description> | ||
<summary>Small tool to monitor your network activity</summary> | ||
<releaseNotes /> | ||
<copyright>© Stefan Kueng</copyright> | ||
<tags>network bandwidth monitor</tags> | ||
<dependencies> | ||
<dependency id="winpcap" /> | ||
</dependencies> | ||
</metadata> | ||
<files> | ||
<file src="tools\**" target="tools" /> | ||
</files> | ||
</package> |
Binary file not shown.