-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathChangeLog
22941 lines (14538 loc) · 722 KB
/
ChangeLog
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
2025-02-11 Araki Ken <arakiken@users.sf.net>
* vt_shape.c: Fix drawing glyphs in incorrect position.
* doc/ja/README.*: Add "coding:euc-jp" to the header.
2025-02-09 Araki Ken <arakiken@users.sf.net>
* README, README.cocoa, README.indic: Updated.
* tool/mlconfig/po/*.po: Updated.
2025-02-08 Araki Ken <arakiken@users.sf.net>
* cocoatouch.m: Remove IBOutlet.
2025-02-07 Araki Ken <arakiken@users.sf.net>
* cocoatouch.m:
- Set self.window.rootViewController.
- Fix segfault in TextRange::dealloc.
* mlterm-Info.plist: Add 414x896 to UILaunchImages.
2025-02-01 Araki Ken <arakiken@users.sf.net>
* cocoatouch.m: Add cast.
2025-01-31 Araki Ken <arakiken@users.sf.net>
* ci.yml: Add build-ios.
2025-01-30 Araki Ken <arakiken@users.sf.net>
* prepare-gradle.sh: Add ocb_internal.cc instead of ocb.cc to CRYPTO_FILES
if the version of mosh is 1.4.0 or later.
* Android.mk: Add -DMOSH_VERSION=10302 to MOSH_INCLUDES if the version
of mosh is less than 1.4.0.
2025-01-29 Araki Ken <arakiken@users.sf.net>
* ci.yml: Build protobuf for not only armv7a but also x86.
2025-01-28 Araki Ken <arakiken@users.sf.net>
* ci.yml:
- Build libotf to build-android.
- mlterm-android/jni -> mlterm-android/app/src/main/jni
2025-01-26 Araki Ken <arakiken@users.sf.net>
* ci.yml: Build fribidi, freetype2, libressl and libssh2.
2025-01-25 Araki Ken <arakiken@users.sf.net>
* jni/main.c: Add "#include "main_loop.h"" for main_loop_{init|start}().
* jni/ui_event_source.c:
Add "#include "ui_screen_manager.h"" for ui_close_dead_screens().
* main_loop.c: Add --test option in debug mode.
* jni/ui_display.c, jni/ui_event_source.c, jni/main.c:
ALooper_pollAll (deprecated) -> ALooper_pollOnce
* prepare-gradle.sh: Add [plugin version] option.
* ui_event_source.c: Fix error in 1c823122018564c0fffa010abefaf0273914296d.
* vt_pty.h: Revive OPEN_PTY_ASYNC in win32.
2025-01-22 Araki Ken <arakiken@users.sf.net>
* ci.yml: Add "Upload artifacts" to build-android.
* build-ant.sh, build-gradle.sh: Execute "adb install" and "adb logcat"
only if "install" argument is specified.
* vt_transfer.c: Change the return value of dl_zmodem_cancel from QBOOL
to void.
2025-01-21 Araki Ken <arakiken@users.sf.net>
* Android.mk: JNI_PATH: src/main/jni/ -> $(LOCAL_PATH)/
2025-01-20 Araki Ken <arakiken@users.sf.net>
* AndroidManifest.xml: android:minSdkVersion: 9 -> 21
* build.gradle:
- minSdkVersion: 14 -> 21
- abiFilters: x86 -> x86_64
* AndroidManifest.xml, build.gradle: Remove package and add namespace.
* bl_path.c: Remove #include <sys/stat.h> if USE_WIN32API is defined.
2025-01-19 Araki Ken <arakiken@users.sf.net>
* vt_pty_mosh.cpp: Add const.
* ci.yml: build-msys2 -> build-msys2 and build-msys2-with-mosh
* ci.yml: Add --with-mosh in build-msys2.
* prepare-gradle.sh: Add --scan and --overwrite options to gradle.
* ci.yml:
- Add --with-mosh in build-linux.
- Add build-android.
2025-01-18 Araki Ken <arakiken@users.sf.net>
* ui_font_config.[ch], ui_screen.c, mlterm.[ch], vt_color.[ch],
vt_parser.h, java/MLTermPty.c: Add const.
* ci.yml: Build mlterm for java in build-linux.
* ci.yml: Search mt.exe in build-msys2.
2025-01-17 Araki Ken <arakiken@users.sf.net>
* ci.yml: Remove mingw-w64-ucrt-x86_64-llvm
2025-01-16 Araki Ken <arakiken@users.sf.net>
* ci.yml: Execute llvm-mt in build-msys2.
2025-01-15 Araki Ken <arakiken@users.sf.net>
* ci.yml: Add macos-13 to build-macos.
2025-01-14 Araki Ken <arakiken@users.sf.net>
* ci.yml: Add "rm tool/mlconfig/po/Makefile" to build-macosx to avoid
compiling error.
2025-01-13 Araki Ken <arakiken@users.sf.net>
* configure.in: mkdir -p ${MAKE_DIRS} -> (cd encodefilter; mkdir -p ${MAKE_DIRS})
* ci.yml: Add "Upload artifacts" to build-macos.
* ci.yml: Add "Upload artifacts" to build-msys2.
* vte.c: vt_term_destroy() -> vt_destroy_term() to remove a zombie term
in a terms list of vt_term_manager.
* vt_term_manager.c:
Don't execute "terms[idx * MTU + count] = terms[--num_terms]"
if zombie_pty is 1.
(Revert 8f0bffe45c7db21d9af32bf696d57c9e47e6de0c commit)
* vt_term.h: Add vt_term_is_zombie().
2025-01-12 Araki Ken <arakiken@users.sf.net>
* vte.c: Add type casting between pid_t (== integer) and
GPid (== HANDLE in win32)
* vte_win32.c: Add type casting to suppress compiling error.
* bl_map.c, bl_path.c, c_imagelib.c, data_entry_radio.c,
ef_xct_conv.c, im_kbd.c, vterm.c, mc_io_file.c,
beos/ui_imagelib.c, console/ui_imagelib.c,
fb/ui_font.c, fb/ui_imagelib.c, quartz/ui_imagelib.c,
ui_picture.c, win32/ui_imagelib.c, vt_char_encoding.c,
vt_parser.c:
Add "#include <strings.h>" for strcasecmp.
(https://github.com/arakiken/mlterm/issues/129)
* ci.yml: Add "(cd gtk && make && make install)" to build-netbsd,
build-freebsd and build-msys2 targets.
2025-01-11 Araki Ken <arakiken@users.sf.net>
* ui_sample_sb_view_lib_win32.c:
Add type casting to suppress compiling errors.
* win32/ui_font.c, ui_screen.c, win32/ui.h, win32/ui_dnd.c,
beos/ui_font.c, win32/ui_imagelib.c:
Add type casting to suppress compiling errors.
* win32/ui_connect.c, win32/ui_selection_encoding.c,
win32/ui_window.c, libptyssh/vt_pty_ssh.c:
Add type casting to suppress compiling errors.
2025-01-07 Araki Ken <arakiken@users.sf.net>
* ui_picture.c, win32/ui_window.c, vt_term.c: Add type casting from
uintptr_t to HANDLE for the return value of _beginthreadex.
* libptyssh/vt_pty_ssh.c: Add type casting from vt_pty_t* to vt_pty_ssh_t*
in calling scp_stop().
* libptyssh/vt_pty_ssh.c: Add type casting from uintptr_t to HANDLE for
the return value of _beginthreadex.
* libptyssh/vt_pty_ssh.c: Add const.
* win32/ui_display.c: Change the type of 'timerid' argument of
timer_proc() from UINT to UINT_PTR.
* zmodem.c: Fix implicit declaration of function 'dirname' in win32.
* bl_def.h: Fix SSIZE_MAX macro.
(https://github.com/arakiken/mlterm/issues/128)
* vt_pty_win32.c: Add const to write_to_pty().
* vt_config_menu.c: Change the type of write_len in vt_config_menu_write()
from ssize_t to DWORD if USE_WIN32API is defined.
* ci.yml: Add build-msys2.
2025-01-05 Araki Ken <arakiken@users.sf.net>
* gtk/vte_win32.c: "mlterm" -> L"mlterm" if UTF16_IME_CHAR is defined.
* vt_parser.c: Fix https://github.com/arakiken/mlterm/issues/127
* ui_emoji.c: Fix segfault in win32.
* ci.yml: Remove -Wno-error=incompatible-pointer-types-discards-qualifiers
from CFLAGS in freebsd.
* bl_path.h: Fix bl_basename_simple().
(enbugged at a3dc30011fdab2d102b1b4ba17dbd88f90c504a1)
2025-01-04 Araki Ken <arakiken@users.sf.net>
* vt_term_manager.c: Excecute "terms[idx * MTU + count] = terms[--num_terms]"
not only if zombie_pty is 0 but also if zombie_pty is 1.
(enbugged at 5696c69e9ffaec38884b2d16574d97df873af47d)
* ui_im_status_screen.c: Add const.
* c_sixel.c: Add cast from pixel_t* to u_char** in TEST_sixel_realloc_pixels().
2025-01-03 Araki Ken <arakiken@users.sf.net>
* ui_window.[ch]:
- Fix illegal memory access by ui_window_set_icon().
(u_int32_t -> u_long)
(enbugged at 3d38b723e0e4a6dd434af2d49aca53890982a828)
- Execute initialization code for a root window in ui_window_show()
even if --parent option is specified.
(Related to https://github.com/arakiken/mlterm/issues/118)
- Add HINT_CHILD_WINDOW_ATTR for libvte compatible libraray.
2025-01-02 Araki Ken <arakiken@users.sf.net>
* ci.yml: Add build-freebsd.
* fb/ui_display_freebsd.c: Fix conflict of vt_font in FreeBSD 13 or later.
* cocoa.m, ui_screen.c, ui_window.h: Add const.
* quartz/ui_scrollbar.c, ui_layout.c: Add const.
* ui_color.h, */ui_color.c, cocoa.m, ui_bel_mode.[ch],
ui_color_cache.[ch], ui_color_manager.[ch], ui_layout.c,
ui_mod_meta_mode.[ch], ui_sb_mode.[ch], ui_screen.[ch],
ui_scrollbar.[ch], ui_type_engine.[ch], ui_im_status_screen.c,
ui_window.h, vt_char_encoding.[ch], vt_ot_layout.[ch],
vt_parser.[ch], vt_pty.[ch], vt_term.[ch]: Add const.
* quartz/ui_im_status_screen-cocoa.m, im_wnn.c: Add const.
* im_ibus.c, im_common.h, skk/ef_str_parser.c, gtkxlfdsel.[ch],
mc_combo.[ch], mc_im.c, mc_opentype.c, fb/ui_font.c, ui_brltty.c,
ui_copymode.[ch], ui_im.h, ui_im_candidate_screen.[ch],
ui_im_status_screen.[ch], ui_screen.c, libptyssh/vt_pty_ssh.c,
vt_str_parser.c: Add const.
* vte.c, ui_screen.c, vt_screen.c: Disable searching functions of vte while
"OSC 5379 search_next", "OSC 5379 search_prev" or searching in copy mode
is activated.
* encodefilter/ef_*_parser.[ch]: Add const to the 2nd argument of *_set_str().
* bl_path.[ch]: Add bl_basename_simple()
2024-12-08 Araki Ken <arakiken@users.sf.net>
* vte.c: Add vte 0.76 and 0.78 apis.
2024-11-11 SATOH Fumiyasu <fumiyas@osstech.co.jp>
* tool/mlconfig/main.c: Save trim_trailing_newline_in_pasting and broadcast flags
2024-11-02 Araki Ken <arakiken@users.sf.net>
* configure.in, baselib/configure.in:
Remove AC_RUN_IFELSE() checking if posix_openpt() works.
(https://github.com/arakiken/mlterm/issues/113)
2024-10-19 Araki Ken <arakiken@users.sf.net>
* configure.in: Show $UTMP_NAME instead of $utmp for "utmp support" message.
* libind/libind_lex.split.c -> lex.split.c
2024-09-29 Araki Ken <arakiken@users.sf.net>
* cocoa.m: window_dealloc() calls [window close] instead of [window release].
2024-09-08 Araki Ken <arakiken@users.sf.net>
* im_fcitx.c:
- Add declaration of fcitx_client_{enable|close}_ic().
- Undefine USE_IM_CANDIDATE_SCREEN in wayland.
- event->keycode - 8 -> event->keycode
- print_candate -> print_candidate
* wayland/ui_display.c: Set ev.keycode to 'key + 8' instead of 0
in keyboard_key().
* ui_draw_str.c: Add 'int draw_bg' to arguments of draw_picture().
* vt_parser.c: show_picture() calls interrupt_vt100_cmd() if
vt_screen_line_feed() returns 2.
* vt_edit.c: vt_edit_go_downward() returns 2 if screen scrolling occurs.
2024-08-17 Araki Ken <arakiken@users.sf.net>
* configure.in, tool/mlconfig/Makefile.in: Set X_LIBS_FOR_MLCONFIG
if the version of gtk+ is 2.x to build gtkxlfdsel.c.
2024-08-16 Araki Ken <arakiken@users.sf.net>
* Merge https://github.com/arakiken/mlterm/issues/107
2024-08-14 Araki Ken <arakiken@users.sf.net>
* registobmp/main.c, vte.c, wayland/ui_display.c:
Fix errors in -Werror=incompatible-pointer-types.
2024-08-13 Araki Ken <arakiken@users.sf.net>
* im_canna.c: Fix "pointer type mismatch in conditional expression" error.
(https://github.com/arakiken/mlterm/issues/92#issuecomment-2282176739)
* vt_parser.c: Make Pcmh and Pcss of DECDLD omittable.
* vtetypebuiltins.c, reaper.c: Fix errors in -Werror=incompatible-pointer-types.
2024-08-12 Araki Ken <arakiken@users.sf.net>
* ui_im_status_screen-cocoa.m: Fix errors in -Werror=incompatible-pointer-types.
* cocoa.m, cocoatouch.m: Fix errors in -Werror=incompatible-pointer-types.
* im_canna.c, quartz/ui_imagelib.c: Fix errors in -Werror=incompatible-pointer-types.
* im_wnn.c, quartz/ui_font.c: Fix errors in -Werror=incompatible-pointer-types.
* ci.yml: Add -Wno-incompatible-pointer-types-discards-qualifiers option
in MacOS.
* wnnlib.c: Fix errors in -Werror=incompatible-pointer-types.
2024-08-11 Araki Ken <arakiken@users.sf.net>
* Fix errors in -Werror=incompatible-pointer-types.
2024-08-05 Araki Ken <arakiken@users.sf.net>
* Support -Werror=incompatible-pointer-types option of gcc.
2024-07-27 Araki Ken <arakiken@users.sf.net>
* README, doc/ja/README.ja: Updated.
* uitoolkit/ui_copymode.c: Replace the first character of input text
by '/' or '?' in starting the copy mode every time.
* configure.in: Check libpng if gdk-pixbuf is not found.
* tool/mlimgloader/libpng.c, stb_image_resize2.h: Added.
2024-05-07 Araki Ken <arakiken@users.sf.net>
* xlib/ui_imagelib.c: Remove 'disp->depth < 8' in load_sixel().
2024-05-06 Araki Ken <arakiken@users.sf.net>
* xlib/ui_imagelib.c: load_sixel() supports less than 8 depth.
(https://github.com/arakiken/mlterm/issues/93)
2024-05-05 Araki Ken <arakiken@users.sf.net>
* vte.c:
- Add vte_terminal_{get|set}_font_options(),
vte_terminal_get_text_selected{_full}(), vte_terminal_get_text_range_format()
and vte_terminal_check_{match|hyperlink|regex_array|regex_simple}_at().
- vte_terminal_paste_clipboard() pastes text from clipboard instead of
primary selection.
- Emit "selection-changed" signal in vte-0.18.x or before.
* vtetypebuiltins.c: Support vte 0.16.14 or before.
2024-05-03 Araki Ken <arakiken@users.sf.net>
* libind/Makefile.in: Remove %.
(https://github.com/arakiken/mlterm/issues/88)
* Rename tables files in libind from *.c to libind_*.c.
2024-02-26 Araki Ken <arakiken@users.sf.net>
* c_imagelib.c: Fix compiling error.
2024-02-24 Araki Ken <arakiken@users.sf.net>
* cocoa.[hm], cocoatouch.m:
Add hasAlpha to arguments of MLTermView::copyArea and view_copy_area().
If hasAlpha is true, call CGCOntextSetBlendMode(kCGBlendModeNormal).
* quartz/ui_window.c:
ui_window_copy_area() calls view_copy_area() with hasAlpha=1 if mask is not NULL.
* encodefilter/module/Makefile.in, configure.in:
Link ../src/libmef.la to libmef_XXXX.la instead of @EF_CHARA_LO@.
* MLTermPty.java: Load MLTermPty.dll from ~/.mlterm/java all the time.
2024-02-17 Araki Ken <arakiken@users.sf.net>
* vt_parser.c:
- Support U+FE0E and U+FE0F.
- Make the 1st U+1F1E6 - U+1F1FF (regional indicator symbol letter a-z) char
fullwidth and combine the 2nd char to the 1st.
- Make U+1F3FB - U+1F3FF (emoji modifier fitzpatric type 1-6) char zerowidth.
* vt_screen.[ch]: Add vt_screen_unhighlight_cursor().
* vt_char.[ch]:
Add vt_char_set_{fullwidth|zerowidth}() and vt_char_unset_picture().
2024-02-05 Araki Ken <arakiken@users.sf.net>
* vt_ot_layout.c: Skip pictures in layouting characters in vt_ot_layout().
* Fix pull request #83.
- Add "use_locked_title" to OSC 5379-5383.
- --locktitle/use_locked_title option ignores not only OSC 0 and 2
(changing a window title) but also OSC 1 (changing an icon title).
2024-02-03 Araki Ken <arakiken@users.sf.net>
* ui_draw_str.c: draw_picture() doesn't clear the background
if ui_inline_picture_t::transparent is 1.
* ui_virtual_kbd.c, ui_sb_view.h, pixmap_engine.c: Fix with the modification
of ui_imagelib_load_file().
* vt_parser.[ch], ui_screen.c, ui_screen_manager.c, vterm.c:
Add 'transparent' to vt_xterm_event_listener_t::get_picture_data().
* ui_picture.[ch]: Add 'transparent' to ui_inline_picture_t.
* ui_imagelib.h, */ui_imagelib.c: Add 'transparent' to arguments of
ui_imagelib_load_file().
* c_sixel.c: load_sixel_from_{data|file}() check whether P2 is 1 or not
and return it by 'transparent' argument.
2024-01-08 Araki Ken <arakiken@users.sf.net>
* README, man/mlterm.1, README.ja: Updated.
* im_kbd.c: Add ":hide" option which hides the status window.
2024-01-08 Araki Ken <arakiken@users.sf.net>
* man/mlterm.1, README.ja, PROTOCOL: Updated.
* ui_screen.[ch]: Add ui_set_mod_keys_to_stop_mouse_report().
* ui_main_config.c: Add --norepkey/mod_keys_to_stop_mouse_report.
2024-01-07 Araki Ken <arakiken@users.sf.net>
* libind/Makefile.in: Suffix rule .o.la -> libind_%.la: %.o
2024-01-03 Araki Ken <arakiken@users.sf.net>
* ui_xic.c: Add 'spot' to ui_xic_t to decrease the number of informing
the cursor position for XIM preedit by XSetICValues().
* etc/termcap: Change the default value of "xterm" entry from "ut" to "kb=^H:ut".
2024-01-02 Araki Ken <arakiken@users.sf.net>
* mc_im.c: Remove duplicated elements in "Option" of "Input Method" area.
2024-01-01 Araki Ken <arakiken@users.sf.net>
* gtk/README: Updated.
2023-12-31 Araki Ken <arakiken@users.sf.net>
* vt_pty_ssh.c: Set LIBSSH2_CALLBACK_AUTHAGENT callback function to enable
agent forwarding.
* vt_pty_win32.c: Fix compiling error.
2023-12-30 Araki Ken <arakiken@users.sf.net>
* ui_screen.c: Scroll alternate screen buffer by wheel mouse.
* vt_parser.c: 3 (permanently set) is returned to DECRQM for DEC private mode 1007.
* vt_term.h: Add vt_term_is_alternate_edit().
2023-12-03 Araki Ken <arakiken@users.sf.net>
* man/mlterm.1, README.ja: Updated.
* vt_line_bidi.c, vt_bidi.c: Fix segfault in receiving unexpected
arabic shaping characters.
2023-11-25 Araki Ken <arakiken@users.sf.net>
* doc/en/README.win32, doc/ja/README.win32: Updated.
* im_kbd.c: Add "es" and "pt" to kbd_type_tbl.
2023-11-21 Araki Ken <arakiken@users.sf.net>
* ui_main_config.c: Add --winsize / output_xtwinops_in_resizing option.
* vt_pty.h, vt_pty_win32.c:
- vt_set_use_conpty() -> vt_pty_win32_set_options()
- Remove hack to send resizing info to plink.
* win32/plink: Removed.
* vte.c: vte_terminal_set_font_from_string() updates
ui_screen_t::width and ui_screen_t::height.
2023-11-12 Araki Ken <arakiken@users.sf.net>
* README, README.ja, man/mlterm.1: Updated.
* configure.in: Drop --disable-conpty.
* vte.c:
- vte_terminal_fork_command() uses main_config.cmd_path and
main_config.cmd_argv if command argument is NULL.
- atexit(vt_term_manager_final) in win32 to terminate all child processes.
* ui_main_config.c: Add --conpty / use_conpty option.
* vt_pty.h, vt_pty_win32.c:
- Both ConPTY and pipe can coexist to communicate with a child process.
- Add vt_set_use_conpty().
- pty_open() -> conpty_open() and pipe_open()
2023-11-05 Araki Ken <arakiken@users.sf.net>
* configure.in, gtk/Makefile.in: Add SSH2_LIBS_FOR_VTE.
2023-11-04 Araki Ken <arakiken@users.sf.net>
* fb/ui_font.c: Fix compiling error in ui_font_set_dpi_for_fc().
* README, RAEDME.ja: Updated.
* configure.in: Add --disable-conpty.
* vte.c: #define CONFIG_PATH "." in win32.
* win32/ui_font.c:
Fix calculation of font width if use_point_size option is true.
2023-11-03 Araki Ken <arakiken@users.sf.net>
* configure.in: Add -limagehlp to GTK_LIBS in win32.
* gtk/Makefile.in:
- Add @REGEX_LIBS@ to LIBS.
- Add @NO_UNDEFINED_FLAG@ in linking libvte-*.so.
* vte_win32.c: Added.
* vte.c, win32/ui_display.c: Fix to support libvte compatible library in win32.
* vt_term_manager.c: Call vt_term_parse_vt100_sequence() before
vt_term_zombie() because some bytes might be pending.
* ui_font.h:
#define ui_font_set_dpi_for_fc() (0) in platforms except xlib and wayland.
* ui_imagelib.h:
#define ui_imagelib_pixbuf_to_pixmap() (None) in platforms except xlib.
* win32/ui_font.c: Fix conversion from point size to pixel size.
* vt_term_manager.c:
- terms and num_terms variables are not updated if zombie_pty is enabled.
- Call ClosePseudoConsole() before CloseHandle(pipe) to avoid dead lock.
2023-10-15 Araki Ken <arakiken@users.sf.net>
* man/mlterm.1, README.ja, doc/{en,ja}/README.win32: Updated.
* configure.in, Makefile.in: Check CreatePseudoConsole() function and
add -DUSE_CONPTY to @PTY_CFLAGS@ if it exists.
* vt_pty.c: vt_pty_win32 and vt_pty_{ssh|mosh}.c coexist.
* vt_pty_win32.c:
- Rename from vt_pty_pipewin32.c to vt_pty_win32.c.
- Support ConPTY whic is enabled if USE_CONPTY macro is defined.
- Add vt_pty_win32_set_pty_read_trigger().
* uitoolkit/ui_main_config.c, ui_screen_manager.c, vt_term.[ch]:
--slp/start_with_local_pty option is available in win32.
2023-09-18 Araki Ken <arakiken@users.sf.net>
* ui_screen.c: "exesel:" works in win32.
* ui_main_config.c: --chsel/change_selection_immediately option is
not available in xlib and wayland.
* sdl2/ui_window.c: Fix for clipboard in SDL2.
* sdl2/ui_display.c:
- Shift+Control+xxx works in SDL2.
- Process SDL_CLIPBOARDUPDATE event.
* ui_window.h: Add SEL_NONE to ui_selection_flag_t.
2023-09-16 Araki Ken <arakiken@users.sf.net>
* README.ja, man/mlterm.1: Updated.
* ui_main_config.c: -P/--mouse/use_mouse_selection option is dropped
and --chsel/change_selection_immediately option is added.
* ui_screen.[ch]: ui_set_use_mouse_selection() is removed.
* ui_selection.[ch]: ui_set_change_selection_immediately() is added.
* ui_display_freebsd.c: Control+0x20..0x3f is processed correctly.
2023-09-13 Araki Ken <arakiken@users.sf.net>
* README.ja, man/mlterm.1: Updated.
* ui_main_config.c: -P/--mouse/use_mouse_selection option is added.
* ui_screen.[ch]: ui_set_use_mouse_selection() is added.
* ui_shortcut.[ch], ui_screen.c: INSERT_CLIPBOARD and COPY_CLIPBOARD are
available in platforms except xlib and wayland.
* ef_ucs_property.table: Updated to Unicode 15.1.0 (UnicodeData.txt and
EastAsianWidth.txt)
* ucs_property.pl: Change of the format of EastAsianWidth.txt between
15.0.0 and 15.1.0 is supported.
2023-09-12 Araki Ken <arakiken@users.sf.net>
* fb/ui_window.c: ui_display_clear_clipboard() is called only if
USE_WAYLAND is defined.
* ui_screen.c: ui_shortcut_match(COPY_CLIPBOARD) is called only if
USE_XLIB or USE_WAYLAND is defined.
* beos/ui_window.c, console/ui_window.c, quartz/ui_window.c:
Compiling error is fixed.
2023-09-12 Araki Ken <arakiken@users.sf.net>
* doc/en/PROTOCOL, doc/ja/README.ja, man/mlterm.1, etc/main,
etc/main.ja, etc/key: Updated.
* rescanproto.sh: primary-selection-unstable-v1.xml is parsed.
* ui_shortcut.[ch]; COPY_CLIPBOARD is added.
* tool/mlconfig/main.c, mc_flags.[ch], mc_io_file.c:
use_clipboard option is removed.
* ui_main_config.c: use_clipboard option is removed.
* ui_window.h, */ui_window.c, ui_screen.c:
- ui_selection_flag_t is added to arguments of ui_window_set_selection_owner(),
ui_window_is_selection_owner(), ui_window_{xct|utf}_selection_request().
- ui_set_use_clipboard_selection() and ui_is_using_clipboard_selection()
are removed.
* wayland/ui_display.[ch]: ui_display_{own|clear}_clipboard() and
ui_display_request_text_clipboard() are added.
* xlib/ui_display.[ch]: ui_display_{own|clear}_clipboard() are added.
* wayland/ui_display.c, primary-selection-unstable-v1.[ch]:
wp-primary-selection protocol is supported.
* xdg-decoration-unstable-v1-client-protocol.c,
xdg-shell-client-protocol.[ch],
xdg-shell-unstable-v6-client-protocol.c: Updated.
* ui_selection.h: ui_sel_type_t -> ui_sel_mode_t
2023-08-30 Araki Ken <arakiken@users.sf.net>
* tool/main.c: --geometry and --display options are ignored in gtk4.
2023-08-14 Araki Ken <arakiken@users.sf.net>
* vt_char.c: CHARSET macro is enclosed by () to be expanded
properly in 'if (IS_COMB_TRAILING(attr) && CHARSET(attr) == PICTURE_CHARSET)'
in vt_get_picture_char().
VTFONT macro is also fixed.
(https://github.com/arakiken/mlterm/issues/78)
* libctl/vt_line_bidi.c: Incorrect uncombining arabic characters is checked.
2023-08-11 Araki Ken <arakiken@users.sf.net>
* ui.c: ASCII symbols and signs are added to keysym_table.
2023-07-29 Araki Ken <arakiken@users.sf.net>
* ui_screen.c: convert_char_index_to_x() never returns minus value.
2023-06-11 Araki Ken <arakiken@users.sf.net>
* configure.in, README, README.ja: Additional information of
--with-tools option about mlimgloader is added.
2023-06-04 Araki Ken <arakiken@users.sf.net>
* libctl/vt_line_bidi.c: The way of redrawing arabic glyphs is improved.
(https://github.com/arakiken/mlterm/issues/52#issuecomment-1565464016)
2023-06-03 Araki Ken <arakiken@users.sf.net>
* doc/en/README.fb, doc/ja/README.fb, ReleaseNote: Updated.
* configure.in: If multiple values separated by comma is specified to
--with-gui option of ./configure, all tools are built regardless of
whether they actually work in each gui.
(https://github.com/arakiken/mlterm/issues/73)
* tool/accessories/applyfontcfg.sh: Added.
(https://github.com/arakiken/mlterm/issues/71)
2023-05-21 Araki Ken <arakiken@users.sf.net>
* ui_copymode.[ch], ui_screen.c:
Pressing '?' in copy mode searchs for a string backward.
(https://github.com/arakiken/mlterm/issues/72)
* tool/accessories/applycfg.sh: Added.
(https://github.com/arakiken/mlterm/issues/71)
2023-05-20 Araki Ken <arakiken@users.sf.net>
* Makefile.in: Error in installing libzmodem.la is fixed.
* libctl/vt_bidi.[ch], vt_line_bidi.c: Arabic characters are redrawn
entirely during being edited.
2023-05-07 Araki Ken <arakiken@users.sf.net>
* configure.in: --disable-image option disables mlimgloader.
2023-05-06 Araki Ken <arakiken@users.sf.net>
* ui_window_cairo.c: -Wint-conversion warning is fixed.
(https://github.com/arakiken/mlterm/issues/67)
* ui_brltty.h: ui_brltty_key() -> ui_brltty_speak_key()
2023-04-02 Araki Ken <arakiken@users.sf.net>
* sdl2/ui.h: Compiling error in win32 is fixed.
* version.h: 3.9.3 -> 3.9.3post
2023-04-01 Araki Ken <arakiken@users.sf.net>
* 3.9.3 released.
(tag "3.9.3")
* configure.in, mlterm.spec, main/version.h.in,
mlterm.c, android/jni/version.h, vt_parser.c:
updated for 3.9.3.
2023-03-23 Araki Ken <arakiken@users.sf.net>
* cocoa.m: Unexpected scrolling by scrollbar is fixed.
2023-03-21 Araki Ken <arakiken@users.sf.net>
* quartz/ui_sb_view_factory.c: ui_sb_view_set_dpr() is added.
* ui_sb_view_factory.[ch], ui_main_config.c:
ui_simple_scrollbar_set_dpr() -> ui_sb_view_set_dpr()
* README.ja, mlterm.1: Updated and fix typo.
2023-03-20 Araki Ken <arakiken@users.sf.net>
* im_kbd.c: im_kbd_new() returns NULL if kbd layout except arabic and
hebrew is requested.
* ui_screen.c:
- button_motion() ignores Button2Mask, Button4Mask - Button7Mask in
selecting region.
(https://github.com/arakiken/mlterm/issues/53)
- Not only pointer_motion() but button_motion() and button_pressed()
call show_pointer().
2023-03-18 Araki Ken <arakiken@users.sf.net>
* man/mlterm.1, README.ja, etc/main, etc/main.ja: Updated.
* ui_sb_factory.[ch]: ui_simple_scrollbar_set_dpr() is added.
* ui_main_config.c: --sdpr / simple_scrollbar_dpr option is added.
* motif_data.h, mozmodern_data.h, next_data.h, ui_arrow_data.h:
Fix up the appearance.
2023-03-12 Araki Ken <arakiken@users.sf.net>
* ui_display_linux.c:
- 'ent.kb_value == K_ALTGR' is checked instead of 'ev.code == KEY_RIGHTALT'.
- Other minor fixes.
2023-02-26 Araki Ken <arakiken@users.sf.net>
* cocoa.m: MLTermView::update always calls [self setNeedsDisplay:YES].
* ui_screen.c: 'volatile' is added to suppress unexpected optimization
by clang 5.1.
2023-02-26 Araki Ken <arakiken@users.sf.net>
* vt_term_manager.c: vt_get_detached_term() checks if vt_term_get_master_fd() >= 0.
(terminator 2.1.2 segfault in exiting pty without this fix.)
2023-02-25 Araki Ken <arakiken@users.sf.net>
* doc/en/README.*, doc/ja/README.*, gtk/README, etc/main, etc/main.ja,
man/mlterm.1: Updated.
2023-02-23 Araki Ken <arakiken@users.sf.net>
* README: Updated.
* config.sub, config.guess: Updated.
* xdg-shell-unstable-v6-client-protocol.[ch],
xdg-decoration-unstable-v1-client-protocol.[ch]: Updated.
2023-02-20 Araki Ken <arakiken@users.sf.net>
* README: Updated.
* vt_pty_mosh.cpp:
USE_TCP_RECV_FROM_SERVER (mosh-1.4.0 sixel-winsock branch) is defined.
2023-02-19 Araki Ken <arakiken@users.sf.net>
* MLTerm.java, MLTermPty.java:
'int ch' is added to MLTermPty.writeModifiedKey().
* MLTermPty.c: 'jint ch' is added to arguments of
Java_mlterm_MLTermPty_nativeWriteModifiedKey().
2023-02-18 Araki Ken <arakiken@users.sf.net>
* vterm.c: VTERM_CHECK_VERSION2 macro is added.
2023-02-13 Araki Ken <arakiken@users.sf.net>
* vterm.c:
- vterm_output_set_callback() is added.
- Garbage in resizing window is fixed.
2023-02-11 Araki Ken <arakiken@users.sf.net>
* vt_pty_mosh.cpp: wstring -> std:wstring, min -> std:min
* configure.in, libptymosh/Makefile.in, terminaldisplayinit.cc:
mosh-1.4.0 is supported.
2023-01-29 Araki Ken <arakiken@users.sf.net>
* xlib/ui_font.c: int parse_xfont_name() -> void parse_xfont_name()
* README.android, README.mosh: Updated.
* prepare-gradle.sh: Help message to build with mosh is added.
* ef_ucs_property.table: Updated to Unicode 15.0.0 (UnicodeData.txt and
EastAsianWidth.txt)
2023-01-28 Araki Ken <arakiken@users.sf.net>
* README.android: Updated.
* android/jni/ui.h: Compiling error of XStringToKeysym() is fixed.
* README.mosh, README.wayland: Updated.
* uitoolkit/wayland/rescanproto.sh: Added.
2023-01-22 Araki Ken <arakiken@users.sf.net>
* tool/mlconfig/Makefile.in: If po/Makefile doesn't exist, make is not
executed in po/.
* configure.in: If $MSGFMT is "no", tool/mlconfig/po/Makefile is not output.
2023-01-21 Araki Ken <arakiken@users.sf.net>
* encodefilter/src/dexport-sun.map: Added.
2023-01-14 Araki Ken <arakiken@users.sf.net>
* ui_screen.c: bidi_mode=switch is available.
2023-01-14 Araki Ken <arakiken@users.sf.net>
* ui_screen.c, vt_term.c:
use_dynamic_comb option is disabled if use_ot_layout option is
enabled or UCS4 -> ISCII conversion occurs.
* configure.in: If libm.so is found, for loop exits immediately.
2022-12-24 Araki Ken <arakiken@users.sf.net>
* encodefilter/configure.in, baselib/configure.in:
3 configure.in files are itegrated to one file.
2022-11-19 Araki Ken <arakiken@users.sf.net>
* bl_map.h, pixmap_engine.c, */ui.h, ui_im.[ch], ui_sb_view.h,
ui_screen.c: Fix incompatible function pointer types which
becomes fatal with clang 16.
2022-11-09 Araki Ken <arakiken@users.sf.net>
* cocoa/install.sh, cocoa/install-sdl2.sh:
mkdir -p $HOME/mlterm(-sdl2).app/Contents/MacOS in advance.
2022-11-05 Araki Ken <arakiken@users.sf.net>
* aclocal.m4: Update to automake-1.16.5 and libtool-2.4.7.
* ltmain.sh, install-sh, missing: Updated.
2022-10-30 Araki Ken <arakiken@users.sf.net>
* config.sub, config.guess: Updated.
* encodefilter/configure.in: POBL_LIBS is never "".
2022-08-16 Araki Ken <arakiken@users.sf.net>
* c_imagelib.c: Fix buffer over-read.
(https://twitter.com/isaki68k/status/1555895011991883783)
* vte.c: Fix https://github.com/arakiken/mlterm/pull/49.
2022-07-16 Araki Ken <arakiken@users.sf.net>
* wayland/ui_display.c, uitoolkit/Makefile.in:
- xdg-decoration is removed if COMPAT_LIBVTE is defined.
- vte_terminal_paste_text() is added.
2022-07-13 Araki Ken <arakiken@users.sf.net>
* libptyssh/vt_pty_ssh.c, libptymosh/vt_pty_mosh.cpp:
_socketpair(..., SOCKET*) -> _socketpair(..., int*) for 64-bit
windows.
* vt_config_menu.c: The 1st argument of CreateProcess() is changed
from cmd_path (which causes failure in windows 11) to NULL.
2022-07-10 Araki Ken <arakiken@users.sf.net>
* ui_screen_manager.c, vt_pty_pipewin32.c:
Compiling error in win32 without libssh2 is fixed.