forked from barnowl/barnowl
-
Notifications
You must be signed in to change notification settings - Fork 1
/
ChangeLog
1774 lines (1697 loc) · 85.7 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
1.8
* Compute the home directory in zcrypt consistently with BarnOwl -davidben@mit.edu
* Make help show the correct keybinding for A -jgross@mit.edu
* Add a delete-and-expunge command. -jgross@mit.edu
* Fix a bug in the expunge command -jgross@mit.edu
* Replace 'Owl' with 'BarnOwl' in user visible places -jgross@mit.edu
* Allow zsigs to be '0' -jgross@mit.edu
* Reformat the man page to look more like others -davidben@mit.edu
* Consistently use BarnOwl or barnowl -davidben@mit.edu
* Update autoconf macros -andersk@mit.edu
* history: Do not deduplicate a partial entry -andersk@mit.edu
* Drop show timers feature -davidben@mit.edu
* Add new dependencies, AnyEvent and perl-Glib -davidben@mit.edu
* Bump required glib version to 2.16 -davidben@mit.edu
* Don't leak timestr when setting time in a perl message -asedeno@mit.edu
* Build with -Wwrite-strings -andersk@mit.edu
* Build with C99 -davidben@mit.edu
* Jabber: Handle nicks with leading dashes (e.g. Facebook XMPP) -ezyang@mit.edu
* Move log-writing onto a background thread. -adam@crossproduct.net
* Remove the length limit on field values in :info -jgross@mit.edu
* Show how far you are in a long message -jgross@mit.edu
* stderr_redirect_handler: Handle partial or failed reads -andersk@mit.edu
* Inform the user when an unpunt command does nothing -davidben@mit.edu
* Replace custom event loop with GLib's GMainLoop -davidben@mit.edu
* Encode glib version requirements in pkg-config check -asedeno@mit.edu
* Fix color pair usage on ncurses builds without ext-color -davidben@mit.edu
* IRC: Fix reconnect behavior. -nelhage@mit.edu
* IRC: Make nick-change events LOGIN messages instead of ADMIN. -nelhage@mit.edu
* IRC: Port module to AnyEvent::IRC. -asedeno@mit.edu, nelhage@nelhage.com
* Ability to set exposure arbitrarily (like "zctl set exposure") -jgross@mit.edu
* Kill --remove-debug option -davidben@mit.edu
* exec: Fix input redirection of multistatement commands -andersk@mit.edu
* Correctly set the realm in outgoing zwrite errors -davidben@mit.edu
* Correctly compute the realm for outgoing messages -davidben@mit.edu
* In duplicated outgoing zephyrs only reply on the relevant recipient -davidben@mit.edu
* Create per-recipient copies of outgoing messages for non-CC'd personals -liudi@mit.edu
* Add black to :show colors -andersk@mit.edu
* Fix reporting of errors from libzephyr -kcr@1ts.org
* Load Encode module for IRC. -timhill@alum.mit.edu
* IRC: Sort the output of :irc-names -nelhage@mit.edu
* Prepend "UNAUTH: " to displayed sender for unauthenticated zephyrs -adam@crossproduct.net
* For ‘punt’ with one argument, quote the filter name -andersk@mit.edu
* Fix spurious error running ‘punt’ with no arguments -andersk@mit.edu
* Only handle CCs in messages sent directly to you. -davidben@mit.edu
* Update copyright notices for 2011 -davidben@mit.edu
* If a smartfilter fails to parse, handle the error -davidben@mit.edu
* Replace per-editwin killbuf with a global one. -adam@crossproduct.net
* Don't use error_message if we are building without Zephyr. -nelhage@mit.edu
* Fix replying to outgoing zwrite when -m is passed -davidben@mit.edu
* Fix a number of quoting bugs -davidben@mit.edu
* Check passwd entries to determine home dir -davidben@mit.edu
1.7.1
* Append sender's realm to CC'd unqualified names when replying. -adam@crossproduct.net
* Don't reset ncurses colorpairs in the middle of drawing. -davidben@mit.edu
* Fix viewuser when an unqualified name is given. -davidben@mit.edu
1.7
* Fix quoting bugs in smartfilter, zpunt, and numerous other commands. -davidben@mit.edu
* Download Twitter consumer keys from barnowl.mit.edu. -nelhage@MIT.EDU
* Fix unsub when .zephyr.subs is a symlink. -jgross@MIT.EDU
* Display subject as XMPP personal context (if set). -adehnert@mit.edu
* Allow adding text to the command history. -adehnert@mit.edu
* Fix webzephyr handling. -asedeno@mit.edu
* Fix searching for text containing '!'. -andersk@mit.edu
* Fix a number of memory leaks. -davidben@mit.edu
* Correctly narrow on personals from realm-less senders. -davidben@mit.edu
* Add a random zsig function -kevinr@free-dissociation.com
* Implement searching in popup windows (help, etc.). davidben@mit.edu
* When a zwrite fails, display a more accurate error than "Waiting for ack". davidben@mit.edu
* Fix editwin motion for empty first lines -davidben@mit.edu
* Handle incoming messages with tab characters better. -davidben@mit.edu
* Use fpathconf to disable signals -asedeno@mit.edu
* Fix tab-completion of aliases. -nelhage@mit.edu
* Fix a crash and some bugs in 'zcrypt'. -nelhage@mit.edu
* Display the cleartext on outgoing zcrypted personals. -nelhage@mit.edu
* Add owl_window framework to allow more flexible UI. -davidben@mit.edu
* Display submap bindings in :show keymap KEYMAP. -davidben@mit.edu
* Make unit test environment more consistent with standard BarnOwl. -nelhage@mit.edu
* Jabber: Set long_sender in a MUC to the full sender JID (from presence). -andersk@mit.edu
* Do not instantiate various timers unless used. -davidben@mit.edu
* Make smartnarrow work better on CC:'d personals. -nelhage@mit.edu
* Set edit:maxwrapcols to 70 by default. -andersk@mit.edu
* Allow disabling of both automatic wrapping and filling, display soft line-breaks. -nelhage@mit.edu
* Fix a bug in editwin redraw with echochar set. -nelhage@mit.edu
* Refactor resize code to cut down on flicker and relayout the popwin. -davidben@mit.edu
* Make viewperson, vp aliases for viewuser. -kevinr@free-dissociation.com
* Import Twitter module into main tree. -nelhage@mit.edu
1.6.2
* Use a uniquified debug file location. -nelhage@mit.edu
* Open the debug file using O_EXCL and an explicit mode. -nelhage@mit.edu
* Don't send AIM passwords to the debug log. -geofft@mit.edu
* Remove some dead AIM code that sends local files to the server. -geofft@mit.edu
* Handle errors from ZPending and ZReceiveNotice (CVE-2010-2725). -nelhage@mit.edu
* Include the public repository URL in the README -alexmv@mit.edu
* Install the documentation in 'make install'. -nelhage@mit.edu
* Add a configure flag to enable/disable building with krb4. -wthrowe@mit.edu
* Fix an infinite loop on 'view -r args'. -nelhage@mit.edu
* Free paths to Zephyr dot-files when non-existant -davidben@mit.edu
* Jabber: Accept a -m argument to jwrite to set the message. -nelhage@mit.edu
1.6.1
* Jabber: Explain how to set your nick when joining a MUC. -andersk@mit.edu
* Jabber: Make smartnarrow -i filter on subject. -andersk@mit.edu
* Jabber: Fix completion of MUC names. -nelhage@mit.edu
* Improve help for bindkey and unbindkey -leonidg@mit.edu
* Fix a segfault in smartnarrow. -nelhage@mit.edu
* Fix a race in handling of resize events. -andersk@mit.edu
1.6
* Support filtering on whether a message has been deleted. -nelhage@mit.edu
* Properly quote strings containing newlines or tabs. -nelhage@mit.edu
* Check for an unset mark in owl_editwin_replace_region. -nelhage@mit.edu
* Add the "narrow-related" variable. -geofft@mit.edu
* Fix a display bug under perl 5.12. -nelhage@mit.edu
* Only use typewindelta when opening multiline editwins. -nelhage@ksplice.com
* Add some checks to ./configure. -nelhage@mit.edu
* Fix a use-after-free in popexec.c -nelhage@mit.edu
* Make pseudologins asynchronous -asedeno@mit.edu
* Fix some bugs in editwin handling and clean up code. -nelhage@ksplice.com
* Add new command unbindkey for removing keybindings -leonidg@mit.edu
* zcrypt: Implement AES encryption support using GPG. -nelhage@mit.edu
* Add usage messages to everything in scripts/ -nelhage@mit.edu
* Split zcrypt into an external, standalong binary. -nelhage@mit.edu
* Fix minor documentation typo -alexmv@mit.edu
* Document the init/cleanup vs. new/delete naming conventions. -andersk@mit.edu
* Clean up code naming conventions to help avoid memory leaks.. -andersk@mit.edu
* Add edit:help command for zsh-style in-edit help -davidben@mit.edu
* Use libpanel to simplify and improve display layer. -davidben@mit.edu
* Jabber: Mention [-a <account>] in :help jwrite. -andersk@mit.edu
* Fix zcrypt when compiling without krb4 -oremanj@MIT.EDU
* Send multiple PRIVMSGs for IRC messages entered as multiple paragraphs -oremanj@mit.edu
* Require automake ≥ 1.7.0, and don’t warn about portability to non-GNU make. -andersk@mit.edu
* Makefile.am: Use only direct children in SUBDIRS, to appease automake 1.7. -andersk@mit.edu
* IRC: irc-disconnect on a pending reconnect should cancel it. -nelhage@mit.edu
* Complete several commands that accept a filename. -nelhage@mit.edu
* Complete the 'print' and 'bindkey' commands. -nelhage@mit.edu
1.5.1
* Fix numerous memory leaks. -andersk@mit.edu
* owl_message_get_cc_without_recipient: Don’t overflow the output buffer. -andersk@mit.edu
(Fixes CVE-2010-0793)
* owl_command_aimwrite: Fix a buffer overflow on aimwrite -m. -andersk@mit.edu
* zcrypt: Don’t read off the end of misaligned input messages. -andersk@mit.edu
* Fix zcrypt when compiling without krb4 -oremanj@MIT.EDU
* Fix a crash narrowing to certain messages. -andersk@mit.edu
* Fix a subtle bug in the perl bindings. -nelhage@mit.edu
* Squelch an 'uninitialized' warning in recv:shift-left. -nelhage@mit.edu
1.5
* Show the prompt in short editwins when scrolling back to the start. -nelhage@mit.edu
* Improve handling of some Jabber messages. -asedeno@mit.edu
* Allow ^Z to be rebound. -nelhage@mit.edu
* Skip some IRC admin messages by default, controlled by irc:skip -alexmv@mit.edu
* Reconnect and re-join channels on IRC disconnect -alexmv@mit.edu
* Correct the --with-libzephyr help string to --with-zephyr. -andersk@mit.edu
* Improve performance narrowing to certain filters. -nelhage@mit.edu
* Add completion for :filter* -adehnert@mit.edu
* Fix filter* -adehnert@mit.edu
* Mark the current mark with an asterisk -davidben@mit.edu
* Complete class names for the 'unsub' command. -nelhage@mit.edu
* Make control characters human-readable -kcr@1ts.org
* Further complete the show command -davidben@mit.edu
* Fix a bug reflowing text in the editwin. -davidben@mit.edu
* Reconnect to MUCs when reconnecting to Jabber. -asedeno@mit.edu
* Fix spurious trailing newlines in zsigs. -andersk@mit.edu
* Fix the behavior of the zsig variable. -kcr@1ts.org
* Drop owl_animate_hack. -asedeno@mit.edu
* Add IRC server and channel listing to buddylist -alexmv@mit.edu
* Make Jabber try to reconnect when disconnected, at exponential intervals -alexmv@mit.edu
* Better documentation for jabberlogout. -asedeno@mit.edu
* jabberlogout -a --> jabberlogout -A -asedeno@mit.edu
* Change the default jabber resource to 'barnowl' -asedeno@mit.edu
* Updated Jabber documentation for consistency. -zhangc@mit.edu
* Document :bindkey more clearly. -geofft@mit.edu
1.4
* Fix description of edit:history-next -davidben@mit.edu
* Don’t loop infinitely on matching the empty string. -andersk@mit.edu
* Fix a typo in the jroster help message. -asedeno@mit.edu
* IRC: Handle 'nosuchchannel' events. -nelhage@mit.edu
* Add a function for perl to query whether Zephyr is available. -nelhage@mit.edu
* Add a perl hook that is called once Zephyr is initialized. -nelhage@mit.edu
* AIM: Decode incoming messages properly. -nelhage@mit.edu
* AIM: Correctly send outgoing IMs with high-bit characters. -nelhage@mit.edu
* IRC: Encode outgoing messages as utf-8. -nelhage@mit.edu
* Return unicode strings to perl. -nelhage@mit.edu
* IRC: Fix '-a' with commands that take a channel. -nelhage@mit.edu
* Catch ^Z and display a message instead of suspending. -nelhage@mit.edu
* Fix missing commands from command completion. -nelhage@mit.edu
* Make kill-region stop killing extra bytes after multibyte characters. -andersk@mit.edu
* Squelch some 'uninitialized' warnings in IRC completion. -nelhage@mit.edu
* Add minimal completion for 'aimwrite'. -nelhage@mit.edu
* Zephyr completion: Convert fields to lowercase for completing. -nelhage@mit.edu
* Implement a shift_words method on completion contexts. -nelhage@mit.edu
* Export skiptokens to perl. -nelhage@mit.edu
* owl_text_quote: Don’t leak a kretch-sized buffer. -andersk@mit.edu
* Spread the background color across the right hand side of messages -kcr@1ts.org
* Perl callout for zsig computation + move default to perl -kcr@1ts.org
* BarnOwl::get_zephyr_variable gets you a .zephyr.vars variable -kcr@1ts.org
* Correctly prototype functions with no parameters as foo(void), not foo(). -andersk@mit.edu
* Cause unsub to warn user if user wasn't subbed -davidben@mit.edu
* Refresh popwin border when we redisplay viewwin -davidben@mit.edu
* owl_command_zcrypt: Fix a compile warning building without zcrypt. -nelhage@mit.edu
* Compile with warnings enabled by default. -andersk@mit.edu
* Add equivalent long options for all short options. -nelhage@mit.edu
* Remove defunct TODO and BUGS files. -nelhage@mit.edu
* editwin: Properly update points inside a replaced region. -nelhage@mit.edu
* Shift-R on CC zephyrs should go to the sender only -adehnert@mit.edu
* BarnOwl::Module::Jabber: Quote jroster auth, deauth commands. -andersk@mit.edu
* Use automake’s silent-rules mode if available, for quieter build output. -andersk@mit.edu
* Add configurable time display -adehnert@mit.edu
* Add BarnOwl::redisplay() -asedeno@mit.edu
* Bind C-v and M-v in popless windows -nelhage@mit.edu
* Fix an off by one error in some editwin code. -asedeno@mit.edu
* Make zdots work even if the buffer has trailing whitespace. -nelhage@mit.edu
* Fix pseudo-login interation with zephyr initialization. -asedeno@mit.edu
* Correct the --with-libzephyr help message in the configure script. -broder@mit.edu
* Set the UTF-8 flag on on strings we pass to Perl. -nelhage@mit.edu
* aim.c, perlconfig.c: Fix format string bugs. -andersk@mit.edu
* BarnOwl::Completion: Use multi-argument quote. -andersk@mit.edu
* Jabber: Add quoting for editwin prompt. -andersk@mit.edu
* IRC: Add quoting for reply commands and editwin prompt. -andersk@mit.edu
* Fix quoting for filterappend, filterand, filteror. -andersk@mit.edu
* skiptokens: Handle quotes more correctly. -nelhage@mit.edu
1.3
* Clean up the edit window code significantly. -kcr
* Support inputting tabs in the editwin. -kcr
* Support C-y for yanking text in the editwin. -kcr
* Implement some convenience commands for working with filters. -adehnert
* IRC: Fix "ARRAY(0x...)" at the start of 'whois' output. -nelhage
* Expands tabs to 8 spaces in incoming and outgoing messages. -nelhage
* Make 'zwrite -C ... -m ...' add a CC: line. -nelhage
* Switch the build system to use automake. -nelhage
* Make BarnOwl::$COMMAND to warn if it tokenizes its arguments. -nelhage
* Expose more editwin functionality to perl. -nelhage
* Quash a zephyr 3 warning by adding some missing consts. -andersk
* Fix crash on malformed multi command. -andersk
* owl_command_punt_unpunt: Plug memory leak. -andersk
* stderr_redirect_handler: Plug a memory leak. -andersk
* Jabber: Sort roster entries. -asedeno
* Get rid of a whole bunch of useless casts. -andersk
* Reimplement search in terms of owl_regex. -andersk
* Export owl_function_debugmsg to perl as BarnOwl::debug(). -nelhage
* Implement a tab-completion framework. -nelhage
* Tab-complete commands. -nelhage
* Tab-complete zephyr commands. -nelhage
* Tab-complete help command. -davidben
* Tab-complete :jwrite. -asedeno
* Tab-complete :filter. -davidben
* Tab-complete IRC commands. -broder
* Tab-complete the :show command. nelhage
* Tab-complete :vu and :vc. -nelhage
* Tab-complete :set and :getvar. -davidben
* Tab-complete :view. -davidben
* Improve JID resolution. -asedeno
* Quash some unused variable warnings building --without-zephyr. -andersk
* Use 'const' modifiers in the source where appropriate. -andersk
1.2.1
* Fix building with Zephyr support. -nelhage
* Support --with-stack-protector in 'configure'. -nelhage
1.2
* Fix some typos in source and messages. -adehnert
* Support an explicit --with{out,}-zephyr configure option. -nelhage
* Display a nicer error in :blist if .anyone doesn't exist. -geofft
* Don't zcrypt shift-R replies to zcrypted messages -adehnert
* Export a time_t for messages to perl as 'unix_time' -nelhage
* Get rid of cryptic numeric messages after IRC commands. -ezyang
* IRC: Include IRC admin messages in the 'irc' filter. -geofft
* Fix M-LEFT and M-RIGHT bindings. -nelhage
* Fix replycmd to use right class/instance -adehnert
* Allow SIGINT to interrupt getting the Zephyr buddy list -nelhage
* Break perlwrap.pm into multiple files. -nelhage
* Handle errors in perlwrap.pm better. -nelhage
* Don't attempt to send a Zephyr logout if we never initialized Zephyr. -nelhage
* Display personals better in OneLine mode. -adehnert
* Display context for pings -adehnert
* Support --program-{prefix,suffix,transform}. -nelhage
* Send instanced pings and give useful error messages -adehnert
* Add <message,*,%me%> to default Barnowl subs. -adehnert
* Maintain instance when using shift-R on personals -adehnert
* Improve handling of outgoing instanced personals -adehnert
* Don't require personals to be -i personal. -geofft
* Display context for personals, so as to make <message,*,%me> usable. -geofft
* Implement mark and swap in the message list. -asedeno
* Fix handling of C-SPACE. -nelhage
* Fix some warnings. -nelhage
* Handle SIGINT, and make ^C interrupt searches. -nelhage
* Fix the usage line for punt/unpunt -nelhage
* Small bugfixes to release scripts. -nelhage
1.1.1
* Fix bogus errors 'subscribing to login messages'. -nelhage
* Correctly send Zephyr login notices at startup. -nelhage
* Fix compilation with Zephyr support. -alexmv
* Fix an issue with incoming Zephyrs being delayed. -asedeno
* Fix display of zpunt lines. -asedeno
* Handle invalid regular expressions better (fix a segfault). -nelhage
* Correctly handle zpunts with recipient %me%. -nelhage
* Always send outgoing Zephyrs in utf-8. -nelhage
* Fix documentation for 'zsig' and 'zisgproc'. -nelhage
* Fix personal replies on webzephyr. -geofft
* Fix two memory leaks formatting messages. -nelhage, andersk
* Fix Makefile on platforms with Solaris tar. -nelhage
1.1
* Support building with -fstack-protector. -hartmans
* Don't save partial passwords in editwin history. -nelhage
* Improve IRC documentation. -nelhage
* Don't use the 'zsender' variable for personals. -geofft
* Implement irc-quote and irc-mode. -nelhage
* Leave a one-column margin when wordwrapping. -nelhage
* Remove some autotools-generated files. -andersk
* Include IRC in the default build. -nelhage
* Add a wordwrapping variant of the default style. -nelhage
* Don't send stderr to admin messages. -nelhage
* Remove a build-dependency on krb4. -hartmans
* Allow the creation of type zephyr messages from perl. -geofft
* Initialize Zephyr asynchronously at startup. -nelhage
1.0.5
* Implement initial support for real timers. -nelhage
* Fix some compile warnings. -nelhage
* Don't ignore the --datarootdir setting. -andersk
* Replace questionable sprintf(buf, "%s...", buf, ...) pattern. -andersk
* Show IRC /me messages with the conventional * instead of bold -andersk
* Rip out the openurl function and related variables. -andersk
* Stop leaking perl variables in :perl. -nelhage
* Display multi-line error messages as admin messages. -nelhage
* Fix a bug rendering multi-byte characters in the last column of the window. -andersk
* Map Esc-A/B/C/D like arrow keys everywhere. -geofft
* Fix a bug trying to disconnect from Jabber with no accounts connected. -asedeno
* Call perl_sys_init3 to make libperl work on several other platforms. -hartmans
* Bind the 'Delete' key to delete the next character. -andersk
* Fix a double-free in owl_zephyr_delsub. -geofft
* Don't fill-paragraph the ending dot of the buffer. -price
* Fix numerous unsafe uses of sprintf(). -nelhage
(Fixes CVE-2009-0363)
1.0.4
* Added a ':show quickstart' command. -geofft
* Allow filters that reference a sub filter more than once non-cyclically. -nelhage
* Make 'version' return 'BarnOwl' not 'Owl'
* Escape interpolated regexes in filters. -andersk
* Various code cleanups. -andersk
* Fix format string injection bugs. -andersk
* Clean up various code warnings. -nelhage
* Replace questionable sprintf(buf, "%s...", buf, ...) pattern. -andersk
* Show IRC /me messages with the conventional * instead of bold. -andersk
* Rip out the openurl function and webbrowser variable. -andersk
1.0.3
* Moved BarnOwl source control to git on github.
* Only call the zsig proc when we actually send a message. -asedeno
* Strip out BOMs from Jabber messages. -asedeno
* Fix logging of personal jabbers from JIDs containing / -nelhage
* Fix Jabber breakage under reload-modules. -asedeno
* Make reload-moduled correctly re-run startup hooks. -asedeno
* Squelch Jabbers with no bodies, such as typing notifications. -asedeno
* Various small spelling and grammar fixes. -geofft
* Fix a segfault when sending short zcrypted messages. -asedeno
1.0.2.1
* Fix :reload-module's interactions with PAR modules
1.0.2
* Fix a segfault on retrieving zephyr subs when the user doesn't
have any or has expired tickets. -asedeno
* Don't complain about non-existant ~/.owl/startup when starting. -asedeno
* Fix narrowing to personals in IRC. -alexmv
* Don't segfault retrieving subscriptions without valid tickets. -asedeno
* Load modules even if .owlconf doesn't run successfully. -nelhage
* Update the manpage for barnowl. -nelhage
* Better support for irc-names, irc-topic, and irc-whois. -geofft
* Display /quit messages in IRC -geofft.
* Add a new perl hook for all new messages. -geofft
* Fix a bug causing corrupted input in the editwin on end-of-line. -nelhage
* Add better support for adding hooks in perl that behave correctly
on module reload. -nelhage
* Added a :reload-module command to reload a single module. -nelhage
* Fixed quoting issues replying to jabber users or MUCs containing
whitespace or quites. -nelhage
1.0.1
* Remove an unneeded .orig file from libfaim/ - hartmans
* Update the copyright notice in ':show license' - nelhage
* Add a jabber:spew variable that controls whether unrecognized
Jabber messages (such as pubsub requests) are displayed. - nelhage
* Make the 'style' command assume the main:: package for
unqualified subroutine references. Reported by Jesse Vincent. - nelhage
* Rename doc/contributors to the more canonical AUTHORS - nelson
1.0.0
* Don't fail silently when sourcing a file; actually let the user know. - asedeno
* Only hang for 1s, rather than 10s, if there is no zhm - nelhage
* Merge the unicode branch to trunk. BarnOwl is now unicode aware
and can send, receive, input and display UTF-8 encoded
messages. Unicode changelog:
* Put glib's CFLAGS and LDFLAGS at the beginning of the corresponding
variables. - nelhage
* Unicode branch: Fix building without zephyr. - asedeno
* Fix a unicode branch wordwrap problem. - asedeno
* Fixing an obscure wrapping bug that nelhage and I tracked down. - asedeno
* Rename configure.in to configure.ac so Debian autoconf DTRT. - nelhage
* Fix a bug in owl_editwin_move_to_previousword() which would skip over
single letter words. - asedeno
* I think I like this better. - asedeno
* Fix nelhage's key_left bug. Don't spin at the locktext boundary. - asedeno
* fix a typo in OWL_FMTEXT_UTF8_BGDEFAULT
* fix a parsing issue for attributes - asedeno
* Better compliance with UTF-8 processing. Stop trying
to pull in a UTF-8 character as soon as we know something has gone
wrong. - asedeno
* Removing more hackery I left behind after doing things
the right way. - asedeno
* editwin.c - fix a wrapping bug I introduced in the
last revision. It could leave us with a buffer that was not valid UTF-
8 - asedeno
* editwin.c - lots of utf-8 cleanup that I had been
putting off. util.c - a can we break here'' function based on perl's
Text::WrapI18N - asedeno
* Remove more bad hacks. - asedeno
* Remove a debug message I accidentally left in. Remove
the hours old check_utf8 hackery in favor of actually marking strings as
UTF-8 from the C side. - asedeno
* editwin.c: make locktext deal with UTF-8
* Jabber - More utf-8 sanitizing.
* Pet peeve - tabs. That should be the end of it for
now. - asedeno
* Shuffling a line of code to where it actually should
be. - asedeno
* Patches to jabber libraries for better UTF-8
handling. - asedeno
* fix a typo that was causing background problems
* pass defaults attributes through in the truncate functions - asedeno
* Eliminating a warning by un-internalizing a new fmtext
function. - asedeno
* Do not use bit 0x80 to indicate meta. We have other uses for that bit.
* shift it above ncurses's KEY_MAX instead. - asedeno
* drop unused struct member
* fixing post-processing in the editwin. - asedeno
* Preserve colors when highlighting search terms. - asedeno
* ignore KEY_RESIZE if we know what that is. We don't need an
unhandled keypress every time we resize the terminal. - asedeno
* more strict utf-8 byte fetching.
This probably still needs more work. - asedeno
* Strip formmating characters when dumping to
file. - asedeno
* fixing bugs in editwin bufflen calculations. - asedeno
* Fix search code so higlighting actually works. - asedeno
* Remove options for libcurses and libncurses. This really only works with
libncursesw. - asedeno
* text entry:
first pass at utf-8 text entry.
* Change wcwidth() calls to mk_wcwidth() - asedeno
* First pass at outbound zephyr -> iso-8859-1 sanitizing.
Not that we can input anything other than ascii yet...
* Fixing bug encountered when last field was not null-
terminated. - asedeno
* First pass at incoming zephyr -> UTF-8 sanitizing.
This only operates on incoming data so far. We still need to clean outgoing
data -- the plan is to attempt conversion to ISO-8859-1, and use that if it
works. - asedeno
* Reworked the fmtext format to use in-line formatting. Characters used
for formatting are part of Unicode Supplemental Private Area-B, or
Plane 16.
* include wchar.h
* replace hand-rolled width detection with wcswidth.
* pad with space if we end up halfway into a character at the start of a line.
* UTF-8 - first pass
* make owl_text_truncate_cols() and owl_fmtext_truncate_cols() understand character width.
This may need more work. Some code duplication - see if we can refactor.
* stristr() rewritten to yse g_utf_casefold() instead of downstr(), and restructured to have a single return.
* only_whitespace() rewritten for unicode.
* Fix sending jabbers to JIDs beginning with `+' - nelhage
* Compile zcrypt.c with -w so I don't get all these warnings in my compile
output whenever I change any headers - nelhage
* Implement /me for outgoing IRC messages - geofft
* Add a makefile rule to support emacs flymake-mode - nelhage
* Bind the combinations the iPhone sends for arrow keys [probably other
terminals, too] - nelhage
* avoid null pointer dereference if msg is NULL (or a 0 length is
claimed) - shadow
* Move styles from the current mishmash of different options to a unified
perl object interface. - nelhage
* Refactor default style code somewhat to be more easily extensible - nelhage
* Put glib's CFLAGS and LDFLAGS at the beginning of the corresponding
variables. - nelhage
* IRC: /list, /who, and /stats commands - geofft
* IRC: Make M-N mostly, rather than completely, useless. - geofft
* Fix two small bugs in styling pointed out by broder - nelhage
* Document create_style - nelhage
* Move time_hhmm into a format_time method - nelhage
* Remove prototypes from perlwrap.pm - nelhage
* Quote regexp filter elements with spaces in them. - asedeno
* Deal with smart-narrowing when the user's screenname has spaces in it. - asedeno
* Add a new struct member to the global to hold an escaped aim screenname.
populate the aforementioned new struct member. - asedeno
* Removed our debian subdirectory, per Debian guidelines, at broder's
request. - geofft
* Make `all' the first target so we build the modules by default - nelhage
* Commit inc/ under IRC so we build on systems with too old a M::I - nelhage
* updating contributors - nelhage
* Clean up licensing information and add a COPYING file - nelhage
* Update bugs email to a more professional looking address, and remove the
Development build warning. - nelhage
BarnOwl r989 (2008-03-21)
* Stick modules on the beginning of @INC, not the end - nelhage
* Merge in the select branch. BarnOwl's main loop now uses a select()
based event loop rather than continually polling, and uses much less
CPU. - asedeno
* Fix a bug where an explicit (local) realm foiled
owl_message_get_cc_without_recipient(). (per quentin) - geofft
* HTML Filtering fix for BODY tag - austein
* Add parenthesis to fix a perl error in IRC - nelhage
* Make IRC admin messages actually display their content - nelhage
* Fix a file descriptor leak. - asedeno
* Fix loading PAR modules that weren't present at startup - nelhage
* Update perlwrap.pm documentation for the select() BarnOwl - nelhage
* Render IRC notices as normal messages - nelhage
* ensure that even if ioctl(,TIOCGWINSZ,) returns 0s we never set g->lines
(and g->cols) to 0 - shadow
* Generate less ugly error spew if a module fails to load - nelhage
* Added :webzephyr command with keybinding W. - geofft
* Fix a race condition in which zephyrs received during init are not noticed
until the next zephyr after entering the mainloop. - asedeno
BarnOwl r941 (2008-02-18)
* unicode/glib branch Remove a debug message I accidentally left in. Remove
the hours old check_utf8 hackery in favor of actually marking strings as
UTF-8 from the C side. - asedeno
* unicode/glib branch Remove more bad hacks. - asedeno
* Rewrite ::Connection to not subclass Net::IRC::Connection to avoid stupid
namespace conflicts - nelhage
* svn:ignore for great justice - nelhage
* Attempt to load BarnOwl::MessageList::SQL and error if it fails. Note that
the aforementioned class n'existe pas - nelhage
* unicode/glib branch editwin.c - lots of utf-8 cleanup that I had been
putting off. util.c - a can we break here'' function based on perl's
Text::WrapI18N - asedeno
* unicode/glib branch editwin.c - fix a wrapping bug I introduced in the
last revision. It could leave us with a buffer that was not valid UTF-
8 - asedeno
* dropping one unnecessary time(NULL) call. - asedeno
* unicode/glib branch removing more hackery I left behind after doing things
the right way. - asedeno
* unicode/glib branch better compliance with UTF-8 processing. Stop trying
to pull in a UTF-8 character as soon as we know something has gone
wrong. - asedeno
* First prototype of a SQL-backed message list. This is probably
horribly broken, and is painfully slow at the moment. - nelhage
* minor changes to IRC
* Resizing should not leave the current message off screen. - asedeno
* Added initial IRC support. Not built or installed by default. - geofft
* Preserve colors when highlighting search terms. - asedeno
* Handle zephyrs to users on non -c message better [trac #39] - nelhage
* Make :reload-modules work correctly with PARs - nelhage
* Document (nearly) every public function in the BarnOwl:: namespace -
nelhage
* strip IRC coloring from IRC messages - nelhage
* Document ::Hook and ::Hooks - nelhage
* Nuke the stylefunc_default C code - nelhage
* Nuke some refs to owl_message_get_notice - nelhage
* Clearing the line should preserve the echochar. - asedeno
* Fix logins to jabber.org - reported by gendalia - asedeno
* Move oneline style to perl. [trac #43] - nelhage
* Fix the error messages sending to users who don't exist or aren't signed
on. - nelhage
* Jabber Buddy Lists:
* Query the jabber:show_offline_buddies once when invoking onGetBuddyList()
* Don't bold online roster entries when hiding offline ones - asedeno
* Portability - removing C++ style comments. - asedeno
* Add the variable 'zsender' to customize the outgoing Zephyr
username. - geofft
* Bind M-left and M-right by default in the editor - nelhage
* eliminate a segfault. - asedeno
BarnOwl r796 (2008-01-08)
* Define variables at the top of blocks for better ANSI C-ness (patch by
Chris Laas) [trac #18] - nelhage
* Implement :punt and :unpunt to punt arbitrary filters, rather than just z-
triplets. [trac #6] - nelhage
* Show non-personal pings like stock owl does. [trac #12] - nelhage
* Fix problems with jabber servers keeping the same stream id when
negotiating TLS tracked down by Greg Hudson. - asedeno
* When we're narrowing to an instance, properly include un-instances. This
fixes narrowing to any instance that starts with ``un-'' - nelhage
* Don't read before the start of the string for an instance - nelhage
* Adding an explicit -f - to the tar commands for FreeBSD compatibility
(reported by ecprice) - nelhage
* Some fixes for FreeBSD. - ecprice
* Do ~-expansion in :loadsubs. [trac #26] - nelhage
* Validate JIDs passed to jmuc join. [trac #25] - nelhage
* Show full JIDs for users in non-anonymous JIDs in :jmuc presence. [trac
#24] - nelhage
* Don't crash if we hit `i' on a zephyr containing non-ASCII iso-8859-
*. - nelhage
* added -m flag to aimwrite - matt
* aimwrite -m displays according to displayoutgoing - austein
* Make the usleep call more reasonable for less CPU usage - asedeno
* Add zip as build-depends - nelhage
* bind END in popless windows. [trac #41] - nelhage
* Allow C-r on outgoing messages (useful for CCs) - chmrr
* Identify ourselves as barnowl more consistently - chmrr
* Report subscription errors more accurately. - chmrr
BarnOwl r751 (2007-08-01)
* Refactored message processing: All new messages, incoming or outgoing, get
added to the owl_global_messagequeue by protocol code, and then passed to
owl_proces_message, which serves as a single central code path for adding
messages to the message list. - nelhage
* Properly pass the usage when defining the jabberlogin command - nelhage
* Outgoing messages now log as much information as incoming messages - chmrr
* Fix a pointer corruption issue if we redefine the current style. - nelhage
* Adding 3 variables for the Jabber module: jabber:show_offline_buddies,
jabber:auto_away_timeout, jabber:auto_xa_timeout - asedeno
* Don't include self when replying to CC'd messages - chmrr
* Outgoing CC'd messages get logged to all recipients - chmrr
* Incoming CC'd zephyrs logged to all people they were sent to - chmrr
* Change the width at which we hard-wrap outgoing zephyrs by default so
that zephyrs will fit on screen with the default style. (suggested by
andersk) - nelhage
* Added a -s switch to change the location of the config dir (~/.owl) -
nelhage
* Don't allow you to go off the end of an empty message list. [trac
#9] - nelhage
* Allow you to send to -c message -i personal * - nelhage
* Make zephyr smartnarrow use the `personal' and `private' distinction
properly [trac #2] - nelhage
* Change the default personal filter to <message,personal,*> for
zephyr. - nelhage
* Display opcodes with the default style - nelhage
BarnOwl r720 (2007-05-29)
* Correctly define a ``private'' zephyr as one that is sent to a
recipient that is neither empty nor starts with ``@'' - nelhage
* Fix builds under make -j - nelhage
* Fix sending of zcrypted zephyrs - nelhage
* Rewrite perl internals to factor out module loading. - nelhage
* Fix display of zephyrs with empty instances - nelhage
* Implemented a Module::Install plugin for building barnowl plugins - nelhage
* Modified the makefile to build and install perl modules - nelhage
* Fix the bug in which rejoining a MUC you're already in (nick change)
results in the MUC appearing multiple times when you show presence info for
all MUCs. - asedeno
* Implemented loading of both PAR and unpacked modules, and module
reloading. - nelhage
* Make the Makefile build and install perl modules on a clean install.
- nelhage
* Implemented an LRU cache of the message list fmtexts. This reduces
memory usage by roughly 1MB/kilo-zephyrs in steady state. - nelhage
* Escape $ in regexes (e.g. smartnarrowed instances)
- nelhage
* Adding 256-color support. This requires a version of ncurses that supports
ABI-6. Colors beyond the first eight are refered to by number. - asedeno
* Correctly escape {} and () in regular expressions - nelhage
* When generating filters, change single quotes and double quotes into
dots, so they line parser doesn't choke on them. This fixes problems
smart-narrowing to instances such as "this'll break it". - asedeno
* Improving the private/personal distinction:
* ``private'' means to/or from an individual, not a chat/class/etc.
* ``personal'' means ``matches the personal filter'' - nelhage
* Beep on personal messages, not private, by default.
- nelhage
* Some small doc fixes (thanks to jwalden for pointing them out). - nelhage
* Added the ability to define new variables from perl. - nelhage
* Documented said ability via BarnOwl::new_variable_* - nelhage
* Add a "setsearch" command which sets the search highlight string without
moving the cursor. - glasser
BarnOwl r657 (2007-03-06)
* Fix libfaim to make it compile - nelhage
* Apply some memory leak patches by alexmv and yoz - nelhage
* Make smartnarrow un- and .d-aware - chmrr
* Add a `getstyle' command - asedeno
* Make Test failures print file/line numbers - nelhage
* Fixed regression tests for booleans variables. - asedeno
* Add a perl perl hook into owl's main loop. - asedeno
* Added the ability to install real commands from perl code - nelhage
* Fix a hang in owl_editwin_move_to_previousword - nelhage
* Updated the version number and startup message - nelhage
* Added initial support for creating and injecting messages into the display
from perl. - nelhage
* Added the ability for perl code to hang arbitrary reply commands off of
messages. - nelhage
* Expose the edit window hooks to perl - nelhage
* Removed references to -ldes - kchen
* Exposed owl_function_error and owl_function_makemsg as commands - nelhage
* Implemented initial Jabber support. - asedeno
* Implemented initial Jabber groupchat support. - asedeno
* Added a perl hook to the buddy list display - nelhage
* Added a get_data_dir function to the perl interface - hartmans
* Don't include the default typemap in xsubpp compile line - hartmans
* Cause perl to always be loaded, even if no owlconf is present. - hartmans
* Implemented an extensible perl module system - hartmans
* Exposed owl_fuction_popless_text() and owl_fuction_popless_ztext() to
perl - asedeno
* Support multiple simaltaneous Jabber connections - asedeno
* Fixed a segfault on subbing without a .zephyr.subs file - nelhage
* Implemented Jabber Roster support - asedeno
* Don't quit if we can't contact the hostmaster. - nelhage
* Support filters based on arbitrary message attributes - nelhage
* Rewrote and massively cleaned up the filter system internals. - nelhage
* Fixed the ``personal'' filter to work better with all protocols - nelhage
* Made `smartnarrow' more generic, and implemented it for jabber. - nelhage
* Changed executable name to "barnowl" - nelhage
* Renamed the `owl::' package to BarnOwl:: - nelhage
* Dynamically link perl libraries - nelhage
* Added background color support - asedeno
* Added idle-time tracking, and updated jabber to automatically set away
status - asedeno
* Implemented shortnames for jabber rosters and jwriting. - nelhage
* Fixed a crash when smartnarrowing to instances with lots of periods or
other regular expression metacharacters. - nelhage
* Support comments in ~/.owl/startup - asedeno
* Dispal tweaks for MIT's -c discuss messages. - asedeno
* Don't override perl's idea of the switches we need to do embedding. -
shadow
* Make the default style perl, rather than C. - nelhage
* Refactor the default style to be protocol generic - nelhage
* Prefer ~/.barnowlconf to .owlconf, if it exists. - nelhage
* Intern hostnames and message attribute keys for a slight memory
saving. - nelhage
* Use libncursesw when available - asedeno
2.1.12pre
Don't crash when sending/logging outgoing
AIM message and not logged in [BZ 90]
Don't crash when senging to someone not on AIM buddy list [BZ 94]
(patch from Alex Vandiver)
2.1.11
Don't crash doing zlocate with bad tickets. [BZ 12]
Metion the path for the owlconf in intro.txt [BZ 54]
Print better error message if startup fails due to unreadable
.owlconf [BZ 57]
In load-subs: Print an error message if the file is unreadable or
doesn't exist, UNLESS load-subs is called with no arguments. In
that case only print an error if the file exists but isn't
readable. Still prints an error either way if zephyr reports a
failure. [BZ 19]
Fixed some small memory leaks in logging if files unwriteable
If the variable logfilter is set it names a filter. Any messages
matching this filter are logged. This is an independent
mechanism from the other logging variables. If you want to
control all logging with logfilter the other variables must be
set to their default (off) settings. [BZ 37]
Relatively substantial changes made under the hood to support
filter logging. Now have more consistent interfaces to
creating messages etc. Still needs more work though.
Deal gracefully with being resized as small as 1x1 [BZ 3]
2.1.10
Fix a new problem finding libdes425
Don't crash on very long hostnames [BZ 52]
In 'sub' command, create .zephyr.subs if it doesn't exist [BZ 15]
A fix for certain resize crashes (partly from alexmv) [BZ 55]
Turn off ISTRIP (gildea)
2.1.9
Include /usr/include/kerberosIV if it's found
2.1.8
Do OLC formatting for anything coming from olc.matisse
Improvements to popup size algorithm (from gildea)
Improved 'show colors' with non-colored labels
2.1.7
The colorclass command is added, to make colorization easy
Handle MIT Athena OLC zephyrs correctly
Updated ktools website / bug address
Do ntohs() when printing zephyr port in zephyr info
Updated man page
2.1.6
Fixed three bugs found by Valgrind.
Fixed a case where doing "aim addbuddy" instead of "addbuddy aim"
would cause a segfault.
pexec will now incrimentally display data as it is output
by the child process. Additionally, commands running under
pexec may now be killed by quitting out of the popless window.
Added muxevents select loop dispatcher. File descriptors may
be registered with muxevents and handlers will be dispatched
to when data is available for non-blocking read/write/except.
Switched the stderr_redir stuff to use muxevents.
Print C-\ correctly (from gildea)
Dropped first brace in muxevents functions for consistency
Catch SIGHUP and SIGTERM and do a proper logout
2.1.5
Added a licence
The 'personalbell' variable can now be set to 'on' 'off' or
the name of a filter to match against
The 'loglogins' variable now controls whether login/logout
messages are logged. It is off by default. For now this
affects only AIM messages, later zephyr login/logout messages
will also be logged if this is set to 'on'
Added 'show license'
2.1.4
Normalize and downcase AIM names for logging
Fixed a bug where sending a null zsig could cause a crash
Better 'away' toggling if only one protocol is away.
2.1.3
Added perl filter elements. Similar to having "filter <subfilter>"
in a filter, you may also have "perl <functionname>"
where <functionname> is passed an owl::Message object and
returns 0 or 1 depending on whether the message matches
that element of the filter.
Don't print an error about loading subs if there is no
.zephyr.subs
Do the initial zephyr_buddy_check when pseduologin set to true.
Updated man page
2.1.2
removed unused filter_depth variable
Fixed memory bug on receiving pings
2.1.1
Filters of filters now work.
Removed the "possibly not readable" part of the config parsing
error
In the sepbar, reverse video the view name when it's not set to
view_home (as opposed to the static 'all').
The '!' key (bound to 'view -r') now creates a negative version of
the current view and switches to it. i.e. "show me all the
messages that are not these"
Added the 'ignorelogins' variable
Log when outgoing personal message fails
Removed file descriptor from sigpipe catcher printer just for now,
since the field does not exist on OSX
Added an ifndef for socklen_t in libfaim/ft.c
Added the 'aim search' command. The popup on callback may be
dangerous, should switch to an admin msg for results, or add a
new event queue
First pass at AIM away messages. It is a little different from
what most clients seem to do, in that an away reply is sent for
each message received. Most clients only reply to the first one
per away-session.
Now have a set of 'aaway' commands and variables just like the
'zaway' ones (except that changing the 'aaway' variable talks to
the server)
The new 'away' command does everything for both AIM *and* zephyr.
There is a known funkiness here, where if you turn one away on,
and then use 'away' (or 'A') to toggle, you will turn on off and
the other on. Just leaving it for now. Should do better in the
next patch.
The 'A' key is bound to 'away'
Status bar can now read AWAY, Z-AWAY or A-AWAY.
Changed C-n to scroll down just a line in popless
If the config exists but is not readable, print an error before
exiting
Only print forced AIM logout message once.
Don't bind F1 to help in edit context
Fix bug in 'getsubs' with no tickets
New code for getting users from .anyfile
Added the 'pseudologins' variable, and code to do it
new attributes 'pseudo' 'logintty' and 'loginhost'
Don't print extra new lines in popless_file
New zephyr_get_field function
2.0.14
Fixed missing word in startup message
Better 'status' command
Use '+' for popwin corners when 'fancylines' is off
Allow TERMINFO to be overridden in the envrionment
Command line arg -D turns on debugging and deletes previous
debugging file
Do ~ expansion in 'dump' command.
Current directory added to 'status' command
Massive changes to libfaim and aim
2.0.13
Changed startup message for new mailing list
blist now prints AIM info even if .anyone is unreadable
Catch SIGPIPE and print an error rather than crashing.
[It's possible that this may have some portability
issues under Solaris and we may need to add some
configure stuff around SA_SIGINFO...]
Handle the case in aim_bstream_send where aim_send returns -1,
although there is likely an underlying problem here
that would lead to this case.
Print the username on aim login failure, not something random like
the password. ;)
Un-word-wrap text when sending AIM messages.
Replace the main loop continue in the keyboard handler with an else.
2.0.12
Command history now doesn't allow the last entry
to be repeated
If format_msg returns "" print "<unformatted message>"
Better align oneline admin and loopback messages
Print an admin message indicating when subscriptions can
not be loaded on startup
Set aim_ignorelogin_timer to 15 by default
Admin message on login/logout of AIM
Fixed double quoting in smartzpunt
Added timestamp to login/logout messages
Fixed replies to loopback messages
Fixed smartnarrow on classes/instances with spaces
Added the 'loggingdirection' variable
All loopback messages log to 'loopback' now
Print an error message if trying an invalid color for a filter
Fixed bug causing > not to go to end of editwin every time
2.0.11
Updated basic help
Display CC: in outgoing CC messages
More AIM logout detection
Don't proclaim "interfaces changed" on first build.
Added the 'loopback' message type
Added the 'loopwrite' command
Added a timestamp to the default style
Zpunt now works with weird regex characters
Smart filters now work with weird regex characters
2.0.10
Allow 'hostname' in filters.
Fixed bug in reporting when no one is subbed to a class
Added an extral newline in logging incoming zephyrs
An admin message is displayed when you are logged out of AIM
Print an error message and admin message if an AIM send fails
2.0.9
Added the 'fancylines' variable.
Added the 'show startup' command.
Added feature for capturing stderr messages
from commands and displaying them in the errors buffer.
Create an admin message explaning that a zephyr couldn't
be sent
Better reporting of perl errors (both into the errqueue
and also clearing the error after displaying it).
Allow default_style to be specified in config.
Added errqueue
Added command "show errors"
Fixed bug removing newlines in backup files
2.0.8
Increased size of screen name field in buddy listing
Fixed bug with idle times causing broken pipes.
New libfaim
Added the 'source' command.
Make sure that a newline is always at the end of messages
returned by perl style formatting functions.
Add owl::login and owl::auth to legacy variables populated for format_msg.
Additions to intro.txt and advanced.txt documents. (Still in progress.)
Add base methods for login_host and login_tty
and others that return undef.
New API for perl message formatting functions.
Legacy variables are still supported for owl::format_msg
and owl::receive_msg, but these functions are now also
passed an owl::Message object which contains methods
for accessing the contents of the message. See perlwrap.pm
(and docs TBD) for the available methods.
*** WARNING: The exact API for owl::Message has
*** not yet stabilized.
Added "style" command for creating new styles.
Usage: style <name> perl <function_name>
Added support for "show styles". Changed global style table
from list to dictionary.
Changed AIM password prompt from "Password:" to "AIM Password:".
Messages are reformatted after a window resize to allow styles
to take into account the width of the window.
When perl throws an error, the message is put in the msgwin
if possible.
Added perl functions for:
owl::getcurmsg() -- returns an owl::Message object for
the active message
in the current view.
owl::getnumcols() -- returns the column width of the window
owl::zephyr_getrealm() -- returns the zephyr realm
owl::zephyr_getsender() -- returns the zephyr sender
Made owl::COMMAND("foo"); be syntactic sugar for
owl::command("COMMAND foo");
Added perlwrap.pm to contain perl code to be compiled into
the binary. This is transformed into perlwrap.c by
encapsulate.pl.
Renamed readconfig.c to perlconfig.c and changed variables accordingly.
Minor bugfixes in cmd.c and commands.c
Improved intro doc
2.0.7
Idletimes now appear in the buddylisting
Failed AIM logins are now correctly reported
Owl will build now without zephyr, enabling it to act as a
standalone AIM client.
There is now a zcrypt command
Replies to zcrypted messages now work
Don't allow zwrite if zephyr isn't present
Cleaned up some warnings from linux gcc.
Fixed bug that can cause response stuff to crash
Improved status command
Fixed bug in buddy stuff