Skip to content

Commit

Permalink
1.7.11
Browse files Browse the repository at this point in the history
・実行変換もどきのskk-server-version関数で、辞書サーバーを使用しない設定でもサーバーに問い合わせしてしまう不具合を修正しました。
  • Loading branch information
nathancorvussolis committed Nov 9, 2014
1 parent cce4d8d commit 0b29ed1
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 8 deletions.
6 changes: 3 additions & 3 deletions common/common.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#define COMMON_H

#define TEXTSERVICE_NAME L"CorvusSKK"
#define TEXTSERVICE_VER L"1.7.10"
#define TEXTSERVICE_VER L"1.7.11"

#ifndef _DEBUG
#define TEXTSERVICE_DESC TEXTSERVICE_NAME
Expand All @@ -14,8 +14,8 @@
//for resource
#define RC_AUTHOR "nathancorvussolis"
#define RC_PRODUCT "CorvusSKK"
#define RC_VERSION "1.7.10"
#define RC_VERSION_D 1,7,10,0
#define RC_VERSION "1.7.11"
#define RC_VERSION_D 1,7,11,0

#define MAX_KRNLOBJNAME 256
#define CONV_POINT_NUM 256
Expand Down
2 changes: 1 addition & 1 deletion imcrvmgr/SearchCharacter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ std::wstring SearchCharacterCode(const std::wstring &searchkey)
CONST CHAR ss2 = 0x0E;
CONST CHAR ss3 = 0x0F;

//ASCII, JIS X 0201 (8bit), JIS X 0213 面区点番号
//ASCII, JIS X 0201 (片仮名, 8bit), JIS X 0213 面区点番号
len = -1;
if(WideCharToEucJis2004(searchkey.c_str(), NULL, NULL, &len))
{
Expand Down
5 changes: 5 additions & 0 deletions imcrvmgr/SearchSKKServer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -207,6 +207,11 @@ std::wstring GetSKKServerInfo(CHAR req)
CHAR rbuf[RECVBUFSIZE];
int n;

if(!serv)
{
return ret;
}

if(send(sock, &req, 1, 0) == SOCKET_ERROR)
{
DisconnectSKKServer();
Expand Down
2 changes: 1 addition & 1 deletion installer/README.TXT
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

================================================================================
CorvusSKK version 1.7.10
CorvusSKK version 1.7.11

https://code.google.com/p/corvus-skk/
[email protected]
Expand Down
2 changes: 1 addition & 1 deletion installer/config-lua/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@
crvmgr.search_jisx0213(key)
key : 見出し語 string
戻り値 : "/<C1><;A1>/<C2><;A2>/.../<Cn><;An>/\n" or "" string
文字コード表記変換 (ASCII, JIS X 0201(8bit), JIS X 0213 / Unicode)
文字コード表記変換 (ASCII, JIS X 0201(片仮名, 8bit), JIS X 0213 / Unicode)
crvmgr.search_character_code(key)
key : 見出し語 string
戻り値 : "/<C1><;A1>/<C2><;A2>/.../<Cn><;An>/\n" or "" string
Expand Down
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.7.10" ?>
<?define version="1.7.11" ?>
<Product Id="*" Name="CorvusSKK" Language="1033" Version="$(var.version)" Manufacturer="CorvusSKK Project" UpgradeCode="DBDB315C-1F74-4051-8A67-705D0FD16497">

<Package Id="*" Compressed="yes" Description="CorvusSKK" Comments="version $(var.version)" Platform="x64" InstallerVersion="405" InstallScope="perMachine" InstallPrivileges="elevated" />
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.7.10" ?>
<?define version="1.7.11" ?>
<Product Id="*" Name="CorvusSKK" Language="1033" Version="$(var.version)" Manufacturer="CorvusSKK Project" UpgradeCode="3F1244EC-9A5C-4041-9A33-E26B03C63C9B">

<Package Id="*" Compressed="yes" Description="CorvusSKK" Comments="version $(var.version)" Platform="x86" InstallerVersion="405" InstallScope="perMachine" InstallPrivileges="elevated" />
Expand Down

0 comments on commit 0b29ed1

Please sign in to comment.