Skip to content

Commit

Permalink
Update version remark
Browse files Browse the repository at this point in the history
  • Loading branch information
studyzy committed Jan 29, 2020
1 parent c6dc288 commit 2b3b9db
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 10 deletions.
1 change: 1 addition & 0 deletions src/IME WL Converter Win/Forms/HelpForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ private void HelpForm_Load(object sender, EventArgs e)
helpString += "2.4版增加了最新搜狗输入法备份词库的解析,目前解析后只有词语和词频,没有拼音,所以拼音是根据词语重新生成的。(感谢GitHub上的h4x3rotab提供python版的解析算法,感谢tmxkn1提供了C#版的实现)\r\n";
helpString += "2.5版支持微软五笔,支持Linux和macOS和更多命令行功能\r\n";
helpString += "2.6版增加了对Emoji颜文字的支持,微软拼音自定义短语支持小鹤双拼编码\r\n";
helpString += "2.7版增加了对QQ拼音新细胞词库qcel格式的支持,增加了MacOS原生拼音自定义短语plist的支持。升级dotnet core到3.1。\r\n";
helpString += "关于各种输入法的词库转换操作方法可以参见项目网站(https://github.com/studyzy/imewlconverter/)\r\n";
helpString +=
"如果您觉得深蓝词库转换能够给您的生活带来了极大的方便,可以通过微信或者支付宝捐赠该软件(https://github.com/studyzy/imewlconverter/wiki/Donate)。\r\n";
Expand Down
2 changes: 2 additions & 0 deletions src/ImeWlConverterCmd/Program.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
using System;
using System.Reflection;
using System.Collections.Generic;
using System.Text;

Expand All @@ -17,6 +18,7 @@ static void Main(string[] args)
}
private static void Help(List<ComboBoxShowAttribute> cbxImportItems)
{
Console.WriteLine("当前版本:V"+Assembly.GetExecutingAssembly().GetName().Version.ToString());
Console.WriteLine("-i:输入的词库类型 词库路径1 词库路径2 词库路径3 -o:输出的词库类型 输出词库路径 -c:编码文件路径");
Console.WriteLine("输入和输出的词库类型如下:");
var defaultBColor = Console.BackgroundColor;
Expand Down
2 changes: 1 addition & 1 deletion src/ImeWlConverterCmd/Readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ QQ的分类词库格式还没有研究出来怎么解析。
2.4版增加了最新搜狗输入法备份词库的解析,目前解析后只有词语和词频,没有拼音,所以拼音是根据词语重新生成的。(感谢GitHub上的h4x3rotab提供python版的解析算法,感谢tmxkn1提供了C#版的实现)
2.5版增加了Win10微软五笔的用户自定义短语的导入导出,增加了Linux和macOS命令行模式的支持,增强了命令行的设置,修复了一些发现的Bug。
2.6版增加了对Emoji颜文字的支持,微软拼音自定义短语支持小鹤双拼编码。
2.7版增加了对QQ拼音新细胞词库qcel格式的支持,增加了MacOS原生拼音自定义短语plist的支持。升级dotnet到3.1。
2.7版增加了对QQ拼音新细胞词库qcel格式的支持,增加了MacOS原生拼音自定义短语plist的支持。升级dotnet core到3.1。

如果还有更多的词库需要转换,或者对该词库转换工具有什么建议,请联系我:[email protected]
我的博客:http://studyzy.cnblogs.com
Expand Down
18 changes: 9 additions & 9 deletions src/ImeWlConverterCore/IME/QQPinyinQcel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -56,16 +56,16 @@ private WordLibraryList ReadQcel(string path)

//调试用代码结束

int hzPosition = 0;
// int hzPosition = 0;
fs.Read(str, 0, 128); //\x40\x15\x00\x00\x44\x43\x53\x01
if (str[4] == 0x44)
{
hzPosition = 0x2628;
}
if (str[4] == 0x45)
{
hzPosition = 0x26C4;
}
// if (str[4] == 0x44)
// {
// hzPosition = 0x2628;
// }
// if (str[4] == 0x45)
// {
// hzPosition = 0x26C4;
// }

fs.Position = 0x124;
CountWord = BinFileHelper.ReadInt32(fs);
Expand Down

0 comments on commit 2b3b9db

Please sign in to comment.