Skip to content

Commit

Permalink
2.5.0
Browse files Browse the repository at this point in the history
・ITfFnReconversionインターフェイスによる再変換機能を追加しました。
 ・メモ帳やWordなどで再変換の機能を使用することができます。
 ・現状では見出し語からの変換のみに対応しています。その逆ができないので通常の使用方法ではあまり使い道が無いかもしれません。
 ・ITfFnReconversion::GetReconversionメソッドから候補の一覧が取得できます。

・実行変換もどきにおけるLispの文字列内の二重引用符のエスケープ処理を修正しました。

・補完の見出し語候補の最大数を1024から256に変更しました。

・空文字列での補完を無効としました。
  • Loading branch information
nathancorvussolis committed Nov 8, 2016
1 parent d819a47 commit a8cdf69
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

# CorvusSKK ver. 2.4.5
# CorvusSKK ver. 2.5.0

Windowsで動作するSKK風のIMEです。

Expand Down Expand Up @@ -85,7 +85,7 @@ Adobe Reader X 以降で使用するには、設定ファイル (config.xml) に

* 言語バーを右クリックし、メニューから「設定」を選択する。「テキストサービスと入力言語」ダイアログの「インストールされているサービス」からCorvusSKKを選択し、プロパティボタンを押す。
* 言語バーの入力モードアイコンを左クリックし、メニューから「設定」を選択する。
* 言語バーのヘルプボタンを左クリックし、メニューから「CorvusSKK」を選択する。
* 言語バーのヘルプボタンを左クリックし、メニューから「CorvusSKK」を選択する。
* Windows 8 以降の通知領域の入力モードアイコンを右クリックし、メニューから「設定」を選択する。

設定ダイアログで保存した後は、IME OFF → ON で新しい設定が反映されます。
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"IMCRVSKK"
#define TEXTSERVICE_VER L"2.4.5"
#define TEXTSERVICE_VER L"2.5.0"

//for resource
#define RC_AUTHOR "nathancorvussolis"
#define RC_PRODUCT "CorvusSKK"
#define RC_VERSION "2.4.5"
#define RC_VERSION_D 2,4,5,0
#define RC_VERSION "2.5.0"
#define RC_VERSION_D 2,5,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=2.4.5
set VERSION=2.5.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="2.4.5" ?>
<?define version="2.5.0" ?>
</Include>

0 comments on commit a8cdf69

Please sign in to comment.