-
-
Notifications
You must be signed in to change notification settings - Fork 53
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
44 additions
and
0 deletions.
There are no files selected for viewing
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.
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,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 |
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,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> |