-
Notifications
You must be signed in to change notification settings - Fork 74
/
ChangeLog.old
3604 lines (2581 loc) · 106 KB
/
ChangeLog.old
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
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Generate ChangeLog from git commit messages after this.
2011-10-17 Shih-Yuan Lee (FourDollars) <[email protected]>
* src/mainframe.cpp,
src/mainframe.h: Only showing menu bar in Unity, and hiding it in others.
* pcmanx.desktop.in: Encoding field is deprecated according to
http://standards.freedesktop.org/desktop-entry-spec/1.0/apc.html
* debian/control: Update Debian policy version to 3.9.2
* build/snapshot-deb.sh: Polish script to generate Debian package.
* build/snapshot-deb.sh: Forgot to rollback modified version.
2011-10-16 Shih-Yuan Lee (FourDollars) <[email protected]>
* src/mainframe.cpp: Adjust simple mode's behavior not to hide menu
bar.
* src/mainframe.cpp,
po/zh_TW.po,
po/zh_CN.po: Polish string and translation of font settings.
2011-07-09 Shih-Yuan Lee (FourDollars) <[email protected]>
* Makefile.am,
data/Makefile.am,
data/pcmanx.png,
data/pcmanx.svg: Adopting new icon design. (Fixes issue 33)
* NEWS,
src/pcmanx_inverse_xpm.xpm,
src/pcmanx_xpm.xpm: Adopting new icon design. (Fixes issue 33)
* src/conn_xpm.xpm,
src/mainframe.cpp,
src/pcmanx_inverse_xpm.xpm,
src/pcmanx_xpm.xpm: Fix compilation error.
2011-06-29 Jim Huang <[email protected]>
* src/pcmanx_gtk2.cpp (main): Set program name to make gnome-shell
happy, which seems to obtain the name from argv[0] instead of Gtk+
properties.
Close issue #41
2011-06-29 Shih-Yuan Lee (FourDollars) <[email protected]>
* NEWS: fontconfig fallback font support.
* src/core/cfontconfig.cpp,
src/core/cfontconfig.h: Improve the algorithm of fontconfig fallback font.
* src/core/cfontconfig.cpp: Avoid memory leak.
2011-06-28 Jim Huang <[email protected]>
* NEWS,
README: Mozilla/Firefox Plugin support was removed, and the
documentation should be reflected as well.
2011-06-28 Jim Huang <[email protected]>
* src/core/uao250.c,
src/core/uao250.h,
src/core/uao241.c,
src/core/uao241.h,
src/core/uao.c,
src/core/uao.h: Move to src/charset to simplify libpcmanx_core
* src/charset: Implement UAO routines.
* src/core/Makefile.am,
src/Makefile.am,
configure.ac: Ditto.
2011-06-28 Shih-Yuan Lee (FourDollars) <[email protected]>
* build/snapshot-deb.sh: Use "3.0 (quilt)" as the package source format.
2011-06-27 Shih-Yuan Lee (FourDollars) <[email protected]>
* src/core/Makefile.am,
src/core/cfontconfig.cpp,
src/core/cfontconfig.h,
src/core/font.cpp,
src/core/termview.cpp: Add fontconfig fallback font support.
2011-06-23 Shih-Yuan Lee (FourDollars) <[email protected]>
* src/core/Makefile.am,
src/core/termview.cpp,
src/core/uao.c,
src/core/uao.h,
src/core/uao241.c,
src/core/uao241.h,
src/core/uao250.c,
src/core/uao250.h: Polish UAO utilities.
2011-06-15 Shih-Yuan Lee (FourDollars) <[email protected]>
* src/core/site.cpp: Set GB2312 as default encoding for zh_CN users.
* build/snapshot-deb.sh: Fix syntax error for version number.
* src/core/termview.cpp,
src/mainframe.cpp: Restrict UAO to only work for BIG5 encoding.
2011-06-12 Shih-Yuan Lee (FourDollars) <[email protected]>
* src/sitepage.cpp,
src/sitepage.h: Add UAO user interface.
* src/appconfig.cpp,
src/appconfig.h,
src/core/site.cpp,
src/core/site.h,
src/core/termview.cpp,
src/core/termview.h,
src/mainframe.cpp,
src/sitepage.cpp,
src/sitepage.h,
NEWS: Implement UAO functionality.
* debian/control: Remove unneeded dependency.
* po/zh_CN.po,
po/zh_TW.po: Update translation of UAO.
2011-06-11 Shih-Yuan Lee (FourDollars) <[email protected]>
* build/uao.pl,
build/uao241-b2u.txt,
build/uao250-b2u.txt,
src/core/Makefile.am,
src/core/uao241.c,
src/core/uao241.h,
src/core/uao250.c.
src/core/uao250.h: Add UAO utilities.
2011-04-24 Kan-Ru Chen <[email protected]>
* src/pcmanx_gtk2.cpp: Fix compilation warning.
* src/core/termview.cpp (RecalcCharDimension): Always calculate
character dimension based on Chinese font.
(OnSize): Update.
(SetFont*): Update.
* src/core/termview.h (CView): Update signature.
2011-04-15 Shih-Yuan Lee (FourDollars) <[email protected]>
* debian/watch: Update watch control file for uscan.
2011-04-14 Shih-Yuan Lee (FourDollars) <[email protected]>
* configure.ac,
TODO: Remove firefox plugin option.
* NEWS,
configure.ac: Bump to 1.0
2011-04-13 Kan-Ru Chen <[email protected]>
* src/mainframe.cpp (OnShowHide): Now Alt+M only iconify the main
window when tray icon is disabled.
2011-04-12 Kan-Ru Chen <[email protected]>
* src/view/telnetcon.cpp (OnNewIncomingMessage): Fix libnotify
0.7.0 API compatibility.
2011-04-12 Shih-Yuan Lee (FourDollars) <[email protected]>
* src/core/site.h: Fix compilation error of CStie. (Fixes issue 26 by
chingpang)
2011-04-07 Shih-Yuan Lee (FourDollars) <[email protected]>
* configure.ac: Enable silent rules by default.
2011-03-28 Shih-Yuan Lee (FourDollars) <[email protected]>
* configure.ac: Disable dist-gzip, enable silent-rules and
maintainer mode.
2011-03-20 Shih-Yuan Lee (FourDollars) <[email protected]>
* debian/watch: Add debian/watch.
2011-02-28 Shih-Yuan Lee (FourDollars) <[email protected]>
* configure.ac,
po/zh_CN.po,
po/zh_TW.po,
src/mainframe.cpp: Update project information.
2011-02-23 Shih-Yuan Lee (FourDollars) <[email protected]>
* build/snapshot-deb.sh,
debian/pcmanx-gtk2.install: Polish test script for deb and remove
unneeded file.
* data/Makefile.am,
data/pcmanx.1: Add man page for pcmanx.
* debian/control,
debian/copyright,
debian/rules: Add Vcs info.
* pcmanx_gtk2.cpp: There is no need to check sanity of libpcmanx.
* pcmanx_gtk2.cpp: Prevent from program crash (Fixes issue 28).
* src/appconfig.cpp,
src/core/termview.cpp: Change default font family to 'WenQuanYi Micro Hei
Mono'.
2011-02-14 Shih-Yuan Lee (FourDollars) <[email protected]>
* Makefile.am,
build/make-new-release.sh,
configure.ac,
debian/control,
debian/libpcmanx-core0.install,
debian/mozilla-plugin-pcmanx.install,
debian/mozilla-plugin-pcmanx.links,
debian/rules,
plugin/Makefile.am,
plugin/data/Makefile.am,
plugin/data/TelnetProtocol.js.in,
plugin/data/pcmanx.html,
plugin/data/pcmanx.png,
plugin/src/Makefile.am,
plugin/src/np_entry.cpp,
plugin/src/npn_gate.cpp,
plugin/src/npp_gate.cpp,
plugin/src/npplat.h,
plugin/src/npupp.h,
plugin/src/nsScriptablePeer.cpp,
plugin/src/nsScriptablePeer.h,
plugin/src/pcmanx_interface.idl,
plugin/src/plugin.cpp,
plugin/src/plugin.h,
plugin/src/pluginbase.h,
src/core/Makefile.am: Remove deprecated firefox plugin, and not install
libpcmanx.
2011-01-19 Kan-Ru Chen <[email protected]>
* src/view/telnetcon.cpp (CTelnetCon): m_Port is a string now.
(Connect): ditto. Always uses getaddrinfo to resolve addresses.
(PreConnect): ditto.
(DoDNSLookup): Simplify DNS lookup.
* src/view/telnetcon.h (CTermData): m_Port is a string now.
(CDNSRequest): ditto.
* src/view/telnetcon.cpp (DoDNSLookup): Only lookup IPv4 addresses
when using proxy.
(ConnectAsync): Use getaddrinfo to lookup IP addresses.
* src/core/proxy.c, src/core/proxy.h: serv_addr is now a
sockaddr_storage wrapped sockaddr_in.
* src/appconfig.cpp, src/core/site.cpp, src/core/site.h: Change
ProxyPort to string type.
2011-01-10 Kan-Ru Chen <[email protected]>
* src/view/telnetcon.cpp, src/view/telnetcon.h: Add IPv6
support. Use getaddrinfo to resolve both AF_INET and AF_INET6
addresses. Also support IPv6 address literal specified in RFC 3986
section 3.2.2.
* configure.ac: Add new checks.
* NEWS: Document new features.
2010-10-26 Shih-Yuan Lee (FourDollars) <[email protected]>
* src/core/termdata.cpp,
src/core/termdata.h,
src/core/termview.cpp: Using AttrType (short) to cast CTernCharAttr will
cause a problem in copy-text-with-color with DBCS words.
http://code.google.com/p/pcmanx-gtk2/issues/detail?id=20 by hrs113355
* src/view/telnetview.cpp: Check crlf in pasting lines with color.
http://code.google.com/p/pcmanx-gtk2/issues/detail?id=21 by hrs113355
* debian/compat,
debian/control,
debian/copyright,
debian/docs,
debian/libpcmanx-core0.install,
debian/mozilla-plugin-pcmanx.install,
debian/mozilla-plugin-pcmanx.links,
debian/pcmanx-gtk2.install,
debian/rules: Add a rough debian folder.
* build/snapshot-deb.sh: Polish deb packaging script.
2010-06-15 Shih-Yuan Lee (FourDollars) <[email protected]>
* build/make-new-release.sh: Polish script.
* build/snapshot-deb.sh: Fix some dependency problem.
2010-06-14 Shih-Yuan Lee (FourDollars) <[email protected]>
* build/snapshot-deb.sh: Update Debian packaging script.
2010-05-12 Youchen Lee <[email protected]>
* src/mainframe.cpp (CMainFrame::CMainFrame): Set the focus chain
for quick switching keyboard focus to the URL entry by Tab key.
2010-04-15 Jason Xia <[email protected]>
* src/downarticledlg.h, src/downarticledlg.cpp: Fix article download
issue with bdwm.net. Also change the 'Cancel' button into a 'Stop'
button so that if download gets stuck again, one can click 'Stop' to
abort waiting while still being able save what has been downloaded.
Previous 'Cancel' behavior can be achieved by pressing Esc or closing
the download window.
http://code.google.com/p/pcmanx-gtk2/issues/detail?id=11
2010-03-13 Shih-Yuan Lee (FourDollars) <[email protected]>
* build/make-new-release.sh: Adjust the script for release test.
* plugin/src/np_entry.cpp,
plugin/src/npn_gate.cpp,
plugin/src/npplat.h,
plugin/src/npupp.h: Fix the compilation error of '--enable-plugin'.
* build/snapshot-deb.sh: Add '--enable-plugin' to build Debian package.
* plugin/src/Makefile.am: Fix the missing header file of automake.
* AUTHORS,
configure.ac: xpidl not found on OpenSolaris
Reported by Halton Huo <[email protected]>
http://code.google.com/p/pcmanx-gtk2/issues/detail?id=2
* src/core/pcmanx_utils.h,
src/notebook.cpp: <bits/wordsize.h> not found on OpenSolaris
Reported by Halton Huo <[email protected]>
http://code.google.com/p/pcmanx-gtk2/issues/detail?id=3
* configure.ac,
plugin/src/Makefile.am,
src/Makefile.am: -lutil not available on OpenSolaris
Reported by Halton Huo <[email protected]>
http://code.google.com/p/pcmanx-gtk2/issues/detail?id=4
* src/notifier/notifier-impl.c: array initlization cause build error with suncc
Reported by Halton Huo <[email protected]>
http://code.google.com/p/pcmanx-gtk2/issues/detail?id=5
* configure.ac,
src/Makefile.am,
src/view/forkpty.c,
src/view/forkpty.h,
src/view/telnetcon.cpp: forkpty() not found on OpenSolaris
Reported by Halton Huo <[email protected]>
http://code.google.com/p/pcmanx-gtk2/issues/detail?id=6
* configure.ac,
src/core/Makefile.am: ld error on OpenSolaris
Reported by Halton Huo <[email protected]>
http://code.google.com/p/pcmanx-gtk2/issues/detail?id=7
* developers: Remove empty folder.
* build/snapshot-deb.sh: Fix the problem to fetch revision.
2010-03-05 Shih-Yuan Lee (FourDollars) <[email protected]>
* autogen.sh: Change to automake 1.11
* build/snapshot-deb.sh: popd/pushd is built-in function of bash.
* src/appconfig.cpp: Fix compilation error.
* src/mainframe.cpp: Clean some warnings.
2010-03-04 Shih-Yuan Lee (FourDollars) <[email protected]>
* src/appconfig.cpp: Use 'xdg-email' as mail client and 'xdg-open' as web
browser.
2010-02-10 Shih-Yuan Lee (FourDollars) <[email protected]>
* build/snapshot-deb.sh: Adjust the script for debian package.
* configure.ac: Add pkg-config for libx11-dev.
2010-02-08 Shih-Yuan Lee (FourDollars) <[email protected]>
* build/make-new-release.sh,
build/snapshot-deb.sh: Add a script to rapidly generate debian package.
* configure.ac,
plugin/src/Makefile.am,
src/view/telnetcon.cpp: Fix the compilation error when enable plugin.
2010-02-07 Shih-Yuan Lee (FourDollars) <[email protected]>
* developers/make-new-release.sh: Move to another folder and adjust the
way to get version number.
* configure.ac: Fix the warnings caused by AC_CACHE_VAL of Autoconf Macro,
and change bug report to http://code.google.com/p/pcmanx-gtk2/issues/list.
* plugin/src/plugin.cpp: Fix the compilation error and strip warnings.
2010-01-13 Youchen Lee <[email protected]>
* src/nancy_bot/msg_data.cpp:
Ignore "File not found" messages of NancyBot.
2009-08-26 Shih-Yuan Lee (FourDollars) <[email protected]>
* data/nancy_bot/default_msg.data,
pcmanx-gtk2.spec.in,
po/zh_CN.po,
po/zh_TW.po,
src/core/termdata.cpp,
src/mainframe.cpp,
src/pcmanx_gtk2.cpp: Change official website url of pcmanx-gtk2.
2009-08-03 Shih-Yuan Lee (FourDollars) <[email protected]>
* configure.ac: Bump to 0.3.9
* developers/make-new-release.sh: Add more build test case.
* NEWS: Adjust 0.3.9 to August 2009.
* developers/make-new-release.sh: Log during build test case.
2009-08-03 Jim Huang <[email protected]>
* src/mainframe.cpp (CMainFrame::OnFont) (CMainFrame::OnFontEn):
Fix mistaken font size got from font dialog.
Merged from http://code.google.com/p/gemanx/source/detail?r=26 .
2009-08-03 Chih-Min Chao <[email protected]>
Jim Huang <[email protected]>
* src/mainframe.h (OnNotebookPopupMenu)
src/mainframe.cpp (CMainFrame::OnNotebookPopupMenu): Introduced new
feature: let mouse middle click be able to close tab. It is similar
to the behavior under Firefox.
* src/appconfig.h (MidClickAsClose)
src/generalprefpage.h (m_MidClickAsClose)
src/appconfig.cpp (CAppConfig::DoDataExchange)
(CAppConfig::SetToDefault)
src/generalprefpage.cpp (CGeneralPrefPage::CGeneralPrefPage)
(CGeneralPrefPage::OnOK): Required modifications to configure this
feature.
2009-08-03 Jim Huang <[email protected]>
* src/core/pcmanx_utils.h: Introduced typedef word_t for 32-bit/64-bit
representation.
* src/mainframe.cpp (CMainFrame::OnJumpToPage)
(CMainFrame::GetViewIndex)
src/notebook.cpp (CNotebook::AddPage): Make use of word_t in INFO.
Reported by Kovich Ian <[email protected]>.
2009-07-26 Jim Huang <[email protected]>
* src/core/termdata.cpp (CTermData::memset16): Rewritten. Use C99
uint16_t instead of "short int". It should prevent compilers from
being over-optimizing with -ftree-vectorize.
Note: the usage of memset16 is somehow ambiguous for sake of the last
function parameter (size_t n), which is regarded as divided by 2 in
advance.
2009-05-29 Shih-Yuan Lee (FourDollars) <[email protected]>
* src/pcmanx_gtk2.cpp: Add an introduction mainpage of Doxygen.
2009-05-29 Jim Huang <[email protected]>
* src/view/telnetview.cpp (CTelnetView::OnHyperlinkClicked): Fix gcc
4.4 compilation error.
Reported by: devilreg <[email protected]>.
2009-05-29 Shih-Yuan Lee (FourDollars) <[email protected]>
* src/generalprefpage.cpp,
src/sitepage.cpp: Fix the deprecated GtkAdjustment of GtkSpinButton.
2009-05-28 Shih-Yuan Lee (FourDollars) <[email protected]>
* src/core/site.cpp: Let vertical and horizontal align center properly
set by default.
2009-05-16 Jim Huang <[email protected]>
* src/core/widget.cpp (CWidget::Refresh): Do not call
gdk_window_invalidate_rect on a non-realized GtkWidget.
2009-05-16 Jim Huang <[email protected]>
* src/mainframe.cpp
(CMainFrame::OnPreference): Fix dangling else.
(CMainFrame::OnJumpToPage): Proper casting for INFO.
* src/notebook.cpp (CNotebook::AddPage): Ditto.
2009-05-16 Jim Huang <[email protected]>
* src/mainframe.cpp (CMainFrame::OnCloseCon): Use CNotebook wrapper
interface rather than explicitly casting.
Patched by Chih-Min Chao <[email protected]>.
2009-05-16 Jim Huang <[email protected]>
* src/nancy_bot/msgdata.cpp: Fix inclusion to make g++ 4.4 happy.
2009-05-16 Jim Huang <[email protected]>
* src/mainframe.cpp (CMainFrame::OnNotebookPopupMenu): Avoid memory
leak when event is not mouse right-click and unnecessary resource
re-allocation.
Patched by Chih-Min Chao <[email protected]>.
2009-02-18 Jason Xia <[email protected]>
* po/POTFILES.in, po/zh_CN.po, po/zh_TW.po: Update po files. Fix
Simplified Chinese translation of "Line" and "Col".
2009-02-07 Youchen Lee <[email protected]>
* src/mainframe.cpp: For availability to build under (gtk+ < 2.10),
defined GTK_STOCK_SELECT_ALL as "gtk-index".
2009-01-25 Jim Huang <[email protected]>
* src/docklet/eggtrayicon.h,
src/docklet/eggtrayicon.c,
src/pcmanx_gtk2.cpp: GNOME Goal - Clean up GLib and GTK+ includes.
GTK+ is moving toward a model where it is only allowed to include the
'toplevel' headers. Only <glib.h>, <gdk/gdk.h>,
<gdk-pixbuf/gdk-pixbuf.h> and <gtk/gtk.h> can be directly included.
The goal is to make all GNOME modules comply with this.
Ref: http://live.gnome.org/GnomeGoals/CleanupGTKIncludes
2009-01-19 Jim Huang <[email protected]>
* src/core/termview.h (CTermView::m_s_CharSet): New data member to
indicate the character set in CTermView.
* src/core/termview.cpp (CTermView::PasteFromClipboard),
src/view/telnetview.cpp (CTelnetView::DoPasteFromClipboard): Properly
handle the character set convertion during copy and paste from X
clipboard.
Patched by Darren Hoo <[email protected]> .
2009-01-16 Jim Huang <[email protected]>
* src/pcmanx_gtk2.cpp (main): Prevent GTK+ from catching F10.
* src/view/telnetview.cpp (CTelnetView::OnKeyDown): Handle F1-F12
keys.
Patched by Darren Hoo <[email protected]> .
2009-01-04 Jim Huang <[email protected]>
* src/core/pkgver.c: New file. Keep version information in
libpcmanx-core.
* src/core/Makefile.am: Ditto.
* src/pcmanx_gtk2.cpp (main): Perform insanity checks for libpcmanx.
If version mismatch between pcmanx-gtk2 and libpcmanx, alter window
will show up and soon close.
2009-01-03 Shih-Yuan Lee (FourDollars) <[email protected]>
* src/core/fileutil.c,
src/view/telnetview.cpp: Remove some warnings.
2009-01-01 Jim Huang <[email protected]>
* src/mainframe.cpp (CMainFrame::CMainFrame): PCManx main window
doesn't provide WM_CLASS property, or to be more precise, provides
the same as the main window. Therefore, it is not possible to
distinguish windows (important for new-kind window managers like
ion / ion-devel / pwm / larswm). This is a quick fix.
Reported by Roy Zuo <[email protected]>.
2008-12-15 Jim Huang <[email protected]>
* src/view/telnetcon.cpp (CTelnetCon::Close): Fix build with
debugging.
2008-10-01 Jim Huang <[email protected]>
* src/view/telnetview.cpp: Fix compilation errors with gcc 4.3.
Reported by Lyman Li <[email protected]>.
2008-09-25 Jason Xia <[email protected]>
* src/mainframe.cpp (CMainFrame::OnFullscreenMode)
(CMainFrame::OnSimpleMode) (CMainFrame::OnPreference): Respect user
preference about show/hide status bar.
2008-09-13 Jim Huang <[email protected]>
* src/notebook.cpp (CNotebook::SetPageTitle): Ignore the change of
title if tab/CNotebook is not connected. Avoid SegFault when closing
a disconnected tab.
2008-09-02 Jason Xia <[email protected]>
* src/mainframe.cpp (CMainFrame::OnURLEntryKeyDown): Enable [KP_Enter]
key in URL entry box.
2008-09-01 Jason Xia <[email protected]>
* src/downarticledlg.cpp (CDownArticleDlg::DownArticleFunc)
(AppendLine): Trim trailing spaces of each line when downloading
articles.
2008-08-12 Jim Huang <[email protected]>
* developers/make-new-release.sh: New file. A simple and neat script
for developers to prepare new release more carefully.
2008-08-12 Jim Huang <[email protected]>
* src/downarticledlg.cpp: Fix missing <string.h> inclusion with
older system headers.
2008-08-11 Jim Huang <[email protected]>
* po/POTFILES.in,
po/POTFILES.skip: Translating the messages in source file
src/docklet/eggtrayicon.c is useless. Ignored.
* po/zh_TW.po, po/zh_CN.po: Re-generated.
2008-08-11 Jim Huang <[email protected]>
* src/mainframe.cpp (CMainFrame::OnPreference): It should be able to
work while hiding or showing tray icon immediately.
* src/generalprefpage.cpp (CGeneralPrefPage::CGeneralPrefPage):
Correct the brief description about tray icon switching.
* po/zh_TW.po, po/zh_CN.po: Likewise.
2008-08-11 Jim Huang <[email protected]>
* src/pcmanx_gtk2.cpp (main): Correctly hide tray icon according to
the settings.
2008-08-10 Shih-Yuan Lee (FourDollars) <[email protected]>
* Makefile.am: Fix the release problem of `./configure --enable-plugin`
after `make dist-bzip2`.
* Makefile.am,
plugin/Makefile.am,
plugin/data/Makefile.am,
plugin/src/Makefile.am: Fix the release problem of `./configure
--enable-plugin` after `make dist-bzip2`.
2008-08-09 Shih-Yuan Lee (FourDollars) <[email protected]>
* configure.ac: Bump to 0.3.8
* NEWS: Adjust 0.3.8 to August.
* po/POTFILES.in,
po/POTFILES.skip: Fix some error when make distcheck.
2008-08-08 Jim Huang <[email protected]>
* NEWS: updated to reflect recent changes.
2008-08-08 Jim Huang <[email protected]>
* configure.ac: Introduced gcc attribute supports: const, noreturn,
packed, and unused.
* src/emoticondlg.cpp (CEmoticonDlg::OnDown) (CEmoticonDlg::OnAdd)
(CEmoticonDlg::OnEdit) (CEmoticonDlg::OnRemove) (CEmoticonDlg::OnUp)
(CEmoticonDlg::SaveEmoticon) (CEmoticonDlg::OnListRowActivated),
src/core/termdata.cpp (CTermData::OnLineModified),
src/core/termview.cpp (on_key_pressed) (on_im_commit) (on_mouse_down)
(on_mouse_up) (on_mouse_move) (on_mouse_scroll)
(CTermView::OnBeforeDestroy) (CTermView::OnSetFocus)
(CTermView::OnKeyDown) (CTermView::OnTextInput)
(CTermView::DrawSpaceFillingChar) (CTermView::OnSize)
(CTermView::ExtendSelection) (CTermView::OnMouseMove)
(CTermView::OnMouseScroll) (CTermView::OnRButtonDown)
(CTermView::OnRButtonUp) (CTermView::OnKillFocus)
(CTermView::PreKeyDown) (CTermView::OnMButtonDown)
(CTermView::DoPasteFromClipboard) (CTermView::OnHyperlinkClicked),
src/core/view.cpp (on_expose) (on_configure) (on_focus_in)
(on_focus_out) (CView::OnSize) (CView::OnSetFocus)
(CView::OnKillFocus),
src/core/widget.cpp (on_create) (on_destroy),
src/editfavdlg.cpp (CEditFavDlg::OnAdd) (CEditFavDlg::OnEdit)
(CEditFavDlg::OnRemove) (CEditFavDlg::OnUp) (CEditFavDlg::OnDown)
(CEditFavDlg::OnRowActivated),
src/view/telnetcon.h (CDNSRequest),
src/view/telnetview.cpp (on_hyperlink_copy) (CTelnetView::PreKeyDown),
src/view/telnetcon.cpp (CTelnetCon::OnSocket)
(CTelnetCon::ProcessDNSQueue) (CTelnetCon::OnProcessDNSQueueExit),
src/mainframe.cpp (CMainFrame::OnTrayButton_Toggled)
(CMainFrame::OnTray_Popup) (CMainFrame::OnSize) (CMainFrame::OnNewCon)
(CMainFrame::OnQuit) (CMainFrame::OnFont) (CMainFrame::OnFontEn)
(CMainFrame::OnFullscreenMode) (CMainFrame::OnSimpleMode)
(CMainFrame::OnAbout) (CMainFrame::pasteFromClipboard)
(CMainFrame::OnCloseCon) (CMainFrame::OnCopy)
(CMainFrame::OnCopyWithColor) (CMainFrame::OnNextCon)
(CMainFrame::OnFirstCon) (CMainFrame::OnLastCon) (CMainFrame::OnPaste)
(CMainFrame::OnDownArticle) (CMainFrame::OnPreference)
(CMainFrame::OnPrevCon) (CMainFrame::OnSiteList)
(CMainFrame::OnNotebookChangeCurPage)
(CMainFrame::OnNotebookPopupMenu) (CMainFrame::CloseCon)
(CMainFrame::OnClose) (CMainFrame::OnAddToFavorites)
(CMainFrame::OnEditFavorites) (CMainFrame::OnSelectAll)
(CMainFrame::OnEmoticons) (CMainFrame::OnReconnect)
(CMainFrame::OnActivated) (CMainFrame::OnURLEntryKillFocus)
(CMainFrame::OnChangeCurrentBot) (CMainFrame::OnChangeAllBot),
src/dialog.cpp (CDialog::OnCommand),
src/sitelistdlg.cpp (CSiteListDlg::OnSearch) (CSiteListDlg::OnConnect)
(CSiteListDlg::OnClose) (CSiteListDlg::OnRowActivated)
(CSiteListDlg::OnKeywordActivate): Mark __attribute__(unused) in
parameters via "UNUSED" macro. Due to current mechanisms binding Gtk+
into C++ programs, the above methods show that the parameter passing
is somehow aweful, and it would be helpful if we are going to
eliminate the complexity.
* src/core/termdata.cpp (struct ReadStatus) (GetChangedAttrStr),
src/downarticledlg.cpp (CDownArticleDlg::DownArticleFunc),
src/core/termview.cpp (CTermView::CopyToClipboard),
src/pcmanx_gtk2.cpp (GOptionEntry entries[]) (main),
src/view/telnetcon.cpp (CTelnetCon::Close),
src/mainframe.cpp (CMainFrame::m_ActionEntries[]): Sweep
casting warnings.
2008-08-06 Jason Xia <[email protected]>
* src/core/termdata.cpp (CTermData::EraseLine): Fix a segmentation
fault when processing telnet escape sequence "*[1K".
2008-08-06 Jim Huang <[email protected]>
* po/zh_TW.po: updated to reflects recent changes about "Download
Article".
2008-08-04 Jason Xia <[email protected]>
* src/downarticledlg.cpp (CDownArticleDlg::DownArticleFunc)
src/core/termdata.cpp (CTermData::LineFeed): Fix "Download Article"
for PTT site.
2008-07-31 Jason Xia <[email protected]>
* src/downarticledlg.cpp (CDownArticleDlg::CDownArticleDlg)
(CDownArticleDlg::DownArticleFunc) (CDownArticleDlg::SaveAs): UI
tunings: rearrange button order, and others.
* po/zh_CN.po, po/zh_TW.po: Update translations.
2008-07-30 Jason Xia <[email protected]>
* src/downarticledlg.cpp (CDownArticleDlg::DownArticleFunc): Fix a
potential segmentation fault when conversion fails.
2008-07-30 Jason Xia <[email protected]>
* src/Makefile.am, src/downarticledlg.cpp, src/downarticledlg.h,
src/mainframe.cpp, src/mainframe.h, src/core/termdata.cpp,
src/core/termdata.h: Initial effort to implement the "Download
Article" feature.
* src/pcmanx_gtk2.cpp (main), src/mainframe.cpp
(CMainFrame::OnDestroy): Ensure Gdk thread safty.
* po/POTFILES.in, po/zh_CN.po, po/zh_TW.po: Update translations. Need
translations for the new messages in zh_TW locale.
2008-07-27 Jason Xia <[email protected]>
* plugin/src/plugin.cpp (NS_PluginInitialize) (NS_PluginShutdown)
(nsPluginInstance::init) (nsPluginInstance::shut): Wrong place for
initializing and cleaning up static members, which potentially leads
to segmentation fault when refreshing a telnet page.
2008-07-26 Jason Xia <[email protected]>
* configure.ac: Fix a compatibility bug introduced in r418 with
xulrunner older than 1.9. (mozilla plugin)
2008-07-25 Jason Xia <[email protected]>
* configure.ac, plugin/src/nsScriptablePeer.h: Add support for
xulrunner 1.9. (mozilla plugin)
2008-06-28 Jason Xia <[email protected]>
* src/appconfig.cpp (CAppConfig::DoDataExchange): Fix the bug of
nonpersistent "DetectDBChar" preference.
2008-06-19 Jason Xia <[email protected]>
* README: Add more detailed information for the configure option
--enable-iplookup.
2008-06-04 Jim Huang <[email protected]>
* src/core/fileutil.c (copyfile): Assign file mode argument passed to
open(2).
Added GPL license claim.
2008-04-18 Shih-Yuan Lee (FourDollars) <[email protected]>
* configure.ac: Make configure.ac simpler and clear.
2008-04-11 Shih-Yuan Lee (FourDollars) <[email protected]>
* src/mainframe.cpp,
src/mainframe.h: Polish the switch among normal/fullscreen/simple
mode.
2008-04-06 Jim Huang <[email protected]>
* src/mainframe.cpp (ui_info):
Added fullscreen switch in popup window.
Inspired by the idea of DreamerC <[email protected]>.
2008-04-05 Jason Xia <[email protected]>
* src/core/termdata.cpp (read_line): Fix the bug of missing the last
character of each line when copying multi-line contents.
2008-03-30 Jim Huang <[email protected]>
* configure.ac: Applied linker optimizations: prevent gaps between
symbols due to alignment constraints, presumably increasing
efficiency layout.
2008-03-28 Jim Huang <[email protected]>
* configure.ac: Reduce relocations in the libraries through extra
linker optimizations. This needs GNU ld >= 2.18 .
2008-03-23 Jim Huang <[email protected]>
* src/appconfig.h,
src/generalprefpage.h,
src/appconfig.cpp (CAppConfig::DoDataExchange)
(CAppConfig::SetToDefault),
src/generalprefpage.cpp (CGeneralPrefPage::CGeneralPrefPage): Properly
handled conditional USE_DOCKLET.
2008-03-23 Jim Huang <[email protected]>
* src/generalprefpage.cpp (CGeneralPrefPage::CGeneralPrefPage): Fixlet
to conditional USE_MOUSE.
2008-03-23 Jim Huang <[email protected]>
* src/emoticondlg.cpp: Fix gcc-4.3 build.
2008-03-23 Jim Huang <[email protected]>
* src/pcmanx_gtk2.cpp (main): Set env G_DEBUG=fatal_warnings to figure
out GObject runtime warnings while --enable-debug.
2008-03-23 Jim Huang <[email protected]>
* src/mainframe.cpp
(CMainFrame::OnShowHide) (CMainFrame::OnTray_Popup): clear way to wrap
conditional USE_DOCKLET implementations.
(char *ui_info): Refine menuitem/toolitem actions reflecting
conditional USE_DOCKLET and USE_WGET.
2008-03-17 Jim Huang <[email protected]>
* README: Reflected recent modifications.
2008-03-17 Jim Huang <[email protected]>
* src/core/termview.h (CopyToClipboard): Declared as virtual function.
Prepared for advanced text processing.
2008-03-17 Jim Huang <[email protected]>
* src/core/termdata.cpp,
src/core/termdata.h: Use dos2unix to remove CRLF.
2008-03-16 Jason Xia <[email protected]>
* src/core/termview.h, src/core/termview.cpp
(CTermView::ClearSelection): Add ClearSelection method (using the code
segment in OnLButtonDown).
* src/core/termview.cpp (CTermView::OnLButtonDown),
src/view/telnetview.cpp (CTelnetView::OnKeyDown): Make use of
ClearSelection.
* src/view/telnetview.cpp (CTelnetView::OnKeyDown): Only clear
selection if we handled the key event. (Fix the unusable hotkey Alt+O
for copy.)
2008-03-16 Jason Xia <[email protected]>
* src/core/pcmanx_utils.h, src/core/termview.cpp,
src/view/telnetview.cpp, src/view/telnetcon.cpp, src/mainframe.cpp,
src/notebook.cpp, src/sitelistdlg.cpp: Remove the obsolete INFO macro.
Rename INFO_ON to INFO. Remove unnecessary trailing new lines in DEBUG
and INFO messages.
2008-03-13 Jason Xia <[email protected]>
* src/core/termdata.cpp (CTermData::PutChar): Discard chars exceeding
the last column, rather than automatically insert a line feed. (Fix a
bug in the welcome page of bbs.zixia.net)
2008-03-13 Jason Xia <[email protected]>
* src/core/termdata.cpp (CTermData::EraseLine): Let EraseLine
propagate current attribute information till the end of the line. (Fix
a bug when showing some ascii arts)
2008-03-13 Jim Huang <[email protected]>
* po/zh_TW.po: Added translated item for "Show Main Window".
2008-03-09 Jason Xia <[email protected]>
* src/mainframe.cpp (CMainFrame::m_ToggleActionEntries): Add mnemonic
for "Show Main Window".
* po/zh_CN.po, po/zh_TW.po: Update. Add translation for "Show Main
Window" in zh_CN. (Need zh_TW translation)
2008-03-09 Jason Xia <[email protected]>
* src/mainframe.h, src/mainframe.cpp: Add a menu item to show/hide
main window. Add a popup menu for tray icon.
2008-03-01 Shih-Yuan Lee (FourDollars) <[email protected]>
* po/zh_CN.po,
po/zh_TW.po,
src/mainframe.cpp,
src/mainframe.h: Add a hotkey and a menu item for Simple Mode.
2008-02-21 Jason Xia <[email protected]>
* src/mainframe.cpp (CMainFrame::entries),
po/zh_CN.po, po/zh_TW.po:
Fix some small problems with CMainFrame::entries (mnemonics,
stock_ids, tooltips) and update translations.
2008-02-21 Jason Xia <[email protected]>
* src/mainframe.cpp (CMainFrame::entries) (ui_info): Remove duplicate
menu items while keeping the alternative accelerators. Remove Ctrl+W
due to conflict with BBS posting key combination.
2008-02-21 Jason Xia <[email protected]>
* src/mainframe.cpp (CMainFrame::MakeUI): Fix wrong mnemonic for menu
item "Connect/Jump to/Page 10".
2008-02-21 Jason Xia <[email protected]>
* src/mainframe.h, src/mainframe.cpp
(CMainFrame::m_JumpMenuItems) (CMainFrame::OnJumpToPage)
(CMainFrame::MakeUI): Fix unusable JumpToPage hotkeys(ALT+NUM) in
full-screen mode.
2008-02-20 Jim Huang <[email protected]>
* src/mainframe.h
(CMainFrame::OnFirstCon) (CMainFrame::OnLastCon): New member functions
as callbacks for first/last connections.
* src/mainframe.cpp
(CMainFrame::entries): Improve connection operations.
(MainFrame::OnFirstCon) (CMainFrame::OnLastCon): Likewise.
Taken from
http://into-wild.blogspot.com/2008/01/pcmanx-modification.html .
2008-02-16 Jim Huang <[email protected]>
* src/core/stringutil.h,
src/core/stringutil.cpp (strncmpi): Removed.
Replaced with strncasecmp. (confirming to POSIX.1-2001)
2008-02-16 Jim Huang <[email protected]>
* src/core/caret.cpp,
src/core/termdata.cpp,
src/core/caret.h,
src/core/stringutil.cpp,
src/core/site.cpp,
src/core/termdata.h,
src/core/font.cpp,
src/core/stringutil.h,
src/core/site.h: Use consistent GPL licensing terms.
2008-02-16 Jim Huang <[email protected]>
* src/qqwryseeker/qqwryseeker.c,
src/core/proxy.c,
src/core/proxy.h,
src/view/telnetcon.h,
src/view/telnetcon.cpp,
src/script/api.h,
src/script/script.cpp,
src/nancy_bot/msgdata.cpp,
src/nancy_bot/msgdata.h,
src/nancy_bot/botutil.h,
src/nancy_bot/nancybot.cpp: Use consistent GPL licensing terms.
2008-02-16 Jim Huang <[email protected]>
* src/conn_xpm.xpm,
src/pcmanx_inverse_xpm.xpm,
src/pcmanx_xpm.xpm: Added "const" modifier to turn off annoying
warnings.
2008-02-16 Jim Huang <[email protected]>
* Doxygen.in: Fixlet to PROJECT_NAME since we have renamed.
2008-02-16 Jim Huang <[email protected]>
* src/mainframe.cpp (CMainFrame::OnAbout): Mention Jason Xia.
* po/zh_TW.po,
po/zh_CN.po: Likewise.