Skip to content

Commit

Permalink
1.9.3
Browse files Browse the repository at this point in the history
・ユーザー入力による辞書登録において補完させると入力がキャンセルされてしまうバグを修正しました。
 ・coexeさん、情報ありがとうございます。
  • Loading branch information
nathancorvussolis committed Sep 8, 2015
1 parent 782d846 commit eded4fb
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

# CorvusSKK ver. 1.9.2
# CorvusSKK ver. 1.9.3

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

Expand Down
6 changes: 3 additions & 3 deletions common/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#define VERSION_H

#define TEXTSERVICE_NAME L"CorvusSKK"
#define TEXTSERVICE_VER L"1.9.2"
#define TEXTSERVICE_VER L"1.9.3"

#ifndef _DEBUG
#define TEXTSERVICE_DESC TEXTSERVICE_NAME
Expand All @@ -14,7 +14,7 @@
//for resource
#define RC_AUTHOR "nathancorvussolis"
#define RC_PRODUCT "CorvusSKK"
#define RC_VERSION "1.9.2"
#define RC_VERSION_D 1,9,2,0
#define RC_VERSION "1.9.3"
#define RC_VERSION_D 1,9,3,0

#endif
2 changes: 1 addition & 1 deletion imcrvtip/KeyHandlerComposition.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -591,7 +591,7 @@ BOOL CTextService::_GetVertical(TfEditCookie ec, ITfContext *pContext)
{
BOOL ret = FALSE;

if(_IsComposing())
if(_IsComposing() && pContext != NULL)
{
ITfRange *pRange;
if(_pComposition->GetRange(&pRange) == S_OK)
Expand Down
4 changes: 2 additions & 2 deletions installer/README.TXT
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

==============================================================================

CorvusSKK ver. 1.9.2
CorvusSKK ver. 1.9.3

https://nathancorvussolis.github.io/
[email protected]
Expand All @@ -23,6 +23,6 @@

マニュアル

https://github.com/nathancorvussolis/corvusskk/blob/1.9.2/README.md
https://github.com/nathancorvussolis/corvusskk/blob/1.9.3/README.md

==============================================================================
2 changes: 1 addition & 1 deletion installer/_version.cmd
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@

set VERSION=1.9.2
set VERSION=1.9.3
2 changes: 1 addition & 1 deletion installer/corvusskk-x64.wxs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">

<?define version="1.9.2" ?>
<?define version="1.9.3" ?>

<Product Id="*" Name="CorvusSKK" Version="$(var.version)" Manufacturer="nathancorvussolis"
Language="1033" UpgradeCode="DBDB315C-1F74-4051-8A67-705D0FD16497">
Expand Down
2 changes: 1 addition & 1 deletion installer/corvusskk-x86.wxs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">

<?define version="1.9.2" ?>
<?define version="1.9.3" ?>

<Product Id="*" Name="CorvusSKK" Version="$(var.version)" Manufacturer="nathancorvussolis"
Language="1033" UpgradeCode="3F1244EC-9A5C-4041-9A33-E26B03C63C9B">
Expand Down

0 comments on commit eded4fb

Please sign in to comment.