Skip to content

Commit

Permalink
2.7.11
Browse files Browse the repository at this point in the history
・編集するなどでユーザー辞書に複数の同じ見出し語があった場合マージして読み込むようにしました。
 補完で見出し語が重複しないようになります。

・SKK 辞書サーバーとの接続開始をバックグラウンドでおこなうようにしました。
 サーバーとの接続ができない場合でも、接続待ちによる辞書検索の待機時間が無くなります。

・シャットダウン時のユーザー辞書保存とバックアップが完了するまでシャットダウンを遅延させるようにしました。

・スリープ時のユーザー辞書保存とバックアップを、スリープから復帰したときに変更しました。

・Lua の関数呼び出しの引数を修正しました。ごく稀に発生する Access Violation がおそらく改善されています。
  • Loading branch information
nathancorvussolis committed Jan 5, 2020
1 parent f37e9f7 commit 07dcbc0
Show file tree
Hide file tree
Showing 19 changed files with 11 additions and 11 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

# CorvusSKK ver. 2.7.10
# CorvusSKK ver. 2.7.11

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

Expand Down Expand Up @@ -744,19 +744,19 @@ Windows 10 (Ver.1709 から) の場合

### 開発環境

Visual Studio Community 2019 16.3.10
Visual Studio Community 2019 16.4.2

* Desktop development with C++
* MSVC v142 - VS 2019 C++ x64/x86 build tools (v14.23)
* MSVC v142 - VS 2019 C++ ARM build tools (v14.23)
* MSVC v142 - VS 2019 C++ ARM64 build tools (v14.23)
* MSVC v142 - VS 2019 C++ x64/x86 build tools (v14.24)
* MSVC v142 - VS 2019 C++ ARM build tools (v14.24)
* MSVC v142 - VS 2019 C++ ARM64 build tools (v14.24)
* C++ ATL for latest v142 build tools (x86 & x64)
* C++ ATL for latest v142 build tools (ARM)
* C++ ATL for latest v142 build tools (ARM64)

WiX Toolset v3.11.2

pandoc 2.7.3
pandoc 2.9.1


### ビルド手順
Expand Down
6 changes: 3 additions & 3 deletions common/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@
#define TEXTSERVICE_DESC TEXTSERVICE_NAME L"_DEBUG"
#endif
#define TEXTSERVICE_DIR L"IMCRVSKK"
#define TEXTSERVICE_VER L"2.7.10"
#define TEXTSERVICE_VER L"2.7.11"

//for resource
#define RC_AUTHOR "nathancorvussolis"
#define RC_PRODUCT "CorvusSKK"
#define RC_VERSION "2.7.10"
#define RC_VERSION_D 2,7,10,0
#define RC_VERSION "2.7.11"
#define RC_VERSION_D 2,7,11,0
2 changes: 1 addition & 1 deletion installer/_version.cmd
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

set VERSION=2.7.10
set VERSION=2.7.11

set TARGETDIR=build

Expand Down
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.7.10" ?>
<?define version="2.7.11" ?>
</Include>
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_display1.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_display2.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_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/07_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/08_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/09_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/10_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/11_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/12_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/13_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/14_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.

0 comments on commit 07dcbc0

Please sign in to comment.