Skip to content

Commit

Permalink
bump version to 4.1.7, unimacroutils.py set_mouse_position (beginning…
Browse files Browse the repository at this point in the history
… of independent of playString)
  • Loading branch information
quintijn committed Aug 20, 2024
1 parent 18c9496 commit a0ab637
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 12 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,4 @@ __pycache__/
README.html
/src/unimacro/UnimacroGrammars/rememberdialog.py
/tests/rememberdialog.py
/src/unimacro/UnimacroGrammars/rememberdialog.py
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ requires-python = ">=3.10"
readme = "README.md"


dependencies = ["dtactions >= 1.6.1",
dependencies = ["dtactions >= 1.6.2",
"debugpy >= 1.2.0",
"pywin32 >= 304",
"natlinkcore >= 5.4.0",
"natlinkcore >= 5.4.1",
"FreeSimpleGUI>=5.1.0"]

classifiers=[ "Development Status :: 4 - Beta",
Expand Down
14 changes: 8 additions & 6 deletions src/unimacro/UnimacroGrammars/rememberdialog.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,16 @@
from dtactions.unimacro import inivars

prompt = """Remember in Unimacro _folders grammar""" # readable text
text = """Remember folder "C:/Users/Gebruiker/Music" for future calling?
text = """Remember website for future calling?
Please give a spoken form for this folder and choose OK; or Cancel...""" # input text, the key of the
inifile = "C:/Users/Gebruiker/Documents/unimacro_clean_start/enx_inifiles/_folders.ini"
section = "folders"
value = "C:/Users/Gebruiker/Music"
- https://pypi.org -
Please give a spoken form for this website and choose OK; or Cancel...""" # input text, the key of the
inifile = "C:/Users/Gebruiker/Documents/unimacro_qh/enx_inifiles/_folders.ini"
section = "websites"
value = "https://pypi.org"
title = "test"
default = "Music"
default = "pypi"
pausetime = 3 # should be replaced by 0 or a positive int value


Expand Down
4 changes: 0 additions & 4 deletions src/unimacro/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,6 @@
import os
import sys

__version__ = '4.1.6' # requires the dtactions 1.5.5, with new sendkeys (from send_input, vocola)
#they could be in a seperate .py file in unimacro to achieve the same (ie not in the control grammar).
#these will possilby be removed since we may not need them to enumerate the grammars and ask for log names.

def folders_logger_name() -> str:
return "natlink.unimacro.folders"

Expand Down

0 comments on commit a0ab637

Please sign in to comment.