Commit 5149232d authored by Yuanle Song's avatar Yuanle Song
Browse files

v0.10.0 enable ue -> ve fuzzy by default.

parent 8b4d81ac
# -*- mode: conf -*-
project('zero-pinyin-service', ['c', 'cpp'],
version: '0.9.3',
version: '0.10.0',
license: 'GPL',
meson_version: '>=0.1.0',
default_options: [
......
......@@ -356,7 +356,8 @@ add_candidate_to_builders(Candidate *c,
guint
to_pyzy_flag(const guint fuzzy_flag)
{
guint result = 0;
/* ue to ve is enabled by default. */
guint result = PINYIN_CORRECT_UE_TO_VE;
if (fuzzy_flag & FUZZY_FLAG_ZCS_ZHCHSH) {
result = result |
PINYIN_FUZZY_Z_ZH | PINYIN_FUZZY_ZH_Z |
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment