blob: 86cbc7609fd8500a4dabce46bdc62e529988a8af [file] [log] [blame]
David Scherer7aced172000-08-15 01:13:23 +00001(For a more detailed change log, see the file ChangeLog.)
2
3----------------------------------------------------------------------
4
5New in IDLE 0.5 (2/15/2000)
6-------------------------
7
8Tons of stuff, much of it contributed by Tim Peters and Mark Hammond:
9
10- 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
15- 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. Hit ESC or click elsewhere in the
27window to close the tip window (MH)
28
29- Comment out region now inserts ## to make it stand out more (TP)
30
31- New path and class browsers based on a tree widget that looks
32familiar to Windows users
33
34- Reworked script running commands to be more intuitive: I/O now
35always goes to the *Python Shell* window, and raw_input() works
36correctly. You use F5 to import/reload a module: this adds the module
37name to the __main__ namespace. You use Control-F5 to run a script:
38this runs the script *in* the __main__ namespace. The latter also
39sets sys.argv[] to the script name
40
41New in IDLE 0.4 (4/7/99)
42------------------------
43
44Most important change: a new menu entry "File -> Path browser", shows
45a 4-column hierarchical browser which lets you browse sys.path,
46directories, modules, and classes. Yes, it's a superset of the Class
47browser menu entry. There's also a new internal module,
48MultiScrolledLists.py, which provides the framework for this dialog.
49
50New in IDLE 0.3 (2/17/99)
51-------------------------
52
53Most important changes:
54
55- Enabled support for running a module, with or without the debugger.
56Output goes to a new window. Pressing F5 in a module is effectively a
57reload of that module; Control-F5 loads it under the debugger.
58
59- Re-enable tearing off the Windows menu, and make a torn-off Windows
60menu update itself whenever a window is opened or closed.
61
62- Menu items can now be have a checkbox (when the menu label starts
63with "!"); use this for the Debugger and "Auto-open stack viewer"
64(was: JIT stack viewer) menu items.
65
66- Added a Quit button to the Debugger API.
67
68- The current directory is explicitly inserted into sys.path.
69
70- Fix the debugger (when using Python 1.5.2b2) to use canonical
71filenames for breakpoints, so these actually work. (There's still a
72lot of work to be done to the management of breakpoints in the
73debugger though.)
74
75- Closing a window that is still colorizing now actually works.
76
77- Allow dragging of the separator between the two list boxes in the
78class browser.
79
80- Bind ESC to "close window" of the debugger, stack viewer and class
81browser. It removes the selection highlighting in regular text
82windows. (These are standard Windows conventions.)
83
84----------------------------------------------------------------------
85
86New in IDLE 0.2 (1/8/99)
87------------------------
88
89Lots of changes; here are the highlights:
90
91General:
92
93- You can now write and configure your own IDLE extension modules; see
94extend.txt.
95
96
97File menu:
98
99The command to open the Python shell window is now in the File menu.
100
101
102Edit menu:
103
104New Find dialog with more options; replace dialog; find in files dialog.
105
106Commands to tabify or untabify a region.
107
108Command to format a paragraph.
109
110
111Debug menu:
112
113JIT (Just-In-Time) stack viewer toggle -- if set, the stack viewer
114automaticall pops up when you get a traceback.
115
116Windows menu:
117
118Zoom height -- make the window full height.
119
120
121Help menu:
122
123The help text now show up in a regular window so you can search and
124even edit it if you like.
125
126----------------------------------------------------------------------
127
128IDLE 0.1 was distributed with the Python 1.5.2b1 release on 12/22/98.
129
130======================================================================