added just released history

original commit: 843a3ffb3ea147f986a0b6f98dddf95e14ad7746
This commit is contained in:
Robby Findler 1998-02-28 23:44:12 +00:00
parent 0a21dcfdc0
commit 3991eb800d

View File

@ -85,6 +85,63 @@ Upgraded to gc 13alpha1
System: System:
------- -------
- mzlib now has empty? and empty. The print converter is now
parameterized over the symbol that represents the empty list.
- parenthesis matching is improved
- turned off the file name printouts on splash screen
evaluate:
(wx:write-resource "mred" "splashMessages" 1 (wx:find-path 'setup-file))
to turn them back on.
- searching keybindings have changed. There are four distinct actions:
action1: move keyboard focus to the searching window, opening it if necessary,
or if already there search forward
action2: move keyboard focus to the searching window, opening it if necessary,
or if already there search backward.
action3: search again, in the same direction
action4: move the focus between the main window, searching window and replacment window
action5: hide the searching window
The actions are mapped to different keys, based on the platform.
On unix:
action1 => control-s, meta-%
action2 => control-r
action3 => f3
action4 => control-i
action5 => control-g
On the macintosh:
action1 => command-f
action2 => command-r
action3 => command-g
action4 => command-o
action5 => command-.
On windows:
action1 => control-f
action2 => control-r
action3 => f3, control-g
action4 => control-i
action5 => escape
- set-empty-callback in mred:frame-group% is now set-empty-callbacks
in mred:frame-group%. See the docs for more details.
- initial basis now documented
- provide "simple" interface to unitized apps
- fixed callback printfs from frames. They now appear in the console.
- better begin/end-edit-sequence support in mred; used by info-frame.
- eval no longer loops forever in mred vocabulary
- set-empty-callback in mred:frame-group% is now set-empty-callbacks - set-empty-callback in mred:frame-group% is now set-empty-callbacks
in mred:frame-group%. See the docs for more details. in mred:frame-group%. See the docs for more details.
@ -130,10 +187,8 @@ System:
Redefinition of mred:initialize and mred:make-invokeable-unit are Redefinition of mred:initialize and mred:make-invokeable-unit are
no longer supported. Create a new system instead, using the -s flag. no longer supported. Create a new system instead, using the -s flag.
mred:get-file and mred:put-file now take a parent window as optional - mred:get-file and mred:put-file now take a parent window as optional
last argument. Also, in Unix, these calls now create a dialog last argument.
object on each call, because a single object retains too much state
(such as the prompt) between invocations.
---------------------------------------------------------------------- ----------------------------------------------------------------------