ai-screenshooter 1.1.0__tar.gz → 1.2.0__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: ai-screenshooter
3
- Version: 1.1.0
3
+ Version: 1.2.0
4
4
  Summary: A CLI tool to capture and send AI-powered screenshots
5
5
  Home-page: https://github.com/tech4vision/ai-screenshoter
6
6
  Author: Last Shot AI
@@ -0,0 +1,8 @@
1
+ # ai-screenshoter
2
+ Ai Screenshooter App - lastshot.ai
3
+
4
+
5
+ ## Upload process
6
+ rm -rf dist
7
+ source .venv/bin/activate
8
+ python -m build
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: ai-screenshooter
3
- Version: 1.1.0
3
+ Version: 1.2.0
4
4
  Summary: A CLI tool to capture and send AI-powered screenshots
5
5
  Home-page: https://github.com/tech4vision/ai-screenshoter
6
6
  Author: Last Shot AI
@@ -115,10 +115,10 @@ def send_screenshots():
115
115
  def on_press(key):
116
116
  current_keys.add(key)
117
117
  try:
118
- if key == keyboard.KeyCode.from_char('c') and keyboard.Key.esc in current_keys:
118
+ if key == keyboard.Key.down and keyboard.Key.esc in current_keys:
119
119
  print("📸 Capturing screenshot...")
120
120
  capture_screenshot()
121
- elif key == keyboard.KeyCode.from_char('v') and keyboard.Key.esc in current_keys:
121
+ elif key == keyboard.Key.up and keyboard.Key.esc in current_keys:
122
122
  print("📤 Sending all screenshots...")
123
123
  send_screenshots()
124
124
  except AttributeError:
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
2
2
 
3
3
  setup(
4
4
  name="ai-screenshooter",
5
- version="1.1.0",
5
+ version="1.2.0",
6
6
  packages=find_packages(),
7
7
  py_modules=["ai_screenshot"],
8
8
  install_requires=[
@@ -1,2 +0,0 @@
1
- # ai-screenshoter
2
- Ai Screenshooter App - lastshot.ai