downloaded updateQueue now contains downloadPath as well

This commit is contained in:
RemixDev 2020-07-15 10:04:24 +02:00
parent aa68190caa
commit 6cf890f7cd
3 changed files with 3 additions and 3 deletions

View File

@ -1,3 +1,3 @@
#!/usr/bin/env python3
__version__ = "1.1.8"
__version__ = "1.1.9"

View File

@ -846,7 +846,7 @@ def downloadTrackObj(dz, trackAPI, settings, bitrate, queueItem, extraTrack=None
logger.info(f"[{track['mainArtist']['name']} - {track['title']}] Track download completed")
queueItem['downloaded'] += 1
if interface:
interface.send("updateQueue", {'uuid': queueItem['uuid'], 'downloaded': True})
interface.send("updateQueue", {'uuid': queueItem['uuid'], 'downloaded': True, 'downloadPath': writepath})
return result

View File

@ -7,7 +7,7 @@ README = (HERE / "README.md").read_text()
setup(
name="deemix",
version="1.1.8",
version="1.1.9",
description="A barebone deezer downloader library",
long_description=README,
long_description_content_type="text/markdown",