Browse Source

update:Set the default path of dumped file to the original ncm file folder.Update version_info.txt to 1.0.0.1.

master v1.0.0.1
kdxcxs 5 years ago
parent
commit
523d939229
  1. 2
      main.py
  2. 2
      main.spec
  3. 8
      version_info.txt

2
main.py

@ -37,7 +37,7 @@ class mainWindow(QMainWindow):
if files:
outputPath = QFileDialog.getExistingDirectory(self,
'请选择输出文件夹',
'./')
'/'.join(files[0].split('/')[:-1]))
if outputPath:
self.dumpingdialog.show()
filesTotal, filesDumped = len(files), 0

2
main.spec

@ -23,7 +23,7 @@ exe = EXE(pyz,
a.zipfiles,
a.datas,
[],
name='main',
name='ncmDump_1_0_0_1',
debug=False,
bootloader_ignore_signals=False,
strip=False,

8
version_info.txt

@ -6,8 +6,8 @@ VSVersionInfo(
ffi=FixedFileInfo(
# filevers and prodvers should be always a tuple with four items: (1, 2, 3, 4)
# Set not needed items to zero 0.
filevers=(1, 0, 0, 0),
prodvers=(1, 0, 0, 0),
filevers=(1, 0, 0, 1),
prodvers=(1, 0, 0, 1),
# Contains a bitmask that specifies the valid bits 'flags'r
mask=0x17,
# Contains a bitmask that specifies the Boolean attributes of the file.
@ -30,12 +30,12 @@ VSVersionInfo(
StringTable(
u'080404b0',
[StringStruct(u'FileDescription', u'ncmDump'),
StringStruct(u'FileVersion', u'1.0.0.0'),
StringStruct(u'FileVersion', u'1.0.0.1'),
StringStruct(u'InternalName', u'ncmDump'),
StringStruct(u'LegalCopyright', u'cx@kdxcxs.com. All rights reserved.'),
StringStruct(u'OriginalFilename', u'ncmDump.exe'),
StringStruct(u'ProductName', u'ncmDump'),
StringStruct(u'ProductVersion', u'1.0.0.0')])
StringStruct(u'ProductVersion', u'1.0.0.1')])
]),
VarFileInfo([VarStruct(u'Translation', [2052, 1200])])
]

Loading…
Cancel
Save