From bb32d79dd70e7f24aeff6eb93b4dc15e8df3ef5c Mon Sep 17 00:00:00 2001 From: Manuel Cortez Date: Wed, 8 Jul 2020 08:27:08 -0500 Subject: [PATCH] Updated version numbers --- src/application.py | 6 +++--- src/installer.nsi | 14 +++++++------- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/src/application.py b/src/application.py index 1f6a247..9d6f869 100644 --- a/src/application.py +++ b/src/application.py @@ -2,16 +2,16 @@ import sys python_version = int(sys.version[0]) name = "MusicDL" -version = "0.6" +version = "0.7" author = "Manuel Cortéz" authorEmail = "manuel@manuelcortez.net" -copyright = "Copyright (C) 2019, Manuel Cortez" +copyright = "Copyright (C) 2019-2020, Manuel Cortez" description = name+_(u" Is an application that will allow you to download music from popular sites such as youtube, zaycev.net.") url = "https://manuelcortez.net/music_dl" update_url = "https://manuelcortez.net/music_dl/update" # The short name will be used for detecting translation files. See languageHandler for more details. short_name = "musicdl" -translators = [_(u"Manuel Cortez (Spanish)"), _("Valeria K (Russian)"), ] +translators = [_(u"Manuel Cortez (Spanish)")] bts_name = "music_dl" bts_access_token = "fe3j2ijirvevv9" bts_url = "https://issues.manuelcortez.net" \ No newline at end of file diff --git a/src/installer.nsi b/src/installer.nsi index 929b6be..f923fda 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.6_setup.exe" +OutFile "music_dl_0.7_setup.exe" InstallDir "$PROGRAMFILES\musicDL" InstallDirRegKey HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\musicDL" "InstallLocation" RequestExecutionLevel admin @@ -13,11 +13,11 @@ SetCompress auto SetCompressor /solid lzma SetDatablockOptimize on VIAddVersionKey ProductName "MusicDL" -VIAddVersionKey LegalCopyright "Copyright 2019 Manuel Cortez." -VIAddVersionKey ProductVersion "0.6" -VIAddVersionKey FileVersion "0.6" -VIProductVersion "0.6.0.0" -VIFileVersion "0.6.0.0" +VIAddVersionKey LegalCopyright "Copyright 2019 - 2020 Manuel Cortez." +VIAddVersionKey ProductVersion "0.7" +VIAddVersionKey FileVersion "0.7" +VIProductVersion "0.7.0.0" +VIFileVersion "0.7.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.6" +WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\musicDL" "DisplayVersion" "0.7" 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