Skip to content

Commit

Permalink
2.4.1
Browse files Browse the repository at this point in the history
・オプション「入力モードを表示する」から「全て」と「没入型」の選択を削除し、デフォルト値をオンに変更しました。
 ・「全て」がオンだったときと同様に、デスクトップアプリ、ストアアプリの区別なく表示します。

・入力モードウィンドウを表示する秒数の設定を追加しました。
 ・1〜60秒の間で設定します。デフォルト値は3秒です。

・入力モードウィンドウを表示するタイミングに、ウィンドウがフォーカスしたときを追加しました。
 ・言語バーまたは通知領域の入力モード表示が更新され得るときと、「*無効*」キー押下のときに表示するようになります。
 ・ちょっとうざったいかもしれませんが入力モードを確認するための視線移動が軽減されると思います。

・Lua 5.3.3 にアップデートしました。
  • Loading branch information
nathancorvussolis committed Jun 13, 2016
1 parent bdf253a commit 75524df
Show file tree
Hide file tree
Showing 26 changed files with 13 additions and 13 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

# CorvusSKK ver. 2.4.0
# CorvusSKK ver. 2.4.1

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

Expand Down Expand Up @@ -226,12 +226,12 @@ SKK辞書のダウンロード機能では HTTP, HTTPS が使用可能です。
| 候補一覧のフォント | 候補一覧に表示するフォントの種類、スタイル、サイズを指定します。 |
| 候補一覧の最大幅 | 候補一覧の最大幅のサイズを指定します。 |
| 候補一覧の色 | 候補一覧の色を指定します。 |
| 候補一覧の描画API | 候補一覧の描画をおこなうAPIを指定します。<br>Direct2Dと彩色の指定でカラーフォントをその色で表示します。(Windows8.1以降) |
| 候補一覧の描画API | 候補一覧の描画をおこなうAPIを指定します。<br>Direct2Dと彩色の指定でカラーフォントを表示します。(Windows8.1以降) |
| 候補一覧表示に要する変換回数(0は表示無し) | 指定した回数変換すると候補一覧が表示されます。 |
| 候補一覧が表示無しのとき候補数を表示する | (<現在の候補の番号>/<候補数>) の形式を追加して表示します。 |
| 候補一覧を縦に表示する | 候補一覧で候補を縦に並べて表示します。 |
| 注釈を表示する | <候補><セミコロン><注釈> の形式で注釈を表示します。<br>「候補一覧」の指定で候補一覧に限定されます。 |
| 入力モードを表示する | キャレットまたは辞書登録ウィンドウ付近に入力モードを表示します。<br>タイミングは、IME ON/OFF 変更、入力モード変更、IME ON/OFF キー押下、「\*無効\*キー押下のときです。<br>「没入型」の指定でストアアプリやEdgeなどに限定されます|
| 入力モードを表示する | キャレットまたは辞書登録ウィンドウ付近に入力モードを表示します。<br>タイミングは、IME ON/OFF 変更、入力モード変更、IME ON/OFF キー押下、「\*無効\*キー押下、ウィンドウフォーカスのときです。<br>表示する秒数として1〜60秒を設定してください。デフォルト値は3秒です|
| ▽▼\*マークを表示する | 大切なものは目に見えないようです。 |
| ローマ字を表示する | 仮名文字のローマ字プレフィックスを表示します。 |

Expand Down Expand Up @@ -464,7 +464,7 @@ ASCII、全英文字の組み合せを指定します。最大で128行です。

辞書管理プロセス (imcrvmgr.exe) の各機能の拡張、プログラム実行変換もどき、数値変換をLuaスクリプトで実装しています。

現在使用しているLuaのバージョンは5.3.2です
現在使用しているLuaのバージョンは5.3.3です

詳細はこちらを参照ください。http://www.lua.org/manual/5.3/manual.html

Expand Down Expand Up @@ -645,7 +645,7 @@ Visual Studio Community 2015 Update 2

WiX Toolset v3.10.2

pandoc 1.17.0.2
pandoc 1.17.1


### ビルド手順
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.0"
#define TEXTSERVICE_VER L"2.4.1"

//for resource
#define RC_AUTHOR "nathancorvussolis"
#define RC_PRODUCT "CorvusSKK"
#define RC_VERSION "2.4.0"
#define RC_VERSION_D 2,4,0,0
#define RC_VERSION "2.4.1"
#define RC_VERSION_D 2,4,1,0

#endif
2 changes: 1 addition & 1 deletion installer/_build_sub.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ if not exist "%TARGETDIR%" mkdir "%TARGETDIR%"

pushd ..

set PATH=%PATH%;%LocalAppData%\Pandoc;%ProgramFiles(x86)%\Pandoc;%ProgramFiles%\Pandoc
set PATH=%PATH%;%LocalAppData%\Pandoc;%ProgramFiles%\Pandoc;%ProgramFiles(x86)%\Pandoc

set DESCRIPTION=CorvusSKK

Expand Down
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.0
set VERSION=2.4.1

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.0" ?>
<?define version="2.4.1" ?>
</Include>
2 changes: 1 addition & 1 deletion installer/installer-x64.wxs
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@

<UIRef Id="WixUI_Minimal" />
<WixVariable Id="WixUILicenseRtf" Value="theme-bundle\license.rtf" />
<Property Id="ARPPRODUCTICON" Value="imcrvskk.ico" />
<Property Id="ARPPRODUCTICON" Value="IMCRVSKK_ICO" />
<Icon Id="IMCRVSKK_ICO" SourceFile="..\imcrvtip\Icon\imcrvskk.ico" />

<MajorUpgrade DowngradeErrorMessage="A newer version is already installed." />
Expand Down
2 changes: 1 addition & 1 deletion installer/installer-x86.wxs
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@

<UIRef Id="WixUI_Minimal" />
<WixVariable Id="WixUILicenseRtf" Value="theme-bundle\license.rtf" />
<Property Id="ARPPRODUCTICON" Value="imcrvskk.ico" />
<Property Id="ARPPRODUCTICON" Value="IMCRVSKK_ICO" />
<Icon Id="IMCRVSKK_ICO" SourceFile="..\imcrvtip\Icon\imcrvskk.ico" />

<MajorUpgrade DowngradeErrorMessage="A newer version is already installed." />
Expand Down
Binary file modified installer/resource-md/01_dictionary.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified installer/resource-md/02_behavior_1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified installer/resource-md/03_behavior_2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified installer/resource-md/04_display.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified installer/resource-md/05_display_attribute_1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified installer/resource-md/06_display_attribute_2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified installer/resource-md/07_select_key.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified installer/resource-md/08_on_off_key.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified installer/resource-md/09_key1_character.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified installer/resource-md/10_key2_virtual_key.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified installer/resource-md/11_conversion_point.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified installer/resource-md/12_kana.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified installer/resource-md/13_full_width_latin.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified installer/resource-md/21_convert_program.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified installer/resource-md/22_convert_number.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified installer/resource-md/23_convert_unicode_codepoint.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified installer/resource-md/24_convert_unicode_jisx0213.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified installer/resource-md/25_convert_character_display.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified installer/resource-md/26_register_annotation.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 75524df

Please sign in to comment.