Skip to content

Commit

Permalink
Update version info to 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
flutydeer committed Jan 29, 2023
1 parent 27fb9d9 commit 83ff3dc
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions file_version_info.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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, 1, 0),
prodvers=(1, 0, 1, 0),
filevers=(1, 1, 0, 0),
prodvers=(1, 1, 0, 0),
# Contains a bitmask that specifies the valid bits 'flags'r
mask=0x0,
# Contains a bitmask that specifies the Boolean attributes of the file.
Expand All @@ -31,12 +31,12 @@ VSVersionInfo(
'000904b0',
[StringStruct('CompanyName', 'OpenVPI Team'),
StringStruct('FileDescription', 'Audio Slicer'),
StringStruct('FileVersion', '1.0.1.0'),
StringStruct('FileVersion', '1.1.0.0'),
StringStruct('InternalName', 'slicer-gui.exe'),
StringStruct('LegalCopyright', 'Copyright 2020-2022 OpenVPI Team'),
StringStruct('LegalCopyright', 'Copyright 2020-2023 OpenVPI Team'),
StringStruct('OriginalFilename', 'slicer-gui.exe'),
StringStruct('ProductName', 'Audio Slicer'),
StringStruct('ProductVersion', '1.0.1.0')])
StringStruct('ProductVersion', '1.1.0.0')])
]),
VarFileInfo([VarStruct('Translation', [9, 1200])])
]
Expand Down
2 changes: 1 addition & 1 deletion gui/mainwindow.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ def _q_clear_audio_list(self):

def _q_about(self):
QMessageBox.information(
self, "About", "Audio Slicer v1.0.1\nCopyright 2020-2023 OpenVPI Team")
self, "About", "Audio Slicer v1.1.0\nCopyright 2020-2023 OpenVPI Team")

def _q_start(self):
if self.processing:
Expand Down

0 comments on commit 83ff3dc

Please sign in to comment.