Skip to content

Commit

Permalink
Bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
fedecalendino committed Dec 21, 2022
1 parent a03449c commit 8c7aa9a
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -356,7 +356,7 @@
</dict>
</array>
<key>version</key>
<string>0.1.0</string>
<string>0.1.1</string>
<key>webaddress</key>
<string>https://github.com/fedecalendino/alfred-minute-inbox</string>
</dict>
Expand Down
8 changes: 4 additions & 4 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "Minute Inbox"
version = "0.1.0"
version = "0.1.1"
description = "Get a disposable 10 minute email address"
documentation = "https://github.com/fedecalendino/alfred-minute-inbox/blob/main/README.md"
homepage = "https://github.com/fedecalendino/alfred-minute-inbox"
Expand All @@ -12,7 +12,7 @@ authors = [

[tool.poetry.dependencies]
python = ">=3.8,<3.11"
alfred-pyflow = "latest"
alfred-pyflow = "0.3.3"
minuteinbox = "0.2.0"
beautifulsoup4 = "^4.11.1"

Expand Down
2 changes: 1 addition & 1 deletion src/extend.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ def main(workflow):
arg=inbox.address,
valid=True,
).set_icon_file(
path="./img/extend.png",
path="./img/icons/extend.png",
)


Expand Down
4 changes: 2 additions & 2 deletions src/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def main(workflow):
arg=inbox.address,
valid=True,
).set_icon_file(
path="./img/inbox.png",
path="./img/icons/inbox.png",
)

item.set_alt_mod(
Expand Down Expand Up @@ -54,7 +54,7 @@ def main(workflow):
arg=path,
valid=True,
).set_icon_file(
path="./img/new.png" if mail.is_new else "./img/envelope.png",
path="./img/icons/new.png" if mail.is_new else "./img/icons/envelope.png",
)


Expand Down

0 comments on commit 8c7aa9a

Please sign in to comment.