Updated version to 0.5
This commit is contained in:
parent
44f0f6cbdf
commit
efeb0fbec6
@ -2,7 +2,7 @@
|
|||||||
import sys
|
import sys
|
||||||
python_version = int(sys.version[0])
|
python_version = int(sys.version[0])
|
||||||
name = "MusicDL"
|
name = "MusicDL"
|
||||||
version = "0.4"
|
version = "0.5"
|
||||||
author = "Manuel Cortéz"
|
author = "Manuel Cortéz"
|
||||||
authorEmail = "manuel@manuelcortez.net"
|
authorEmail = "manuel@manuelcortez.net"
|
||||||
copyright = "Copyright (C) 2019, Manuel Cortez"
|
copyright = "Copyright (C) 2019, Manuel Cortez"
|
||||||
|
@ -5,7 +5,7 @@ CRCCheck on
|
|||||||
ManifestSupportedOS all
|
ManifestSupportedOS all
|
||||||
XPStyle on
|
XPStyle on
|
||||||
Name "MusicDL"
|
Name "MusicDL"
|
||||||
OutFile "music_dl_0.3_setup.exe"
|
OutFile "music_dl_0.5_setup.exe"
|
||||||
InstallDir "$PROGRAMFILES\musicDL"
|
InstallDir "$PROGRAMFILES\musicDL"
|
||||||
InstallDirRegKey HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\musicDL" "InstallLocation"
|
InstallDirRegKey HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\musicDL" "InstallLocation"
|
||||||
RequestExecutionLevel admin
|
RequestExecutionLevel admin
|
||||||
@ -13,11 +13,11 @@ SetCompress auto
|
|||||||
SetCompressor /solid lzma
|
SetCompressor /solid lzma
|
||||||
SetDatablockOptimize on
|
SetDatablockOptimize on
|
||||||
VIAddVersionKey ProductName "MusicDL"
|
VIAddVersionKey ProductName "MusicDL"
|
||||||
VIAddVersionKey LegalCopyright "Copyright 2018 Manuel Cortéz."
|
VIAddVersionKey LegalCopyright "Copyright 2019 Manuel Cortez."
|
||||||
VIAddVersionKey ProductVersion "0.3"
|
VIAddVersionKey ProductVersion "0.5"
|
||||||
VIAddVersionKey FileVersion "0.3"
|
VIAddVersionKey FileVersion "0.5"
|
||||||
VIProductVersion "0.3.0.0"
|
VIProductVersion "0.5.0.0"
|
||||||
VIFileVersion "0.3.0.0"
|
VIFileVersion "0.5.0.0"
|
||||||
!insertmacro MUI_PAGE_WELCOME
|
!insertmacro MUI_PAGE_WELCOME
|
||||||
!insertmacro MUI_PAGE_DIRECTORY
|
!insertmacro MUI_PAGE_DIRECTORY
|
||||||
var StartMenuFolder
|
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\musicDL" "UninstallString" '"$INSTDIR\uninstall.exe"'
|
||||||
WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall" "InstallLocation" $INSTDIR
|
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" "Publisher" "Manuel Cortéz"
|
||||||
WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\musicDL" "DisplayVersion" "0.3"
|
WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\musicDL" "DisplayVersion" "0.5"
|
||||||
WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\musicDL" "URLInfoAbout" "https://manuelcortez.net/music_dl"
|
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" "VersionMajor" 0
|
||||||
WriteRegDWORD HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\musicDL" "VersionMinor" 1
|
WriteRegDWORD HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\musicDL" "VersionMinor" 1
|
||||||
|
@ -12,6 +12,7 @@ def call_threaded(func, *args, **kwargs):
|
|||||||
def new_func(*a, **k):
|
def new_func(*a, **k):
|
||||||
func(*a, **k)
|
func(*a, **k)
|
||||||
thread = threading.Thread(target=new_func, args=args, kwargs=kwargs)
|
thread = threading.Thread(target=new_func, args=args, kwargs=kwargs)
|
||||||
|
thread.daemon = True
|
||||||
thread.start()
|
thread.start()
|
||||||
return thread
|
return thread
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user