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