xpresser-team team mailing list archive
-
xpresser-team team
-
Mailing list archive
-
Message #00015
lp:~xpresser-team/xpresser/xpresser-with-special-keys-with-reversed-key-release into lp:~xpresser-team/xpresser/xpresser-with-special-keys
Chris Gagnon has proposed merging lp:~xpresser-team/xpresser/xpresser-with-special-keys-with-reversed-key-release into lp:~xpresser-team/xpresser/xpresser-with-special-keys.
Requested reviews:
Xpresser (xpresser-team)
For more details, see:
https://code.launchpad.net/~xpresser-team/xpresser/xpresser-with-special-keys-with-reversed-key-release/+merge/118007
reverses the list a key press of ctrl+del will be released in order of del ctrl, so del will not be pressed when ctrl is not pressed
--
https://code.launchpad.net/~xpresser-team/xpresser/xpresser-with-special-keys-with-reversed-key-release/+merge/118007
Your team Xpresser is requested to review the proposed merge of lp:~xpresser-team/xpresser/xpresser-with-special-keys-with-reversed-key-release into lp:~xpresser-team/xpresser/xpresser-with-special-keys.
=== modified file 'debian/changelog'
--- debian/changelog 2012-07-25 01:44:55 +0000
+++ debian/changelog 2012-08-02 22:32:17 +0000
@@ -1,3 +1,10 @@
+xpresser (1.1.2ubuntu1) precise; urgency=low
+
+ * reversed keys_to_press for key release so things like ctrl-alt-
+ backspace wont delete a typed key
+
+ -- Chris Gagnon <chris.gagnon@xxxxxxxxxxxxx> Thu, 26 Jul 2012 15:37:51 -0400
+
xpresser (1.1.2) precise; urgency=low
* Small fix
=== modified file 'xpresser/xutils.py'
--- xpresser/xutils.py 2012-07-25 01:44:55 +0000
+++ xpresser/xutils.py 2012-08-02 22:32:17 +0000
@@ -50,6 +50,7 @@
time.sleep(.35)
else:
__type_standard(string_part)
+ keys_to_press.reverse()
for keys in keys_to_press:
__release_key(keys)
else:
Follow ups