From 49977b77a874a190c04ea7eb6746cf1efdef7cbc Mon Sep 17 00:00:00 2001 From: yutent Date: Mon, 21 Mar 2022 17:10:03 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0readme?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Readme.md | 15 ++++++++++++++- about.html | 12 +++++++++++- index.html | 2 +- js/index.js | 2 ++ 4 files changed, 28 insertions(+), 3 deletions(-) diff --git a/Readme.md b/Readme.md index 3e52722..b94a5fd 100644 --- a/Readme.md +++ b/Readme.md @@ -1 +1,14 @@ -# 在线五笔词库生成 \ No newline at end of file +# 五笔输入法86版 - 词库查询及生成系统 +> 本项目为开源学习项目, 所以词组均来源于网上公开资料。 +>> 1. 单字字库`98%`来自`清歌输入法自带字库`, 剩下`5%`为本人编码, 并逐一与`百度、各大五笔网站`校对完成, 保证`99.9999999%`的准确率。 +>> 2. 词组`8万多条`来自`清歌输入法自带词库`, 另外`5万多条`来自`百度百科`, 所有的词组的编码, 均为实时生成(使用本系统的`单字字库`自动生成)。 + + +## 词库信息 + +现有单字GB2312(6763)个 + GBK(14295)个、异形字212个、词组109272个、网络热词186个、计算机术语221个、emoji181个 ! + + + +## 问题反馈 +> 使用过程中, 如发现有错漏、遗漏, 请提交(`issues`)[https://github.com/yutent/wb-table/issues]反馈, 正常情况下, 看到都会处理。 \ No newline at end of file diff --git a/about.html b/about.html index bc9f492..787bea4 100644 --- a/about.html +++ b/about.html @@ -32,6 +32,16 @@

更新日志

+
v1.0.0 - 2022.03.21
+
+
    +
  1. 增加基础词汇23466个、计算机词汇221个、emoji表情181个、网络热词186个
  2. +
  3. 查询功能支持词组
  4. +
  5. 词库下载功能完成(个人词库暂未支持、拼音反查暂未支持)
  6. +
+
+ +
v0.2.0 - 2022.03.15
    @@ -43,7 +53,7 @@
    v0.1.0 - 2022.03.10
      -
    1. 完成基础字典生成
    2. +
    3. 完成基础字典生成GB2312(6763)个 + GBK(14295)个
    4. 完成基本词组生成
    diff --git a/index.html b/index.html index 38bc4fc..16c6f62 100644 --- a/index.html +++ b/index.html @@ -30,7 +30,7 @@
    - 现有单字GB2312({{gb2312}})个 + GBK({{gbk - gb2312}})个、异形字{{dy}}个、词组{{words}}个、网络热词{{nethot}}个、计算机术语{{code}}个、emoji{{emoji}}个 ! + 现有单字GB2312({{gb2312}})个 + GBK({{gbk - gb2312}})个、异形字{{dy}}个、词组{{words}}个、网络热词{{nethot}}个、计算机术语{{code}}个、emoji{{emoji}}个! 下载词库
    diff --git a/js/index.js b/js/index.js index cae1358..0251929 100644 --- a/js/index.js +++ b/js/index.js @@ -372,6 +372,8 @@ Anot({ let bin = new Blob([temp.toString(opt.pos === 'front')], { type: 'text/plain' }) saveFile(bin, `wb_table_${opt.pos}.txt`) + + this.closeDownloadPanel() } } })