source: ChangeLog @ 10b866d

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