File: changelog

package info (click to toggle)
fcitx 1%3A4.2.9.6-5%2Bdeb10u1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 20,244 kB
  • sloc: ansic: 134,035; cpp: 7,268; sh: 2,778; python: 800; xml: 345; makefile: 46
file content (941 lines) | stat: -rw-r--r-- 30,070 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
fcitx (1:4.2.9.6-5+deb10u1) buster; urgency=medium

  * debian/patches/0009-ipcportal: Add patch to fix broken input
    method support with software installed via flatpak.
    (Closes: #980834)

 -- Boyuan Yang <byang@debian.org>  Fri, 22 Jan 2021 17:45:45 -0500

fcitx (1:4.2.9.6-5) unstable; urgency=medium

  * Team upload.
  * debian/control:
    + Bump Standards-Version to 4.2.1.
    + Update YunQiang Su's email address and use the @debian.org one.
    + Add new build-dependency libjson-c-dev.
    - Remove reference to im-switch, long disappeared.
  * debian/patches: Backport patches to fix #907523.
    Closes: #907523.

 -- Boyuan Yang <byang@debian.org>  Thu, 30 Aug 2018 14:54:54 -0400

fcitx (1:4.2.9.6-4) unstable; urgency=medium

  * Team upload.
  * debian/control:
    + Add Breaks+Replaces against old fcitx-libs-dev for file replacement.
      Closes: #903454.
    + Update Vcs fields to indicate that the packaging repo is maintained
      under Salsa input-method-team.
    + Bump Standards-Version to 4.1.5. (no changes needed).

 -- Boyuan Yang <073plan@gmail.com>  Mon, 23 Jul 2018 10:11:14 +0800

fcitx (1:4.2.9.6-3) unstable; urgency=medium

  * Team upload.
  * Manual rebuild against opencc 1.0.5.
  * Use GitLab repository as upstream homepage to coordinate with
    upstream project migration.
  * Install fcitx4-config into fcitx-bin instead of fcitx-libs-dev.
    This partially solves #806567.
  * d/rules: Pass "--as-needed" option to the linker.

 -- Boyuan Yang <073plan@gmail.com>  Fri, 29 Jun 2018 19:40:05 +0800

fcitx (1:4.2.9.6-2) unstable; urgency=medium

  * Team upload.
  * d/control: Use Salsa repository for Vcs fields.
  * d/control: Bump Standards-Version to 4.1.4 (no changes needed).
  * d/control: Fix Break relationship with fcitx-module-quickphrase-editor,
    let fcitx-modules recommends fcitx5-module-quickphrase-editor.

 -- Boyuan Yang <073plan@gmail.com>  Sat, 28 Apr 2018 10:46:56 +0800

fcitx (1:4.2.9.6-1) unstable; urgency=medium

  * Team upload.
  * New upstream release.
  * d/patches: Refresh patches; drop patch 0003-0006, applied upstream.
  * d/control: Use kdialog instead of kdebase-bin as dependency.
    Closes: #885836, Closes: #885850
  * d/control: Add X-Ubuntu-Use-Langpack: yes to strip translation
    for Ubuntu.

 -- Boyuan Yang <073plan@gmail.com>  Sat, 24 Feb 2018 10:07:17 +0800

fcitx (1:4.2.9.5-1) unstable; urgency=medium

  * Team upload.
  * Upload to unstable.
  * Add patch to fix spelling errors. Closes: #826696.
  * d/control: Use debian-input-method maillist in maintainer field.

 -- Boyuan Yang <073plan@gmail.com>  Mon, 05 Feb 2018 09:13:53 +0800

fcitx (1:4.2.9.5-1~exp1) experimental; urgency=medium

  * Team upload.
  * New upstream release.
  * Drop binary package fcitx-module-quickphrase-editor, fcitx-qt5
    will provide it instead.
  * Bump Standards-Version to 4.1.3. (no changes needed)
  * Make libfcitx-qt0 provides fcitx-libs-qt to make older software
    that depend on fcitx-libs-qt happy.
  * Update d/copyright file.
  * Drop unnecessary patch 0003 in d/patches, applied upstream.
  * Add new build dependency uuid-dev.
  * Install new module fcitx-ipcportal into fcitx-modules.
  * Use secure uri in d/watch file.
  * Initiate SONAME Bump for libfcitx-gclient.
  * d/patches: Backport several upstream patches from trunk.

 -- Boyuan Yang <073plan@gmail.com>  Sun, 31 Dec 2017 22:41:01 +0800

fcitx (1:4.2.9.4-3) unstable; urgency=medium

  * Restore fcitx-libs for compatibility

 -- Aron Xu <aron@debian.org>  Tue, 24 Oct 2017 23:36:22 +0800

fcitx (1:4.2.9.4-2) unstable; urgency=medium

  [ Aron Xu ]
  * Revert "debian: update control file"
  * Update std-ver to 4.1.1

 -- Aron Xu <aron@debian.org>  Mon, 23 Oct 2017 19:06:33 +0800

fcitx (1:4.2.9.4-1) unstable; urgency=medium

  * Team upload.
  * New upstream release.
  * Drop cherry-picked patches 0003-0011.
  * Drop transitional package fcitx-libs.
  * Drop transitional package fcitx-libs-gclient.
  * Drop transitional package fcitx-libs-qt.
  * Refresh library symbols.
  * Refresh d/copyright information.
  * Refresh packaging instructions.
    + Bump Standards-Version to 4.1.0.
    + Bump debhelper compat to v10.
    + Use canonical Vcs URL.
    + Fix various typos.
  * Put gir XML file into fcitx-libs-dev package to fix lintian warning.
  * Migrate to -dbgsym packages.

 -- Boyuan Yang <073plan@gmail.com>  Tue, 03 Oct 2017 23:11:03 +0800

fcitx (1:4.2.9.1-5) unstable; urgency=medium

  * Cherry-pick from upstream:
    - Fix xshape version check in classic ui
      completes the fix for LP: #1634004

 -- Aron Xu <happyaron.xu@gmail.com>  Wed, 19 Oct 2016 06:55:03 +0800

fcitx (1:4.2.9.1-4) unstable; urgency=medium

  * Cherry-pick from upstream:
    - Check XShape version before using it (LP: #1634004)

 -- Aron Xu <aron@debian.org>  Mon, 17 Oct 2016 09:55:44 +0800

fcitx (1:4.2.9.1-3) unstable; urgency=medium

  * Cherry-pick from upstream commits:
    - Do not show autostart desktop file
    - Handle XmbResetIC() (LP: #1608469)
    - Better notificationitem handling for unity

 -- Aron Xu <aron@debian.org>  Tue, 20 Sep 2016 04:07:02 +0800

fcitx (1:4.2.9.1-2) unstable; urgency=medium

  * Enable opencc support

 -- Aron Xu <aron@debian.org>  Mon, 08 Aug 2016 18:51:42 +0800

fcitx (1:4.2.9.1-1) unstable; urgency=medium

  * Imported Upstream version 4.2.9.1

 -- Aron Xu <aron@debian.org>  Fri, 25 Dec 2015 14:36:11 +0800

fcitx (1:4.2.9-5) unstable; urgency=medium

  * Drop opencc support

 -- Aron Xu <aron@debian.org>  Wed, 16 Dec 2015 01:34:48 +0800

fcitx (1:4.2.9-4) unstable; urgency=medium

  * Sourceful upload for libstdc++ transition of presage
  * Add kdebase-bin as alternative to zenity (Closes: #792583)
  * Update upstream homepage link

 -- Aron Xu <aron@debian.org>  Mon, 12 Oct 2015 12:06:10 +0100

fcitx (1:4.2.9-3) unstable; urgency=medium

  * Add conffile handling

 -- Aron Xu <aron@debian.org>  Wed, 23 Sep 2015 22:36:14 +0800

fcitx (1:4.2.9-2) unstable; urgency=medium

  * Move .desktop file to avoid unexpected autostart

 -- Aron Xu <aron@debian.org>  Sun, 20 Sep 2015 17:52:24 +0800

fcitx (1:4.2.9-1) unstable; urgency=medium

  * New upstream release

 -- Aron Xu <aron@debian.org>  Wed, 03 Jun 2015 04:08:45 +0800

fcitx (1:4.2.8.5-6) experimental; urgency=medium

  * Remove empty lines
  * Add libpresage1 to Depends of fcitx-modules

 -- Aron Xu <aron@debian.org>  Thu, 12 Feb 2015 15:26:49 +0800

fcitx (1:4.2.8.5-5) experimental; urgency=medium

  * Declare fcitx-libs-* packages as transitional
  * Move table files to arch:all
  * Remove NoDisplay patch
  * Update dep5 link in debian/copyright

 -- Aron Xu <aron@debian.org>  Sun, 08 Feb 2015 22:51:37 +0800

fcitx (1:4.2.8.5-4) experimental; urgency=low

  * Add proper Breaks and Replaces (LP: #1387382)

 -- Aron Xu <aron@debian.org>  Thu, 30 Oct 2014 07:22:35 +0800

fcitx (1:4.2.8.5-3) experimental; urgency=low

  * Add libfcitx-core0, libfcitx-config4, libfcitx-utils0, libfcitx-qt0, and
    libfcitx-gclient0, existing fcitx-libs-* package are now metapackages.
  * Update symbols file for libraries.
  * Detect for GIR MultiArch status (Closes: #762832)
  * Enable all hardening features.
  * Enable parallel build.
  * Disable building of static libraries.
  * Update copyright file for better standard compliance.
  * Std-ver: 3.9.5 -> 3.9.6

 -- Aron Xu <aron@debian.org>  Sun, 26 Oct 2014 02:21:19 +0800

fcitx (1:4.2.8.5-1) unstable; urgency=low

  * New upstream release.
  * 0004-implement-set-im-by-name-if-there-is-no-focused-wind.patch:
    - Dropped, merged upstream.

 -- Aron Xu <aron@debian.org>  Sat, 20 Sep 2014 05:10:52 +0800

fcitx (1:4.2.8.4-3) unstable; urgency=medium

  * 0004-implement-set-im-by-name-if-there-is-no-focused-wind.patch:
    - if the focus comes back to the original ic, the im will be set
      eventually. this can be useful if GUI switcher grab the focus.

 -- Aron Xu <aron@debian.org>  Sat, 23 Aug 2014 13:50:50 +0800

fcitx (1:4.2.8.4-2) unstable; urgency=medium

  * Fix FTBFS with GCC 4.9 (Closes: #746844)
  * Force to use opencc

 -- Aron Xu <aron@debian.org>  Mon, 02 Jun 2014 00:04:38 +0800

fcitx (1:4.2.8.4-1) unstable; urgency=low

  * New upstream bug fix release

 -- Aron Xu <aron@debian.org>  Thu, 29 May 2014 17:40:38 +0800

fcitx (1:4.2.8.3-3) unstable; urgency=low

  * debian/patches/0004-add-a-context-variable-to-disable-punc.patch:
    - Add a context variable to disable punc module.
  * std-ver: 3.9.4 -> 3.9.5, no change required.

 -- Aron Xu <aron@debian.org>  Tue, 11 Mar 2014 00:16:41 +0800

fcitx (1:4.2.8.3-2) unstable; urgency=low

  * fcitx-modules Breaks and Replaces
     fcitx-module-quickphrase-editor (<< 1:4.2.8.3) (Closes: #729706)

 -- YunQiang Su <wzssyqa@gmail.com>  Sun, 17 Nov 2013 17:25:30 +0800

fcitx (1:4.2.8.3-1) unstable; urgency=low

  * New upstream bugfix release.

 -- Aron Xu <aron@debian.org>  Fri, 15 Nov 2013 14:31:20 +0800

fcitx (1:4.2.8.1-3) unstable; urgency=low

  * Update dependency versions.
  * fcitx-ui-classic: replaces and breaks fcitx-hangul (<< 0.3.0)
    (Closes: #718644)

 -- Aron Xu <aron@debian.org>  Sun, 04 Aug 2013 12:26:10 +0800

fcitx (1:4.2.8.1-2) unstable; urgency=low

  * Mark some inline symbols as optional in fcitx-libs-qt.
  * fcitx-ui-classic: replaces and breaks fcitx-unikey (<< 0.2.0)
    due to file move (Closes: #718314).

 -- YunQiang Su <wzssyqa@gmail.com>  Wed, 31 Jul 2013 00:31:25 +0800

fcitx (1:4.2.8.1-1) unstable; urgency=low

  * modify d/watch for new download site
  * Imported Upstream version 4.2.8.1
  * fcitx-scanner and fcitx-po-parser now installed to
       usr/lib/*/fcitx/libexec/
    comp-spell-dict also installed into usr/lib/*/fcitx/libexec
  * Remove patches included upstream
     - 0004-Upstream-post-release-changes.patch
     - 0005-fix-bashism-problems.patch
  * Update symbols for libs
  * Install emoji.mb and latex.mb into package
    fcitx-module-quickphrase-editor

 -- YunQiang Su <wzssyqa@gmail.com>  Mon, 29 Jul 2013 21:46:03 +0800

fcitx (1:4.2.7-2) unstable; urgency=low

  [ Wang Diancheng ]
  * Disable debug messages, use Release build type

  [ Aron Xu ]
  * Add Breaks/Replaces to fcitx-libs-gclient (Closes: #700710)

  [ YunQiang Su ]
  * fix bashism problems (Closes: #701553, #701558)
  * Remove FcitxQtInputMethodProxy::CreateIC from qt symbols (Closes: #701276)

 -- YunQiang Su <wzssyqa@gmail.com>  Thu, 28 Feb 2013 17:00:35 +0800

fcitx (1:4.2.7-1) unstable; urgency=low

  * New upstream release.
  * New binary packages:
    - fcitx-libs-gclient: D-Bus client library for Glib
    - fcitx-libs-qt: D-Bus client library for Qt
    - fcitx-module-quickphrase-editor: Quick Phrase editor module

 -- Aron Xu <aron@debian.org>  Sun, 10 Feb 2013 17:03:56 +0800

fcitx (1:4.2.6.1-1) experimental; urgency=low

  * New upstream bug fix release.

 -- Aron Xu <aron@debian.org>  Wed, 03 Oct 2012 22:33:51 +0800

fcitx (1:4.2.6-1) experimental; urgency=low

  * New upstream release.

 -- YunQiang Su <wzssyqa@gmail.com>  Mon, 24 Sep 2012 20:16:40 +0800

fcitx (1:4.2.5-1~exp) experimental; urgency=low

  * New upstream release.

 -- YunQiang Su <wzssyqa@gmail.com>  Thu, 19 Jul 2012 19:25:18 +0800

fcitx (1:4.2.4.1-3) unstable; urgency=low

  * [UPSTREAM] 0004-fix-hk-dollar-punc.patch:
    - Fix HK dollar punctuation (Closes: #681070).
  * [UPSTREAM] 0005-fix-table-exactMatch-and-autocommit.patch:
    - Fix auto commit of candidate word (Closes: #681071).
  * [UPSTREAM] 0006-fix-im-loading.patch:
    - Fix the loading of input methods.
  * [UPSTREAM] 0007-fix-message-resending-bug-and-log-format.patch:
    - Fix resending problem, logging in consistent format.
  * [UPSTREAM] 0008-fix-getopt_long.patch:
    - Fix the use of getopt_long to avoid crash.

 -- Aron Xu <aron@debian.org>  Mon, 16 Jul 2012 23:12:43 +0800

fcitx (1:4.2.4.1-2) unstable; urgency=low

  * Upstream patches
    - icon fallback chain fix
    - fix a memory overflow
  * fix the section of gir1.2-fcitx-1.0 to introspection.

 -- YunQiang Su <wzssyqa@gmail.com>  Mon, 18 Jun 2012 17:20:32 +0800

fcitx (1:4.2.4.1-1) unstable; urgency=low

  [ Aron Xu ]
  * Some small changes.
  * Remove B-D that does not need to declare.

  [ YunQiang Su ]
  * Rebase to upstream bugfix release 4.2.4.1

 -- YunQiang Su <wzssyqa@gmail.com>  Mon, 11 Jun 2012 00:49:35 +0800

fcitx (1:4.2.4-2) unstable; urgency=low

  [ Aron Xu ]
  * Various small changes.

  [ YunQiang Su ]
  * Disable huge .xsession-errors.

 -- YunQiang Su <wzssyqa@gmail.com>  Sat, 09 Jun 2012 14:39:39 +0800

fcitx (1:4.2.4-1) unstable; urgency=low

  * Import upstream release.
     - fcitx-keyboard merged into fcitx-module-x11.
     - Add gir1.2-fcitx-1.0 package.
     - Install imicon/* to fcitx-data.
     - Install imselector module to fcitx-modules.
  * Drop patches merged into upstream:
     - 0001-dont-show-dialog-at-first-run.patch
     - 0004-upstream-post-release-changes.patch

 -- YunQiang Su <wzssyqa@gmail.com>  Fri, 25 May 2012 02:43:02 +0800

fcitx (1:4.2.3-2) unstable; urgency=low

  * debian/patches/0004-upstream-post-release-changes.patch:
    Add upstream fix for testpinyin, to avoid its segfaults.

 -- Aron Xu <aron@debian.org>  Sat, 12 May 2012 01:37:19 +0800

fcitx (1:4.2.3-1) unstable; urgency=low

  * New upstream release:
    - Lua extension support.
    - Surrounding text support.
    - Super key can be used in shortcuts, again.
    - Update fcitx-pinyin algorithm.
    - txt2mb and mb2txt support new English format
    - Commit input when losing focus.
    - Bug fixes and classic ui improvements.
  * Add binary package: fcitx-module-lua
  * Rename fcitx-ui-kimpanel to fcitx-module-kimpanel, related
    package descriptions are modified.
  * Enable Xinerama support for multi-head display.
  * Improve dependency relations.
  * Bump std-ver to 3.9.3 from 3.9.2, no change required.
  * dh_install now called with --fail-missing

 -- Aron Xu <aron@debian.org>  Sun, 06 May 2012 22:37:00 +0000

fcitx (1:4.2.2-1) unstable; urgency=low

  * New upstream release.
  * rm rec: kdebase-bin, sug: plasma-widgets-addons.

 -- YunQiang Su <wzssyqa@gmail.com>  Sun, 08 Apr 2012 14:46:08 +0800

fcitx (1:4.2.1-2) unstable; urgency=low

  * Install fcitx-quickphrase.desc

 -- Aron Xu <aron@debian.org>  Sun, 25 Mar 2012 23:02:01 +0800

fcitx (1:4.2.1-1) unstable; urgency=low

  * New upstream release.
  * debian/im-switch/fcitx:
    - Change to QT_IM_MODULE from QT4_IM_MODULE to work around
      im-switch bug.

 -- Aron Xu <aron@debian.org>  Sat, 17 Mar 2012 15:59:56 +0800

fcitx (1:4.2.0-1) unstable; urgency=low

  * New upstream release:
    - New API, with global context support.
    - Allow first input method to be in Inactive status.
    - Decrease memory usage of table engine and pinyin engine.
    - Runtime replacement of existing instance.
    - Improved table engine.
  * Full Multi-Arch support:
    - Co-installable libraries and IM Modules.
    - Build-time dynamic Multi-Arch path and markup detection.

 -- Aron Xu <aron@debian.org>  Sun, 05 Feb 2012 15:51:12 +0800

fcitx (1:4.1.2-6) unstable; urgency=low

  * debian/rules:
    - Enable hardening build flags.
  * debian/control:
    - Rename fcitx-libs-dbg to fcitx-dbg.
  * debian/patches:
    - [UPSTREAM] Cherry-pick bug fixes from upstream master
      (0010 0011 0012).

 -- Aron Xu <aron@debian.org>  Fri, 03 Feb 2012 04:12:43 +0800

fcitx (1:4.1.2-5) unstable; urgency=low

  * debian/patches/02_dont_show_dialog_first_run.patch:
    - Don't show dialog about immodules, which will confuse users,
      while we use im-config.
  * debian/patches/02_dbus_max_retry_times.patch:
    -  MAX_RETRY_TIMES to 20 from 5

 -- YunQiang Su <wzssyqa@gmail.com>  Wed, 21 Dec 2011 22:01:57 +0800

fcitx (1:4.1.2-4) unstable; urgency=low

  [ Aron Xu ]
  * Add NoDisplay=true to fcitx.desktop.in file.

  [ YunQiang Su ]
  * Improve the description of fcitx-libs-dbg, as it contains
    all debug symbols of the whole fcitx.

 -- YunQiang Su <wzssyqa@gmail.com>  Fri, 09 Dec 2011 00:09:43 +0800

fcitx (1:4.1.2-3) unstable; urgency=low

  * debian/patches/01-fix_input_percent_sign.patch:
    - [UPSTREAM] Behave correctly when meet percent sign (%).
  * debian/patches/01-run_posix_shell_script.patch:
    - [UPSTREAM] Change from bash to sh.
  * debian/control:
    + Recommend to install all available IM Modules.
    + Improve descriptions (Closes: #643004).
      Thanks to debian-l10n-en, especially Justin B Rye.
    + Recommend to install im-config (>= 0.5), since version 0.5
      has the correct setup for complex situation of IM Modules.
    - Lower plasma-widget-addons to Suggests for fcitx-ui-kimpanel,
      in favor of the usage of this module in gnome-shell and unity.

 -- Aron Xu <aron@debian.org>  Sat, 19 Nov 2011 00:23:14 +0800

fcitx (1:4.1.2-2) unstable; urgency=low

  [ YunQiang Su ]
  * Install usr/share/fcitx/configdesc/fcitx-xim.desc
    into fcitx-module-x11.
  * Install usr/share/fcitx/configdesc/fcitx-chttrans.desc
    into fcitx-modules.
  * debian/patches/01-fix_wm_class_setting.patch:
    - [UPSTREAM] Fix wm_class setting to  make it work better with
      gnome-shell, the tray can displayed as system status icon now.

  [ Aron Xu ]
  * debian/patches/01-dont_fileter_all_release_events.patch:
    - [UPSTREAM] Don't filter all release events.
  * debian/patches/01-fix-duplicate-entry.patch:
    - [UPSTREAM] Add a return to avoid duplicate entry.
  * debian/im-switch/fcitx: use QT4_IM_MODULE instead of QT_IM_MODULE.
  * debian/control:
    + Recommends to install both GTK2/3 IM Modules.

 -- YunQiang Su <wzssyqa@gmail.com>  Wed, 05 Oct 2011 19:00:56 +0800

fcitx (1:4.1.2-1) unstable; urgency=low

  * New upstream release.
  * Add libkvm-dev [kfreebsd-any] to Build-Depends.

 -- Aron Xu <aron@debian.org>  Sun, 02 Oct 2011 23:45:53 +0800

fcitx (1:4.1.1-1) unstable; urgency=low

  * New upstream major release.
    - Highly modularized.
    - Ship with GTK+ 2/3 and QT4 IM Modules. (Closes: #518703)
  * debian/control:
    - Use my @debian.org email address.
    - Remove ygh@debian.org from Uploaders list (Closes: #629019)
    - Adjust Build-Depends to fit new release.
    - Reorganize binary packages.
    - Provide im-config and im-switch compatibility.
  * debian/compat:
    - Set compatibility level to 8.
  * debian/rules:
    - Adjust to fit new CMake based build system.
    - Detect Multi-Arch status of GTK2/3 and QT4.
  * debian/patches:
    - All removed, merged upstream.
  * debian/copyright:
    - Update to current DEP-5 specification, update for new release files.
  * debian/im-switch/fcitx:
    - Update to set all supported IM_MODULES to fcitx.
  * debian/README.*:
    - Added to describe some detail information about the package.

 -- Aron Xu <aron@debian.org>  Wed, 21 Sep 2011 09:48:38 +0800

fcitx (1:4.0.1-6) unstable; urgency=low

  * debian/control:
    + Bump std-ver: 3.9.2.
    + Change VCS-* to new Git repository.
  * debian/fcitx.install:
    - Wipe out unneeded *.la / emptying dependency_libs,
      per Policy 10.2 (Closes: # 621217).
  * debian/watch:
    - Updated to avoid inclusion of versions like "4.0.1_all".

 -- Aron Xu <happyaron.xu@gmail.com>  Sat, 09 Apr 2011 15:03:33 +0800

fcitx (1:4.0.1-5) unstable; urgency=low

  * Correct the priority of xinput.d entries.

 -- Aron Xu <happyaron.xu@gmail.com>  Mon, 21 Mar 2011 18:41:03 +0800

fcitx (1:4.0.1-4) unstable; urgency=low

  * Change fcitx-data from all to any, since this can avoid endianness
    problems.
  * Use dh-autoreconf to avoid untidy build directory.
  * Install xinput.d entry for new locales other than zh_CN:
     ja_JP fcitx 40
     ko_KR fcitx 40
     zh_CN fcitx 80
     zh_TW fcitx 50
     zh_HK fcitx 50
     zh_SG fcitx 80
    The difference of priorities are set because of user preferences
    and support status of fcitx to these languages.

 -- Aron Xu <happyaron.xu@gmail.com>  Thu, 10 Mar 2011 00:42:45 +0800

fcitx (1:4.0.1-3) unstable; urgency=low

  * debian/control:
    + Add multiple Replaces/Breaks: fcitx (<< 1:4.0.0) (Closes: # 613022)
  * debian/patches/debian-ftbfs-609776.patch:
    + Really build on Hurd.

 -- Aron Xu <happyaron.xu@gmail.com>  Sat, 12 Feb 2011 19:03:26 +0800

fcitx (1:4.0.1-2) unstable; urgency=medium

  * debian/patches/debian-ftbfs-609776.patch:
    - Make it build on kfreebsd and hurd. (Closes: #609776)
  * debian/rules:
    - Run autoreconf becore dh_auto_configure, this is a temporary
      workaround bypassing the libtool error caused by patching
      configure{,in}, and will be removed in next upstream release.

 -- Aron Xu <happyaron.xu@gmail.com>  Fri, 14 Jan 2011 00:38:27 +0800

fcitx (1:4.0.1-1) unstable; urgency=low

  * New upstream release.
  * debian/control:
    - Remove binutils-gold from build-dep, most archs doesn't have it.
    - Remove automake and autoconf from build-dep, not needed now.
    - Add DM-Upload-Allowed.
  * debian/patches/ :
    - Remove patches because upstream has applied them.
  * debian/rules:
    - Get back dh_auto_test.
    - Don't run autoreconf.
    - Pass parameter --enable-recording.
  * debian/fcitx.install and debian/fcitx.doc-base:
    - Remove fcitx4.pdf since removed from tarball by upstream.
  * debian/fcitx.doc-base:
    - Fix doc-base error by listing files in one line.

 -- Aron Xu <happyaron.xu@gmail.com>  Fri, 17 Dec 2010 18:56:00 +0800

fcitx (1:4.0.0-1) unstable; urgency=low

  * New upstream major release:
    - Get rid of unsafe environment variable usage. (Closes: #430420)
    - Create config file if not exist; Tray icon refresh background.
      (Closes: #571588)
    - Use utf-8 config file with English options.
    - Fixe input problem in OpenOffice.org. (LP: #261382, LP: #238309)
  * debian/control:
    - Update to a new set of Build-Dep packages.
    - Improve descriptions.
    - Remove fonts from Recommends since fcitx can detect system font now.
      (Closes: #584307, LP: #482564)
    - Split package into 12.
    - Use binutils-gold.
  * debian/rules:
    - Set LDFLAGS="-Wl,--as-needed".
  * debian/Makefile, debian/Makefile.am, debian/Makefile.in,
    source.lintian-overrides, README, README.Debian: Remove.
  * debian/copyright: Rewrite.
  * debian/patches/binutils-gold.patch:
    - Remove, for upstream has accepted it.
  * debian/patches/1ca5ac8c5b.patch:
    - Fix desc.po problem and do not distclean tarball files.
      (Backport from upstream 1ca5ac8c5b commit.)
  * debian/docs: Install upstream textual files.
  * debian/clean: Clean autoreconf generated files.
  * debian/fcitx.doc-base, debian/fcitx-table-wubi.doc-base:
    - Add doc-base entries.

 -- Aron Xu <happyaron.xu@gmail.com>  Fri, 25 Nov 2010 21:33:23 +0800

fcitx (1:3.6.4-1) unstable; urgency=low

  [ Aron Xu ]
  * New upstream release:
    - Change data/pyPhrase.py to avoid copyright problem.
  * Change Maintainer field to IME Packaging Team, move original
    maintainer to Uploaders, add myself to Uploaders.
  * debian/rules:
    - Update to use upstream autogen.sh, since autoreconf isn't enough now.
  * debian/fcitx.doc-base.EX: Removed, will add back in 4.0.0 release.
  * debian/source.lintian-overrides: Removed.

  [ LI Daobing ]
  * debian/watch: updated.
  * debian/control:
    - add Vcs-* fields.
    - add wqy fonts to depends (Closes: #584307)
    - bump standards version to 3.9.1.

 -- Aron Xu <happyaron.xu@gmail.com>  Fri, 19 Nov 2010 14:44:31 +0800

fcitx (1:3.6.3-1) unstable; urgency=low

  * new upstream release.
  * change to 3.0 (quilt) format.
  * debian/control:
    - bump standards version to 3.8.4.
    - build depends on debhelper > 7.0.50~
  * debian/patches/binutils-gold.patch: Fix "FTBFS with binutils-gold"
    (Closes: #554282)
  * debian/rules: run autoreconf before configure
  * debian/clean: updated.

 -- LI Daobing <lidaobing@debian.org>  Mon, 22 Feb 2010 21:00:56 +0800

fcitx (1:3.6.2-1) unstable; urgency=low

  * new upstream release.

 -- LI Daobing <lidaobing@debian.org>  Fri, 09 Oct 2009 19:29:06 +0800

fcitx (1:3.6.1-1) unstable; urgency=low

  * new upstream release.
  * debian/control:
    - add me to Uploader.
    - add libxtst-dev to Build-Depends.
    - bump standards version to 3.8.3.
  * debian/rules:
    - updated, no longer need to call autogen.sh
  * debian/clean: updated.

 -- LI Daobing <lidaobing@debian.org>  Thu, 24 Sep 2009 23:03:16 +0800

fcitx (1:3.6.0~rc-0.1) unstable; urgency=low

  * Non-maintainer upload (with the bless of the origin maintainer).
  * new upstream release.
  * debian/watch: rewrite.
  * debian/control:
    - bump standards version to 3.8.1.
    - bump debhelper version to 7.
    - add ${misc:Depends} to depends.
    - add automake and autoconf to build-depends.
  * debian/compat:
    - bump debhelper version to 7.
  * debian/fcitx.lintian-overrides: added.
  * debian/source.lintian-overrides: added.
  * debian/rules: rewrite with debhelper 7.
  * debian/clean: added.
  * debian/fcitx.install: added, install im-switch.
  * debian/dirs: remove usr/share/fcitx/xpm.

 -- LI Daobing <lidaobing@debian.org>  Thu, 23 Apr 2009 23:21:13 +0800

fcitx (1:3.4.99+svn163-0ubuntu1) jaunty; urgency=low

  * New upstream svn snapshot, upstream will release
    3.5 soon, so need more feedbacks.
  * Change Homepage to where the project is being hosted now.
  * Replace the old arphic fonts in Recommends.
  * Use QT_IM_MODULE=xim in im-switch conffile.

 -- Zhengpeng Hou <zhengpeng-hou@ubuntu.com>  Sun, 07 Dec 2008 12:30:20 +0000

fcitx (1:3.4.3-1.1) unstable; urgency=low

  * Non-maintainer upload.
  [ LI Daobing ]
  * fix lintian error:
    - build-depends-on-obsolete-package build-depends: x-dev
    - declares-possibly-conflicting-debhelper-compat-versions rules=5 compat=5
  * fix im-switch conf file (Closes: #454363)
  [ Barry deFreese ]
  * Make clean not ignore errors.
  * Add copyright holders in debian/copyright.
  * Add watch file.
  * Add Homepage in source stanza.
  * Bump Standards Version to 3.8.0. (No changes needed).

 -- Barry deFreese <bdefreese@debian.org>  Wed, 19 Nov 2008 12:31:10 -0500

fcitx (1:3.4.3-1) unstable; urgency=medium

  * New upstream release
  * Fixed bad recommends fonts name. (Closes:Bug#379098)
  * Fixed wubi crash. Thanks for Bin Tian's report and fix. (Closes:Bug#409999)

 -- Yu Guanghui <ygh@debian.org>  Wed,  7 Feb 2007 14:01:15 +0800

fcitx (1:3.4-1) unstable; urgency=low

  * New upstream release

 -- Yu Guanghui <ygh@debian.org>  Fri, 29 Sep 2006 22:12:32 +0800

fcitx (1:3.3.1-1) unstable; urgency=low

  * New upstream release

 -- Yu Guanghui <ygh@debian.org>  Thu, 14 Sep 2006 21:12:01 +0800

fcitx (1:3.2.1-1) unstable; urgency=low

  * New upstream release

 -- Yu Guanghui <ygh@debian.org>  Thu,  6 Jul 2006 01:13:46 +0800

fcitx (3.2.060108-3) unstable; urgency=low

  * Modify fcitx scrip for Qt/KDE

 -- Yu Guanghui <ygh@debian.org>  Sun, 30 Apr 2006 13:40:34 +0800

fcitx (3.2.060108-2) unstable; urgency=low

  * Add missing dependency libxpm-dev. Closes: #364670

 -- Yu Guanghui <ygh@debian.org>  Tue, 25 Apr 2006 12:20:52 +0800

fcitx (3.2.060108-1) unstable; urgency=high

  * New upstream release
  * Fixed RC bug. Closes: #357551
  * Add im-switch support. Thank Hou ZhengPeng <zhengpeng.hou@gmail.com>'s
    patch. Closes: #314743
  * Move Arphic fonts to Recommanded. Maybe it's time to packages other
    free chinese fonts. Closes: #293624

 -- Yu Guanghui <ygh@debian.org>  Mon, 24 Apr 2006 22:38:26 +0800

fcitx (3.1.1-1.1) unstable; urgency=high

  * Non-maintainer upload.
  * High-urgency upload for RC bugfix.
  * Build-depend on libx11-dev, libxft-dev, and x-dev instead of on the
    obsolete xlibs-dev; thanks to Justin Pryzby <justinpryzby@users.sf.net>
    for testing.  Closes: #346744.
  * Re-run autoconf to pick up a version of AC_PATH_X that doesn't depend on
    libxt-dev.  Also add AM_MAINTAINER_MODE to configure.in, which seems to
    have been left out previously.

 -- Steve Langasek <vorlon@debian.org>  Fri, 20 Jan 2006 08:03:06 -0800

fcitx (3.1.1-1) unstable; urgency=low

  * New upstream release

 -- Yu Guanghui <ygh@debian.org>  Wed,  6 Apr 2005 16:30:47 +0800

fcitx (3.1-1) unstable; urgency=low

  * New upstream release

 -- Yu Guanghui <ygh@debian.org>  Wed, 23 Mar 2005 16:05:18 +0800

fcitx (3.0.3-1) unstable; urgency=low

  * New upstream release (Closes:Bug#285461)
  * Remove wrong installed file. (Closes:Bug#281718,Bug#284538)

 -- Yu Guanghui <ygh@debian.org>  Sun,  2 Jan 2005 13:50:18 +0800

fcitx (3.0.0-1) unstable; urgency=low

  * New upstream release (Closes:Bug#270422)

 -- Yu Guanghui <ygh@debian.org>  Tue, 7 Sep 2004 21:49:36 +0800

fcitx (2.0.2-3) unstable; urgency=low

  * Sorry, Oops. Forgot one, Fixed again. (Closes:Bug#250423)

 -- Yu Guanghui <ygh@debian.org>  Fri, 11 Jun 2004 01:58:36 +0800

fcitx (2.0.2-2) unstable; urgency=low

  * Fixed 64bit platforms error. Thanks Andreas Jochens <aj at
    andaco.de>'s patch. (Closes:Bug#250423)

 -- Yu Guanghui <ygh@debian.org>  Thu, 10 Jun 2004 21:37:04 +0800

fcitx (2.0.2-1) unstable; urgency=low

  * New upstream release

 -- Yu Guanghui <ygh@debian.org>  Mon, 10 May 2004 11:14:08 +0800

fcitx (2.0.1-1) unstable; urgency=low

  * New upstream release

 -- Wang WenRui <wangwr@ustc.edu>  Fri,  9 Jan 2004 22:25:38 +0800

fcitx (2.0-1) unstable; urgency=low

  * New upstream release.

 -- Su Yong <yoyosu@ustc.edu.cn>  Thu,  8 Jan 2004 20:19:34 +0800

fcitx (1.8.5-1) unstable; urgency=low

  * New upstream release

 -- Yu Guanghui <ygh@debian.org>  Fri, 23 May 2003 00:43:04 +0800

fcitx (1.8.4-3) unstable; urgency=low

  * Fixed build error on arch without SIGUNUSED.

 -- Yu Guanghui <ygh@debian.org>  Thu,  8 May 2003 11:18:28 +0800

fcitx (1.8.4-2) unstable; urgency=low

  * Remove gbk fonts.
  * minor fixes.
  * Just found it in wnpp, close it. (Closes:Bug#189271)

 -- Yu Guanghui <ygh@debian.org>  Sat,  3 May 2003 15:56:54 +0800

fcitx (1.8.4-1) unstable; urgency=low

  * Initial Release.

 -- Yu Guanghui <ygh@debian.org>  Sat,  3 May 2003 14:24:40 +0800

Local variables:
mode: debian-changelog
End: