Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
Atsuo Ishimoto committed Dec 10, 2015
1 parent fcec371 commit 80369a1
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 3 deletions.
10 changes: 10 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -909,6 +909,16 @@ Version history
=================


0.47.0 - 2015.12.10
--------------------

- Range of word in word completion is fixed.

- Use X11 clipboard only if environment variable ``DISPLAY`` is provided.

- Fix bug if diaog size is greater than screen size.


0.46.0 - 2015.11.06
--------------------

Expand Down
3 changes: 2 additions & 1 deletion kaa/ui/wordcomplete/wordcompletemode.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,8 @@ def start(self, list):
wnd = self.document.wnds[0]

curword = ''
word = self.target.document.mode.get_word_at(self.orgpos)
p = max(0, self.orgpos-1)
word = self.target.document.mode.get_word_at(p)
if word:
f, t, cg = word
t = max(f, min(t, self.orgpos))
Expand Down
2 changes: 1 addition & 1 deletion kaa/version.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import sys
import os
KAA_VERSION = (0, 46, 0)
KAA_VERSION = (0, 47, 0)


def version_info():
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ def read(fname):
setup(
cmdclass=cmdclass,
name="kaaedit",
version="0.46.0",
version="0.47.0",
description='kaa - console text editor.',
url='https:/kaaedit/kaa',
author='Atsuo Ishimoto',
Expand Down

0 comments on commit 80369a1

Please sign in to comment.