head 1.3; access; symbols pkgsrc-2020Q4:1.2.0.52 pkgsrc-2020Q4-base:1.2 pkgsrc-2020Q3:1.2.0.50 pkgsrc-2020Q3-base:1.2 pkgsrc-2020Q2:1.2.0.46 pkgsrc-2020Q2-base:1.2 pkgsrc-2020Q1:1.2.0.26 pkgsrc-2020Q1-base:1.2 pkgsrc-2019Q4:1.2.0.48 pkgsrc-2019Q4-base:1.2 pkgsrc-2019Q3:1.2.0.44 pkgsrc-2019Q3-base:1.2 pkgsrc-2019Q2:1.2.0.42 pkgsrc-2019Q2-base:1.2 pkgsrc-2019Q1:1.2.0.40 pkgsrc-2019Q1-base:1.2 pkgsrc-2018Q4:1.2.0.38 pkgsrc-2018Q4-base:1.2 pkgsrc-2018Q3:1.2.0.36 pkgsrc-2018Q3-base:1.2 pkgsrc-2018Q2:1.2.0.34 pkgsrc-2018Q2-base:1.2 pkgsrc-2018Q1:1.2.0.32 pkgsrc-2018Q1-base:1.2 pkgsrc-2017Q4:1.2.0.30 pkgsrc-2017Q4-base:1.2 pkgsrc-2017Q3:1.2.0.28 pkgsrc-2017Q3-base:1.2 pkgsrc-2017Q2:1.2.0.24 pkgsrc-2017Q2-base:1.2 pkgsrc-2017Q1:1.2.0.22 pkgsrc-2017Q1-base:1.2 pkgsrc-2016Q4:1.2.0.20 pkgsrc-2016Q4-base:1.2 pkgsrc-2016Q3:1.2.0.18 pkgsrc-2016Q3-base:1.2 pkgsrc-2016Q2:1.2.0.16 pkgsrc-2016Q2-base:1.2 pkgsrc-2016Q1:1.2.0.14 pkgsrc-2016Q1-base:1.2 pkgsrc-2015Q4:1.2.0.12 pkgsrc-2015Q4-base:1.2 pkgsrc-2015Q3:1.2.0.10 pkgsrc-2015Q3-base:1.2 pkgsrc-2015Q2:1.2.0.8 pkgsrc-2015Q2-base:1.2 pkgsrc-2015Q1:1.2.0.6 pkgsrc-2015Q1-base:1.2 pkgsrc-2014Q4:1.2.0.4 pkgsrc-2014Q4-base:1.2 pkgsrc-2014Q3:1.2.0.2 pkgsrc-2014Q3-base:1.2 pkgsrc-2014Q2:1.1.0.8 pkgsrc-2014Q2-base:1.1 pkgsrc-2014Q1:1.1.0.6 pkgsrc-2014Q1-base:1.1 pkgsrc-2013Q4:1.1.0.4 pkgsrc-2013Q4-base:1.1 pkgsrc-2013Q3:1.1.0.2 pkgsrc-2013Q3-base:1.1; locks; strict; comment @# @; 1.3 date 2021.02.20.21.22.04; author ryoon; state dead; branches; next 1.2; commitid JURen1IpAHhqIuIC; 1.2 date 2014.08.02.04.54.07; author obache; state Exp; branches; next 1.1; commitid uSrGmk8kQliwcKKx; 1.1 date 2013.08.10.09.14.22; author obache; state Exp; branches; next ; commitid uKTnZZ32YhGg7T0x; desc @@ 1.3 log @libchewing: Update to 0.5.1 Changelog: What's New in libchewing 0.5.1 (May 18, 2016) --------------------------------------------------------- * Bug fixed: - Fix wrong CHEWING_DATADIR definition in CMake build #222. - Fix j, k selection when symbol in between #149 #221. What's New in libchewing 0.5.0 (May 2, 2016) --------------------------------------------------------- * New feature - Add Carpalx keyboard layout support #217. * Dictionary - Update dictionary #151 #155 #188 #191 #201. - Add debug tool: dump_database. - Sort tsi.src #212. * Misc - Tweak several comments. - Fix libchewing document. - Remove old/dead code. - Improve code readability and consistency. - Update automake syntax #114. - Add test cases #169 #177. - Update Python sample code. - Add debug tool dump_database. - Integrate coverity scan in https://scan.coverity.com/. * Platform-specific - Update README for OS X. - Set WITH_INTERNAL_SQLITE3 to true by default in MS-Windows. - Fix Visual Studio compiling warnings/errors #168 #171 #189 #190 #213. - Add a cmake option BUILD_DLL to enable building *.dll with MS VC++ #185. - Make the python binding of libchewing support Windows dll files #186. - Don't use SIGSTOP in MS-Windows. * Bug fixed - Check if ld supports --no-defined #144. - Fix unexpected candidate disorder for '1' #153 - Replace bash-izm '==' operator with '=' for test(1) # 158. - Fix several Coverity errors #172 #173. - Fix ChewingKillChar which is disabling OpenSymbolChoice #160 #181. - ㄅ cannot overwrite ㄆ in HSU and ET26 #170 #183. * Successful stories: - Rime Input Method Engine (RIME) takes partial dictionary from libchewing. - PIME (writing input methods for Windows easily with Python) supports Chewing IM by default. @ text @$NetBSD: patch-configure,v 1.2 2014/08/02 04:54:07 obache Exp $ * test(1) portability fix https://github.com/chewing/libchewing/pull/158 --- configure.orig 2014-04-11 01:49:45.000000000 +0000 +++ configure @@@@ -13212,7 +13212,7 @@@@ else with_sqlite3=yes fi - if test x"$with_sqlite3" == x"yes"; then + if test x"$with_sqlite3" = x"yes"; then WITH_SQLITE3_TRUE= WITH_SQLITE3_FALSE='#' else @@@@ -13229,7 +13229,7 @@@@ else with_internal_sqlite3=no fi - if test x"$with_internal_sqlite3" == x"yes"; then + if test x"$with_internal_sqlite3" = x"yes"; then WITH_INTERNAL_SQLITE3_TRUE= WITH_INTERNAL_SQLITE3_FALSE='#' else @@@@ -13239,12 +13239,12 @@@@ fi # for sqlite -if test x"$with_sqlite3" == x"yes"; then : +if test x"$with_sqlite3" = x"yes"; then : $as_echo "#define WITH_SQLITE3 1" >>confdefs.h - if test x"$with_internal_sqlite3" == x"no"; then : + if test x"$with_internal_sqlite3" = x"no"; then : { $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing sqlite3_open" >&5 $as_echo_n "checking for library containing sqlite3_open... " >&6; } @@@@ -14065,7 +14065,7 @@@@ CC_FOR_BUILD=${CC_FOR_BUILD-${CC}} AM_CFLAGS="$AM_CFLAGS -Wall $CFLAGS" # Add '_GNU_SOURCE' for asprintf -if test x$ac_cv_func_asprintf == xyes; then : +if test x$ac_cv_func_asprintf = xyes; then : DEFAULT_CPPFLAGS="$DEFAULT_CPPFLAGS -D_GNU_SOURCE" fi @ 1.2 log @Update libchewing to 0.4.0. What's New in libchewing 0.4.0 (Apr 11, 2014) --------------------------------------------------------- * Add the following APIs: - Userphrase manipulation - chewing_userphrase_enumerate - chewing_userphrase_has_next - chewing_userphrase_get - chewing_userphrase_add - chewing_userphrase_remove - chewing_userphrase_lookup - Keyboardless action - chewing_cand_open - chewing_cand_close - chewing_cand_string_by_index_static - chewing_cand_choose_by_index - chewing_cand_list_first - chewing_cand_list_last - chewing_cand_list_has_next - chewing_cand_list_has_prev - chewing_cand_list_next - chewing_cand_list_prev - chewing_commit_preedit_buf - chewing_clean_preedit_buf - chewing_clean_bopomofo_buf - Bopomofo buffer - chewing_bopomofo_Check - chewing_bopomofo_String_static - Static API - chewing_aux_String_static - chewing_buffer_String_static - chewing_cand_String_static - chewing_commit_String_static - chewing_kbtype_String_static - Misc - chewing_new2 * Dictionary format: - Remove text data support - Introduce platform independent binary data representation - Move binary data to share/libchewing/* * Userphrase format: - Support SQLite-based user phrase storage and manipulation * New coding style: - Use scripts/indent.sh to change coding style * Bug fixed: - Fix chewing_zuin_Check wrong return value #62 - Fix numlock key cannot output number #45 - Fix negative frequency problem #75 - Fix cannot select candidate when symbol exists #79 - Avoid clearing the buffer when Up arrow key is pressed and escCleanAllBuf is 1. - Fix cannot handle numlock 9 correctly #88 - Fix invalid characters are committed when pre-edit buffer is full - Fix AutoLearnPhrase cannot fill correct wordSeq #108 - Fix wrong auto learn when symbol in between #112 - Fix missing rpl_malloc for cross compilation #118 - Fix '\n' appear in symbol table #126 - Reopen candidate list for symbols with down key #127 #135 - Let up key close candidate list of symbols #131 #138 * Misc: - Add `make check' in cmake build - Change MAX_UTF8_SIZE to 4 - Update official website URL - Use CreateFileA() instead of CreateFile() to stick with the ANSI API - Do not check phrase longer than MAX_PHRASE_LEN - Implement dynamic programming phrasing algorithm #73 - Clean bopomofo buffer when mode change to English mode #89 #97 - Update README to GFM. - Replace 'INCLUDE' with 'AM_CPPFLAGS' #68 #114 #116 - Use [Shift]+[-] to input EM DASH (u+2014) as default #113 #124 - Use Backspace to close candidate window #128 - Use PgUp/PgDn to turn pages of candidates #129 - Update Windows default search path #78 - The word "zuin", "Zhuyin" are obsolete terms for "Bopomofo" - Add const whenever possible in several APIs - Toggle shape mode with shift-space #141 #142 * Successful stories: - chewing-windows-tsf project provides Text Services Framework support for Microsoft Windows. @ text @d1 1 a1 1 $NetBSD: patch-configure,v 1.1 2013/08/10 09:14:22 obache Exp $ @ 1.1 log @Update libchewing to 0.3.5. What's New in libchewing 0.3.5 (Jul 28, 2013) --------------------------------------------------------- * Improve CMake rules - Visual Studio build included * Dictionary improvements - Remove duplicated phrases, fix Bopomofo representation - tool tweaks * travis-ci support (https://travis-ci.org/chewing/libchewing) * drone.io support (https://drone.io/github.com/chewing/libchewing) * coveralls.io support (https://coveralls.io/r/chewing/libchewing) * editorconfig support (http://editorconfig.org/) * Add new chewing_set_logger API * Prevent unaligned memory access * Reduce maxChiSymbolLen to 39 to avoid overflow * Do not store user phrase when its length is 1 * Check chiSymbolBufLen in chewing_handle_Numlock() * Set isSymbol to 0 in SetChoiceInfo * Fix 'j', 'k' in select mode cannot handle symbol selecting * Do not call GetCharNext() when GetCharFirst() fails * Successful stories: . FreeArray utilizes libchewing for selecting phrases of Array input method What's New in libchewing 0.3.4 (Dec 31, 2012) --------------------------------------------------------- * Improve the description of libchewing API - Simplified examples to illustrate the usage are added * Revise libchewing API. Check the documentation for details * Support THL (Taiwan Huayu Luomapinyin) and MPS2 Pinyin keyboard layout * Reimplementation of unit test framework. No external 'check' package is required * Fix several phrase errors - Add exceptional phrase as well * Improved developer and user guide * Introduce CMake based build system, which is convenient to MS-Windows based environments. * Add --enable-gcov to enable gcov coverage * Fix possible strncat() overflow * Consistent checks for bopomofo sequence internally * Handle incomplete bopomofo with space key properly * Internal structure refactoring * Read hash path from CHEWING_PATH environment variable * Make libchewing thread-safe * Fix IM crash by changing default candidate per page to 10 * Fix the detection of ncursesw * Fix the usage of autotools * Update and tune symbols * Fix valgrind warning * Fix several compilation warnings * Fix GCC visibility availability for Darwin specific PIC code * Fix hash table initialization and its memory leakage * Support building with mingw32 toolchain * Fix GNU Hurd build * Fix Microsoft VC build * Fix Windows 64-bit build * Fix mingw32/64 + WINE build * Successful stories: . GCIN supports experimental Chewing IM since version 1.6.4 . HIME supports Chewing IM . UCIMF supports Chewing IM . Fcitx supports Chewing IM . mozc (IM framework maintained by Google) provides Chewing support . JMCCE (reworked version) supports libchewing @ text @d1 1 a1 1 $NetBSD$ d4 1 d6 1 a6 1 --- configure.orig 2013-08-10 08:57:00.000000000 +0000 d8 35 a42 1 @@@@ -13368,7 +13368,7 @@@@ CC_FOR_BUILD=${CC_FOR_BUILD-${CC}} d44 1 a44 2 # Default CFLAGS AM_CFLAGS="$CFLAGS -Wall" d47 1 a47 1 AM_CPPFLAGS="$AM_CPPFLAGS -D_GNU_SOURCE" @