Skip to content

Commit

Permalink
3.1.1
Browse files Browse the repository at this point in the history
* ユーザー辞書バックアップのファイル名を、userdict.txt.~.bak とすべきところ skkdict.txt.~.bak としてしまっていたバグを修正しました。
  • Loading branch information
nathancorvussolis committed Nov 7, 2021
1 parent c644b15 commit ba381c5
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 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. 3.1.0
# CorvusSKK ver. 3.1.1

![](installer/resource-md/logo.png) 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 @@ -7,10 +7,10 @@
#define TEXTSERVICE_DESC TEXTSERVICE_NAME L"_DEBUG"
#endif
#define TEXTSERVICE_DIR L"IMCRVSKK"
#define TEXTSERVICE_VER L"3.1.0"
#define TEXTSERVICE_VER L"3.1.1"

//for resource
#define RC_AUTHOR "nathancorvussolis"
#define RC_PRODUCT "CorvusSKK"
#define RC_VERSION "3.1.0"
#define RC_VERSION_D 3,1,0,0
#define RC_VERSION "3.1.1"
#define RC_VERSION_D 3,1,1,0
2 changes: 1 addition & 1 deletion imcrvmgr/ConfigMgr.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ void LoadConfig(BOOL sysexit)
path[i] = L'_';
}
}
_snwprintf_s(pathbackup, _TRUNCATE, L"%s\\%s", path, fnskkdic);
_snwprintf_s(pathbackup, _TRUNCATE, L"%s\\%s", path, fnuserdic);

ReadValue(pathconfigxml, SectionUserDict, ValueBackupGen, strxmlval);
INT n = strxmlval.empty() ? -1 : _wtoi(strxmlval.c_str());
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=3.1.0
set VERSION=3.1.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="3.1.0" ?>
<?define version="3.1.1" ?>
</Include>

0 comments on commit ba381c5

Please sign in to comment.