Skip to content

Commit

Permalink
AU: 1 updated - qbittorrent
Browse files Browse the repository at this point in the history
  • Loading branch information
Chocolatey committed Nov 20, 2017
1 parent 562e2dc commit 6ea2e5f
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 11 deletions.
12 changes: 7 additions & 5 deletions automatic/qbittorrent/qbittorrent.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -4,22 +4,22 @@
<metadata>
<id>qbittorrent</id>
<title>qBittorrent</title>
<version>3.3.16</version>
<version>4.0.0</version>
<authors>Christophe Dumez</authors>
<owners>chocolatey,nconrads</owners>
<summary>qBittorrent is a free software cross-platform BitTorrent client GUI written with Qt4.</summary>
<description>qBittorrent is a free software cross-platform BitTorrent client GUI written with Qt4.
<description><![CDATA[qBittorrent is a free software cross-platform BitTorrent client GUI written with Qt4.
The program uses libtorrent-rasterbar library for the torrent back-end (network communication) functionality.
It is developed by Christophe Dumez, from the University of Technology of Belfort-Montbeliard in France.
It was started in March 2006 and has been in active development ever since.
qBittorrent aims to have a small foot-print, to be powerful, intuitive and visually attractive going beyond the
current functions widely provided by other applications. qBittorrent is an attempt to provide a μTorrent equivalent
current functions widely provided by other applications. qBittorrent is an attempt to provide a µTorrent equivalent
that is open-source and multi-platform adding a streaming-like function to let users download-and-play video files.
qBittorrent is currently offering functionality comparable to more popular BitTorrent clients such as Vuze but
without requiring the Java Virtual Machine.
qBittorrent requires Python only for the search engine while other clients such as Deluge and BitTornado require
it for the BitTorrent protocol itself. *(from Wikipedia, 2013-04-18)*
it for the BitTorrent protocol itself.
## Features
Expand All @@ -45,10 +45,12 @@ it for the BitTorrent protocol itself. *(from Wikipedia, 2013-04-18)*
- Available on most platforms: Linux, Mac OS X, Windows, OS/2, FreeBSD
## Notes
- This version includes the 64-bit version of qbittorrent, if you wish to continue using the 32-bit version you need to pass `--x86` when calling `choco install/update`
![qbittorrent screenshot](https://cdn.rawgit.com/chocolatey/chocolatey-coreteampackages/798547edb9c6cb22a4a58e08361da4450f0ab14c/automatic/qbittorrent/screenshot.png)
</description>
]]></description>
<projectUrl>http://www.qbittorrent.org/index.php</projectUrl>
<projectSourceUrl>https://github.com/qbittorrent/qBittorrent</projectSourceUrl>
<packageSourceUrl>https://github.com/chocolatey/chocolatey-coreteampackages/tree/master/automatic/qbittorrent</packageSourceUrl>
Expand Down
8 changes: 4 additions & 4 deletions automatic/qbittorrent/tools/VERIFICATION.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@ The installer have been downloaded from the alternative sourceforge mirror liste
and can be verified like this:

1. Download the following installers:
32-Bit: <https://sourceforge.net/projects/qbittorrent/files/qbittorrent-win32/qbittorrent-3.3.16/qbittorrent_3.3.16_setup.exe/download>
64-Bit: <https://sourceforge.net/projects/qbittorrent/files/qbittorrent-win32/qbittorrent-3.3.16/qbittorrent_3.3.16_x64_setup.exe/download>
32-Bit: <https://sourceforge.net/projects/qbittorrent/files/qbittorrent-win32/qbittorrent-4.0.0/qbittorrent_4.0.0_setup.exe/download>
64-Bit: <https://sourceforge.net/projects/qbittorrent/files/qbittorrent-win32/qbittorrent-4.0.0/qbittorrent_4.0.0_x64_setup.exe/download>
2. You can use one of the following methods to obtain the checksum
- Use powershell function 'Get-Filehash'
- Use chocolatey utility 'checksum.exe'

checksum type: sha256
checksum32: 5950CC5147A9F0F6F682776D3B3AF69A85F8F169BECE160B8D3C7F4932046F4F
checksum64: 62D0BE1A5ED7A3D2043BE42DE79CBEC8BBCB5872BA0198AECEFE11B335A88367
checksum32: 9DCDA03324F63FFBBEDD774CF08792A6E662F0D0B6F92782A35AF377007C0A5E
checksum64: 9B19400D5BF67B3F6DDF42C8527225BB6698B0BAFB704803E5E70E91B45D011E

File 'LICENSE.txt' is obtained from <https://github.com/qbittorrent/qBittorrent/blob/0070dcf5509e43c2c3457c4e3f1ed0b1ae087e36/COPYING>
4 changes: 2 additions & 2 deletions automatic/qbittorrent/tools/chocolateyinstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
$toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"

$fileName = if ((Get-ProcessorBits 64) -and ($env:chocolateyForceX86 -ne 'true')) {
Write-Host "Installing 64 bit version" ; 'qbittorrent_3.3.16_x64_setup.exe' # 64-bit
Write-Host "Installing 64 bit version" ; 'qbittorrent_4.0.0_x64_setup.exe' # 64-bit
} else {
Write-Host "Installing 32 bit version" ; 'qbittorrent_3.3.16_setup.exe' # 32-bit
Write-Host "Installing 32 bit version" ; 'qbittorrent_4.0.0_setup.exe' # 32-bit
}

$packageArgs = @{
Expand Down

0 comments on commit 6ea2e5f

Please sign in to comment.