Skip to content

Commit

Permalink
Unimacro summer24 bump to 4.1.6 (#57)
Browse files Browse the repository at this point in the history
* bump version to 4.1.7, unimacroutils.py set_mouse_position (beginning of independent of playString)

* bump to 4.1.6
  • Loading branch information
quintijn authored Aug 22, 2024
1 parent 7874d8e commit 707f2ac
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 14 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
2 changes: 1 addition & 1 deletion src/unimacro/UnimacroGrammars/_folders.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@
from dtactions.unimacro import unimacroutils
# from dtactions.unimacro.unimacroactions import Message
# from dtactions.unimacro import unimacroactions as actions
import unimacro.natlinkutilsbj as natbj
from unimacro import natlinkutilsbj as natbj
# from unimacro.unimacro_wxpythondialogs import InputBox
# import natlinkcore.natlinkutils as natut

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
6 changes: 1 addition & 5 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 All @@ -22,4 +18,4 @@ def logname() -> str:
""" Returns the name of the unimacro logger."""
return "natlink.unimacro"

__version__ = '4.1.7'
__version__ = '4.1.6'

0 comments on commit 707f2ac

Please sign in to comment.