mirror of
https://github.com/SickGear/SickGear.git
synced 2024-11-15 09:25:04 +00:00
Merge branch 'hotfix/3.30.16'
This commit is contained in:
commit
ec1c7be399
3 changed files with 20 additions and 3 deletions
|
@ -1,4 +1,10 @@
|
||||||
### 3.30.15 (2024-03-20 01:55:00 UTC)
|
### 3.30.16 (2024-03-24 20:30:00 UTC)
|
||||||
|
|
||||||
|
* Fix external site links that used a deprecated config/general/advanced/"Anonymous redirect"
|
||||||
|
* Change enable legacy double quote support for SQLite when using Python 3.12+
|
||||||
|
|
||||||
|
|
||||||
|
### 3.30.15 (2024-03-20 01:55:00 UTC)
|
||||||
|
|
||||||
* Change allow Python 3.10.14, 3.9.19, and 3.8.19
|
* Change allow Python 3.10.14, 3.9.19, and 3.8.19
|
||||||
|
|
||||||
|
|
|
@ -544,6 +544,7 @@ class ConfigMigrator(object):
|
||||||
21: 'Rename vars misusing frequency',
|
21: 'Rename vars misusing frequency',
|
||||||
22: 'Change Anonymous redirect',
|
22: 'Change Anonymous redirect',
|
||||||
23: 'Change Anonymous redirect',
|
23: 'Change Anonymous redirect',
|
||||||
|
24: 'Change Anonymous redirect',
|
||||||
}
|
}
|
||||||
|
|
||||||
def migrate_config(self):
|
def migrate_config(self):
|
||||||
|
@ -587,8 +588,9 @@ class ConfigMigrator(object):
|
||||||
"""
|
"""
|
||||||
Change deprecated anon redirect service URLs
|
Change deprecated anon redirect service URLs
|
||||||
"""
|
"""
|
||||||
if re.search(r'https?://(?:nullrefer.com|dereferer.org|derefer.me)', sickgear.ANON_REDIRECT):
|
sickgear.ANON_REDIRECT = re.sub(
|
||||||
sickgear.ANON_REDIRECT = r'https://nosplash.open-dereferrer.com/?'
|
r'https?://(?:nosplash.open-dereferrer.com|nullrefer.com|dereferer.org|derefer.me)',
|
||||||
|
r'https://nullrefer.ir', sickgear.ANON_REDIRECT)
|
||||||
|
|
||||||
# Migration v1: Custom naming
|
# Migration v1: Custom naming
|
||||||
def _migrate_v1(self):
|
def _migrate_v1(self):
|
||||||
|
@ -983,3 +985,6 @@ class ConfigMigrator(object):
|
||||||
|
|
||||||
def _migrate_v23(self):
|
def _migrate_v23(self):
|
||||||
self.deprecate_anon_service()
|
self.deprecate_anon_service()
|
||||||
|
|
||||||
|
def _migrate_v24(self):
|
||||||
|
self.deprecate_anon_service()
|
||||||
|
|
|
@ -44,6 +44,8 @@ db_support_multiple_insert = (3, 7, 11) <= sqlite3.sqlite_version_info # type:
|
||||||
db_support_column_rename = (3, 25, 0) <= sqlite3.sqlite_version_info # type: bool
|
db_support_column_rename = (3, 25, 0) <= sqlite3.sqlite_version_info # type: bool
|
||||||
db_support_upsert = (3, 25, 0) <= sqlite3.sqlite_version_info # type: bool
|
db_support_upsert = (3, 25, 0) <= sqlite3.sqlite_version_info # type: bool
|
||||||
db_supports_backup = hasattr(sqlite3.Connection, 'backup') and (3, 6, 11) <= sqlite3.sqlite_version_info # type: bool
|
db_supports_backup = hasattr(sqlite3.Connection, 'backup') and (3, 6, 11) <= sqlite3.sqlite_version_info # type: bool
|
||||||
|
db_supports_setconfig_dqs = (hasattr(sqlite3.Connection, 'setconfig') and hasattr(sqlite3, 'SQLITE_DBCONFIG_DQS_DDL')
|
||||||
|
and hasattr(sqlite3, 'SQLITE_DBCONFIG_DQS_DML')) # type: bool
|
||||||
|
|
||||||
|
|
||||||
def db_filename(filename='sickbeard.db', suffix=None):
|
def db_filename(filename='sickbeard.db', suffix=None):
|
||||||
|
@ -111,6 +113,10 @@ class DBConnection(object):
|
||||||
|
|
||||||
self.filename = filename
|
self.filename = filename
|
||||||
self.connection = sqlite3.connect(db_src, 20)
|
self.connection = sqlite3.connect(db_src, 20)
|
||||||
|
# enable legacy double quote support
|
||||||
|
if db_supports_setconfig_dqs:
|
||||||
|
self.connection.setconfig(sqlite3.SQLITE_DBCONFIG_DQS_DDL, True)
|
||||||
|
self.connection.setconfig(sqlite3.SQLITE_DBCONFIG_DQS_DML, True)
|
||||||
|
|
||||||
if 'dict' == row_type:
|
if 'dict' == row_type:
|
||||||
self.connection.row_factory = self._dict_factory
|
self.connection.row_factory = self._dict_factory
|
||||||
|
|
Loading…
Reference in a new issue