Skip to content

Commit

Permalink
Ubiquiti Wifiman Desktop
Browse files Browse the repository at this point in the history
  • Loading branch information
flcdrg committed Dec 15, 2024
1 parent 28f592a commit 0c8ea10
Show file tree
Hide file tree
Showing 4 changed files with 44 additions and 0 deletions.
Binary file added ubiquiti-wifiman-desktop/icons/icon.ico
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
16 changes: 16 additions & 0 deletions ubiquiti-wifiman-desktop/tools/chocolateyinstall.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
$ErrorActionPreference = 'Stop';
$toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"

$packageArgs = @{
packageName = $env:ChocolateyPackageName
softwareName = 'ubiquiti-wifiman-desktop*'
fileType = 'exe'
silentArgs = "/s"
validExitCodes= @(0)
url64bit = "https://desktop.wifiman.com/wifiman-desktop-1.1.0-amd64.exe"
checksum64 = 'CB22CC3EBD21BADC64524452B5FD54A19AF5010EFB52D1EB0EAF319A3D3D961F'
checksumType64= 'sha256'
destination = $toolsDir
}

Install-ChocolateyPackage @packageArgs
28 changes: 28 additions & 0 deletions ubiquiti-wifiman-desktop/ubiquiti-wifiman-desktop.nuspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Do not remove this test for UTF-8: if “Ω” doesn’t appear as greek uppercase omega letter enclosed in quotation marks, you should use an editor that supports UTF-8, not this one. -->

<package xmlns="http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd">
<metadata>
<id>ubiquiti-wifiman-desktop</id>
<version>1.1.0</version>
<packageSourceUrl>https://github.com/flcdrg/au-packages/tree/master/ubiquiti-wifiman-desktop</packageSourceUrl>
<owners>flcdrg</owners>
<title>Ubiquiti WiFiman Desktop (Install)</title>
<authors>Ubiquiti</authors>
<projectUrl>https://wifiman.com/</projectUrl>
<!--<iconUrl>http://cdn.rawgit.com/__MAINTAINER_REPO__/master/icons/ubiquiti-wifiman-desktop.png</iconUrl>-->
<copyright>2024 Ubiquiti Networks, Inc </copyright>
<licenseUrl>https://www.ui.com/eula/</licenseUrl>
<requireLicenseAcceptance>true</requireLicenseAcceptance>
<docsUrl>https://help.ui.com/hc/en-us/articles/205204150-Using-WiFiman</docsUrl>
<!--<mailingListUrl></mailingListUrl>-->
<!--<bugTrackerUrl></bugTrackerUrl>-->
<tags>unifi ubiquiti wifi network</tags>
<summary>WiFiman is an intuitive app that will assist you in optimizing your network setup</summary>
<description>WiFiman is an intuitive app that will assist you in optimizing your network setup</description>
</metadata>
<!-- this section controls what actually gets packaged into the Chocolatey package -->
<files>
<file src="tools\**" target="tools" />
</files>
</package>

0 comments on commit 0c8ea10

Please sign in to comment.