forked from wanderlust/wanderlust
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog.1
1338 lines (781 loc) · 35.7 KB
/
ChangeLog.1
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
2020-08-20 Kazuhiro Ito <[email protected]>
Change non-ASCII text files's coding-system to UTF-8
* BUGS.ja: Likewise.
* INSTALL.ja: Likewise.
* NEWS.ja: Likewise.
* README.ja: Likewise.
* WL-MK: Likewise.
* doc/TODO.ja: Likewise.
* etc/ChangeLog.1.ja: Likewise.
* etc/ChangeLog.2: Likewise.
* etc/ChangeLog.2.ja: Likewise.
* etc/ChangeLog.3.ja: Likewise.
* etc/ja.Emacs: Likewise.
* samples/ja/dot.addresses: Likewise.
* samples/ja/dot.folders: Likewise.
* samples/ja/dot.wl: Likewise.
2020-08-05 Naoya Yamashita <[email protected]>
Fix closing parens position (cosmetic change only).
Cf. https://github.com/wanderlust/wanderlust/pull/180
2020-07-16 Kazuhiro Ito <[email protected]>
* doc/wl-ja.texi (Score File Format): Use @multitable for table.
Do not use MULTIPLICATION SIGN directly.
* doc/wl.texi (Score File Format): Use @multitable for table.
2020-07-15 Kazuhiro Ito <[email protected]>
* doc/texinfo.tex: Replaced with the latest master branch's one in
texinfo repository.
* doc/txi-en.tex: Likewise.
* doc/txi-ja.tex: Likewise. Furthermore, partially merged with
Shoichi Fukusaka's modified version.
* doc/wl-ja.texi: Encode in utf-8. Assume LuaTeX.
* doc/wl-refcard-ja.tex: Encode in utf-8. Assume LuaTeX.
* doc/wl-refcard.tex: Assume LuaTeX or pdfTeX.
2020-07-14 Kazuhiro Ito <[email protected]>
* doc/wl.texi: Updated to adapt recent changes.
* doc/wl-ja.texi: Likewise.
2020-06-27 Kazuhiro Ito <[email protected]>
* samples/en/dot.wl: wl-folder-check-entity-hook is now called
with argument ENTITY.
* samples/ja/dot.wl: Ditto.
2020-06-05 Kazuhiro Ito <[email protected]>
* WL-MK: More dropping old platforms support.
2020-05-24 Kazuhiro Ito <[email protected]>
Drop old platforms support. Now supported Emacsen are version 24
and later.
* WL-ELS: Assuse Emacs 24 or later.
* WL-MK: Likewise.
2020-01-24 Kazuhiro Ito <[email protected]>
* doc/wl.texi (wl-expire-archive-number2): Add notice for
`elmo-localdir-folder-path' and `elmo-archive-folder-path'
variable.
* doc/wl-ja.texi (wl-expire-archive-number2): Likewise.
2019-08-12 Kazuhiro Ito <[email protected]>
* doc/wl.texi (Selecting Folder, Sticky Summary): Update key
bindings.
* doc/wl-ja.texi (Selecting Folder, Sticky Summary): Likewise.
2018-11-17 Kazuhiro Ito <[email protected]>
* doc/wl.texi (Variables of Draft Mode): Update descriptions of
wl-draft-buffer-style and wl-draft-reply-buffer-style.
* doc/wl-ja.texi (Variables of Draft Mode): Likewise.
2018-04-03 Kazuhiro Ito <[email protected]>
* doc/wl.texi (Download): Update STARTTLS connection requirements.
* doc/wl-ja.texi (Download): Likewise.
2017-12-09 Kazuhiro Ito <[email protected]>
* doc/wl-ja.texi, doc/wl.texi (Summary View): Change example for
number prefix. Refer to wl-summary-default-number-column and
wl-summary-number-column-alist.
2017-12-04 Kazuhiro Ito <[email protected]>
* doc/wl-ja.texi (Cache): Descibe newly introduced variables.
* doc/wl.texi (Cache): Likewise.
2017-12-02 Kazuhiro Ito <[email protected]>
* doc/wl-ja.texi (Mailing List): Update ML information. Only ML
members can post.
* doc/wl.texi (Mailing List): Likewise.
2017-09-30 Kazuhiro Ito <[email protected]>
* WL-ELS (modules-alist): Exclude bbdb-wl.el for the case that
BBDB 3.x is installed.
2017-03-24 Kazuhiro Ito <[email protected]>
* doc/wl-ja.texi (Password Management): Updated for recent chage.
(Auth-source): New node.
* doc/wl.texi (Password Management, Auth-source): Ditto.
2017-03-23 Kazuhiro Ito <[email protected]>
* WL-ELS (ELMO-MODULES): Add elmo-passwd.el.
2017-03-10 Kazuhiro Ito <[email protected]>
* doc/wl-ja.texi (rgrep): New node.
(grep): Add tips for too many file searching.
* doc/wl.texi (rgrep): Likewise.
2016-11-09 Piotr Trojanek <[email protected]>
* doc/wl.texi: fix of minor grammar issues and a typo in reference
to a doc-variable.
2016-08-30 Piotr Trojanek <[email protected]>
* doc/wl.texi: remove trailing periods in section headers.
2016-08-21 Piotr Trojanek <[email protected]>
* .gitignore: Added.
* INSTALL: Typografic fixes.
* doc/wl.texi: Fix typos and grammar in folder and address manager
documentation.
2016-08-11 Piotr Trojanek <[email protected]>
* doc/wl.texi (Password Management): Fix typo.
2016-07-28 Kazuhiro Ito <[email protected]>
* doc/wl.texi (Biff): Adapt to recent change.
* doc/wl-ja.texi (Biff): Ditto.
2016-07-04 Piotr Trojanek <[email protected]>
* doc/wl.texi (Sticky Summary, Customizable Variables): Fix typo.
2016-04-09 Kazuhiro Ito <[email protected]>
* doc/wl.texi (Editing Message Body and Sending)
(Key Bindings of Draft): Move comment on re-editing to `Editing
Message Body and Sending' node.
Cf. https://github.com/wanderlust/wanderlust/issues/97
* doc/wl-ja.texi: Likewise.
2016-04-09 Kazuhiro Ito <[email protected]>
* doc/wl.texi: Update @xref for external documents.
* doc/wl-ja.texi: Likewise.
2016-02-24 Erik Hetzner <[email protected]>
* wl-draft.wl (wl-draft-mimic-kill-buffer): Provide default to
`read-buffer'
* wl-folder.wl (wl-folder-mimic-kill-buffer): Provide default to
`read-buffer'
2015-12-28 Kazuhiro Ito <[email protected]>
* doc/wl.texi, doc/wl-ja.texi: Describe
wl-summary-target-mark-threads.
2015-10-03 Kazuhiro Ito <[email protected]>
* doc/wl.texi: Minor fix.
* doc/wl-ja.texi (Quick Search): Sync with wl.texi.
2015-10-03 Kazuhiro Ito <[email protected]>
* WL-ELS: Add wl-qs.el.
2015-09-13 Erik Hetzner <[email protected]>
* doc/wl.texi (Quick Search): Document wl-qs.
2015-08-09 Kazuhiro Ito <[email protected]>
* doc/wl.texi, doc/wl-ja.texi: Wrap URLs with @uref.
2015-08-09 Kazuhiro Ito <[email protected]>
* doc/wl-ja.texi (MIME Modules, Download, Install, IMAP Folder, BBDB)
(mime-w3m): Reflect current status.
* doc/wl.texi (MIME Modules, Download, Install, IMAP Folder, BBDB)
(mime-w3m): Likewise.
2015-08-09 Kazuhiro Ito <[email protected]>
* doc/wl-ja.texi (POP Folder, IMAP Folder): Remove description of
additional packages for SSL/STARTTLS connection.
2015-05-17 Kazuhiro Ito <[email protected]>
* WL-ELS: Install elmo-rss.el only when required libraries are
available.
2015-05-17 Juliusz Chroboczek <[email protected]>
* WL-ELS: Add elmo-rss.el.
2014-11-09 Erik Hetzner <[email protected]>
* wanderlust-pkg.el: New file.
2014-11-09 Erik Hetzner <[email protected]>
* doc/wl-ja.texi: Define @documentencoding.
2014-11-09 Erik Hetzner <[email protected]>
* etc/icons/wl-draft-insert-signature-up.xpm: Fix transparency for
GNU Emacs.
Cf. https://github.com/wanderlust/wanderlust/issues/26
* etc/icons/wl-draft-kill-up.xpm: Likewise.
* etc/icons/wl-draft-save-and-exit-up.xpm: Likewise.
* etc/icons/wl-draft-send-from-toolbar-down.xpm: Likewise.
* etc/icons/wl-draft-send-from-toolbar-up.xpm: Likewise.
* etc/icons/wl-draft-up.xpm: Likewise.
* etc/icons/wl-draft-yank-original-up.xpm: Likewise.
* etc/icons/wl-exit-up.xpm: Likewise.
* etc/icons/wl-folder-check-current-entity-up.xpm: Likewise.
* etc/icons/wl-folder-empty-trash-up.xpm: Likewise.
* etc/icons/wl-folder-goto-draft-folder-up.xpm: Likewise.
* etc/icons/wl-folder-jump-to-current-entity-no-sync-up.xpm: Likewise.
* etc/icons/wl-folder-jump-to-current-entity-up.xpm: Likewise.
* etc/icons/wl-folder-next-entity-up.xpm: Likewise.
* etc/icons/wl-folder-prev-entity-up.xpm: Likewise.
* etc/icons/wl-folder-read-up.xpm: Likewise.
* etc/icons/wl-folder-sync-current-entity-up.xpm: Likewise.
* etc/icons/wl-folder-zoom-entity-up.xpm: Likewise.
* etc/icons/wl-message-extract-content-up.xpm: Likewise.
* etc/icons/wl-message-next-content-up.xpm: Likewise.
* etc/icons/wl-message-play-content-up.xpm: Likewise.
* etc/icons/wl-message-prev-content-up.xpm: Likewise.
* etc/icons/wl-message-quit-up.xpm: Likewise.
* etc/icons/wl-message-read-up.xpm: Likewise.
* etc/icons/wl-summary-delete-up.xpm: Likewise.
* etc/icons/wl-summary-dispose-up.xpm: Likewise.
* etc/icons/wl-summary-exit-up.xpm: Likewise.
* etc/icons/wl-summary-forward-up.xpm: Likewise.
* etc/icons/wl-summary-jump-to-current-message-up.xpm: Likewise.
* etc/icons/wl-summary-next-page-up.xpm: Likewise.
* etc/icons/wl-summary-next-up.xpm: Likewise.
* etc/icons/wl-summary-prev-page-up.xpm: Likewise.
* etc/icons/wl-summary-prev-up.xpm: Likewise.
* etc/icons/wl-summary-read-up.xpm: Likewise.
* etc/icons/wl-summary-reply-up.xpm: Likewise.
* etc/icons/wl-summary-reply-with-citation-up.xpm: Likewise.
* etc/icons/wl-summary-set-flags-up.xpm: Likewise.
* etc/icons/wl-summary-sync-force-update-up.xpm: Likewise.
* etc/icons/wl-write-current-folder-up.xpm: Likewise.
2014-10-22 Kazuhiro Ito <[email protected]>
* doc/wl-ja.texi (Mailing List): Obey RFC 5538.
* doc/wl.texi (Mailing List): Likewise.
2014-10-22 Kazuhiro Ito <[email protected]>
* doc/wl-ja.texi (mu, notmuch, grep): Sync with English document.
2014-10-22 Kazuhiro Ito <[email protected]>
* doc/wl.texi: Add coding cookie.
(mu, notmuch, grep): Replace non-ascii character with
ascii characters. Update node information.
2014-10-18 Erik Hetzner <[email protected]> / Kazuhiro Ito <[email protected]>
Cf. https://github.com/wanderlust/wanderlust/pull/73
* doc/wl-ja.texi (Folder Manager, Mailing List): Fix for makeinfo.
* doc/wl.texi (Folder Manager, Mailing List): Likewise.
2014-10-15 Erik Hetzner <[email protected]>
* doc/wl.texi (mu, notmuch): Add support for mu, notmuch search.
2014-03-29 Kazuhiro Ito <[email protected]>
* WL-MK (compile-wl-package, compile-wl-package-xmas): Set
mime-situation-examples-file to nil.
2012-09-23 David Maus <[email protected]>
* README.md (See): Remove markdown link to INSTALL.
2012-09-09 David Maus <[email protected]>
* README.md (See): Fix reference to IMAP specs, add small section
about development.
* Makefile: Add EMACS_FLAGS environment variable.
2012-08-28 Felix E. Klee <[email protected]>
* README.md: New file.
* README: Removed.
2012-08-19 David Maus <[email protected]>
* samples/en/dot.wl: Update mailing list address.
* samples/ja/dot.wl: Dto.
2012-08-04 Kazuhiro Ito <[email protected]>
* WL-ELS (ELMO-MODULES): Do not include utf7.el when Emacs has
utf-7-imap coding system.
2011-09-23 Kazuhiro Ito <[email protected]>
* doc/texinfo.tex, doc/txi-ja.tex: Replaced with 2010-05.22.17
modified version by Shoichi Fukusaka <[email protected]>.
2011-09-12 Kazuhiro Ito <[email protected]>
* README: Update ML's address.
* README.ja: Ditto
* doc/wl.texi (Mailing List): Ditto.
* doc/wl-ja.texi (Mailing List): Ditto.
2011-02-01 Tetsurou Okazaki <[email protected]>
* WL-MK (wl-scan-path): New function.
(wl-scan-source): Use `wl-scan-path'.
(wl-scan-icons): New function.
(uninstall-wl-icons): Use `wl-scan-icons'.
Check existence of `PIXMAPDIR'.
2010-07-19 TAKAHASHI Kaoru <[email protected]>
* INSTALL: Update recommended version of APEL.
* INSTALL.ja: Ditto.
2010-07-11 David Maus <[email protected]>
* doc/wl.texi (Variables of Summary): Replace unicode character.
2010-04-29 Tetsurou Okazaki <[email protected]>
* WL-MK (uninstall-wl-icons): New function. Uninstall *.img
files as well.
(uninstall-wl-package): Use `uninstall-wl-icons'.
2010-03-03 TAKAHASHI Kaoru <[email protected]>
* etc/icons/unplugged.xpm: Change design. Use `unplugged' style
instead of `prohibition sign' style.
2010-01-04 TAKAHASHI Kaoru <[email protected]>
* WL-MK (wl-scan-source, wl-uninstall)
(compile-wl-package, install-wl-package)
(compile-wl-package-xmas, install-wl-package-xmas)
(wl-texinfo-format, wl-texinfo-install) : Use `mapc' instead of
`mapcar'. Don't quote `lambda'.
2008-11-25 TAKAHASHI Kaoru <[email protected]>
* INSTALL: Updated recommended version of FLIM.
* INSTALL.ja: Ditto.
2008-02-19 TAKAHASHI Kaoru <[email protected]>
* Makefile (clean-elc): Remove *.elx for compile-strict.
2008-02-17 TAKAHASHI Kaoru <[email protected]>
* INSTALL: Updated recommended version of APEL and FLIM.
* INSTALL.ja: Updated recommended version of APEL and FLIM.
2008-02-15 TAKAHASHI Kaoru <[email protected]>
* WL-MK (wl-news-parse-news-subr): Use `string-to-number' instead
of `string-to-int'.
2008-02-11 TAKAHASHI Kaoru <[email protected]>
* WL-MK: New backquote style.
2006-12-21 Hiroya Murata <[email protected]>
* WL-MK (config-wl-package-xmas): Use
`install-get-default-package-directory'.
2005-11-04 Yoichi NAKAYAMA <[email protected]>
* README, README.ja: Update stable branch.
Update information on viewcvs and cvs commit mail.
2005-09-17 Hiroya Murata <[email protected]>
* WL-ELS (ELMO-MODULES): Removed elmo-nmz.
2005-09-10 Hiroya Murata <[email protected]>
* WL-ELS (ELMO-MODULES): Added elmo-search.
2005-02-19 Yoichi NAKAYAMA <[email protected]>
* WL-MK (wl-news-search-regexp): Allow ".x" at the
end of version number.
2005-02-18 Hiroya Murata <[email protected]>
* WL-ELS (ELMO-MODULES): Added elmo-signal.
2005-01-23 Hiroya Murata <[email protected]>
* Makefile (compile-strict): New target.
* WL-MK (wl-examine-modules): New function.
2005-01-10 Hiroya Murata <[email protected]>
* etc/icons/access.xpm: New file.
* WL-ELS (ELMO-MODULES): Added elmo-access and elmo-null.
2005-01-01 TAKAHASHI Kaoru <[email protected]>
* README, README.ja: Update stable branch.
2004-12-23 Katsumi Yamaoka <[email protected]>
* WL-MK (wl-texinfo-format-file): Revert.
2004-12-22 Katsumi Yamaoka <[email protected]>
* WL-MK (wl-texinfo-format-file): Bind undo-outer-limit.
2004-12-07 TAKAHASHI Kaoru <[email protected]>
* INSTALL, INSTALL.ja: Updated recommended version of FLIM to
1.14.7.
2004-11-23 Yuuichi Teranishi <[email protected]>
* WL-ELS (ELMO-MODULES): Added elsp-spamoracle.
2004-09-05 Yuuichi Teranishi <[email protected]>
* doc/TODO, doc/TODO.ja: Updated.
2004-08-21 Yoichi NAKAYAMA <[email protected]>
* WL-MK (install-wl-icons): Use install-files to set file mode.
2004-08-09 Yuuichi Teranishi <[email protected]>
* INSTALL, INSTALL.ja: Updated recommended version of APEL,
FLIM and SEMI.
2004-05-08 Yoichi NAKAYAMA <[email protected]>
* WL-ELS (UTILS-MODULES): Undo last two changes.
2004-05-06 Yoichi NAKAYAMA <[email protected]>
* WL-ELS (UTILS-MODULES): Fix the last change, test mail/rfc2368.
2004-04-11 Yoichi NAKAYAMA <[email protected]>
* WL-ELS (UTILS-MODULES): If rfc2368 found, not to install it.
2004-02-12 Yuuichi Teranishi <[email protected]>
* etc/icons/wl-summary-set-flags-up.xpm: Re-draw.
2004-02-09 Yuuichi Teranishi <[email protected]>
* etc/icons/file.xpm: New file.
* etc/icons/wl-summary-set-flags-up.xpm: Renamed from
wl-summary-mark-as-important-up.xpm.
* WL-ELS (ELMO-MODULES): Added elmo-file.
2004-01-18 TAKAHASHI Kaoru <[email protected]>
* WL-ELS (UTILS-MODULES): Add im-wl.
(modules-alist): Remove im-wl conditional.
2004-01-11 Hiroya Murata <[email protected]>
* WL-ELS (ELMO-MODULES): Added elsp-bsfilter.
2004-01-11 Yuuichi Teranishi <[email protected]>
* WL-ELS (ELMO-MODULES): Added elsp-sa.
2003-11-09 Yuuichi Teranishi <[email protected]>
* WL-ELS (WL-MODULES): Added wl-batch.
2003-10-21 Hiroya Murata <[email protected]>
* WL-ELS (ELMO-MODULES): Added elsp-spamfilter only if spamfilter
is installed.
2003-10-20 Hiroya Murata <[email protected]>
* WL-ELS (WL-MODULES): Added wl-spam.
(ELMO-MODULES): Added elmo-spam and elsp-bogofilter.
2003-09-22 Yuuichi Teranishi <[email protected]>
* WL-ELS (ELMO-MODULES): Added modb-entity (again).
2003-09-21 Yuuichi Teranishi <[email protected]>
* WL-ELS (ELMO-MODULES): Removed modb-entity.
2003-09-19 Hiroya Murata <[email protected]>
* WL-ELS (ELMO-MODULES): Added modb-standard.
2003-09-18 Yuuichi Teranishi <[email protected]>
* WL-ELS (ELMO-MODULES): Removed elmo-mark and added elmo-flag.
2003-09-17 TAKAHASHI Kaoru <[email protected]>
* doc/.cvsignore: Added makeinfo stuff.
2003-09-15 Hiroya Murata <[email protected]>
* WL-ELS (ELMO-MODULES): Added `modb', `modb-entity' and
`modb-legacy'.
2003-09-14 Hiroya Murata <[email protected]>
* WL-MK (update-version): Bind `coding-system-for-write' to
iso-latin-1-unix.
2003-08-26 Tetsurou Okazaki <[email protected]>
* WL-MK (wl-texinfo-info-file, wl-texinfo-texi-file,
wl-texinfo-check-newer): New functions.
(wl-texinfo-install-file): Use `wl-texifo-info-file'.
(wl-primary-info-file): Likewise.
(wl-texinfo-format-file): Use `wl-texinfo-check-newer'
and `wl-texinfo-texi-file'. Remove unused local variable `beg'.
2003-07-26 Hiroya Murata <[email protected]>
* doc/.cvsignore: New file.
2003-07-19 Hiroya Murata <[email protected]>
* etc/icons/wl-summary-dispose-up.xpm: New file.
2003-07-15 Yuuichi Teranishi <[email protected]>
* WL-ELS (WL-MODULES): Added wl-action.
2003-06-05 TAKAHASHI Kaoru <[email protected]>
* WL-MK: Remove comment out code. Fix indent.
2003-04-08 Yoichi NAKAYAMA <[email protected]>
* WL-MK: Nil for wl-info-lang means do nothing on info.
2003-02-05 Yoichi NAKAYAMA <[email protected]>
* WL-MK (make-wl-news): Replace "^(" by "\\\\(" to avoid font-lock
confusion.
2003-01-17 TAKAHASHI Kaoru <[email protected]>
* WL-MK (test-wl): Added `make-wl-news'.
(check-wl): Added (provide 'wl-news) before load wl-news.el.in.
2003-01-13 Yoichi NAKAYAMA <[email protected]>
* WL-MK (wl-info-lang): Skip "ja" for non-mule.
(wl-news-lang): Ditto.
2002-12-28 TAKAHASHI Kaoru <[email protected]>
* WL-MK (test-wl, check-wl): Load wl-news.el.in.
2002-12-27 TAKAHASHI Kaoru <[email protected]>
* INSTALL, INSTALL.ja: Updated recommended version of FLIM to 1.14.5.
2002-12-21 Yoichi NAKAYAMA <[email protected]>
* WL-MK (make-wl-news): Don't add wl-news-lang setting into
wl-news.el here.
2002-12-20 Kenichi OKADA <[email protected]>
* WL-MK (make-wl-news): Fix coding system.
2002-12-20 Kenichi OKADA <[email protected]>
* WL-MK (wl-news-parse-news-subr): Decide
coding-system.
2002-12-20 Kenichi OKADA <[email protected]>
* WL-MK (wl-news-lang): New variable.
(wl-news-news-file): Merge `wl-news-news-file'
and `wl-news-news-file-ja'.
(wl-news-search-regexp): New variable.
(wl-news-news-file): New function.
(wl-news-parse-news): Merge `wl-news-parse-news'
and `wl-news-parse-news-ja'.
(wl-news-parse-news-subr): New function.
2002-12-20 Kenichi OKADA <[email protected]>
* WL-CFG (wl-news-lang): New variable.
2002-12-20 Kenichi OKADA <[email protected]>
* WL-MK (make-wl-news): New function.
(wl-news-parse-news): New function.
(wl-news-parse-news-ja): New function.
(compile-wl-package): Do `make-wl-news'.
(wl-news-news-file): New variable.
(wl-news-news-file-ja): New variable.
(wl-news-filename: New variable.
2002-12-11 Yuuichi Teranishi <[email protected]>
* 2.10.0 - "Venus"
2002-11-15 TAKAHASHI Kaoru <[email protected]>
* INSTALL, INSTALL.ja: Update Recommended combination of MIME
module package.
2002-10-27 TAKAHASHI Kaoru <[email protected]>
* README, README.ja: Update stable branch.
2002-10-24 TAKAHASHI Kaoru <[email protected]>
* INSTALL, INSTALL.ja: Update Recommended combination of MIME
module package.
2002-10-02 Yoichi NAKAYAMA <[email protected]>
* doc/wl-refcard.tex: Fix
* doc/wl-refcard-ja.tex: New file
2002-09-30 Koichiro Ohba <[email protected]>
* etc/icons/wl-folder-goto-draft-folder-up.xpm: Add missing comma.
2002-07-12 Yuuichi Teranishi <[email protected]>
* WL-ELS (ELMO-MODULES): Added elmo-split.
2002-06-22 Yoichi NAKAYAMA <[email protected]>
* WL-MK (wl-texinfo-format): Move condition for INFODIR into
wl-detect-info-directory.
(wl-detect-info-directory): Check INFODIR after WL-CFG is loaded.
2002-06-17 Yuuichi Teranishi <[email protected]>
* WL-MK (wl-texinfo-install-file): Overwrite existing info.
2002-06-16 Katsumi Yamaoka <[email protected]>
* WL-MK (install-wl-icons): Simplified the messaging form.
2002-03-11 Yuuichi Teranishi <[email protected]>
* etc/icons/wl-folder-goto-draft-folder-up.xpm: Modified.
* etc/icons/wl-draft-save-and-exit-up.xpm: Ditto.
2002-03-09 Yoichi NAKAYAMA <[email protected]>
* etc/icons/wl-folder-goto-draft-folder-up.xpm: New file.
2002-03-08 Yoichi NAKAYAMA <[email protected]>
* etc/icons/wl-draft-save-and-exit-up.xpm: New file.
2002-03-06 Yoichi NAKAYAMA <[email protected]>
* etc/icons/wl-write-current-folder-up.xpm: New file.
2002-02-20 Yoichi NAKAYAMA <[email protected]>
* README, README.ja: Add information of the Mailing List in English.
2001-12-26 Yuuichi Teranishi <[email protected]>
* NEWS, NEWS.ja: Added description about
`elmo-enable-disconnected-operation';
Added description about "$" mark.
* WL-MK (update-version): New function.
* Makefile (update-version): Added.
2001-12-18 Yuuichi Teranishi <[email protected]>
* samples/ja/dot.wl,samples/en/dot.wl (my-wl-summary-subject-func-ml):
Ignore error.
2001-12-16 TAKAHASHI Kaoru <[email protected]>
* WL-MK (config-wl-package-subr): Added APEL version check.
Changed check order; APEL, FLIM, SEMI.
2001-12-15 TAKAHASHI Kaoru <[email protected]>
* INSTALL, INSTALL.ja: Added System Requirements.
* README, README.ja: Removed System Requirements.
* NEWS, NEWS.ja: Added description about X-Face utility support.
Added description about 'sendlog.
* WL-MK (toplevel): Use = instead of `eq' for numeric value.
(config-wl-package-subr, config-wl-package-xmas): Removed last
period from error messages.
2001-12-12 Yuuichi Teranishi <[email protected]>
* NEWS, NEWS.ja: Changed order.
2001-12-12 Katsumi Yamaoka <[email protected]>
* WL-MK (install-wl-icons): Install *.img files for Emacs 21.
2001-12-11 Yuuichi Teranishi <[email protected]>
* NEWS.ja: Added description about xxx-directory, elmo-cache-dirname.
2001-12-11 Katsumi Yamaoka <[email protected]>
* WL-MK (config-wl-package-subr): Don't set `wl-icon-dir'.
2001-12-11 Yuuichi Teranishi <[email protected]>
* NEWS.ja: Fixed indent;
Added description about obsolete variable warnings
and `elmo-obsolete-variable-show-warnings'.
2001-12-11 Katsumi Yamaoka <[email protected]>
* WL-MK (install-wl-icons): Don't install *.img files for Emacs 21.
2001-12-11 Katsumi Yamaoka <[email protected]>
* WL-MK (config-wl-pixmap-dir): Set a value to `PIXMAPDIR' even if
Emacs version is less than 21.
(install-wl-icons): Install icon files which might be used for the
running version of Emacs.
* etc/icons/*.xbm: Replaced "-" with "_" to make them can be
handled by Emacs 21.
2001-12-10 Katsumi Yamaoka <[email protected]>
* etc/icons/wl-alpha-logo.img: New file.
* etc/icons/wl-alpha-xmas-logo.img: New file.
* etc/icons/wl-beta-logo.img: New file.
* etc/icons/wl-beta-xmas-logo.img: New file.
* etc/icons/wl-stable-logo.img: New file.
* etc/icons/wl-stable-xmas-logo.img: New file.
2001-12-10 Katsumi Yamaoka <[email protected]>
* etc/icons/wl-alpha-xmas-logo.xbm: New file.
* etc/icons/wl-beta-xmas-logo.xbm: New file.
* etc/icons/wl-stable-xmas-logo.xbm: New file.
2001-12-07 Katsumi Yamaoka <[email protected]>
* etc/icons/wl-alpha-xmas-logo.xpm: New file.
* etc/icons/wl-beta-xmas-logo.xpm: New file.
* etc/icons/wl-stable-xmas-logo.xpm: New file.
2001-12-02 Yoichi NAKAYAMA <[email protected]>
* doc/wl-refcard.tex: New file.
2001-12-02 Kenichi OKADA <[email protected]>
* WL-ELS (ELMO-MODULES): Added 'elmo-sendlog'
2001-10-23 Yoichi NAKAYAMA <[email protected]>
* WL-MK (wl-info-lang): Change default value to ("ja" "en").
* WL-CFG: Ditto.
* INSTALL: Remove note on how to install English manual.
2001-10-01 Yuuichi Teranishi <[email protected]>
* NEWS.ja: Added ACAP description.
2001-09-04 TAKAHASHI Kaoru <[email protected]>
* WL-MK (toplevel): Ignore Nemacs.
(compile-wl-package, wl-detect-info-directory): Ditto.
* WL-MK (config-wl-package-subr): Fixed error message. Ignore tm.
Add refer to INSTALL and INSTALL.ja.
* WL-ELS (toplevel): Likewise.
* WL-MK (test-wl, check-wl): Add docstring.
2001-09-03 TAKAHASHI Kaoru <[email protected]>
* INSTALL.ja (Sample configration file): Added comment
~/.addresses was optional.
* INSTALL: Ditto.
2001-08-30 Yuuichi Teranishi <[email protected]>
* WL-MK (test-wl): Renamed from check-wl.
(check-wl): New function.
* Makefile (check): Don't use `-q -no-site-file'.
(BATCHFLAG): New variable.
(check): Use it.
(test): New rule.
2001-08-29 Yuuichi Teranishi <[email protected]>
* WL-ELS (WL-MODULES): Added wl-acap.
2001-08-28 Katsumi Yamaoka <[email protected]>
* WL-MK: Byte-optimize the function `char-after' for old Emacsen.
2001-08-28 TAKAHASHI Kaoru <[email protected]>
* Makefile (check): New rule
* WL-MK (check-wl): New function.
* tests: New directory.
* tests/ChangeLog: New file.
* utils/ChangeLog: New file.
2001-08-28 Yuuichi Teranishi <[email protected]>
* WL-ELS (ELMO-MODULES): Added `acap' and `slp'.
2001-08-21 Yuuichi Teranishi <[email protected]>
* WL-CFG: Removed nemacs setting example.
* WL-MK (config-wl-package-subr): Ignore nemacs.
* WL-ELS: Ignore tm and nemacs.
(WL-MODULES): Added wl-addrmgr.
2001-07-12 Yuuichi Teranishi <[email protected]>
* WL-MK (config-wl-package-subr): Check smtp.el version.
2001-05-24 Yoichi NAKAYAMA <[email protected]>
* WL-MK (wl-detect-info-directory): Call `info-initialize' for
Emacs21.
2001-05-22 Hiroya Murata <[email protected]>
* utils/bbdb-wl.el (bbdb-wl-get-update-record): Use function
`wl-summary-buffer-folder-name' instead of same name variable.
2001-05-08 Kenichi OKADA <[email protected]>
* utils/bbdb-wl.el (bbdb-wl-folder-regexp): New variable.
(bbdb-wl-get-update-record): Use `bbdb-wl-folder-regexp'.
2001-04-16 Yuuichi Teranishi <[email protected]>
* utils/bbdb-wl.el (bbdb-wl-get-update-record): Use
`with-current-buffer'.
2001-04-04 Yuuichi Teranishi <[email protected]>
* WL-ELS (ELMO-MODULES): Removed shimbun related modules;
Add elmo-shimbun only if shimbun is installed.
2001-04-03 Yuuichi Teranishi <[email protected]>
* WL-ELS (ELMO-MODULES): Added sb-tcup.
2001-04-02 Yuuichi Teranishi <[email protected]>
* utils/bbdb-wl.el: Applied patch from
Hiroya Murata <[email protected]> for bbdb 2.33
(X-Mail-Count: 07190, 07195 in the ML);
Added workaround for older version of bbdb.
* WL-ELS (ELMO-MODULES): Added shimbun related modules.
2001-02-06 Yuuichi Teranishi <[email protected]>
* WL-ELS (ELMO-MODULES): Added elmo-mark.