Skip to content

Commit 8c1e640

Browse files
authored
Merge pull request #606 from davidhozic/develop
Merge bug fixes from develop
2 parents 3a759e8 + bac0882 commit 8c1e640

File tree

4 files changed

+4
-2
lines changed

4 files changed

+4
-2
lines changed

docs/source/changelog.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ v4.1.0
5151
- Fixed SQL log removal through the GUI.
5252
- Fixed CSV and JSON reading through remote.
5353
- Fixed exception when GUI tried to print a message.
54+
- Fixed invite ``invite_track`` attribute error in :class:`daf.guild.AutoGUILD`.
5455
- |BREAK_CH| Disabled the :ref:`Automatic guild discovery and join` features due to the search provider shutting down its
5556
services. It will be reenabled in a future version.
5657

requirements/mandatory.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,4 @@ tkinter-async-execute>=1.2,<1.4
66
asyncio-event-hub>=1.0,<1.2
77
tkclasswiz>=1.4,<1.5
88
ttkbootstrap==1.10.1
9+
pillow>=10.4.0,<10.5.0

src/daf/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
import warnings
2323

2424

25-
VERSION = "4.1.0rc1"
25+
VERSION = "4.1.0rc2"
2626

2727

2828
if sys.version_info.minor == 12 and sys.version_info.major == 3:

src/daf/guild/autoguild.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -441,7 +441,7 @@ async def _on_update(self, _, init_options, **kwargs):
441441
try:
442442
# Update the guild
443443
if "invite_track" not in kwargs:
444-
kwargs["invite_track"] = self.invite_track
444+
kwargs["invite_track"] = list(self._invite_join_count.keys())
445445

446446
if "exclude_pattern" not in kwargs: # DEPRECATED; TODO: remove in 4.2.0
447447
kwargs["exclude_pattern"] = None

0 commit comments

Comments
 (0)