mirror of
https://github.com/sabnzbd/sabnzbd.git
synced 2026-01-18 04:21:04 -05:00
Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
46de49df06 | ||
|
|
d1c54a9a74 | ||
|
|
447a7b684c | ||
|
|
82379481dd | ||
|
|
06f9e28170 |
4
PKG-INFO
4
PKG-INFO
@@ -1,7 +1,7 @@
|
||||
Metadata-Version: 1.0
|
||||
Name: SABnzbd
|
||||
Version: 3.4.0
|
||||
Summary: SABnzbd-3.4.0
|
||||
Version: 3.4.1
|
||||
Summary: SABnzbd-3.4.1
|
||||
Home-page: https://sabnzbd.org
|
||||
Author: The SABnzbd Team
|
||||
Author-email: team@sabnzbd.org
|
||||
|
||||
@@ -1,6 +1,9 @@
|
||||
Release Notes - SABnzbd 3.4.0
|
||||
Release Notes - SABnzbd 3.4.1
|
||||
=========================================================
|
||||
|
||||
## Bugfixes since 3.4.0
|
||||
- macOS: Failed to run on M1 systems or older macOS versions.
|
||||
|
||||
## Changes since 3.3.1
|
||||
- Extended `Deobfuscate final filenames` to attempt to set the correct
|
||||
file extension based on the file signature if the file extension is
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
# Basic build requirements
|
||||
pyinstaller
|
||||
pyinstaller==4.2
|
||||
setuptools
|
||||
pkginfo
|
||||
certifi
|
||||
|
||||
@@ -21,7 +21,7 @@ function ViewModel() {
|
||||
self.extraQueueColumns = ko.observableArray([]).extend({ persist: 'extraColumns' });
|
||||
self.extraHistoryColumns = ko.observableArray([]).extend({ persist: 'extraHistoryColumns' });
|
||||
self.showActiveConnections = ko.observable(false).extend({ persist: 'showActiveConnections' });
|
||||
self.speedMetrics = { K: "KB/s", M: "MB/s", G: "GB/s" };
|
||||
self.speedMetrics = { '': "B/s", K: "KB/s", M: "MB/s", G: "GB/s" };
|
||||
|
||||
// Set information varibales
|
||||
self.title = ko.observable();
|
||||
@@ -1231,4 +1231,4 @@ function ViewModel() {
|
||||
|
||||
// Activate tooltips
|
||||
if(!isMobile) $('[data-tooltip="true"]').tooltip({ trigger: 'hover', container: 'body' })
|
||||
}
|
||||
}
|
||||
|
||||
@@ -5,5 +5,5 @@
|
||||
|
||||
# You MUST use double quotes (so " and not ')
|
||||
|
||||
__version__ = "3.4.0"
|
||||
__baseline__ = "7d5207aa67c7d558d2490595ed03aa7809fe9f70"
|
||||
__version__ = "3.4.1"
|
||||
__baseline__ = "447a7b684c32ca28dc8dfff285330c2c7de98377"
|
||||
|
||||
Reference in New Issue
Block a user