source: ChangeLog @ e1c4636

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