blob: 7d8da1237d56dae5730e85daa626081836361a57 [file] [log] [blame]
Guido van Rossuma89b98f1999-02-17 22:47:41 +00001(For a more detailed change log, see the file ChangeLog.)
2
3----------------------------------------------------------------------
4
5New in IDLE 0.3 (2/17/99)
6-------------------------
7
8Most important changes:
9
10- Enabled support for running a module, with or without the debugger.
11Output goes to a new window. Pressing F5 in a module is effectively a
12reload of that module; Control-F5 loads it under the debugger.
13
14- Re-enable tearing off the Windows menu, and make a torn-off Windows
15menu update itself whenever a window is opened or closed.
16
17- Menu items can now be have a checkbox (when the menu label starts
18with "!"); use this for the Debugger and "Auto-open stack viewer"
19(was: JIT stack viewer) menu items.
20
21- Added a Quit button to the Debugger API.
22
23- The current directory is explicitly inserted into sys.path.
24
25- Fix the debugger (when using Python 1.5.2b2) to use canonical
26filenames for breakpoints, so these actually work. (There's still a
27lot of work to be done to the management of breakpoints in the
28debugger though.)
29
30- Closing a window that is still colorizing now actually works.
31
32- Allow dragging of the separator between the two list boxes in the
33class browser.
34
35- Bind ESC to "close window" of the debugger, stack viewer and class
36browser. It removes the selection highlighting in regular text
37windows. (These are standard Windows conventions.)
38
Guido van Rossumb33f6121999-01-08 17:26:02 +000039----------------------------------------------------------------------
40
41New in IDLE 0.2 (1/8/99)
42------------------------
43
44Lots of changes; here are the highlights:
45
46General:
47
48- You can now write and configure your own IDLE extension modules; see
49extend.txt.
50
51
52File menu:
53
54The command to open the Python shell window is now in the File menu.
55
56
57Edit menu:
58
59New Find dialog with more options; replace dialog; find in files dialog.
60
61Commands to tabify or untabify a region.
62
63Command to format a paragraph.
64
65
66Debug menu:
67
68JIT (Just-In-Time) stack viewer toggle -- if set, the stack viewer
69automaticall pops up when you get a traceback.
70
71Windows menu:
72
73Zoom height -- make the window full height.
74
75
76Help menu:
77
78The help text now show up in a regular window so you can search and
79even edit it if you like.
80
81----------------------------------------------------------------------
82
83IDLE 0.1 was distributed with the Python 1.5.2b1 release on 12/22/98.
84
85======================================================================