Skip to content

Commit 92ea853

Browse files
committed
hotfix: hang window
1 parent 8051af2 commit 92ea853

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

AgentCrew/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.6.4-2"
1+
__version__ = "0.6.4-3"

AgentCrew/modules/gui/components/input_components.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ def check_for_path_completion(self):
129129
return
130130

131131
# Look for path patterns that should trigger completion
132-
path_match = re.search(r"((~|\.{1,2})?/[^\s]*|~)$", text_to_cursor)
132+
path_match = re.search(r"((~|\.{1,2})?/[^\s/]*|~)$", text_to_cursor)
133133

134134
if path_match:
135135
path = path_match.group(0)

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "agentcrew-ai"
3-
version = "0.6.4-2"
3+
version = "0.6.4-3"
44
requires-python = ">=3.12"
55
classifiers = [
66
"Programming Language :: Python :: 3",

uv.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)