Skip to content

Commit

Permalink
AU: 1 updated - qtox
Browse files Browse the repository at this point in the history
  • Loading branch information
Chocolatey committed Jun 7, 2019
1 parent e98774f commit 0fa91f2
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion automatic/qtox/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# <img src="https://cdn.rawgit.com/chocolatey/chocolatey-coreteampackages/d12c934ca6454cc6fe10e5a708c6a32e2f59c55e/icons/qtox.svg" width="48" height="48"/> [qtox](https://chocolatey.org/packages/qtox)
# <img src="https://cdn.jsdelivr.net/gh/chocolatey-community/chocolatey-coreteampackages@d12c934ca6454cc6fe10e5a708c6a32e2f59c55e/icons/qtox.svg" width="48" height="48"/> [qtox](https://chocolatey.org/packages/qtox)

qTox is a powerful [Tox](https://tox.chat/) client that follows the Tox design guidelines while running on all major platforms.

Expand Down
8 changes: 4 additions & 4 deletions automatic/qtox/legal/VERIFICATION.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@ The embedded software have been downloaded from the listed download
locations and can be verified by doing the following:

1. Download the following
32-Bit software: <https://build.tox.chat/view/qtox/job/qTox_pkg_windows_x86_stable_release/lastSuccessfulBuild/artifact/setup-qtox32-.1.14.1.exe>
64-Bit software: <https://build.tox.chat/view/qtox/job/qTox_pkg_windows_x86-64_stable_release/lastSuccessfulBuild/artifact/setup-qtox64-.1.14.1.exe>
32-Bit software: <https://github.com/qTox/qTox/releases/download/v1.16.3/setup-qtox-i686-release.exe>
64-Bit software: <https://github.com/qTox/qTox/releases/download/v1.16.3/setup-qtox-x86_64-release.exe>
2. Get the checksum using one of the following methods:
- Using powershell function 'Get-FileHash'
- Use chocolatey utility 'checksum.exe'
3. The checksums should match the following:

checksum type: SHA256
checksum32: ADB381B50295D3A2595E1D1C9B2D33B8AC355CCFA8EBC404D0F0FBE2937549AF
checksum64: 7F951529FCD4EA2545A6EE46DE6BF52B1C56434B6B6D3A0E78D261C649F8FE6F
checksum32: D4A50995124B6663C4AA7398520F023E7A76CBA9A179371AF5C9E45396B3C551
checksum64: E4A36D89739768AFEDF539CD049BFC7EB19022A2F9C40E52B50081604B0AB027

The file 'LICENSE.txt' has been obtained from <https://raw.githubusercontent.com/qTox/qTox/master/LICENSE>
10 changes: 5 additions & 5 deletions automatic/qtox/qtox.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,11 @@
<metadata>
<id>qtox</id>
<title>qTox</title>
<version>1.14.1</version>
<version>1.16.3</version>
<authors>qTox developers</authors>
<owners>chocolatey</owners>
<summary>Powerful Tox chat client that follows the Tox design guidelines.</summary>
<description><![CDATA[
qTox is a powerful [Tox](https://tox.chat/) client that follows the Tox design guidelines while running on all major platforms.
<description><![CDATA[qTox is a powerful [Tox](https://tox.chat/) client that follows the Tox design guidelines while running on all major platforms.
## Features
Expand All @@ -28,18 +27,19 @@ qTox is a powerful [Tox](https://tox.chat/) client that follows the Tox design g
* Auto-updates on Windows and Mac, packages on Linux
* And many more options!
![screenshot](https://github.com/chocolatey-community/chocolatey-coreteampackages/blob/master/automatic/qtox/screenshot.png?raw=true)
]]></description>
<projectUrl>https://qtox.github.io</projectUrl>
<projectSourceUrl>https://github.com/qTox/qTox</projectSourceUrl>
<docsUrl>https://github.com/qTox/qTox/wiki</docsUrl>
<bugTrackerUrl>https://github.com/qTox/qTox/issues</bugTrackerUrl>
<mailingListUrl>https://lists.tox.chat/listinfo</mailingListUrl>
<tags>qtox tox chat voip foss cross-platform admin</tags>
<packageSourceUrl>https://github.com/chocolatey/chocolatey-coreteampackages/tree/master/automatic/qtox</packageSourceUrl>
<packageSourceUrl>https://github.com/chocolatey-community/chocolatey-coreteampackages/tree/master/automatic/qtox</packageSourceUrl>
<copyright>qTox contributors</copyright>
<licenseUrl>https://github.com/qTox/qTox/blob/master/LICENSE</licenseUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<iconUrl>https://cdn.rawgit.com/chocolatey/chocolatey-coreteampackages/d12c934ca6454cc6fe10e5a708c6a32e2f59c55e/icons/qtox.svg</iconUrl>
<iconUrl>https://cdn.jsdelivr.net/gh/chocolatey-community/chocolatey-coreteampackages@d12c934ca6454cc6fe10e5a708c6a32e2f59c55e/icons/qtox.svg</iconUrl>
<releaseNotes>https://github.com/qTox/qTox/blob/master/CHANGELOG.md</releaseNotes>
</metadata>
<files>
Expand Down
6 changes: 3 additions & 3 deletions automatic/qtox/tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ $toolsPath = Split-Path $MyInvocation.MyCommand.Definition
$packageArgs = @{
packageName = 'qtox'
fileType = 'exe'
file = gi $toolsPath\*_x32.exe
file64 = gi $toolsPath\*_x64.exe
file = Get-Item $toolsPath\*_x32.exe
file64 = Get-Item $toolsPath\*_x64.exe
silentArgs = '/S'
validExitCodes = @(0)
softwareName = 'qTox'
}
Install-ChocolateyInstallPackage @packageArgs
ls $toolsPath\*.exe | % { rm $_ -ea 0; if (Test-Path $_) { sc "$_.ignore" "" }}
Get-ChildItem $toolsPath\*.exe | ForEach-Object { Remove-Item $_ -ea 0; if (Test-Path $_) { Set-Content "$_.ignore" "" }}

0 comments on commit 0fa91f2

Please sign in to comment.