Skip to content

Commit

Permalink
Update README and version to 0.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
deton committed May 5, 2017
1 parent 9703943 commit 3e2aece
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 6 deletions.
11 changes: 10 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

# tsf-tutcode ver. 0.7.1
# tsf-tutcode ver. 0.8.0

Windowsで動作する漢字直接入力用のIMEです。

Expand Down Expand Up @@ -338,6 +338,7 @@ SKK辞書のダウンロード機能では HTTP, HTTPS が使用可能です。
| 取消のとき送り仮名を削除する | ▼モードから▽モードに遷移する際、送り仮名の部分を削除します。 |
| 後退に確定を含める | ▼モードのとき後退すると一文字削除した上で確定します。<br>OFFでは▼モードのとき後退は前候補と同じ機能を有します。 |
| 候補に片仮名変換を追加する | 見出し語を片仮名に変換した候補を追加します。 |
| 交ぜ書き変換の学習から除外する候補数(-1は学習無し) | 先頭数個の候補順を変えない使い方ができるように |

![](installer/resource-md/03_behavior_2.png)

Expand Down Expand Up @@ -922,6 +923,14 @@ pandoc 1.19.2.1

### 履歴

#### v0.8.0 (2017-05-05)
* 交ぜ書き変換の学習から除外する候補数を指定可能に(#16)。
tc2同様に、先頭数個の候補順を変えない使い方ができるようにするため。
* 候補一覧表示中に、後置型交ぜ書き変換の読み伸縮ができないバグを修正 #15
* 不一致シーケンスが後置型変換開始キーで確定された時に変換対象外になるバグ修正 #14
* 設定ダイアログで「入力途中のキーシーケンスを表示する」チェックが効かないバグ修正
* ベースのCorvusSKKを2.5.2に更新。

#### v0.7.0 (2017-04-05)
* 後置型カタカナ変換で、カタカナを伸ばす機能(`Kata<1`等)
* 後置型かな漢字変換(連続するひらがなを漢字に変換):`KanaK`, `KanaKK`, `KanaKk`
Expand Down
6 changes: 3 additions & 3 deletions common/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@
#define TEXTSERVICE_DESC TEXTSERVICE_NAME L"_DEBUG"
#endif
#define TEXTSERVICE_DIR L"IMTSFTUTCODE"
#define TEXTSERVICE_VER L"0.7.1"
#define TEXTSERVICE_VER L"0.8.0"

//for resource
#define RC_AUTHOR "KIHARA Hideto"
#define RC_PRODUCT "tsf-tutcode"
#define RC_VERSION "0.7.1"
#define RC_VERSION_D 0,7,1,0
#define RC_VERSION "0.8.0"
#define RC_VERSION_D 0,8,0,0

#endif
2 changes: 1 addition & 1 deletion installer/_version.cmd
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@

set VERSION=0.7.1
set VERSION=0.8.0

set TARGETDIR=build
2 changes: 1 addition & 1 deletion installer/installer-version.wxi
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<Include>
<?define version="0.7.1" ?>
<?define version="0.8.0" ?>
</Include>

0 comments on commit 3e2aece

Please sign in to comment.