source: ChangeLog @ e50cd56

barnowl_perlaimdebianowlrelease-1.10release-1.4release-1.5release-1.6release-1.7release-1.8release-1.9
Last change on this file since e50cd56 was e50cd56, checked in by Erik Nygren <nygren@mit.edu>, 22 years ago
Fixed some buffer overruns in the "reply" command. When repying to "all" on a message that begins with "CC:" (eg, sent with "zwrite -C", the reply line will be constructed from the sender and the usernames on the CC: line of the message being replied to. There is no such thing as C-R, so left C-r as it is but added: M-r --- edit reply to all M-R --- edit reply to sender
  • Property mode set to 100644
File size: 20.4 KB
Line 
1$Id$
2
31.2.1-pre-2
4        Refixed 'login or login' typo in help
5        Fixed M-u description
6        Removed 'first' and 'last' from basic command help
7        Added M-N to basic key help
8        Added M-D, M-u to basic key help
9        Fixed a quoting problem in configure.in
10        Changed top of help to use 'show' instead of M-x
11        Fixed a bug in the summary field for user-created aliases
12        Added "reply zaway" which sends a zaway response to the current msg.
13        Added "edit:delete-prev-word" command and bound M-BACKSPACE to it.
14        Added owl_sprintf which returns the formatted string, or NULL.
15                The caller must free this string.
16                This will allocate enough memory and thus
17                avoid potential some buffer overrun situations.
18        Started fixing some potential buffer overrun situations.
19        Simple implementation of 'zwrite -m' (doesn't yet log an outgoing
20                message as having been sent.)
21        The "Not logged in or subscribing to messages" error
22                now includes the name of the recipient.
23        The "disable-ctrl-d" variable may also be set to "middle"
24                which will result in ctrl-d only sending at the
25                end of the message.  This is now the default.
26                This also added a command "editmulti:done-or-delete".
27        Fixed a bug in the "reply -e" command.
28        Always clear the command buffer before executing the command.
29                (So that interactive commands can sanely do start-command.)
30        Fixed preservation of e->dotsend across owl_editwin_clear().
31        Added history for multiline edit windows (eg, for zephyr composition).
32                The M-n and M-p keys will cycle through the history ring.
33                In particular, it is now possible to edit the command line
34                of a zephyr being composed:  C-c it and restart it
35                and then M-p to get the aborted composition back.
36        Added owl::send_zwrite(command, message) to the perl glue
37                to allow for the direct sending of multi-line messages.
38                For example:  owl::send_zwrite("-c foo -i bar", "hello");
39        Reverted attempted fix for the pagedown problem
40                which just made things worse.
41        Changed owl_fmtext_print_plain to return an alloc'd string to
42                avoid buffer overrun risks.
43        Added owl::ztext_stylestrip("...") function to perlglue
44                 which returns the ztext with formatting stripped out.
45        Added colorztext variable which can be used to disable @color()
46                 strings arriving in messages after it is set.
47                 (Currently, changing its value won't reformat messages).
48        Outgoing zephyr logging now obeys the logpath variable.
49        The '~' character in logpath and classlogpath now gets
50                 replaced with the user's home directory.
51        Added simple implementation of smartnarrow-to-admin that
52                 creates a "type-admin" autofilter.
53                 This was done mostly so that M-C-n and M-C-p do something
54                 sane on admin messages.
55        Added opera to the allowed options to the webbrowser variable.
56        Fixed some buffer overruns in the "reply" command.
57        When repying to "all" on a message that begins with "CC:" (eg, sent
58                 with "zwrite -C", the reply line will be constructed
59                 from the sender and the usernames on the CC: line
60                 of the message being replied to.
61        There is no such thing as C-R, so left C-r as it is but added:
62                 M-r --- edit reply to all
63                 M-R --- edit reply to sender
64       
651.2.1-pre-1
66        Added RCS Id strings to all files.
67        'show keymaps' shows details of all keymaps after summary list.
68        Added --no-move option to delete command.
69                In particular, delete-and-always-move-down may now
70                be implemented with
71                '( delete --no-move ; next --skip-deleted )'.
72        Folded the nextmsg and prevmsg commands and functions together into
73                one command which takes arguments.
74                Added '--filter <name>' option (eg, for next_personal),
75                '--skip-deleted' option, and
76                '--last-if-none'/'--first-if-none' options.
77                Help updated accordingly. 
78                In particular, the 'personal' view is now used
79                for 'next personal'. 
80        Updated examples/owlconf.erik with the above.
81        Fixed the annoying pagedown sometimes-not-working bug.
82        Made owl_function_fast*filt return a string and not do the
83                narrowing, to make it more general.
84        Added a smartfilter command that creates a filter
85                based on the current message and returns the name
86                of the filter.
87        Added --smart-filter and --smart-filter-instance options
88                to the next and prev commands.
89        Added M-C-n and M-C-p keybindings to "move to next message
90                matching current" and "move to previous message
91                matching current"
92        Added variables edit:maxfillcols and edit:maxwrapcols which
93                will limit how wide editing paragraphs may get before
94                they get wrapped.  This is a max and may be narrower
95                depending on the current size of the window.
96                If 0, the max is unlimited.  Default is 70 columns for
97                edit:maxfillcols and unlimited for edit:maxwrapcols.
98        Added smartzpunt command with key binding of "C-x k".
99                This starts a zpunt command filled in with
100                the proposed zpunt.
101        Fixed a memory reference bug in delete and undelete commands.
102        Added support for perl to call directly back into owl.
103        Changed the implementation of owl::command("...") to immediately
104                call back into owl.  This allows perl to get the return
105                value of strings returned by owl commands.
106        Added the getview command which returns the name of the current
107                view's filter. 
108        Added the getvar command which returns the value of a variable.
109        Added an example to examples/owlconf.erik which uses TAB to
110                narrow and restore the view. 
111        Added an example to examples/owlconf.erik which uses M-c to
112                color messages matching the current one green.
113       
1141.2.0-pre-1
115        Integrated change to fix problem with popup blinking on new zephyrs.
116        C-l and resizes will now refresh an open viewwin (eg, help).
117        Updated doc/code.txt to include info about filters, commands,
118                contexts, and keybindings.
119        Ooops.  "delete view" had accidentally been misbound to M-d.
120                Switched the binding back to M-D.
121        Exec commands cleaned up to not have buffer-size limitations
122                and to not mess up spaces.  exec also returns a string
123                of the output now.
124        Integrated changes from 1.1.3, and added docs for "zlocate -d"
125                and new show commands.
126        Show with arguments produces help on show.
127        Fix a bug in readconfig caught by efence (where we'd try to read before
128                the beginning of a string if it was empty).
129        The perl command doesn't do makemsg directly, but instead
130             returns the string and it will get printed if it
131             was run interactively.
132        New framework for command handling.
133        New framework for keymap handling.
134        Added commands for everything that is bound
135             to a key (do 'show commands' to get the full list).
136        Added 'multi' and '(' commands to allow multiple commands
137             to be specified on a line.             
138        Added user keybindings with bindkey command.
139        Added command aliases (eg, "alias foo bar").
140        Added undelete command that parallels the delete command.
141        Added additional options to delete command.
142        The reply command now takes arguments.
143        Added 'edit:insert-text' command.
144        Added 'show zpunts' to show active punt filters.
145        Added 'show variable <name>' and 'show variables'.
146        Added 'show command <name>' and 'show commands'.
147        Added 'show keymap <name>' and 'show keymaps'.
148        Added 'M-u' to undelete all messages in current view.
149        Fixed dotsend so that the zephyr will still send if there
150             is whitespace after the dot but not on the same line.
151             This should resolve an issue where dotsend wouldn't work
152             if you'd gone up and edited a zephyr.
153       
1541.1.3
155        'show subs' and 'show subscriptions' are now the same as 'getsubs'
156        zlocate now takes an optional -d argument
157        'show terminal' / 'show term'
158        '>' / last doesn't set the last message at the top of the screen now
159        implemented _followlast as an unsupported feature
160        include 'default' in the 'show colors' list
161        added help for 'zpunt' and 'zunpunt'
162        changed the bug address in the startup message
163        can now do 'show status'
164        can now do 'show version'
165        'status' / 'show status' includes the owl version number now
166        'show terminal' includes whether the terminal can change colors
167        fixed off by one bugs in paging / scrolling viewwin
168        don't downcase the sender when getting the log name for personals
169        support @owl::fields as well as @fields
170        downcase class/inst filter names in auto filters
171
1721.1.2
173        Fixed memory mishandling bug
174        Fixed bug in redfining the filter attached to the current view
175        M-n will narrow to message, instance on non-personal, class
176             MESSAGE messages
177        M-N behavies like M-n except that on class messages it narrows
178            to class and instance
179        line wrap earlier, to account for tabbing
180        fixed typo in help
181        'status' command now displays info on terminal color support
182        zephyr @ formatting is now case independant
183        added support for color terminals
184        zephyr @color(foo) now works
185        'D' for deleted messages is now not bold, unless it's the current
186          message
187        F1 displays the help screen
188        added filter colors
189        added the 'colorview' command
190        added the 'show colors' command
191        users who don't have a .zephyr.subs get a simpler format for
192          incoming messages
193        If colors are available 'show filters' will show a filter in the
194          color associated with it.
195        Added the zpunt and zunpunt commands
196        Lines in the subs file starting with '-' are zpunted
197        Include login/logout messages in auto user filters
198        'V' changes to the home view ('all' by default)
199       
2001.1.1
201        Fixed perl, aperl, and pperl commands to deal with quoting
202              and spaces in a saner manner.
203        Removed all owl_get_* methods for booleans and switched
204              cases where they were used to owl_is_*
205        Changes to owlconf.erik to use some new features.
206        Increased the size of the help buffer (as it
207              was overflowing and truncating the help message).
208        Variables prefixed with a _ are not shown in help
209              or by printallvars (and prefixed Not Yet Implemented
210              variables with this).
211        Fix typo in help
212        include stdio.h in functions.c
213        remove stale "q to quit" from bottom of info message
214        fix downward scrolling more than a page
215        use authentication for zlocate, by default
216        fixed buffer over run in info command on long messages
217        call 'perl <file>' from Makefile to avoid hardcoding perl paths
218        in Makefile don't build owl_prototypes.h unless necessary
219        store the time for admin messages
220        display admin message time in 'info' command
221        fixed an editwin M-> last character bug
222               
2231.1
224        reply is a normal function now
225        'R' does reply to sender
226        'T' tells you how many messages were marked for deletion
227        local realm removed from login / logout messages
228        added command history
229        better runtime / starttime reporting in 'status' command
230        leave the pointer near the current message after expunge
231        C-l recenters editwin
232        implemented zlocate
233        @italic works the same as @i
234        on reply only quote class / instance when necessary
235        C-r allows you to edit the reply line
236        don't use unecessary options in reply line
237        display 'info' errors in msgwin, not popup
238        impelemnted aexec, pexec commands
239        the zsig now goes through ztext formatting
240        messages have id numbers now
241        'info' prints the msgid
242        added the 'filter' command
243        added the 'view' command
244        added the 'show filter' command
245        added the 'viewclass' (and 'vc') commands
246        added the 'viewuser' (and 'vu') commands
247        M-n will filter to the current class or user
248        'v' starts a view command
249        M-D will delete all messages in current view
250        added the 'delete' (and 'del') command
251        load-subs with no argument loads the default subs file
252        '<truncated>' is now when the *current* message is truncated
253        the reply-lockout filter (with default) specifices messages that
254           cannot be replied to.
255        in the configfile owl::receive_msg is run whenever a message is
256          received
257        added the beep command
258        added the contributors file
259        declare ZGetSubscriptions and ZGetLocations since the includes
260          don't seem to
261        fixed bug in displaying last line in popwin if no final '\n'
262        'T' uses the 'trash' filter now
263        zaway_msg, zaway_msg_default and zaway are all user variables now.
264        zsig variable overrides zsigproc
265        If there's no appendtosepbar don't interfear with the sepbar
266        Changed: owl_message_get_numlines will return 0 of m is NULL
267        Added login messages to messages marked by owl_function_delete_automsgs
268        Added owl_function_delete_by_id(id) which acts independent of view
269        Added "-id <id>" option to delete command
270        Fixed an arg checking bug in delete command
271        Added owl::id to perl namespace with message id
272        Fixed a memory corruption bug in readconfig.c (where right
273              after the strdup to "out", we'd strcat a \n onto the end.
274              This would be triggered whenever owl::format_msg returned
275              a string not ending in a newline
276        Added 'X' keybinding which expunges and then switches to
277              a view defined by the variable "view_home" which defaults
278              to "all"
279        Consolidated readconfig.c somewhat to remove duplication.
280              owl_config_execute now returns a string.
281        Added an example config file that does vt-style formatting.
282              (examples/owlconf.vtformat)
283        Added the 'perl', 'aperl', and 'pperl' commands which will
284              evaluate perl expressions.
285        Fixed bug where pclose zsigproc would cause zombies
286        Can set zsigproc or zsig to "" to disable
287        Added support for multiple browsers (galeon and none were added).
288              Configure with the "webbrowser" variable.
289        Changing typewinsize height triggers resize event.
290        Added zsig variable which will be used if no zsigproc and non-empty.
291        Added "make test" rule to Makefile which will run regression tests,
292              and added regression testing framework to tester
293        Fixed codelist.pl to ignore static declarations.
294        Added dict.c which contains string->ptr dictionary routines
295              and the owl_dict type.
296              These include regression tests.
297        Overhaul/rewrite of variable handling.  Variables are now managed
298              in an owl_vardict (in g.vars) which contains a dictionary
299              of owl_variable's.  Each owl_variable has dispatch functions
300              for validating values, setting it and getting it,
301              and for setting it to and from string values.
302              The variable.c file contains the list of variables.
303              Stubs for the owl_global_<varname>_get functions and friends
304              are generated from variable.c by stubgen.pl.
305              The help.c messages for variables now calls into variable.c
306              so all information about most variables is in one place.   
307        Cleaned out code from global.c and command.c that was made obselete
308              by variable overhaul.
309        The set command now takes a -q option to not log a message.
310        Fixed a bug where set and print with no arguments would
311              print "Undefined variable" in addition
312              to running owl_function_printallvars.
313        debug is now a variable that can be turned on and off.
314        Fixed mail,inbox message parsing in examples/owlconf.erik
315        Made zaway_msg and zaway_msg_default into variables
316        Changed owl_function_makemsg and owl_function_debugmsg
317               to use varargs (ie, so they can now take a format
318               string with args).
319        Don't allow " and \ characters in URLs with the "w" command.
320        Removed lots of build warnings.
321        Popwins are wider by default so help messages fit better.
322        Added an atokenize_free function.
323        Fixes to work with an older version of libzephyr.
324        Added dependencies on header files to Makefile.in
325        Added pageup and pagedown key bindings to message list
326        Added pageup and pagedown to viewwin
327        Added configfile section to doc/intro.txt (from example config file)
328        Added appendtosepbar variable which may contain text which will
329              be appended to the sepbar.  This allows the configfile
330              to put information about pings and logins into
331              the sepbar.  (It may be worth also providing a variable
332              which enables this by default, but for now this allows
333              for experimenting with what works well.)
334        Added doc/code.txt which gives a brief overview of the code.
335        Added tags makefile rule and added TAGS to distclean rule.
336       
3371.0.1
338        fix frees in loadsubs and loadloginsubs
339        don't return in owl_free
340       
3411.0
342        'print' and 'set' with no arguments prints all variables
343        Added the 'unsubscribe' and 'unsub' command
344        Renamed the 'unsub' command to 'unsuball'
345        Added the 'getsubs' command which is like zctl ret
346        Fixed bug in logging messages sent to more than one recipient
347        Support '-C', '-O', and '-n' options to zwrite
348        Fixed bug in owl_editwin_delete_char when there are no later chars
349          after the cursor
350        Make "more" and "truncated" work in the status bar
351        enable printing of zsigproc and loginsubs variables
352        only allow message scrolling if the message is actually off the
353          screen
354        'T' will mark all automated message for deletion
355        'P' will go to the next personal message
356        'M-P' will go to the previous personal message
357        replying to a login message goes to the user now
358        added a status command
359        added the intro doc to the release
360        fixed off by one bug in viewwin
361        added complete online help
362        pass $owl::realm in configfile
363        fixed editwin wordwrapping on the last line
364        fixed editwin problem with key_right past the last char
365        print an error and quit if the configfile can't be parsed
366        got rid of owl_mainwin_calculate_topmsg
367        fixed off by one error in calculating topmsg upwards
368        you can now reply to an admin message
369        don't display an error about keypress on window resize
370       
3710.11
372        fixed bug in viewing messages longer than the screen
373        indicate in the sepbar if there is a non zero vert offset
374        send on '.' on a line by itself
375        added disable-ctrl-d variable
376        fixed bug where C-k did not delete the last \n in the buffer
377        make non-character meta keys work
378        use ZSendNotice instead of ZSendList
379        implemented <, >, M-< and M-> in viewwin
380        removed the spaces at the bottom of viewwin
381        added 'about' command
382        fixed bug using 'M' with no current message
383        changed message object to use char *'s to save on memory
384        change malloc, realloc, strdup and free to use owl hooks so that
385           debugging can be added
386               
3870.10.1
388        fixed a trailing space bug in the parser
389        impelemented the "burning ears" feature
390        have admin messages do ztext parsing
391        fixed bug in reporting which M- key was pressed
392        C-g will now cancel commands like C-c
393       
3940.10
395        implemented owl_function_full_redisplay().
396        C-l uses owl_function_full_redisplay().
397        when a popwin exists to a full redisplay.  (fixes bug)
398        improved the owl_editwin_process_char logic
399        removed all unnecessary wrefresh's and replaced with wnoutrefesh
400        owl_editwin_redisplay now takes an argument to optionally doupdate()
401        improved the cut-and-paste speed by not doing a usleep the first
402          time through the loop after getting a keypress.
403        nuked typwin.c and associated stuff.  It's useless now.
404        added viewwin code for paging windows
405        curly braces work for zephyr formatting
406        @i in zephyr formatting will be displayed as underlined text
407        turned off idlok
408        implemented viewwin
409        implemented viewwi in popwin for pageable popwins
410        help, info now use pageable popwins
411        bound 'M' to bring the current message up in a popwin
412        return, space bar, 'b' and backspace now scroll within a message
413        turned off resize message
414        C-v and M-v page the main window
415        implemented owl_message_is_mail
416        some build cleanup
417
418       
4190.9
420        added owl_message_is_personal and have things use it
421        added owl_message_is_private
422        fixed 'print personalbell' and have 'set personalbell'
423           print a message
424        bold only on message_is_personal
425        display the realm if not local
426        implemented M-f, M-b, M-d, M-<, M-> in editwin
427        implemnted word wrapping in editwin
428        implemented M-q (paragraph-fill) in editwin
429        fixed bug that caused owl to segfault logging a 'weird' class
430        M-x is a keysym for ':'
431        added smart bolding and userclue
432        fixed a bug causing pings to beep even if rxping is off
433       
4340.8.1
435        fixed bug in logging code
436       
4370.8
438        implemented personal logging
439        implemented class logging
440        implemented resize of typewin
441        fixed the backspace problem
442        -v command line option prints the version number
443       
4440.7
445        load-subs will report error opening file
446        skip comment lines in loadsubs and loadloginsubs
447        changed internal references to rxping and txping
448        fix replying to a blank instance
449        added subscribe command
450        subscribe to login messages from .anyone by default
451        'loginsubs' variarble controlls automated login messages
452        redisplay the editwin after a resize
453        leave the cursor in the editwin if active
454        fix problems in the build system
455        added displayoutgoing variable
456        temporarily removed error printing for zlog in / out
457       
4580.61
459        fixed bug in "message sent to <foo>" for zwrite
460       
4610.6
462        help updated
463        zaway key set to caps A
464        support zephyring other realms
465        rxping variable for receiving pings
466        txping variable for sending pings
467        function in place to resize typwin
468        C-l to refresh
469        personal bell variable
470        beta message now an admin message
471       
4720.5
473        Added the debug command and flag
474        Fixed bug in printing fields in info command
475        Added owl_fmtext_append_ztext and use it
476        Better formating for pings and login zephyrs
477        make tester depends on proto
Note: See TracBrowser for help on using the repository browser.