Skip to content

Commit

Permalink
v0.1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
seird committed Mar 21, 2022
1 parent 93a1207 commit 108786a
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ $ python -m gotify_tray

- Install the pip package:
```
$ pip install dist/gotify_tray-0.1.3-py3-none-any.whl
$ pip install dist/gotify_tray-0.1.4-py3-none-any.whl
```

- Launch:
Expand Down
2 changes: 1 addition & 1 deletion debian/DEBIAN/control
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Package: gotify-tray
Version: 0.1.3
Version: 0.1.4
Architecture: amd64
Maintainer: k.dries@protonmail.com
Description: gotify-tray
Expand Down
2 changes: 1 addition & 1 deletion gotify_tray/__version__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
"A tray notification application for receiving messages from a Gotify server."
)
__url__ = "https://github.com/seird/gotify-tray"
__version__ = "0.1.3"
__version__ = "0.1.4"
8 changes: 4 additions & 4 deletions version.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
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=(0, 1, 3, 0),
prodvers=(0, 1, 3, 0),
filevers=(0, 1, 4, 0),
prodvers=(0, 1, 4, 0),
# Contains a bitmask that specifies the valid bits 'flags'r
mask=0x3F,
# Contains a bitmask that specifies the Boolean attributes of the file.
Expand All @@ -34,12 +34,12 @@
StringStruct(u"Comments", u"Gotify Tray"),
StringStruct(u"CompanyName", u""),
StringStruct(u"FileDescription", u"Gotifiy Tray"),
StringStruct(u"FileVersion", u"0.1.3"),
StringStruct(u"FileVersion", u"0.1.4"),
StringStruct(u"InternalName", u"gotify-tray"),
StringStruct(u"LegalCopyright", u""),
StringStruct(u"OriginalFilename", u"gotify-tray.exe"),
StringStruct(u"ProductName", u"Gotify Tray"),
StringStruct(u"ProductVersion", u"0.1.3"),
StringStruct(u"ProductVersion", u"0.1.4"),
],
)
]
Expand Down
2 changes: 1 addition & 1 deletion version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.1.3
0.1.4

0 comments on commit 108786a

Please sign in to comment.