From a65d6a82c0ef1b5c5c8074dcbffbd500ddd0e453 Mon Sep 17 00:00:00 2001 From: Manuel Cortez Date: Mon, 24 Jun 2019 13:36:12 -0500 Subject: [PATCH] Updated code for Version 0.6 --- changes.md | 3 +++ src/application.py | 2 +- src/installer.nsi | 12 ++++++------ 3 files changed, 10 insertions(+), 7 deletions(-) diff --git a/changes.md b/changes.md index d9461cd..7a8d0cc 100644 --- a/changes.md +++ b/changes.md @@ -5,6 +5,8 @@ * Added a settings dialog for the application, from this dialog you will be able to find some general settings, available for MusicDL, and service's settings. Every service defines certain specific settings. * When searching in any service, the search should be performed without freezing the application window. * When transcoding to mp3, the default bitrate now will be 320 KBPS instead of 192. +* When downloading, besides the status bar, there is a progress bar which will be updated with the results for the current download. +* From the settings dialog, it is possible to switch between all available output devices in the machine, so MusicDL can output audio to a different device than the default in windows. * Added a new and experimental extractor for supporting tidal. * Take into account that this extractor requires you to have a paid account on tidal. Depending in the account level, you will be able to play and download music in high quality or lossless audio. MusicDL will handle both. Lossless audio will be downloaded as flac files, and high quality audio will be downloaded as transcoded 320 KBPS mp3. * There is a new search mode supported in this service. You can retrieve all work for a certain artist by using the protocol artist://, plus the name of the artist you want to retrieve. For example, artist://The beatles will retrieve everything made by the beatles available in the service. The search results will be grouped by albums, compilations and singles, in this order. Depending in the amount of results to display, this may take a long time. @@ -16,6 +18,7 @@ * zaycev.net: * Fixed extractor for searching and playing music in zaycev.net. * Unfortunately, it seems this service works only in the russian Federation and some other CIS countries due to copyright reasons. +* Updated Spanish translations. ## Version 0.4 diff --git a/src/application.py b/src/application.py index 51cc79b..1f6a247 100644 --- a/src/application.py +++ b/src/application.py @@ -2,7 +2,7 @@ import sys python_version = int(sys.version[0]) name = "MusicDL" -version = "0.5" +version = "0.6" author = "Manuel Cortéz" authorEmail = "manuel@manuelcortez.net" copyright = "Copyright (C) 2019, Manuel Cortez" diff --git a/src/installer.nsi b/src/installer.nsi index 8bf3e4c..4da2eb3 100644 --- a/src/installer.nsi +++ b/src/installer.nsi @@ -5,7 +5,7 @@ CRCCheck on ManifestSupportedOS all XPStyle on Name "MusicDL" -OutFile "music_dl_0.5_setup.exe" +OutFile "music_dl_0.6_setup.exe" InstallDir "$PROGRAMFILES\musicDL" InstallDirRegKey HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\musicDL" "InstallLocation" RequestExecutionLevel admin @@ -14,10 +14,10 @@ SetCompressor /solid lzma SetDatablockOptimize on VIAddVersionKey ProductName "MusicDL" VIAddVersionKey LegalCopyright "Copyright 2019 Manuel Cortez." -VIAddVersionKey ProductVersion "0.5" -VIAddVersionKey FileVersion "0.5" -VIProductVersion "0.5.0.0" -VIFileVersion "0.5.0.0" +VIAddVersionKey ProductVersion "0.6" +VIAddVersionKey FileVersion "0.6" +VIProductVersion "0.6.0.0" +VIFileVersion "0.6.0.0" !insertmacro MUI_PAGE_WELCOME !insertmacro MUI_PAGE_DIRECTORY var StartMenuFolder @@ -49,7 +49,7 @@ WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\musicDL" " WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\musicDL" "UninstallString" '"$INSTDIR\uninstall.exe"' WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall" "InstallLocation" $INSTDIR WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall" "Publisher" "Manuel Cortéz" -WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\musicDL" "DisplayVersion" "0.5" +WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\musicDL" "DisplayVersion" "0.6" WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\musicDL" "URLInfoAbout" "https://manuelcortez.net/music_dl" WriteRegDWORD HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\musicDL" "VersionMajor" 0 WriteRegDWORD HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\musicDL" "VersionMinor" 1