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