Results 28 comments of Devin

不明白什么意思,能详细解释一下吗?

新版本已经支持macOS x64和arm

Good idea, we can just add 3 new tags as part of Terms, and when calculate hash, include committer address. ```rust let hash_sequence = get_hash_sequence(rune_id); //Query the Etching definition of...

微信输入法还没有支持用户词库的导入导出功能,等新版本微信输入法提供了用户词库的导入导出后,本软件会尽快提供对微信输入法的支持!

For example, ## Old code ```go type TokenExcesses struct { QueryId uint64 } type TokenExcessesWithOpCode struct { OpCode uint32 QueryId uint64 } func parseTokenExcesses(rawBody string) (*TokenExcesses, error) { cells, err...

该问题已在 commit 30b85ce 中修复。 **问题原因**: 原代码使用 `ReadToEnd()` 将整个文件加载到内存,导致大文件处理时内存溢出。 **修复内容**: 1. **自适应处理策略**: - 添加 `ShouldUseStreaming()` 方法检测文件大小 - 文件 > 10MB 自动使用流式处理 2. **流式读取实现**: - 新增 `ImportStreaming()` 方法逐行读取处理 - 避免将整个文件加载到内存 3. **内存优化**:...