Skip to content

Commit

Permalink
bump version.
Browse files Browse the repository at this point in the history
  • Loading branch information
Atsuo Ishimoto committed Nov 14, 2013
1 parent 679dc9f commit e77ca9a
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 7 deletions.
7 changes: 7 additions & 0 deletions README-JA.rst
Original file line number Diff line number Diff line change
Expand Up @@ -250,11 +250,16 @@ Text convert menu
Code memu
+++++++++

Codeメニューは、ファイルの種類によって異なります。プログラミング言語では、以下のような項目が表示されます。

+---------------+----------------------------------------------------+
| Comment | 選択範囲した行をコメントにする |
+---------------+----------------------------------------------------+
| Uncomment | 選択した行のコメント解除する |
+---------------+----------------------------------------------------+
| Table of | 目次を表示し、選択した項目にカーソルを移動する |
| contents | |
+---------------+----------------------------------------------------+


Macro menu
Expand Down Expand Up @@ -375,6 +380,8 @@ Switch file menu
+--------------------+------------------------------------------------+
| Control+g | 指定した行番号へ移動 |
+--------------------+------------------------------------------------+
| Control+t | 目次を表示 |
+--------------------+------------------------------------------------+


テキスト選択
Expand Down
23 changes: 19 additions & 4 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -246,13 +246,18 @@ Text convert menu
Code memu
+++++++++

Code menu differs among file types. Following items are typical in programming languages.

+---------------+----------------------------------------------------+
| Comment | Insert line comment character at top of lines in |
| | selected regin. |
+---------------+----------------------------------------------------+
| Uncomment | Delete line comment character at top of lines in |
| | selected regin. |
+---------------+----------------------------------------------------+
| Table of | Show table of contents to move cursor. |
| contents | |
+---------------+----------------------------------------------------+


Macro menu
Expand Down Expand Up @@ -373,6 +378,8 @@ Cursor keys
+--------------------+------------------------------------------------+
| Control+g | Go to line number. |
+--------------------+------------------------------------------------+
| Control+t | Table of contents. |
+--------------------+------------------------------------------------+


Text selection
Expand Down Expand Up @@ -572,9 +579,20 @@ Links
Version history
=================

0.10 - 2013.11.11
0.11 - 2013.11.14
------------------

- Show table of contents in Python mode. Hit Ctrl+t to display TOC.

- Improve highlighting in reStructured mode.


Past versions
--------------

0.10 - 2013.11.11
+++++++++++++++++++++

- Add 'japanese' encoding that detects text encoding from file.

- Specify text encoding to grep file.
Expand All @@ -584,9 +602,6 @@ Version history
- New color palette: dark, light.


Past versions
--------------

0.9 - 2013.11.9
+++++++++++++++++++++

Expand Down
2 changes: 1 addition & 1 deletion kaa/version.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import sys, os
KAA_VERSION = (0, 10, 0)
KAA_VERSION = (0, 11, 0)

def version_info():
return '''\
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,15 +26,15 @@ def read(fname):
setup(
cmdclass = cmdclass,
name = "kaaedit",
version = "0.10.0",
version = "0.11.0",
description='kaa - console text editor.',
url='https://github.com/kaaedit/kaa',
author='Atsuo Ishimoto',
author_email='[email protected]',
long_description=read('README.rst'),
classifiers=[
"Programming Language :: Python :: 3",
"Development Status :: 2 - Pre-Alpha",
"Development Status :: 3 - Alpha",
"Topic :: Text Editors",
"Environment :: Console :: Curses",
"License :: OSI Approved :: MIT License", ],
Expand Down

0 comments on commit e77ca9a

Please sign in to comment.