source: ChangeLog @ f73e519

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