Skip to content

Commit

Permalink
2.3.2
Browse files Browse the repository at this point in the history
・開発環境を Visual Studio Community 2015 Update 2 に移行しました。

・Universal CRT のインストール要件により、Windows 8.1 では S14 Update(KB2919355) 以降が必須となります。

・SKK辞書の取込処理に失敗したとき、既に存在している取込済みSKK辞書を削除しないようにしました。
  • Loading branch information
nathancorvussolis committed Apr 10, 2016
1 parent 67d683f commit 6f3b8b0
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 11 deletions.
12 changes: 7 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

# CorvusSKK ver. 2.3.1
# CorvusSKK ver. 2.3.2

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

Expand All @@ -22,6 +22,8 @@ Windowsで動作するSKK風のIMEです。

* Windows 8.1 (32-bit / 64-bit)

+ [S14 Update (KB2919355)](https://support.microsoft.com/ja-jp/kb/2919355)

* Windows 10 (32-bit / 64-bit)


Expand Down Expand Up @@ -278,9 +280,9 @@ IME ON/OFF のキーをそれぞれ指定します。

各機能に対してキーを正規表現で設定してください。

Visual C++ 2013 の 正規表現で、文法は ECMAScript を使用しています。
Visual C++ 2015 の 正規表現で、文法は ECMAScript を使用しています。

正規表現の詳細はこちらを参照ください。 https://msdn.microsoft.com/en-us/library/bb982727(v=vs.120).aspx
正規表現の詳細はこちらを参照ください。 https://msdn.microsoft.com/en-us/library/bb982727(v=vs.140).aspx

無効な正規表現で設定するとその機能は無効となります。警告等は表示されません。

Expand Down Expand Up @@ -621,11 +623,11 @@ ASCII, JIS X 0201, JIS X 0213に変換できない文字が含まれていた場

### 開発環境

Visual Studio Community 2013 Update 5
Visual Studio Community 2015 Update 2

WiX Toolset v3.10.2

pandoc 1.16.0.2
pandoc 1.17.0.2


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

#define TEXTSERVICE_VER L"2.3.1"
#define TEXTSERVICE_VER L"2.3.2"

//for resource
#define RC_AUTHOR "nathancorvussolis"
#define RC_PRODUCT "CorvusSKK"
#define RC_VERSION "2.3.1"
#define RC_VERSION_D 2,3,1,0
#define RC_VERSION "2.3.2"
#define RC_VERSION_D 2,3,2,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.3.1
set VERSION=2.3.2

set TARGETDIR=build
2 changes: 1 addition & 1 deletion installer/config-lua/init.lua
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
--[[
CorvusSKK ver.2.3.1 Lua拡張スクリプト
CorvusSKK ver.2.3.2 Lua拡張スクリプト
Cから呼ばれるLuaの関数
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.3.1" ?>
<?define version="2.3.2" ?>
</Include>

0 comments on commit 6f3b8b0

Please sign in to comment.