forked from espenhw/gnus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
896 lines (531 loc) · 24.3 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
2011-11-20 Paul Eggert <[email protected]>
* etc/gnus/news-server.ast (Setting up the news server name and port
number): Spelling fix.
2011-11-15 Paul Eggert <[email protected]>
* etc/gnus-tut.txt (<[email protected]>): Spelling fix.
2011-04-07 David Engster <[email protected]>
* Makefile.in (check): New rule for starting test-suite.
2011-04-06 David Engster <[email protected]>
* Makefile.in (lick-fail-on-warning): New rule to compile with warnings
as errors.
(fail-on-warning): Use it.
2011-03-17 Lars Magne Ingebrigtsen <[email protected]>
* Makefile.in (warn): Add a dummy "warn" target.
2010-10-21 Julien Danjou <[email protected]>
* todo: Remove done and duplicate items.
2010-10-06 Julien Danjou <[email protected]>
* todo: Remove other broken links
* make.bat: Remove Windows 98 stuff and reference to my.gnus.org.
2010-10-04 Andreas Schwab <[email protected]>
* configure.in: Fix help strings.
2010-04-23 Teodor Zlatanov <[email protected]>
* .gitignore: Remove configure from ignores.
2010-04-22 Teodor Zlatanov <[email protected]>
* configure: Regenerated from configure.in using Autoconf 2.65.
2009-08-12 Katsumi Yamaoka <[email protected]>
* GNUS-NEWS: Generated.
2009-01-22 Dan Nicolaescu <[email protected]>
* .dir-locals.el: New file.
2009-01-03 Reiner Steib <[email protected]>
* README: Add outline. Clarify Emacs versions.
2008-05-01 Lars Magne Ingebrigtsen <[email protected]>
* README: Bump version to 0.11
2008-04-12 Reiner Steib <[email protected]>
* Makefile.in (release-check-settings): Clarify codename.
(release-help): New target.
(release-cvs-export): Add umask. Suggested by Sven Joachim.
2008-04-11 Reiner Steib <[email protected]>
* README: Bump version to 0.9.
2008-04-10 Reiner Steib <[email protected]>
* README: No Gnus v0.8 is released.
2008-03-01 Reiner Steib <[email protected]>
* Update copyright years.
2008-02-07 Katsumi Yamaoka <[email protected]>
* GNUS-NEWS: Generated.
* Makefile.in (datarootdir): Define.
* aclocal.m4 (AC_PATH_LISPDIR): Quote directory name that might contain
whitespace.
* configure: Regenerate.
* mkinstalldirs: Replace it with the 2006-05-11.19 version.
2008-01-16 Katsumi Yamaoka <[email protected]>
* GNUS-NEWS: Generated.
2008-01-11 Katsumi Yamaoka <[email protected]>
* GNUS-NEWS: Generated.
2007-11-18 Reiner Steib <[email protected]>
* GNUS-NEWS: Generated.
2007-11-04 Reiner Steib <[email protected]>
* Makefile.in (RELEASE_COMMIT_FILES): Add etc/ChangeLog.
(release-check-settings): Add release-add-changelog
(release-bump-version): Add check for CODENAME_TO_STABLE. Split off
release-add-changelog.
(release-add-changelog): New target. Separate some commands from
release-bump-version. Add etc/ChangeLog.
(release-diff-commit-files): New target.
(RELEASE_COMMIT_FILES): Reorder files.
2007-11-03 Reiner Steib <[email protected]>
* COPYING: GPLv3 from Emacs repository.
2007-10-28 Reiner Steib <[email protected]>
* Makefile.in (SED_I, CODENAME_PATTERN): New.
(OLD_PATTERN): Adjust.
(release-bump-version): Use new variables. Allow going from
development version to release.
2007-10-27 Reiner Steib <[email protected]>
* Makefile.in (release-bump-version): Adjust version
in (gnus)Troubleshooting.
2007-10-10 Katsumi Yamaoka <[email protected]>
* GNUS-NEWS: Generated.
2007-10-04 Reiner Steib <[email protected]>
* Relicense "GPLv2 or later" files to "GPLv3 or later".
2007-09-17 Alexander Solovyov <[email protected]> (tiny change)
* make.bat: Initial check didn't work if path contained spaces.
2007-07-02 Reiner Steib <[email protected]>
* Makefile.in (COMMIT_STRING): New variable.
(release-bump-version): Use it.
(bump-version, bump-version-commit): New targets.
2007-06-06 Andreas Seltenreich <[email protected]>
* todo: Add comment. Remove duplicate item.
2007-05-02 Reiner Steib <[email protected]>
* README: Bump version number.
2007-04-11 Didier Verna <[email protected]>
* GNUS-NEWS: Generated.
2007-04-01 Reiner Steib <[email protected]>
* GNUS-NEWS: Generated.
2007-03-23 Katsumi Yamaoka <[email protected]>
* README: Bump ngnus version.
2006-12-26 Reiner Steib <[email protected]>
* GNUS-NEWS: Generated.
2006-10-09 Romain Francoise <[email protected]>
* todo: Fix some typos.
2006-04-19 Reiner Steib <[email protected]>
* make.bat: Use "echo *" to clarify the output.
(:lisp, :infotest): Avoid "not found" errors
(:etc): Remove etc\gnus. Be more verbose. Add new smilies.
Simplify.
2006-04-11 Reiner Steib <[email protected]>
* etc/Makefile.in (install): Install new smileys.
2006-04-11 Adam Sj,Ax(Bgren <[email protected]>
* etc/images/smilies/grayscale/*.xpm: New larger grayscale smileys.
* etc/images/smilies/medium/*.xpm: New colorful smileys.
2006-04-11 Reiner Steib <[email protected]>
* README: No Gnus v0.4 is released.
2006-04-11 Reiner Steib <[email protected]>
* Makefile.in (release-sign-files): Use rm -f.
(RELEASE_COMMIT_FILES): Add ./ChangeLog.
(release-bump-version): Add README.
(release-check-settings): OLD_TAG, not OLDTAG.
(release-commit): Echo command lines before prompt.
(RELEASE_COMMIT_FILES): Add README.
(OLD_PATTERN): Fix.
(release-bump-version): Fix gnusversionname substitution.
(OLD_PATTERN): Add grouping.
2006-04-10 Reiner Steib <[email protected]>
* Makefile.in (GZIP_PROG): Use gzip -f.
(release-bump-version, RELEASE_COMMIT_FILES): Add README.
(release-sign-files): Remove old *.sig files.
* README: Say "development version". Let sentences end with
double space.
2006-04-07 Reiner Steib <[email protected]>
* Makefile.in (GZIP_PROG): New variable.
(release-diff): Use it.
(release-sign-files): New sign-only target. Use GPG_AGENT_INFO.
2006-04-04 Reiner Steib <[email protected]>
* Makefile.in (TAR_BALL_EXTRA, release-make-tar-ball, README):
Remove; README is in CVS now.
(release-files, release-files-signed, release-cvs-export)
(release-make-tar-ball): Use $(VERSION) instead of $(TAG).
(OLD_PATTERN): Catch stable and trunk.
(CIN): New variable.
(release-files, release-files-signed, release-cvs-export)
(release-make-tar-ball, release-diff, release-post-clean): Add
CIN.
(OLD_PATTERN): Remove quotes.
(release-bump-version): Fix typo.
* etc/images/README: Add more Emacs 22 icons. Add suggestion on
how to use those in Emacs 21.
* etc/images/close.xpm, etc/images/cut.xpm, etc/images/home.xpm,
etc/images/index.xpm, etc/images/jump-to.xpm, etc/images/new.xpm,
etc/images/next-node.xpm, etc/images/open.xpm,
etc/images/preferences.xpm, etc/images/prev-node.xpm,
etc/images/saveas.xpm, etc/images/spell.xpm: New icons duplicated
from Emacs 22.
* README: Addition from 5.10.6 tar ball. Clarify "beta".
Simplify Info directory setting. Update required Emacs and XEmacs
version. Use current Gnus version in examples.
2006-03-31 Reiner Steib <[email protected]>
* GNUS-NEWS: Generated.
* Makefile.in (CVS_IGNORE_FILES): Additions.
(release-files-signed): New target.
* etc/images/README: Update separator.xpm.
2006-03-30 Romain Francoise <[email protected]>
* GNUS-NEWS: Generated.
2006-03-30 Reiner Steib <[email protected]>
* etc/images/separator.xpm: Update from Emacs CVS.
* GNUS-NEWS: Generated.
2006-03-29 Reiner Steib <[email protected]>
* Makefile.in (release-bump-version): Consider named Gnus versions
in replacements.
* todo: Update "tool bar icons".
2006-03-27 Reiner Steib <[email protected]>
* Makefile.in (release-revert-files): Replace
release-revert-changelog.
(release-diff): Remove garbage.
2006-03-07 Reiner Steib <[email protected]>
* etc/images/README: Add GIMP script.
(attach.xpm): Move to top level.
(sort-*.xpm) Add.
* etc/images/sort-ascending.xpm,
etc/images/sort-column-ascending.xpm,
etc/images/sort-criteria.xpm, etc/images/sort-descending.xpm,
etc/images/sort-row-ascending.xpm: New icons from GNOME 2.6.
2006-03-10 Reiner Steib <[email protected]>
* Makefile.in (release-check-settings): Add status and
suggestions.
(release-files): Remove duplicate release-cvs-export.
(README): New target.
(release-files, release-make-tar-ball, release-diff): List files.
(README, release-make-tar-ball): Fix.
2006-03-06 Reiner Steib <[email protected]>
* GNUS-NEWS: Generated.
* Makefile.in (release-*): New targets.
2006-02-28 Reiner Steib <[email protected]>
* todo: Remove nnweb. Add: widget for posting styles, doc string
for utility functions, LIST SUBSCRIPTIONS, divide emacs-mime.texi,
change servers.
* etc/images/README (next-page.xpm): From Gnome, not from Emacs
22.
* cancel.xpm, copy.xpm, diropen.xpm, help.xpm, left-arrow.xpm,
next-page.xpm, paste.xpm, print.xpm, redo.xpm, right-arrow.xpm,
save.xpm, search.xpm: New icons duplicated from Emacs 22.
* etc/images/README: Add these icons.
* etc/images/README: Describe the new images.
* etc/gnus/gnus-setup.ast, etc/gnus/news-server.ast: Use
texinfo-mode.
* etc/images/mail/save.xpm, etc/images/mail/preview.xpm: Rename
char*.
2006-03-03 Reiner Steib <[email protected]>
* xemacs.mak: Remove outdated file. Use make.bat instead.
2006-03-02 Reiner Steib <[email protected]>
* make.bat: Add note about "Out of environment space" on Windows
98 SE. Avoid `>' in echo.
2006-02-27 Reiner Steib <[email protected]>
* ChangeLog, texi/ChangeLog, lisp/ChangeLog: Fix "From so-and-so"
and "(tiny change)" entries.
2006-02-22 Reiner Steib <[email protected]>
* etc/images/gnus/mail_send.xpm: Emacs 21 icon for
message-tool-bar-retro.
2006-02-21 Reiner Steib <[email protected]>
* make.bat (:etc): Also consider images in images/mail and
images/.
* etc/Makefile.in (install, uninstall): Also consider images in
images/mail and images/.
* etc/images/connect.xpm, etc/images/contact.xpm,
etc/images/delete.xpm, etc/images/describe.xpm,
etc/images/disconnect.xpm, etc/images/exit.xpm,
etc/images/lock-broken.xpm, etc/images/lock-ok.xpm,
etc/images/lock.xpm, etc/images/refresh.xpm,
etc/images/gnus/toggle-subscription.xpm,
etc/images/mail/attach.xpm, etc/images/mail/compose.xpm,
etc/images/mail/copy.xpm, etc/images/mail/forward.xpm,
etc/images/mail/inbox.xpm, etc/images/mail/move.xpm,
etc/images/mail/not-spam.xpm, etc/images/mail/outbox.xpm,
etc/images/mail/reply-all.xpm, etc/images/mail/reply.xpm,
etc/images/mail/save-draft.xpm, etc/images/mail/send.xpm,
etc/images/mail/spam.xpm: New icons from GNOME 2.6.
2006-02-21 Miguel Frasson <[email protected]>
* etc/images/separator.xpm: Copy of sep.xpm from AUCTeX.
2006-02-21 Adam Sj,Ax(Bgren <[email protected]>
* etc/images/mail/save.xpm, etc/images/mail/preview.xpm: New icons.
2006-01-26 Katsumi Yamaoka <[email protected]>
* Makefile.in (clean): Clean all subdirectories; remove *~.
(elclean): Remove lisp/auto-autoloads.el, lisp/custom-load.el, and
lisp/gnus-load.el.
(distclean): Don't use sub-make to run clean; use $(MAKE) instead
of make.
* etc/Makefile.in (clean): New rule.
(distclean): Use it; remove Makefile.
2005-12-06 Katsumi Yamaoka <[email protected]>
* GNUS-NEWS: Generated.
2005-10-31 Lars Magne Ingebrigtsen <[email protected]>
* Testing CVS setup. Yes. Yes. Yes. Yes.
2005-10-04 Katsumi Yamaoka <[email protected]>
* aclocal.m4 (AC_PATH_LISPDIR): Default to .../site-lisp/gnus for
Emacs.
(AC_PATH_ETCDIR): Don't change the default value for Emacs.
* configure: Generated.
* Makefile.in (list-installed-shadows): New entry.
(remove-installed-shadows): New entry.
* GNUS-NEWS: Generated.
2005-09-28 Reiner Steib <[email protected]>
* todo: Remove some items that are already done. Add some new
items. Add some comments.
2005-08-10 Romain Francoise <[email protected]>
* GNUS-NEWS: Generated.
2005-07-18 Romain Francoise <[email protected]>
* GNUS-NEWS: Generated.
2005-02-19 Miles Bader <[email protected]>
* etc/Makefile.in (install): Create $(etcdir)/images/gnus dir.
* etc/Makefile.in (install, uninstall): Fix installed image dirs.
* etc/Makefile.in (install): Put gnus-tut.txt in the right place.
* Makefile.in (all): Don't do sub-make in etc.
* etc/Makefile.in (all): Remove target.
* make.bat: Do image copies properly.
2005-02-18 Miles Bader <[email protected]>
Move all remaining images from etc/gnus to etc/images/gnus.
2004-06-18 Reiner Steib <[email protected]>
* Makefile.in (all): Do sub-make in etc.
* etc/Makefile.in (all): Link . to images.
(install, uninstall): Use $(etcdir)/images for images.
* make.bat: Likewise.
2005-01-02 Romain Francoise <[email protected]>
* GNUS-NEWS: Generated.
2004-12-26 Katsumi Yamaoka <[email protected]>
* GNUS-NEWS: Generated.
2004-12-06 Reiner Steib <[email protected]>
* GNUS-NEWS: Generated.
2004-09-30 Simon Josefsson <[email protected]>
* Makefile.in (GNUS-NEWS): Depend on texi/gnus-news.texi.
* GNUS-NEWS: Generated.
2004-09-29 Simon Josefsson <[email protected]>
* GNUS-NEWS: Generated.
* Makefile.in (GNUS-NEWS): Add.
2004-09-11 Simon Josefsson <[email protected]>
* GNUS-NEWS: Generated.
2004-09-02 Reiner Steib <[email protected]>
* etc/.cvsignore: Remove unused.
2004-06-16 Reiner Steib <[email protected]>
* make.bat: Fix line endings around arch-tag.
2004-06-03 Teodor Zlatanov <[email protected]>
* etc/gnus/gnus-setup.ast (Setting up a NNTP server)
(Setting up local mail storage (nnml)): fixed some bugs, added a
new screen - still testing
2004-06-01 Simon Josefsson <[email protected]>
* make.bat: Add SASL manual.
2004-05-23 Lars Magne Ingebrigtsen <[email protected]>
* etc/gnus/news-server.ast: Use library validation.
2004-03-08 Kevin Greiner <[email protected]>
* make.bat: Make sure that gnus-load.el and sieve are writable to
avoid breakage.
2004-03-01 Michael Schierl <[email protected]> (tiny change)
* make.bat: Fix directory test for Windows 9x/ME.
2004-01-07 Hiroshi Fujishima <[email protected]> (tiny change)
* etc/gnus-tut.txt: `G m' instead of `G V'
2004-01-05 Jesper Harder <[email protected]>
* make.bat: Add missing parens. From Robert Marshall
2004-01-05 Simon Josefsson <[email protected]>
* GNUS-NEWS: Mention SASL, and that sieve-manage uses it.
Mention password.el.
Mention NTLM.
2004-01-04 Simon Josefsson <[email protected]>
* GNUS-NEWS: Add IMAP ID (RFC 2971) support.
Mention `W e' for editing all.SCORE.
2004-01-03 Reiner Steib <[email protected]>
* GNUS-NEWS: Update copyright.
* etc/gnus-tut.txt (Gnus FAQ): Remove text version. Refer to info
documentation and online version instead.
* GNUS-NEWS: Changed "Dired integration"
2004-01-02 Reiner Steib <[email protected]>
* GNUS-NEWS: Add `gnus-group-read-ephemeral-group'.
2003-12-23 Reiner Steib <[email protected]>
* GNUS-NEWS: Mention change of `e' in draft groups.
2003-05-01 Jesper Harder <[email protected]>
* etc/gnus-tut.txt (http): Update.
2003-05-01 Simon Josefsson <[email protected]>
* GNUS-NEWS: Add prefix limit feature.
2003-04-30 Reiner Steib <[email protected]>
* GNUS-NEWS: Added Article Buttons. Added Upgrading (from Simon
Josefsson). Add gnus-mime-delete-part, markup fixes and some
other corrections. Mention Gnus FAQ.
2003-04-30 Jesper Harder <[email protected]>
* GNUS-NEWS: Additions.
2003-04-28 Reiner Steib <[email protected]>
* GNUS-NEWS: Fixed X-Draft-Headers entry.
2003-04-27 Simon Josefsson <[email protected]>
* GNUS-NEWS: Fix PGP entry. Doc GCC variable change.
2003-04-22 Reiner Steib <[email protected]>
* make.bat: Flag as binary to ensure DOS line terminators. Delete
trailing whitespace.
2003-04-21 Reiner Steib <[email protected]>
From Frank Schmitt <[email protected]>
* etc/gnus-tut.txt: Update Gnus FAQ, delete trailing whitespace.
2003-04-17 Kevin Greiner <[email protected]>
* make.bat: Cleaned up end-of-line characters.
2003-04-17 Steve Youngs <[email protected]>
* Makefile.in (XEMACS): Use @EMACS@.
* aclocal.m4 (AC_PATH_LISPDIR): Set $datadir to $prefix/lib if
building with XEmacs.
* aclocal.m4 (AC_SET_BUILD_FLAGS): New. So we can set XEmacs
command line options to '-batch -no-autoloads...' for a cleaner
build environment.
* configure.in: Use it.
* configure: Regenerate.
2003-04-16 Reiner Steib <[email protected]>
From Frank Schmitt <[email protected]>
* make.bat: New variable EMACS_ARGS. Changed XEmacs args.
2003-03-23 Simon Josefsson <[email protected]>
* GNUS-NEWS: Add IDNA. Add TLS. Fix USEFOR reference.
2003-03-22 Frank Schmitt <[email protected]>
* make.bat: Redone from scratch; supports both Emacs and XEmacs
now; correctly generate gnus-load.el; check for errors; use
makeinfo if available, infohack.el if it isn't; be less verbose
when copying files; copy files from etc/gnus and etc/smilies, too
2003-03-22 Frank Schmitt <[email protected]>
* make-x.bat: Removed, make.bat does its job now.
2003-03-22 Frank Schmitt <[email protected]>
* etc/gnus-tut.txt: Include Gnus FAQ from http://my.gnus.org.
2003-02-19 Reiner Steib <[email protected]>
* GNUS-NEWS: Renamed `gnus-unsightly-citation-regexp' to
`gnus-cite-unsightly-citation-regexp'.
2003-02-18 Simon Josefsson <[email protected]>
* GNUS-NEWS: Talk about canlock more.
2003-02-13 Kai Gro,A_(Bjohann <[email protected]>
* GNUS-NEWS: Add user visible changes from Michael Shields from
the past couple of days. Actual text from Michael.
2003-01-24 Jesper Harder <[email protected]>
* etc/gnus-tut.txt: Update.
2003-01-15 Simon Josefsson <[email protected]>
* GNUS-NEWS: Add. Fix from Reiner Steib
2003-01-10 Reiner Steib <[email protected]>
* make.bat: Removed "-no-init-file" (it's the same as "-q"). Use
new variables EMACSBATCH and GNUS_INFO_DIR. Install gnus-?,
message-?, sieve and pgg (in texi). Added hint for dir entries.
* make-x.bat: Ditto.
2003-01-13 Simon Josefsson <[email protected]>
* GNUS-NEWS: Add smileys, Sender:, message-utils.
Expand anti-spam. Fixes.
2003-01-09 Simon Josefsson <[email protected]>
* etc/gnus/preview.xpm: Add.
2003-01-06 Simon Josefsson <[email protected]>
* etc/gnus/receipt.xpm: Add.
2003-01-10 Jesper Harder <[email protected]>
* etc/gnus/preview.xbm: Add.
2003-01-05 Katsumi Yamaoka <[email protected]>
* etc/gnus/gnus.xpm (oort): Make the color replaceable.
2002-12-05 Kai Gro,A_(Bjohann <[email protected]>
* etc/smilies/*.pbm: Made them binary.
2002-11-13 Kai Gro,A_(Bjohann <[email protected]>
* etc/smilies/blink.xpm: Changed smileys and some new ones from
Alex Schroeder <[email protected]>.
2002-04-26 Steve Youngs <[email protected]>
* aclocal.m4 (AC_PATH_INFODIR): New. Defaults to '$prefix/info'
for Emacs and 'site-packages/info' for XEmacs.
(AC_PATH_ETCDIR): Drop 'gnus' off the end of the default directory
for XEmacs.
* configure.in: Use 'AC_PATH_INFO_DIR'.
2002-02-22 Steve Youngs <[email protected]>
* aclocal.m4 (AC_PATH_LISPDIR): Default to
.../site-packages/lisp/gnus for XEmacs.
(AC_PATH_ETCDIR): Default to .../site-packages/etc/gnus for
XEmacs.
2002-02-01 ShengHuo ZHU <[email protected]>
* etc/gnus/gnus.xpm: Remove some garbages at the end of the file.
2002-01-05 Lars Magne Ingebrigtsen <[email protected]>
* etc/gnus/oort.xface (X-Face): Oort X-Face from
Raymond Scholz <[email protected]>.
2002-01-02 ShengHuo ZHU <[email protected]>
* etc/gnus/describe-group.xpm: Set pixels of first line to
background color. A bug in Emacs?
2001-12-18 Josh Huber <[email protected]>
* ChangeLog, todo: (oops) changed buffer-file-coding-system back
to coding.
2001-12-18 Kai Gro,A_(Bjohann <[email protected]>
* make-x.bat: Ensure nonempty variable value. Reported by Frank
Haun <[email protected]>.
2001-12-18 01:00:00 ShengHuo ZHU <[email protected]>
* ChangeLog, todo: Add `coding'.
2001-12-17 Josh Huber <[email protected]>
* ChangeLog: changed coding to buffer-file-coding-system
* todo: same
2001-12-10 Kai Gro,A_(Bjohann <[email protected]>
* make-x.bat: Code cleanup. Fix a bug with "/copy". From Frank
Schmitt <[email protected]>.
2001-11-26 Kai Gro,A_(Bjohann <[email protected]>
* make-x.bat: Use parameter "/copy" rather than "copy" for increased
dwimishness for old-time DOS users. From Frank Schmitt
2001-11-15 Simon Josefsson <[email protected]>
* etc/gnus/unimportant.xpm, etc/gnus/important.xpm: New files.
2001-11-11 Simon Josefsson <[email protected]>
* make-x.bat: Don't use -nw. Suggested by Frank Haun
2001-11-01 07:00:00 ShengHuo ZHU <[email protected]>
* etc/smilies/blink.xpm: New set of xpm. From Oliver Scholz
2001-10-29 Per Abrahamsen <[email protected]>
* etc/smilies/sad.pbm: New bitmap.
* etc/smilies/blink.pbm: Ditto.
Contributed by Kim F. Storm <[email protected]>.
2001-10-19 Kai Gro,A_(Bjohann <[email protected]>
From Frank Schmitt <[email protected]>.
* make-x.bat: Use correct directory structure for XEmacs on Windows.
2001-10-06 08:00:00 ShengHuo ZHU <[email protected]>
* Makefile.in (uninstall): Add.
* etc/Makefile.in (uninstall): Add.
2001-09-27 14:00:00 ShengHuo ZHU <[email protected]>
* aclocal.m4 (GNUS_CHECK_FONTS): Typo. Use /dev/null as latex input.
2001-09-27 09:00:00 ShengHuo ZHU <[email protected]>
* aclocal.m4, configure.in: Check commercial fonts.
2001-09-24 19:00:00 ShengHuo ZHU <[email protected]>
* configure.in: Generate texi/ps/Makefile.
2001-09-21 Kai Gro,A_(Bjohann <[email protected]>
* make.bat: Use parameter "/copy" rather than "copy" for increased
dwimishness for old-time DOS users.
2001-09-18 22:00:00 ShengHuo ZHU <[email protected]>
* make-x.bat: New.
2001-07-04 Yair Friedman <[email protected]>
* make.bat: Use infohack.el to create info files.
2001-05-17 Kai Gro,A_(Bjohann <[email protected]>
* etc/Makefile.in (datadir): Set this variable, like in the other
Makefile.in's. Patch from Gaute B Strokkenes <[email protected]>.
2001-02-11 18:00:00 ShengHuo ZHU <[email protected]>
* GNUS-NEWS: Copyright and others.
2001-02-09 20:00:00 ShengHuo ZHU <[email protected]>
* aclocal.m4 (AC_CHECK_URL): Add.
* configure.in: Use it.
2001-01-15 Jesper Harder <[email protected]>
* make.bat: Fix doc.
2000-12-22 03:00:00 ShengHuo ZHU <[email protected]>
* configure.in: Add etc/Makefile.
2000-12-20 Jesper Harder <[email protected]>
* make.bat: set max-lisp-eval-depth.
2000-10-12 Jesper Harder <[email protected]>
* make.bat: Makes it possible to generate the Info files on
windows again.
2000-08-24 Jesper Harder <[email protected]>
* make.bat: Use emacs.exe if emacs.bat does not exist.
2000-05-07 Pavel Janik <[email protected]>
* gnus.texi: direntry added.
* message.texi: direntry added.
* emacs-mime.texi: direntry added.
2000-07-13 10:09:52 Katsumi Yamaoka <[email protected]>
* aclocal.m4 (AC_CHECK_W3): Fix typo.
2000-07-12 15:47:06 ShengHuo ZHU <[email protected]>
* aclocal.m4: Stolen macros from w3.
* configure.in: Use them.
* configure: Generate it.
2000-04-22 20:25:20 Lars Magne Ingebrigtsen <[email protected]>
* GNUS-NEWS: Outline.
2000-01-06 Dave Love <[email protected]>
* aclocal.m4 (AM_PATH_LISPDIR): Check for user's EMACS setting.
1999-11-13 Adrian Aichner <[email protected]>
* xemacs.mak: New NMAKE file to support build and install on
Windows NT.
Copyright (C) 1999-2011 Free Software Foundation, Inc.
This file is part of GNU Emacs.
GNU Emacs is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3, or (at your option)
any later version.
GNU Emacs is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
;; Local Variables:
;; coding: iso-2022-7bit
;; fill-column: 79
;; add-log-time-zone-rule: t
;; End:
;;; arch-tag: 60301ba8-b152-41b3-8fb2-173bba77f2a8