Skip to content

Commit

Permalink
improved extenvvars.py (#13)
Browse files Browse the repository at this point in the history
* clipboard problem isolated and hopefully solved:
  catches exception in dtactions/unimacro/unimacroutils/setClipboard.
* changed extenvvars.py and created test_extenvvars.py
* add platformdirs as a dependency
* goto 1.6.1 and require platformdirs
  • Loading branch information
quintijn authored Apr 8, 2024
1 parent e36bc9c commit 14899be
Show file tree
Hide file tree
Showing 9 changed files with 532 additions and 702 deletions.
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ readme = "README.md"

dependencies= [
"pywin32 >= 300",
"debugpy"
"debugpy",
"platformdirs"
]

classifiers=[ "Development Status :: 4 - Beta",
Expand Down
2 changes: 1 addition & 1 deletion src/dtactions/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
"""
## version to be updated when a new release is sent to pypi:
__version__ = '1.5.7' # streamlining __init__ a bit oct 23
__version__ = '1.6.1' # new middle number with extenvvar.py and requirement of natlink, april 24
##----------------------
import sys
import os
Expand Down
5 changes: 3 additions & 2 deletions src/dtactions/sendkeys.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,5 +54,6 @@ def sendsystemkeys(keys):

# sendkeys("{ctrl+end}{up 2}{home}{shift+end}{del}this is wrong{shift+left 5}right")
# ##
"""
"""

"""
"""
Loading

0 comments on commit 14899be

Please sign in to comment.