mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-07-16 02:02:58 -07:00
Merge branch 'nightly' into python3
This commit is contained in:
commit
197c3a327b
4 changed files with 15 additions and 5 deletions
10
CHANGELOG.md
10
CHANGELOG.md
|
@ -1,5 +1,15 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## v2.1.39 (2019-12-08)
|
||||||
|
|
||||||
|
* UI:
|
||||||
|
* New: Added creating admin username and password to setup wizard.
|
||||||
|
* API:
|
||||||
|
* Change: Remove default notification subject and body for notify API command.
|
||||||
|
* Other:
|
||||||
|
* Change: Check for database corruption when making backup.
|
||||||
|
|
||||||
|
|
||||||
## v2.1.38 (2019-11-17)
|
## v2.1.38 (2019-11-17)
|
||||||
|
|
||||||
* Notifications:
|
* Notifications:
|
||||||
|
|
|
@ -415,7 +415,7 @@ class API2(object):
|
||||||
|
|
||||||
return
|
return
|
||||||
|
|
||||||
def notify(self, notifier_id='', subject='Tautulli', body='Test notification', **kwargs):
|
def notify(self, notifier_id='', subject='', body='', **kwargs):
|
||||||
""" Send a notification using Tautulli.
|
""" Send a notification using Tautulli.
|
||||||
|
|
||||||
```
|
```
|
||||||
|
|
|
@ -75,7 +75,7 @@ def make_backup(cleanup=False, scheduler=False):
|
||||||
""" Makes a backup of db, removes all but the last 5 backups """
|
""" Makes a backup of db, removes all but the last 5 backups """
|
||||||
|
|
||||||
# Check the integrity of the database first
|
# Check the integrity of the database first
|
||||||
integrity = (integrity_check() == 'ok')
|
integrity = (integrity_check()['integrity_check'] == 'ok')
|
||||||
|
|
||||||
corrupt = ''
|
corrupt = ''
|
||||||
if not integrity:
|
if not integrity:
|
||||||
|
|
|
@ -1,3 +1,3 @@
|
||||||
from __future__ import unicode_literals
|
from __future__ import unicode_literals
|
||||||
PLEXPY_BRANCH = "master"
|
PLEXPY_BRANCH = "master"
|
||||||
PLEXPY_RELEASE_VERSION = "v2.1.38"
|
PLEXPY_RELEASE_VERSION = "v2.1.39"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue