blob: 6b97c5bf4cc0dfe3d82a98fbdb92723918286650 [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 Rossum46ffbec2000-02-15 17:17:58 +00005New in IDLE 0.5 (2/14/2000)
6-------------------------
7
8Tons of stuff, much of it contributed by Tim Peters and Mark Hammond:
9
10- Format paragraph now recognizes Python block comments and reformats
11them correctly (MH)
12
13- New version of pyclbr.py parses top-level functions and understands
14much more of Python's syntax; this is reflected in the class and path
15browsers (TP)
16
17- Much better auto-indent; knows how to indent the insides of
18multi-line statements (TP)
19
20- Call tip window pops up when you type the name of a known function
21followed by an open parenthesis (MH)
22
23- Comment out region now inserts ## to make it stand out more (TP)
24
25- New path and class browsers based on a tree widget that looks
26familiar to Windows users
27
28- Reworked script running commands to be more intuitive
29
30- XXX much more?!
31
Guido van Rossuma2ca4341999-04-07 18:41:59 +000032New in IDLE 0.4 (4/7/99)
33------------------------
34
35Most important change: a new menu entry "File -> Path browser", shows
36a 4-column hierarchical browser which lets you browse sys.path,
37directories, modules, and classes. Yes, it's a superset of the Class
38browser menu entry. There's also a new internal module,
39MultiScrolledLists.py, which provides the framework for this dialog.
40
Guido van Rossuma89b98f1999-02-17 22:47:41 +000041New in IDLE 0.3 (2/17/99)
42-------------------------
43
44Most important changes:
45
46- Enabled support for running a module, with or without the debugger.
47Output goes to a new window. Pressing F5 in a module is effectively a
48reload of that module; Control-F5 loads it under the debugger.
49
50- Re-enable tearing off the Windows menu, and make a torn-off Windows
51menu update itself whenever a window is opened or closed.
52
53- Menu items can now be have a checkbox (when the menu label starts
54with "!"); use this for the Debugger and "Auto-open stack viewer"
55(was: JIT stack viewer) menu items.
56
57- Added a Quit button to the Debugger API.
58
59- The current directory is explicitly inserted into sys.path.
60
61- Fix the debugger (when using Python 1.5.2b2) to use canonical
62filenames for breakpoints, so these actually work. (There's still a
63lot of work to be done to the management of breakpoints in the
64debugger though.)
65
66- Closing a window that is still colorizing now actually works.
67
68- Allow dragging of the separator between the two list boxes in the
69class browser.
70
71- Bind ESC to "close window" of the debugger, stack viewer and class
72browser. It removes the selection highlighting in regular text
73windows. (These are standard Windows conventions.)
74
Guido van Rossumb33f6121999-01-08 17:26:02 +000075----------------------------------------------------------------------
76
77New in IDLE 0.2 (1/8/99)
78------------------------
79
80Lots of changes; here are the highlights:
81
82General:
83
84- You can now write and configure your own IDLE extension modules; see
85extend.txt.
86
87
88File menu:
89
90The command to open the Python shell window is now in the File menu.
91
92
93Edit menu:
94
95New Find dialog with more options; replace dialog; find in files dialog.
96
97Commands to tabify or untabify a region.
98
99Command to format a paragraph.
100
101
102Debug menu:
103
104JIT (Just-In-Time) stack viewer toggle -- if set, the stack viewer
105automaticall pops up when you get a traceback.
106
107Windows menu:
108
109Zoom height -- make the window full height.
110
111
112Help menu:
113
114The help text now show up in a regular window so you can search and
115even edit it if you like.
116
117----------------------------------------------------------------------
118
119IDLE 0.1 was distributed with the Python 1.5.2b1 release on 12/22/98.
120
121======================================================================