chatwire 0.2.1__tar.gz → 0.2.2__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (44) hide show
  1. {chatwire-0.2.1/chatwire.egg-info → chatwire-0.2.2}/PKG-INFO +1 -1
  2. {chatwire-0.2.1 → chatwire-0.2.2}/_version.py +1 -1
  3. {chatwire-0.2.1 → chatwire-0.2.2/chatwire.egg-info}/PKG-INFO +1 -1
  4. {chatwire-0.2.1 → chatwire-0.2.2}/chatwire_cli.py +7 -1
  5. {chatwire-0.2.1 → chatwire-0.2.2}/LICENSE +0 -0
  6. {chatwire-0.2.1 → chatwire-0.2.2}/README.md +0 -0
  7. {chatwire-0.2.1 → chatwire-0.2.2}/bridge.py +0 -0
  8. {chatwire-0.2.1 → chatwire-0.2.2}/chat_db.py +0 -0
  9. {chatwire-0.2.1 → chatwire-0.2.2}/chat_send.py +0 -0
  10. {chatwire-0.2.1 → chatwire-0.2.2}/chatwire.egg-info/SOURCES.txt +0 -0
  11. {chatwire-0.2.1 → chatwire-0.2.2}/chatwire.egg-info/dependency_links.txt +0 -0
  12. {chatwire-0.2.1 → chatwire-0.2.2}/chatwire.egg-info/entry_points.txt +0 -0
  13. {chatwire-0.2.1 → chatwire-0.2.2}/chatwire.egg-info/requires.txt +0 -0
  14. {chatwire-0.2.1 → chatwire-0.2.2}/chatwire.egg-info/top_level.txt +0 -0
  15. {chatwire-0.2.1 → chatwire-0.2.2}/config.py +0 -0
  16. {chatwire-0.2.1 → chatwire-0.2.2}/contacts.py +0 -0
  17. {chatwire-0.2.1 → chatwire-0.2.2}/echo_log.py +0 -0
  18. {chatwire-0.2.1 → chatwire-0.2.2}/integrations/__init__.py +0 -0
  19. {chatwire-0.2.1 → chatwire-0.2.2}/integrations/base.py +0 -0
  20. {chatwire-0.2.1 → chatwire-0.2.2}/integrations/telegram/__init__.py +0 -0
  21. {chatwire-0.2.1 → chatwire-0.2.2}/integrations/web/__init__.py +0 -0
  22. {chatwire-0.2.1 → chatwire-0.2.2}/integrations/webhook/__init__.py +0 -0
  23. {chatwire-0.2.1 → chatwire-0.2.2}/migrations/0001_initial.py +0 -0
  24. {chatwire-0.2.1 → chatwire-0.2.2}/migrations/0002_integration_split.py +0 -0
  25. {chatwire-0.2.1 → chatwire-0.2.2}/migrations/__init__.py +0 -0
  26. {chatwire-0.2.1 → chatwire-0.2.2}/prefix.py +0 -0
  27. {chatwire-0.2.1 → chatwire-0.2.2}/pyproject.toml +0 -0
  28. {chatwire-0.2.1 → chatwire-0.2.2}/setup.cfg +0 -0
  29. {chatwire-0.2.1 → chatwire-0.2.2}/templates/__init__.py +0 -0
  30. {chatwire-0.2.1 → chatwire-0.2.2}/templates/launchd/bridge.plist.template +0 -0
  31. {chatwire-0.2.1 → chatwire-0.2.2}/templates/launchd/keepawake.plist.template +0 -0
  32. {chatwire-0.2.1 → chatwire-0.2.2}/templates/launchd/web.plist.template +0 -0
  33. {chatwire-0.2.1 → chatwire-0.2.2}/web/main.py +0 -0
  34. {chatwire-0.2.1 → chatwire-0.2.2}/web/setup_wizard.py +0 -0
  35. {chatwire-0.2.1 → chatwire-0.2.2}/web/static/favicon.svg +0 -0
  36. {chatwire-0.2.1 → chatwire-0.2.2}/web/static/style.css +0 -0
  37. {chatwire-0.2.1 → chatwire-0.2.2}/web/static/sw.js +0 -0
  38. {chatwire-0.2.1 → chatwire-0.2.2}/web/static/update-check.js +0 -0
  39. {chatwire-0.2.1 → chatwire-0.2.2}/web/templates/_conversation.html +0 -0
  40. {chatwire-0.2.1 → chatwire-0.2.2}/web/templates/_conversations.html +0 -0
  41. {chatwire-0.2.1 → chatwire-0.2.2}/web/templates/_settings.html +0 -0
  42. {chatwire-0.2.1 → chatwire-0.2.2}/web/templates/_whitelist_rows.html +0 -0
  43. {chatwire-0.2.1 → chatwire-0.2.2}/web/templates/index.html +0 -0
  44. {chatwire-0.2.1 → chatwire-0.2.2}/whitelist.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: chatwire
3
- Version: 0.2.1
3
+ Version: 0.2.2
4
4
  Summary: macOS chat-relay bridge: iMessage <-> Telegram, web UI, and pluggable integrations
5
5
  Author: Allen Bina
6
6
  License: MIT License
@@ -9,4 +9,4 @@ Format: PEP 440-flavored semver. Pre-1.0 dev builds carry a `-dev` suffix
9
9
  which the update-check JS treats as "skip the check" (no point pinging
10
10
  GitHub when you cloned from main).
11
11
  """
12
- __version__ = "0.2.1"
12
+ __version__ = "0.2.2"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: chatwire
3
- Version: 0.2.1
3
+ Version: 0.2.2
4
4
  Summary: macOS chat-relay bridge: iMessage <-> Telegram, web UI, and pluggable integrations
5
5
  Author: Allen Bina
6
6
  License: MIT License
@@ -130,7 +130,13 @@ def _label(label_prefix: str, name: str) -> str:
130
130
  def cmd_install_agents(args: argparse.Namespace) -> int:
131
131
  _require_macos()
132
132
  install_dir = Path(args.install_dir).resolve()
133
- venv_python = Path(args.venv_python).resolve()
133
+ # NOT .resolve() — on macOS framework Python (python.org), the pipx
134
+ # venv's bin/python3.X is a symlink to the framework binary, and
135
+ # resolve() would dereference it. The plist needs the VENV-form path
136
+ # so that Python boots with sys.prefix pointing at the venv (and so
137
+ # finds the venv's site-packages); invoking the framework binary
138
+ # directly skips the venv and the import of fastapi etc. fails.
139
+ venv_python = Path(args.venv_python).absolute()
134
140
  log_dir = Path(args.log_dir).resolve()
135
141
  label_prefix = args.label_prefix
136
142
 
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes