Change naming conventions
This commit is contained in:
parent
90b28b3dbd
commit
30b04ed0c2
1 changed files with 6 additions and 6 deletions
|
@ -49,7 +49,7 @@ shortcut_table = [
|
||||||
'DesktopFolder', # Directory
|
'DesktopFolder', # Directory
|
||||||
'lbrynet', # Name
|
'lbrynet', # Name
|
||||||
'TARGETDIR', # Component
|
'TARGETDIR', # Component
|
||||||
'[TARGETDIR]\lbrynet.exe', # Target
|
'[TARGETDIR]\LBRY.exe', # Target
|
||||||
None, # Arguments
|
None, # Arguments
|
||||||
None, # Description
|
None, # Description
|
||||||
None, # Hotkey
|
None, # Hotkey
|
||||||
|
@ -66,7 +66,7 @@ msi_data = {'Shortcut': shortcut_table}
|
||||||
bdist_msi_options = {
|
bdist_msi_options = {
|
||||||
# 'upgrade_code': '{66620F3A-DC3A-11E2-B341-002219E9B01F}',
|
# 'upgrade_code': '{66620F3A-DC3A-11E2-B341-002219E9B01F}',
|
||||||
'add_to_path': False,
|
'add_to_path': False,
|
||||||
'initial_target_dir': r'[LocalAppDataFolder]\lbrynet',
|
'initial_target_dir': r'[LocalAppDataFolder]\LBRY',
|
||||||
'data': msi_data,
|
'data': msi_data,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -126,18 +126,18 @@ exe = Executable(
|
||||||
# base='Win32GUI',
|
# base='Win32GUI',
|
||||||
icon=win_icon,
|
icon=win_icon,
|
||||||
compress=True,
|
compress=True,
|
||||||
shortcutName='lbrynet',
|
shortcutName='LBRY',
|
||||||
shortcutDir='DesktopFolder',
|
shortcutDir='DesktopFolder',
|
||||||
targetName='lbrynet.exe'
|
targetName='LBRY.exe'
|
||||||
# targetDir="LocalAppDataFolder"
|
# targetDir="LocalAppDataFolder"
|
||||||
)
|
)
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name='lbrynet',
|
name='LBRY',
|
||||||
version=__version__,
|
version=__version__,
|
||||||
description='A decentralized media library and marketplace',
|
description='A decentralized media library and marketplace',
|
||||||
url='lbry.io',
|
url='lbry.io',
|
||||||
author='',
|
author='LBRY, Inc.',
|
||||||
keywords='LBRY',
|
keywords='LBRY',
|
||||||
data_files=[],
|
data_files=[],
|
||||||
options={'build_exe': build_exe_options,
|
options={'build_exe': build_exe_options,
|
||||||
|
|
Loading…
Reference in a new issue