mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-12-31 04:38:04 -06:00
Add zlib version to GUI & stackdump
This commit is contained in:
@@ -71,6 +71,7 @@ void AppController::buildInfoAction()
|
||||
{"libtorrent", Utils::Misc::libtorrentVersionString()},
|
||||
{"boost", Utils::Misc::boostVersionString()},
|
||||
{"openssl", Utils::Misc::opensslVersionString()},
|
||||
{"zlib", Utils::Misc::zlibVersionString()},
|
||||
{"bitness", (QT_POINTER_SIZE * 8)}
|
||||
};
|
||||
setResult(versions);
|
||||
|
||||
@@ -671,6 +671,10 @@
|
||||
<td>OpenSSL:</td>
|
||||
<td><span id="opensslVersion"></span></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>zlib:</td>
|
||||
<td><span id="zlibVersion"></span></td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
|
||||
@@ -691,6 +695,7 @@
|
||||
$('libtorrentVersion').textContent = info.libtorrent;
|
||||
$('boostVersion').textContent = info.boost;
|
||||
$('opensslVersion').textContent = info.openssl;
|
||||
$('zlibVersion').textContent = info.zlib;
|
||||
$('qbittorrentVersion').textContent += " (" + info.bitness + "-bit)";
|
||||
}
|
||||
}).send();
|
||||
|
||||
Reference in New Issue
Block a user