blob: 4f88250bbbdc4ac71c559196a3b36d8b3f4bd497 [file] [log] [blame]
Kurt B. Kaiser76bcb5c2003-06-14 02:51:06 +00001What's New in IDLE 0.9b1+?
2===================================
3
4*Release date: XX-XXX-2003*
5
6- (Created the .../Lib/idlelib directory in the Python CVS, which is a clone of
7 IDLEfork modified to install in the Python environment. The code in the
8 interrupt module has been moved to thread.interrupt_main(). )
9
10- Printing the Shell window was failing if it was not saved first SF 748975
11
12- When using the Search in Files dialog, if the user had a selection
13 highlighted in his Editor window, insert it into the dialog search field.
14
15- The Python Shell entry was disappearing from the Windows menu.
16
17- Update the Windows file list when a file name change occurs
18
19- Change to File / Open Module: always pop up the dialog, using the current
20 selection as the default value. This is easier to use habitually.
21
22- Avoided a problem with starting the subprocess when 'localhost' doesn't
23 resolve to the user's loopback interface. SF 747772
24
25- Fixed an issue with highlighted errors never de-colorizing. SF 747677. Also
26 improved notification of Tabnanny Token Error.
27
28- File / New will by default save in the directory of the Edit window from
29 which it was initiated. SF 748973 Guido van Rossum patch.
30
Steven M. Gavad39993e2001-07-20 01:36:49 +000031
Kurt B. Kaiser9a90e702003-04-25 17:48:08 +000032What's New in IDLEfork 0.9b1?
Kurt B. Kaiser003091c2003-02-17 18:57:16 +000033===================================
34
Kurt B. Kaiser76bcb5c2003-06-14 02:51:06 +000035*Release date: 02-Jun-2003*
Kurt B. Kaisera00050f2003-05-08 20:26:55 +000036
Kurt B. Kaiser5ddef752003-06-01 01:11:14 +000037- The current working directory of the execution environment (and shell
38 following completion of execution) is now that of the module being run.
39
40- Added the delete-exitfunc option to config-main.def. (This option is not
41 included in the Options dialog.) Setting this to True (the default) will
42 cause IDLE to not run sys.exitfunc/atexit when the subprocess exits.
43
44- IDLE now preserves the line ending codes when editing a file produced on
45 a different platform. SF 661759, SF 538584
46
47- Reduced default editor font size to 10 point and increased window height
48 to provide a better initial impression on Windows.
49
50- Options / Fonts/Tabs / Set Base Editor Font: List box was not highlighting
51 the default font when first installed on Windows. SF 661676
52
53- Added Autosave feature: when user runs code from edit window, if the file
54 has been modified IDLE will silently save it if Autosave is enabled. The
55 option is set in the Options dialog, and the default is to prompt the
56 user to save the file. SF 661318 Bruce Sherwood patch.
57
58- Improved the RESTART annotation in the shell window when the user restarts
59 the shell while it is generating output. Also improved annotation when user
60 repeatedly hammers the Ctrl-F6 restart.
61
Kurt B. Kaisera80d57c2003-05-17 03:15:48 +000062- Allow IDLE to run when not installed and cwd is not the IDLE directory
63 SF Patch 686254 "Run IDLEfork from any directory without set-up" - Raphael
64
65- When a module is run from an EditorWindow: if its directory is not in
66 sys.path, prepend it. This allows the module to import other modules in
67 the same directory. Do the same for a script run from the command line.
68
Kurt B. Kaiser5ddef752003-06-01 01:11:14 +000069- Correctly restart the subprocess if it is running user code and the user
70 attempts to run some other module or restarts the shell. Do the same if
71 the link is broken and it is possible to restart the subprocess and re-
72 connect to the GUI. SF RFE 661321.
Kurt B. Kaiser7f38ec02003-05-15 03:19:42 +000073
74- Improved exception reporting when running commands or scripts from the
75 command line.
76
Kurt B. Kaisera80d57c2003-05-17 03:15:48 +000077- Added a -n command line switch to start IDLE without the subprocess.
78 Removed the Shell menu when running in that mode. Updated help messages.
79
Kurt B. Kaiser7f38ec02003-05-15 03:19:42 +000080- Added a comment to the shell startup header to indicate when IDLE is not
Kurt B. Kaisera80d57c2003-05-17 03:15:48 +000081 using the subprocess.
Kurt B. Kaiser7f38ec02003-05-15 03:19:42 +000082
83- Restore the ability to run without the subprocess. This can be important for
84 some platforms or configurations. (Running without the subprocess allows the
85 debugger to trace through parts of IDLE itself, which may or may not be
86 desirable, depending on your point of view. In addition, the traditional
Kurt B. Kaiser5ddef752003-06-01 01:11:14 +000087 reload/import tricks must be use if user source code is changed.) This is
88 helpful for developing IDLE using IDLE, because one instance can be used to
89 edit the code and a separate instance run to test changes. (Multiple
90 concurrent IDLE instances with subprocesses is a future feature)
Kurt B. Kaiser7f38ec02003-05-15 03:19:42 +000091
Kurt B. Kaiser73414a22003-05-12 03:04:59 +000092- Improve the error message a user gets when saving a file with non-ASCII
93 characters and no source encoding is specified. Done by adding a dialog
94 'EncodingMessage', which contains the line to add in a fixed-font entry
95 widget, and which has a button to add that line to the file automatically.
96 Also, add a configuration option 'EditorWindow/encoding', which has three
97 possible values: none, utf-8, and locale. None is the default: IDLE will show
98 this dialog when non-ASCII characters are encountered. utf-8 means that files
99 with non-ASCII characters are saved as utf-8-with-bom. locale means that
100 files are saved in the locale's encoding; the dialog is only displayed if the
101 source contains characters outside the locale's charset. SF 710733 - Loewis
102
Kurt B. Kaisera00050f2003-05-08 20:26:55 +0000103- Improved I/O response by tweaking the wait parameter in various
104 calls to signal.signal().
105
106- Implemented a threaded subprocess which allows interrupting a pass
Kurt B. Kaiser73414a22003-05-12 03:04:59 +0000107 loop in user code using the 'interrupt' extension. User code runs
Kurt B. Kaiser5ddef752003-06-01 01:11:14 +0000108 in MainThread, while the RPCServer is handled by SockThread. This is
109 necessary because Windows doesn't support signals.
Kurt B. Kaiser003091c2003-02-17 18:57:16 +0000110
Kurt B. Kaiser94afd302003-03-12 20:52:00 +0000111- Implemented the 'interrupt' extension module, which allows a subthread
112 to raise a KeyboardInterrupt in the main thread.
113
114- Attempting to save the shell raised an error related to saving
115 breakpoints, which are not implemented in the shell
116
117- Provide a correct message when 'exit' or 'quit' are entered at the
118 IDLE command prompt SF 695861
119
120- Eliminate extra blank line in shell output caused by not flushing
121 stdout when user code ends with an unterminated print. SF 695861
122
123- Moved responsibility for exception formatting (i.e. pruning IDLE internal
124 calls) out of rpc.py into the client and server.
125
Kurt B. Kaiser003091c2003-02-17 18:57:16 +0000126- Exit IDLE cleanly even when doing subprocess I/O
127
Kurt B. Kaiser5ddef752003-06-01 01:11:14 +0000128- Handle subprocess interrupt with an RPC message.
Kurt B. Kaiser003091c2003-02-17 18:57:16 +0000129
130- Restart the subprocess if it terminates itself. (VPython programs do that)
131
132- Support subclassing of exceptions, including in the shell, by moving the
133 exception formatting to the subprocess.
134
Kurt B. Kaiser003091c2003-02-17 18:57:16 +0000135
136
Kurt B. Kaisera7b804f2003-01-10 21:27:23 +0000137What's New in IDLEfork 0.9 Alpha 2?
138===================================
Kurt B. Kaiser2cb54022002-12-31 18:12:04 +0000139
Kurt B. Kaiser7e172892003-01-27 02:40:20 +0000140*Release date: 27-Jan-2003*
141
142- Updated INSTALL.txt to claify use of the python2 rpm.
143
144- Improved formatting in IDLE Help.
145
146- Run menu: Replace "Run Script" with "Run Module".
147
148- Code encountering an unhandled exception under the debugger now shows
149 the correct traceback, with IDLE internal levels pruned out.
150
151- If an exception occurs entirely in IDLE, don't prune the IDLE internal
152 modules from the traceback displayed.
153
154- Class Browser and Path Browser now use Alt-Key-2 for vertical zoom.
155
156- IDLE icons will now install correctly even when setup.py is run from the
157 build directory
158
159- Class Browser now compatible with Python2.3 version of pyclbr.py
Kurt B. Kaiser2cb54022002-12-31 18:12:04 +0000160
Kurt B. Kaiser5ec186b2003-01-17 04:04:06 +0000161- Left cursor move in presence of selected text now moves from left end
162 of the selection.
163
164- Add Meta keybindings to "IDLE Classic Windows" to handle reversed
165 Alt/Meta on some Linux distros.
166
Kurt B. Kaiser8e92bf72003-01-14 22:03:31 +0000167- Change default: IDLE now starts with Python Shell.
168
169- Removed the File Path from the Additional Help Sources scrolled list.
170
171- Add capability to access Additional Help Sources on the web if the
172 Help File Path begins with //http or www. (Otherwise local path is
173 validated, as before.)
174
175- Additional Help Sources were not being posted on the Help menu in the
176 order entered. Implement sorting the list by [HelpFiles] 'option'
177 number.
178
179- Add Browse button to New Help Source dialog. Arrange to start in
180 Python/Doc if platform is Windows, otherwise start in current directory.
181
182- Put the Additional Help Sources directly on the Help menu instead of in
183 an Extra Help cascade menu. Rearrange the Help menu so the Additional
184 Help Sources come last. Update help.txt appropriately.
185
186- Fix Tk root pop-ups in configSectionNameDialog.py and configDialog.py
187
Kurt B. Kaisera7b804f2003-01-10 21:27:23 +0000188- Uniform capitalization in General tab of ConfigDialog, update the doc string.
189
190- Fix bug in ConfigDialog where SaveAllChangedConfig() was unexpectedly
191 deleting Additional Help Sources from the user's config file.
192
193- Make configHelpSourceEdit OK button the default and bind <Return>
194
195- Fix Tk root pop-ups in configHelpSourceEdit: error dialogs not attached
196 to parents.
197
198- Use os.startfile() to open both Additional Help and Python Help on the
199 Windows platform. The application associated with the file type will act as
200 the viewer. Windows help files (.chm) are now supported via the
201 Settings/General/Additional Help facility.
202
203- If Python Help files are installed locally on Linux, use them instead of
204 accessing python.org.
205
206- Make the methods for finding the Python help docs more robust, and make
207 them work in the installed configuration, also.
208
209- On the Save Before Run dialog, make the OK button the default. One
210 less mouse action!
211
212- Add a method: EditorWindow.get_geometry() for future use in implementing
213 window location persistence.
214
215- Removed the "Help/Advice" menu entry. Thanks, David! We'll remember!
216
217- Change the "Classic Windows" theme's paste key to be <ctrl-v>.
218
219- Rearrange the Shell menu to put Stack Viewer entries adjacent.
220
221- Add the ability to restart the subprocess interpreter from the shell window;
Kurt B. Kaiser7e172892003-01-27 02:40:20 +0000222 add an associated menu entry "Shell/Restart" with binding Control-F6. Update
223 IDLE help.
Kurt B. Kaisera7b804f2003-01-10 21:27:23 +0000224
225- Upon a restart, annotate the shell window with a "restart boundary". Add a
Kurt B. Kaiser7e172892003-01-27 02:40:20 +0000226 shell window menu "Shell/View Restart" with binding F6 to jump to the most
227 recent restart boundary.
Kurt B. Kaisera7b804f2003-01-10 21:27:23 +0000228
Kurt B. Kaiser7e172892003-01-27 02:40:20 +0000229- Add Shell menu to Python Shell; change "Settings" to "Options".
Kurt B. Kaisera7b804f2003-01-10 21:27:23 +0000230
231- Remove incorrect comment in setup.py: IDLEfork is now installed as a package.
232
233- Add INSTALL.txt, HISTORY.txt, NEWS.txt to installed configuration.
234
235- In installer text, fix reference to Visual Python, should be VPython.
236 Properly credit David Scherer.
237
238- Modified idle, idle.py, idle.pyw to improve exception handling.
239
Steven M. Gavad39993e2001-07-20 01:36:49 +0000240
Kurt B. Kaisera7b804f2003-01-10 21:27:23 +0000241What's New in IDLEfork 0.9 Alpha 1?
242===================================
Steven M. Gavad39993e2001-07-20 01:36:49 +0000243
Kurt B. Kaisera7b804f2003-01-10 21:27:23 +0000244*Release date: 31-Dec-2002*
Steven M. Gava88ff7362001-07-21 09:50:55 +0000245
Kurt B. Kaisera7b804f2003-01-10 21:27:23 +0000246- First release of major new functionality. For further details refer to
247 Idle-dev and/or the Sourceforge CVS.
Steven M. Gavad39993e2001-07-20 01:36:49 +0000248
Kurt B. Kaisera7b804f2003-01-10 21:27:23 +0000249- Adapted to the Mac platform.
Steven M. Gavad39993e2001-07-20 01:36:49 +0000250
Kurt B. Kaisera7b804f2003-01-10 21:27:23 +0000251- Overhauled the IDLE startup options and revised the idle -h help message,
252 which provides details of command line usage.
Steven M. Gavad39993e2001-07-20 01:36:49 +0000253
Kurt B. Kaisera7b804f2003-01-10 21:27:23 +0000254- Multiple bug fixes and usability enhancements.
255
256- Introduced the new RPC implementation, which includes a debugger. The output
257 of user code is to the shell, and the shell may be used to inspect the
258 environment after the run has finished. (In version 0.8.1 the shell
259 environment was separate from the environment of the user code.)
260
261- Introduced the configuration GUI and a new About dialog.
262
263- Removed David Scherer's Remote Procedure Call code and replaced with Guido
264 van Rossum's. GvR code has support for the IDLE debugger and uses the shell
265 to inspect the environment of code Run from an Edit window. Files removed:
266 ExecBinding.py, loader.py, protocol.py, Remote.py, spawn.py
Steven M. Gavad39993e2001-07-20 01:36:49 +0000267
Kurt B. Kaisera7b804f2003-01-10 21:27:23 +0000268--------------------------------------------------------------------
269Refer to HISTORY.txt for additional information on earlier releases.
270--------------------------------------------------------------------
David Scherer7aced172000-08-15 01:13:23 +0000271
272
David Scherer7aced172000-08-15 01:13:23 +0000273
274
David Scherer7aced172000-08-15 01:13:23 +0000275