Updated version numbers
This commit is contained in:
parent
27e422888b
commit
bb32d79dd7
@ -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"
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user