Skip to content

Commit

Permalink
Package download trafficwatcher
Browse files Browse the repository at this point in the history
[skip ci]
  • Loading branch information
tunisiano187 committed Apr 15, 2024
1 parent c1307b1 commit f61e54e
Show file tree
Hide file tree
Showing 3 changed files with 45 additions and 0 deletions.
15 changes: 15 additions & 0 deletions automatic/trafficwatcher/tools/tools/chocolateyInstall.ps1
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
30 changes: 30 additions & 0 deletions automatic/trafficwatcher/trafficwatcher.nuspec
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 added icons/trafficwatcher.ico
Binary file not shown.

0 comments on commit f61e54e

Please sign in to comment.