Skip to content

Commit e2e2226

Browse files
committed
终于有时间更新了- -
1.这次更新扩充了中文词库,新增了最新的魔兽世界常用词和日常用词 2.并且对繁体中文做了专门优化 3.在之前的功能基础上,增加了更多提示项,为了不干扰正常输入,提示最多还是限制在了7条 4.The English prompt word module has been added (现在有英文提词支持了) 5.微调了项目结构,现在inputinput本体不会占用多余的内存了 6.中文词库更大了现在,占用内存太高了,而且提词功能越来越复杂,我正在为这个插件引入神经网络,以解决上述问题,如果你有什么好的建议,欢迎向我反馈,联系方式可以在插件分发平台的描述或者游戏里设置界面(\ii)看到 如果你之前没有用过中文提词模块的话,强烈建议这次更新完试一试
1 parent f591321 commit e2e2226

45 files changed

Lines changed: 399807 additions & 326358 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

InputInput/InputInput_Cata.toc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
## Notes-zhTW: 輸入框增強 /ii or /inputinput
88
## Notes-ruRU: Расширение поля ввода /ii or /inputinput
99
## Author: York
10-
## Version: 1.1.3
11-
## X-Date: 2025-04-23
10+
## Version: 1.1.4
11+
## X-Date: 2025-04-25
1212

1313
## X-Category: Interface Enhancements
1414
## X-Curse-Project-ID: 1076615

InputInput/InputInput_Classic.toc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
## Notes-zhTW: 輸入框增強 /ii or /inputinput
88
## Notes-ruRU: Расширение поля ввода /ii or /inputinput
99
## Author: York
10-
## Version: 1.1.3
11-
## X-Date: 2025-04-23
10+
## Version: 1.1.4
11+
## X-Date: 2025-04-25
1212

1313
## X-Category: Interface Enhancements
1414
## X-Curse-Project-ID: 1076615

InputInput/InputInput_Mainline.toc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
## Notes-zhTW: 輸入框增強 /ii or /inputinput
88
## Notes-ruRU: Расширение поля ввода /ii or /inputinput
99
## Author: York
10-
## Version: 1.1.3
11-
## X-Date: 2025-04-23
10+
## Version: 1.1.4
11+
## X-Date: 2025-04-25
1212

1313
## Category-enUS: Chat
1414
## Category-deDE: Chat

InputInput/InputInput_TBC.toc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
## Notes-zhTW: 輸入框增強 /ii or /inputinput
88
## Notes-ruRU: Расширение поля ввода /ii or /inputinput
99
## Author: York
10-
## Version: 1.1.3
11-
## X-Date: 2025-04-23
10+
## Version: 1.1.4
11+
## X-Date: 2025-04-25
1212

1313
## X-Category: Interface Enhancements
1414
## X-Curse-Project-ID: 1076615

InputInput/InputInput_Vanilla.toc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
## Notes-zhTW: 輸入框增強 /ii or /inputinput
88
## Notes-ruRU: Расширение поля ввода /ii or /inputinput
99
## Author: York
10-
## Version: 1.1.3
11-
## X-Date: 2025-04-23
10+
## Version: 1.1.4
11+
## X-Date: 2025-04-25
1212

1313
## X-Category: Interface Enhancements
1414
## X-Curse-Project-ID: 1076615

InputInput/InputInput_Wrath.toc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
## Notes-zhTW: 輸入框增強 /ii or /inputinput
88
## Notes-ruRU: Расширение поля ввода /ii or /inputinput
99
## Author: York
10-
## Version: 1.1.3
11-
## X-Date: 2025-04-23
10+
## Version: 1.1.4
11+
## X-Date: 2025-04-25
1212

1313
## X-Category: Interface Enhancements
1414
## X-Curse-Project-ID: 1076615

InputInput/Libs/jieba-lua/init.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ if not init then
1515
end
1616

1717
local function dictItem(k)
18-
if W.dict1 then
19-
return W.dict1[k] or W.dict2[k] or W.dict3[k] or W.dict4[k] or W.dict5[k] or W.dict6[k]
18+
if W.M_zh then
19+
return W.M_zh:dictItem(k)
2020
end
2121
end
2222

InputInput/Locales/enUS.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ L['Disable Login Information'] = 'Disable Login Information'
9494
L['Login Information 1'] = "You are using the %s Input Enhancement addon. If you encounter any issues during use, you can provide feedback via %s or on the addon website %s"
9595
L['Login Information 2'] = "Enter %s or %s to open the %ssettings panel%s"
9696

97-
L['Not enabled, enter/ii to enable'] = 'Not enabled, enter%s to enable'
97+
L['Not enabled'] = 'Not enabled'
9898

9999
L['New Version Discovered'] = '%s Discovered a new version %s'
100100

InputInput/Locales/ruRU.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ L['Disable Login Information'] = 'Отключить информацию о в
9292
L['Login Information 1'] = "Вы используете аддон %s для улучшения ввода. Если вы столкнётесь с проблемами, вы можете оставить отзыв через %s или на сайте аддона %s"
9393
L['Login Information 2'] = "Введите %s или %s, чтобы открыть %sпанель настроек%s"
9494

95-
L['Not enabled, enter/ii to enable'] = 'Не включено, введите %s, чтобы включить'
95+
L['Not enabled'] = 'Не включено'
9696

9797
L['New Version Discovered'] = '%s Обнаружена новая версия %s'
9898

InputInput/Locales/zhCN.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ L['Disable Login Information'] = '关闭登录信息'
9696
L['Login Information 1'] = "您正在使用%s输入框增强插件, 使用过程中的任何问题都可以通过 %s 或者 到插件网站 %s 进行反馈"
9797
L['Login Information 2'] = "输入 %s 或者 %s 打开%s设置面板%s"
9898

99-
L['Not enabled, enter/ii to enable'] = '未启用,输入%s启用'
99+
L['Not enabled'] = '未启用'
100100

101101
L['New Version Discovered'] = '%s 发现新版本 %s'
102102

0 commit comments

Comments
 (0)