Skip to content

Commit 828df3b

Browse files
committed
update version 2.2.1 -> 2.2.2
1 parent 811d855 commit 828df3b

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

backend.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
from pymediainfo import MediaInfo
1212

1313

14-
CURRENT_RELEASE = "2.2.1"
14+
CURRENT_RELEASE = "2.2.2"
1515
video_exts = [".mp4", ".flv", ".mov", ".avi", ".mkv"]
1616
doc_exts = [".pdf"]
1717
DB_PATH = Path.joinpath(Path.home(), '.study_planner')

utils/edit_mac_app_info.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
print("Info.plist before editing:", contents)
99

1010
contents['CFBundleIdentifier'] = 'dev.caste.study-planner'
11-
contents['CFBundleVersion'] = '2.2.1'
12-
contents['CFBundleShortVersionString'] = '2.2.1'
11+
contents['CFBundleVersion'] = '2.2.2'
12+
contents['CFBundleShortVersionString'] = '2.2.2'
1313
contents['NSRequiresAquaSystemAppearance'] = False # enable auto dark mode
1414

1515
print("Info.plist after editing:", contents)

utils/update_version_in_files.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
nv = (2, 2, 1) # new version to set
1+
nv = (2, 2, 2) # new version to set
22
nv_str = '.'.join(map(str, nv))
33

44
# update windows_version_file.py

windows_version_file.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
ffi=FixedFileInfo(
77
# filevers and prodvers should be always a tuple with four items: (1, 2, 3, 4)
88
# Set not needed items to zero 0.
9-
filevers=(2, 2, 1, 0),
10-
prodvers=(2, 2, 1, 0),
9+
filevers=(2, 2, 2, 0),
10+
prodvers=(2, 2, 2, 0),
1111
# Contains a bitmask that specifies the valid bits 'flags'r
1212
mask=0x3f,
1313
# Contains a bitmask that specifies the Boolean attributes of the file.
@@ -31,12 +31,12 @@
3131
u'040904B0',
3232
[StringStruct(u'CompanyName', u'Enrico Castelli'),
3333
StringStruct(u'FileDescription', u'Study Planner'),
34-
StringStruct(u'FileVersion', u'2.2.1'),
34+
StringStruct(u'FileVersion', u'2.2.2'),
3535
StringStruct(u'InternalName', u'Study Planner'),
3636
StringStruct(u'LegalCopyright', u'Copyright (c) Enrico Castelli'),
3737
StringStruct(u'OriginalFilename', u'main.py'),
3838
StringStruct(u'ProductName', u'Study Planner'),
39-
StringStruct(u'ProductVersion', u'2.2.1')])
39+
StringStruct(u'ProductVersion', u'2.2.2')])
4040
]),
4141
VarFileInfo([VarStruct(u'Translation', [1033, 1200])])
4242
]

0 commit comments

Comments
 (0)