Skip to content

Commit

Permalink
build: 更新版本号至 1.8.1
Browse files Browse the repository at this point in the history
  • Loading branch information
nuthx committed Nov 8, 2024
1 parent eb32a92 commit 3b361b3
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion build.spec
Original file line number Diff line number Diff line change
Expand Up @@ -49,5 +49,5 @@ app = BUNDLE(
name='SubtitleRenamer.app',
icon='image/icon.icns',
bundle_identifier=None,
version='1.8',
version='1.8.1',
)
2 changes: 1 addition & 1 deletion src/module/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@


def currentVersion():
current_version = "1.8"
current_version = "1.8.1"
return current_version


Expand Down
2 changes: 1 addition & 1 deletion version.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import re

ver = "1.8"
ver = "1.8.1"
ver_sp = [num for num in str(ver).split(".")]

if len(ver) == 3:
Expand Down
8 changes: 4 additions & 4 deletions version.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,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, 8, 0, 0),
prodvers=(1, 8, 0, 0),
filevers=(1, 8, 1, 0),
prodvers=(1, 8, 1, 0),
# Contains a bitmask that specifies the valid bits.
mask=0x3f,
# Contains a bitmask that specifies the Boolean attributes of the file.
Expand All @@ -28,10 +28,10 @@ VSVersionInfo(
StringTable(
u'080404b0',
[StringStruct(u'FileDescription', u'SubtitleRenamer'),
StringStruct(u'FileVersion', u'1.8'),
StringStruct(u'FileVersion', u'1.8.1'),
StringStruct(u'LegalCopyright', u'Copyright (C) 2023 NuthX'),
StringStruct(u'ProductName', u'SubtitleRenamer'),
StringStruct(u'ProductVersion', u'1.8')])
StringStruct(u'ProductVersion', u'1.8.1')])
]),
VarFileInfo([VarStruct(u'Translation', [2052, 1200])])
]
Expand Down

0 comments on commit 3b361b3

Please sign in to comment.