-
-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
・「複数動的補完を使用する」が有効かつ見出し語が空の状態で補完を開始してから前補完で最初に戻ってきたとき、破棄されたインスタンスに触れてしまうバグを修正しました。 ・辞書登録ウィンドウで補完したとき、ユーザー辞書の候補が表示されない場合でも候補を囲む括弧が表示されていた不具合を修正しました。 ・セミコロンまたはスラッシュを含む見出し語を補完したとき、 Lisp の関数の状態で表示されるバグを修正しました。 ・「動的補完を使用する」が有効かつ接頭辞の入力を開始したとき、動的補完が開始されるようにしました。 ・短かい見出し語での補完が重くなりすぎないように補完される見出し語の最大数を1024に制限するようにしました。 ・縦書きのとき候補ウィンドウを右側もしくは左側の位置に表示するようにしました。 ・SEEK_END を引数に与えた fseek 関数を使用しないように修正しました。(CERT FIO19-C) ・ungetwc 関数が2回連続で呼ばれないように修正しました。(CERT FIO13-C)
- Loading branch information
1 parent
11be76b
commit 0e48b1e
Showing
5 changed files
with
7 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
|
||
# CorvusSKK ver. 2.2.5 | ||
# CorvusSKK ver. 2.2.6 | ||
|
||
Windowsで動作するSKK風のIMEです。 | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
|
||
set VERSION=2.2.5 | ||
set VERSION=2.2.6 | ||
|
||
set TARGETDIR=build |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
--[[ | ||
CorvusSKK ver.2.2.5 Lua拡張スクリプト | ||
CorvusSKK ver.2.2.6 Lua拡張スクリプト | ||
Cから呼ばれるLuaの関数 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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.2.5" ?> | ||
<?define version="2.2.6" ?> | ||
</Include> |