Skip to content

Commit c36a923

Browse files
committed
Merge pull request #120 from balshetzer/master
merge
2 parents 5272b79 + 0e7d67b commit c36a923

File tree

5 files changed

+13
-8
lines changed

5 files changed

+13
-8
lines changed

README.rst

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -36,12 +36,12 @@ Installation
3636

3737
Windows:
3838
Plover is available for Windows as a compiled executable. The latest
39-
version is here: https://github.com/plover/plover/releases/download/v2.5.5/plover.exe
39+
version is here: https://github.com/plover/plover/releases/download/v2.5.6/plover.exe
4040
There is no installer, just run the binary
4141

4242
Mac:
4343
Plover is available for Mac OSX as an app. Download the dmg from:
44-
https://github.com/plover/plover/releases/download/v2.5.5/Plover.dmg
44+
https://github.com/plover/plover/releases/download/v2.5.6/Plover.dmg
4545
Open the dmg and drag plover to the applications folder to install.
4646
Before running the application you will also need to
4747
Open System Preferences, Open "Universal Access" and check the box next
@@ -55,9 +55,9 @@ run the following commands::
5555
cd
5656
sudo apt-get install python-xlib python-wxgtk2.8 wmctrl python-dev python-pip
5757
sudo pip install -U appdirs simplejson pyserial
58-
wget https://github.com/plover/plover/archive/v2.5.5.tar.gz
59-
tar -zxf v2.5.5.tar.gz
60-
cd plover-2.5.5
58+
wget https://github.com/plover/plover/archive/v2.5.6.tar.gz
59+
tar -zxf v2.5.6.tar.gz
60+
cd plover-2.5.6
6161
sudo python setup.py install
6262

6363
Once this is done then you should be able to run plover from the applications menu or from the command line with::

plover/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
"""Plover: Open Source Stenography Software"""
55

6-
__version__ = '2.5.5'
6+
__version__ = '2.5.6'
77
__copyright__ = '(C) 2010-2011 Joshua Harlan Lifton'
88
__url__ = 'http://stenoknight.com/plover'
99
__download_url__ = 'https://github.com/plover/plover'

plover/dictionary/rtfcre_dict.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ def _re_handle_commands(self, m):
124124
if style_name.startswith('Contin'):
125125
result.append('{^ ^}')
126126
return ''.join(result)
127-
127+
128128
# Unrecognized commands are ignored.
129129
return ''
130130

@@ -165,6 +165,9 @@ def _re_handle_simple_command_group(self, m):
165165
# Show unknown punctuation as given.
166166
return '{^' + contents + '^}'
167167

168+
if command == 'cxsvatdictflags' and 'N' in contents:
169+
return '{-|}'
170+
168171
# unrecognized commands
169172
if ignore:
170173
return ''

plover/dictionary/test_rtfcre_dict.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,8 @@ def test_converter(self):
3434
(r'\cxfc', '{-|}'),
3535
(r'\cxfl', '{>}'),
3636
(r'pre\cxfl', 'pre{>}'),
37+
(r'{\*\cxsvatdictflags N}', '{-|}'),
38+
(r'{\*\cxsvatdictflags LN1}', '{-|}'),
3739
(r'\par', '{#Return}{#Return}'),
3840
# caseCATalyst declares new styles without a preceding \par so we treat
3941
# it as an implicit par.

plover/oslayer/winkeyboardcontrol.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
from pywinauto.SendKeysCtypes import SendKeys as _SendKeys
2626

2727
def SendKeys(s):
28-
_SendKeys(s, with_spaces=True)
28+
_SendKeys(s, with_spaces=True, pause=0)
2929

3030
# For the purposes of this class, we'll only report key presses that
3131
# result in these outputs in order to exclude special key combos.

0 commit comments

Comments
 (0)