mirror of
https://github.com/arsenetar/dupeguru.git
synced 2025-05-08 01:39:50 +00:00
Bump version to 4.0.4 RC
- Also update package.py to allow version postfixes without causing issues with Windows build.
This commit is contained in:
parent
d819719eca
commit
c661905350
@ -1,3 +1,3 @@
|
|||||||
__version__ = '4.0.3'
|
__version__ = '4.0.4 RC'
|
||||||
__appname__ = 'dupeGuru'
|
__appname__ = 'dupeGuru'
|
||||||
|
|
||||||
|
@ -117,7 +117,8 @@ def package_windows():
|
|||||||
app_version = get_module_version('core')
|
app_version = get_module_version('core')
|
||||||
arch = platform.architecture()[0]
|
arch = platform.architecture()[0]
|
||||||
# Information to pass to pyinstaller and NSIS
|
# Information to pass to pyinstaller and NSIS
|
||||||
version_array = app_version.split('.')
|
match = re.search('[0-9]+.[0-9]+.[0-9]+', app_version)
|
||||||
|
version_array = match.group(0).split('.')
|
||||||
match = re.search('[0-9]+', arch)
|
match = re.search('[0-9]+', arch)
|
||||||
bits = match.group(0)
|
bits = match.group(0)
|
||||||
# include locale files if they are built otherwise exit as it will break
|
# include locale files if they are built otherwise exit as it will break
|
||||||
|
Loading…
x
Reference in New Issue
Block a user