Skip to content

Commit 695ad32

Browse files
committed
Fix bugs
1 parent 4dfbe49 commit 695ad32

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

PyRoutine/track.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,16 @@
77
current = set()
88
mousecombo = {keyboard.Key.alt, keyboard.KeyCode.from_char("p")}
99
end = {keyboard.Key.alt, keyboard.KeyCode.from_char("f")}
10-
print("ready")
10+
print("ready!")
1111
def on_press(key):
1212
"""Ignore for end-user"""
1313
if key in mousecombo:
1414
current.add(key)
15-
print("something")
15+
print("Position Marked")
1616
click_list.append(pyautogui.position())
1717
elif key in end:
1818
current.add(key)
19-
print("end")
19+
print("ended \n, processing, this might take a few seconds.")
2020
return False
2121

2222
def on_release(key):

data.json

Whitespace-only changes.

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
setuptools.setup(
77
name="PyRoutine",
8-
version="1.1.3",
8+
version="1.2.1",
99
author="Atharv2",
1010
author_email="atharv260107@gmail.com",
1111
description="A program to redo mouse functions.",

0 commit comments

Comments
 (0)