blob: 78f87187a23506242fdbb0ef2590f785ba8afbf1 [file] [log] [blame]
Anthony Baxter3210b362004-07-08 05:59:43 +00001What's New in IDLE 1.1a1?
Kurt B. Kaiser4d5bc602004-06-06 01:29:22 +00002=========================
Kurt B. Kaiserb7855182003-08-14 14:54:28 +00003
Anthony Baxter3210b362004-07-08 05:59:43 +00004*Release date: 08-JUL-2004*
Kurt B. Kaisere9802a32004-01-02 04:04:04 +00005
Kurt B. Kaiser49a5fe12004-07-04 01:25:56 +00006- Redirect the warning stream to the shell during the ScriptBinding check of
7 user code and format the warning similarly to an exception for both that
8 check and for runtime warnings raised in the subprocess.
9
Kurt B. Kaiser4d5bc602004-06-06 01:29:22 +000010- CodeContext hint pane visibility state is now persistent across sessions.
11 The pane no longer appears in the shell window. Added capability to limit
12 extensions to shell window or editor windows. Noam Raphael addition
13 to Patch 936169.
14
15- Paragraph reformat width is now a configurable parameter in the
16 Options GUI.
17
Kurt B. Kaiser54d1a3b2004-04-21 20:06:26 +000018- New Extension: CodeContext. Provides block structuring hints for code
19 which has scrolled above an edit window. Patch 936169 Noam Raphael.
20
Kurt B. Kaisercf6f1b62004-04-11 03:16:07 +000021- If nulls somehow got into the strings in recent-files.lst
22 EditorWindow.update_recent_files_list() was failing. Python Bug 931336.
23
Kurt B. Kaiser0bc3d982004-03-15 04:26:37 +000024- If the normal background is changed via Configure/Highlighting, it will update
Kurt B. Kaisercf6f1b62004-04-11 03:16:07 +000025 immediately, thanks to the previously mentioned patch by Nigel Rowe.
Kurt B. Kaiser0bc3d982004-03-15 04:26:37 +000026
Kurt B. Kaiser73360a32004-03-08 18:15:31 +000027- Add a highlight theme for builtin keywords. Python Patch 805830 Nigel Rowe
Kurt B. Kaiser0bc3d982004-03-15 04:26:37 +000028 This also fixed IDLEfork bug [ 693418 ] Normal text background color not refreshed
29 and Python bug [897872 ] Unknown color name on HP-UX
Kurt B. Kaiser73360a32004-03-08 18:15:31 +000030
Kurt B. Kaiserd6ab77d2004-01-21 19:21:11 +000031- rpc.py:SocketIO - Large modules were generating large pickles when downloaded
32 to the execution server. The return of the OK response from the subprocess
33 initialization was interfering and causing the sending socket to be not
34 ready. Add an IO ready test to fix this. Moved the polling IO ready test
35 into pollpacket().
36
37- Fix typo in rpc.py, s/b "pickle.PicklingError" not "pickle.UnpicklingError".
38
Kurt B. Kaiseraf3eb872004-01-21 18:54:30 +000039- Added a Tk error dialog to run.py inform the user if the subprocess can't
40 connect to the user GUI process. Added a timeout to the GUI's listening
41 socket. Added Tk error dialogs to PyShell.py to announce a failure to bind
42 the port or connect to the subprocess. Clean up error handling during
43 connection initiation phase. This is an update of Python Patch 778323.
44
Kurt B. Kaisere9802a32004-01-02 04:04:04 +000045- Print correct exception even if source file changed since shell was
46 restarted. IDLEfork Patch 869012 Noam Raphael
Kurt B. Kaiserb7855182003-08-14 14:54:28 +000047
Kurt B. Kaiser2303b1c2003-11-24 05:26:16 +000048- Keybindings with the Shift modifier now work correctly. So do bindings which
49 use the Space key. Limit unmodified user keybindings to the function keys.
50 Python Bug 775353, IDLEfork Bugs 755647, 761557
51
Kurt B. Kaiser924f6162003-11-19 04:52:32 +000052- After an exception, run.py was not setting the exception vector. Noam
53 Raphael suggested correcting this so pdb's postmortem pm() would work.
54 IDLEfork Patch 844675
55
Kurt B. Kaiserc714d452003-11-24 03:23:16 +000056- IDLE now does not fail to save the file anymore if the Tk buffer is not a
57 Unicode string, yet eol_convention is. Python Bugs 774680, 788378
58
Kurt B. Kaiserb7855182003-08-14 14:54:28 +000059- IDLE didn't start correctly when Python was installed in "Program Files" on
60 W2K and XP. Python Bugs 780451, 784183
61
62- config-main.def documentation incorrectly referred to idle- instead of
63 config- filenames. SF 782759 Also added note about .idlerc location.
64
65
Kurt B. Kaiser220fecf2003-07-27 03:24:19 +000066What's New in IDLE 1.0?
Kurt B. Kaiser4d5bc602004-06-06 01:29:22 +000067=======================
Kurt B. Kaiser220fecf2003-07-27 03:24:19 +000068
69*Release date: 29-Jul-2003*
70
71- Added a banner to the shell discussimg warnings possibly raised by personal
72 firewall software. Added same comment to README.txt.
73
74
Kurt B. Kaiser6145a622003-07-23 15:42:14 +000075What's New in IDLE 1.0 release candidate 2?
Kurt B. Kaiser4d5bc602004-06-06 01:29:22 +000076===========================================
Kurt B. Kaiser76bcb5c2003-06-14 02:51:06 +000077
Kurt B. Kaiser6145a622003-07-23 15:42:14 +000078*Release date: 24-Jul-2003*
79
80- Calltip error when docstring was None Python Bug 775541
81
Kurt B. Kaiser220fecf2003-07-27 03:24:19 +000082
Kurt B. Kaiser6145a622003-07-23 15:42:14 +000083What's New in IDLE 1.0 release candidate 1?
Kurt B. Kaiser4d5bc602004-06-06 01:29:22 +000084===========================================
Kurt B. Kaiser6145a622003-07-23 15:42:14 +000085
86*Release date: 18-Jul-2003*
Kurt B. Kaisercca91222003-07-16 03:10:43 +000087
88- Updated extend.txt, help.txt, and config-extensions.def to correctly
89 reflect the current status of the configuration system. Python Bug 768469
90
91- Fixed: Call Tip Trimming May Loop Forever. Python Patch 769142 (Daniels)
92
93- Replaced apply(f, args, kwds) with f(*args, **kwargs) to improve performance
94 Python Patch 768187
95
96- Break or continue statements outside a loop were causing IDLE crash
97 Python Bug 767794
98
99- Convert Unicode strings from readline to IOBinding.encoding. Also set
100 sys.std{in|out|err}.encoding, for both the local and the subprocess case.
101 SF IDLEfork patch 682347.
102
103
104What's New in IDLE 1.0b2?
Kurt B. Kaiser4d5bc602004-06-06 01:29:22 +0000105=========================
Kurt B. Kaisercca91222003-07-16 03:10:43 +0000106
107*Release date: 29-Jun-2003*
Kurt B. Kaiser76bcb5c2003-06-14 02:51:06 +0000108
Kurt B. Kaiserc714d452003-11-24 03:23:16 +0000109- Extend AboutDialog.ViewFile() to support file encodings. Make the CREDITS
110 file Latin-1.
111
112- Updated the About dialog to reflect re-integration into Python. Provide
113 buttons to display Python's NEWS, License, and Credits, plus additional
114 buttons for IDLE's README and NEWS.
115
116- TextViewer() now has a third parameter which allows inserting text into the
117 viewer instead of reading from a file.
118
Kurt B. Kaiser76bcb5c2003-06-14 02:51:06 +0000119- (Created the .../Lib/idlelib directory in the Python CVS, which is a clone of
120 IDLEfork modified to install in the Python environment. The code in the
121 interrupt module has been moved to thread.interrupt_main(). )
122
123- Printing the Shell window was failing if it was not saved first SF 748975
124
125- When using the Search in Files dialog, if the user had a selection
126 highlighted in his Editor window, insert it into the dialog search field.
127
128- The Python Shell entry was disappearing from the Windows menu.
129
130- Update the Windows file list when a file name change occurs
131
132- Change to File / Open Module: always pop up the dialog, using the current
133 selection as the default value. This is easier to use habitually.
134
135- Avoided a problem with starting the subprocess when 'localhost' doesn't
136 resolve to the user's loopback interface. SF 747772
137
138- Fixed an issue with highlighted errors never de-colorizing. SF 747677. Also
139 improved notification of Tabnanny Token Error.
140
141- File / New will by default save in the directory of the Edit window from
142 which it was initiated. SF 748973 Guido van Rossum patch.
143
Steven M. Gavad39993e2001-07-20 01:36:49 +0000144
Kurt B. Kaiser9a90e702003-04-25 17:48:08 +0000145What's New in IDLEfork 0.9b1?
Kurt B. Kaiser4d5bc602004-06-06 01:29:22 +0000146=============================
Kurt B. Kaiser003091c2003-02-17 18:57:16 +0000147
Kurt B. Kaiser76bcb5c2003-06-14 02:51:06 +0000148*Release date: 02-Jun-2003*
Kurt B. Kaisera00050f2003-05-08 20:26:55 +0000149
Kurt B. Kaiser5ddef752003-06-01 01:11:14 +0000150- The current working directory of the execution environment (and shell
151 following completion of execution) is now that of the module being run.
152
153- Added the delete-exitfunc option to config-main.def. (This option is not
154 included in the Options dialog.) Setting this to True (the default) will
155 cause IDLE to not run sys.exitfunc/atexit when the subprocess exits.
156
157- IDLE now preserves the line ending codes when editing a file produced on
158 a different platform. SF 661759, SF 538584
159
160- Reduced default editor font size to 10 point and increased window height
161 to provide a better initial impression on Windows.
162
163- Options / Fonts/Tabs / Set Base Editor Font: List box was not highlighting
164 the default font when first installed on Windows. SF 661676
165
166- Added Autosave feature: when user runs code from edit window, if the file
167 has been modified IDLE will silently save it if Autosave is enabled. The
168 option is set in the Options dialog, and the default is to prompt the
169 user to save the file. SF 661318 Bruce Sherwood patch.
170
171- Improved the RESTART annotation in the shell window when the user restarts
172 the shell while it is generating output. Also improved annotation when user
173 repeatedly hammers the Ctrl-F6 restart.
174
Kurt B. Kaisera80d57c2003-05-17 03:15:48 +0000175- Allow IDLE to run when not installed and cwd is not the IDLE directory
176 SF Patch 686254 "Run IDLEfork from any directory without set-up" - Raphael
177
178- When a module is run from an EditorWindow: if its directory is not in
179 sys.path, prepend it. This allows the module to import other modules in
180 the same directory. Do the same for a script run from the command line.
181
Kurt B. Kaiser5ddef752003-06-01 01:11:14 +0000182- Correctly restart the subprocess if it is running user code and the user
183 attempts to run some other module or restarts the shell. Do the same if
184 the link is broken and it is possible to restart the subprocess and re-
185 connect to the GUI. SF RFE 661321.
Kurt B. Kaiser7f38ec02003-05-15 03:19:42 +0000186
187- Improved exception reporting when running commands or scripts from the
188 command line.
189
Kurt B. Kaisera80d57c2003-05-17 03:15:48 +0000190- Added a -n command line switch to start IDLE without the subprocess.
191 Removed the Shell menu when running in that mode. Updated help messages.
192
Kurt B. Kaiser7f38ec02003-05-15 03:19:42 +0000193- Added a comment to the shell startup header to indicate when IDLE is not
Kurt B. Kaisera80d57c2003-05-17 03:15:48 +0000194 using the subprocess.
Kurt B. Kaiser7f38ec02003-05-15 03:19:42 +0000195
196- Restore the ability to run without the subprocess. This can be important for
197 some platforms or configurations. (Running without the subprocess allows the
198 debugger to trace through parts of IDLE itself, which may or may not be
199 desirable, depending on your point of view. In addition, the traditional
Kurt B. Kaiser5ddef752003-06-01 01:11:14 +0000200 reload/import tricks must be use if user source code is changed.) This is
201 helpful for developing IDLE using IDLE, because one instance can be used to
202 edit the code and a separate instance run to test changes. (Multiple
203 concurrent IDLE instances with subprocesses is a future feature)
Kurt B. Kaiser7f38ec02003-05-15 03:19:42 +0000204
Kurt B. Kaiser73414a22003-05-12 03:04:59 +0000205- Improve the error message a user gets when saving a file with non-ASCII
206 characters and no source encoding is specified. Done by adding a dialog
207 'EncodingMessage', which contains the line to add in a fixed-font entry
208 widget, and which has a button to add that line to the file automatically.
209 Also, add a configuration option 'EditorWindow/encoding', which has three
210 possible values: none, utf-8, and locale. None is the default: IDLE will show
211 this dialog when non-ASCII characters are encountered. utf-8 means that files
212 with non-ASCII characters are saved as utf-8-with-bom. locale means that
213 files are saved in the locale's encoding; the dialog is only displayed if the
214 source contains characters outside the locale's charset. SF 710733 - Loewis
215
Kurt B. Kaisera00050f2003-05-08 20:26:55 +0000216- Improved I/O response by tweaking the wait parameter in various
217 calls to signal.signal().
218
219- Implemented a threaded subprocess which allows interrupting a pass
Kurt B. Kaiser73414a22003-05-12 03:04:59 +0000220 loop in user code using the 'interrupt' extension. User code runs
Kurt B. Kaiser5ddef752003-06-01 01:11:14 +0000221 in MainThread, while the RPCServer is handled by SockThread. This is
222 necessary because Windows doesn't support signals.
Kurt B. Kaiser003091c2003-02-17 18:57:16 +0000223
Kurt B. Kaiser94afd302003-03-12 20:52:00 +0000224- Implemented the 'interrupt' extension module, which allows a subthread
225 to raise a KeyboardInterrupt in the main thread.
226
227- Attempting to save the shell raised an error related to saving
228 breakpoints, which are not implemented in the shell
229
230- Provide a correct message when 'exit' or 'quit' are entered at the
231 IDLE command prompt SF 695861
232
233- Eliminate extra blank line in shell output caused by not flushing
234 stdout when user code ends with an unterminated print. SF 695861
235
236- Moved responsibility for exception formatting (i.e. pruning IDLE internal
237 calls) out of rpc.py into the client and server.
238
Kurt B. Kaiser003091c2003-02-17 18:57:16 +0000239- Exit IDLE cleanly even when doing subprocess I/O
240
Kurt B. Kaiser5ddef752003-06-01 01:11:14 +0000241- Handle subprocess interrupt with an RPC message.
Kurt B. Kaiser003091c2003-02-17 18:57:16 +0000242
243- Restart the subprocess if it terminates itself. (VPython programs do that)
244
245- Support subclassing of exceptions, including in the shell, by moving the
246 exception formatting to the subprocess.
247
Kurt B. Kaiser003091c2003-02-17 18:57:16 +0000248
249
Kurt B. Kaisera7b804f2003-01-10 21:27:23 +0000250What's New in IDLEfork 0.9 Alpha 2?
251===================================
Kurt B. Kaiser2cb54022002-12-31 18:12:04 +0000252
Kurt B. Kaiser7e172892003-01-27 02:40:20 +0000253*Release date: 27-Jan-2003*
254
255- Updated INSTALL.txt to claify use of the python2 rpm.
256
257- Improved formatting in IDLE Help.
258
259- Run menu: Replace "Run Script" with "Run Module".
260
261- Code encountering an unhandled exception under the debugger now shows
262 the correct traceback, with IDLE internal levels pruned out.
263
264- If an exception occurs entirely in IDLE, don't prune the IDLE internal
265 modules from the traceback displayed.
266
267- Class Browser and Path Browser now use Alt-Key-2 for vertical zoom.
268
269- IDLE icons will now install correctly even when setup.py is run from the
270 build directory
271
272- Class Browser now compatible with Python2.3 version of pyclbr.py
Kurt B. Kaiser2cb54022002-12-31 18:12:04 +0000273
Kurt B. Kaiser5ec186b2003-01-17 04:04:06 +0000274- Left cursor move in presence of selected text now moves from left end
275 of the selection.
276
277- Add Meta keybindings to "IDLE Classic Windows" to handle reversed
278 Alt/Meta on some Linux distros.
279
Kurt B. Kaiser8e92bf72003-01-14 22:03:31 +0000280- Change default: IDLE now starts with Python Shell.
281
282- Removed the File Path from the Additional Help Sources scrolled list.
283
284- Add capability to access Additional Help Sources on the web if the
285 Help File Path begins with //http or www. (Otherwise local path is
286 validated, as before.)
287
288- Additional Help Sources were not being posted on the Help menu in the
289 order entered. Implement sorting the list by [HelpFiles] 'option'
290 number.
291
292- Add Browse button to New Help Source dialog. Arrange to start in
293 Python/Doc if platform is Windows, otherwise start in current directory.
294
295- Put the Additional Help Sources directly on the Help menu instead of in
296 an Extra Help cascade menu. Rearrange the Help menu so the Additional
297 Help Sources come last. Update help.txt appropriately.
298
299- Fix Tk root pop-ups in configSectionNameDialog.py and configDialog.py
300
Kurt B. Kaisera7b804f2003-01-10 21:27:23 +0000301- Uniform capitalization in General tab of ConfigDialog, update the doc string.
302
303- Fix bug in ConfigDialog where SaveAllChangedConfig() was unexpectedly
304 deleting Additional Help Sources from the user's config file.
305
306- Make configHelpSourceEdit OK button the default and bind <Return>
307
308- Fix Tk root pop-ups in configHelpSourceEdit: error dialogs not attached
309 to parents.
310
311- Use os.startfile() to open both Additional Help and Python Help on the
312 Windows platform. The application associated with the file type will act as
313 the viewer. Windows help files (.chm) are now supported via the
314 Settings/General/Additional Help facility.
315
316- If Python Help files are installed locally on Linux, use them instead of
317 accessing python.org.
318
319- Make the methods for finding the Python help docs more robust, and make
320 them work in the installed configuration, also.
321
322- On the Save Before Run dialog, make the OK button the default. One
323 less mouse action!
324
325- Add a method: EditorWindow.get_geometry() for future use in implementing
326 window location persistence.
327
328- Removed the "Help/Advice" menu entry. Thanks, David! We'll remember!
329
330- Change the "Classic Windows" theme's paste key to be <ctrl-v>.
331
332- Rearrange the Shell menu to put Stack Viewer entries adjacent.
333
334- Add the ability to restart the subprocess interpreter from the shell window;
Kurt B. Kaiser7e172892003-01-27 02:40:20 +0000335 add an associated menu entry "Shell/Restart" with binding Control-F6. Update
336 IDLE help.
Kurt B. Kaisera7b804f2003-01-10 21:27:23 +0000337
338- Upon a restart, annotate the shell window with a "restart boundary". Add a
Kurt B. Kaiser7e172892003-01-27 02:40:20 +0000339 shell window menu "Shell/View Restart" with binding F6 to jump to the most
340 recent restart boundary.
Kurt B. Kaisera7b804f2003-01-10 21:27:23 +0000341
Kurt B. Kaiser7e172892003-01-27 02:40:20 +0000342- Add Shell menu to Python Shell; change "Settings" to "Options".
Kurt B. Kaisera7b804f2003-01-10 21:27:23 +0000343
344- Remove incorrect comment in setup.py: IDLEfork is now installed as a package.
345
346- Add INSTALL.txt, HISTORY.txt, NEWS.txt to installed configuration.
347
348- In installer text, fix reference to Visual Python, should be VPython.
349 Properly credit David Scherer.
350
351- Modified idle, idle.py, idle.pyw to improve exception handling.
352
Steven M. Gavad39993e2001-07-20 01:36:49 +0000353
Kurt B. Kaisera7b804f2003-01-10 21:27:23 +0000354What's New in IDLEfork 0.9 Alpha 1?
355===================================
Steven M. Gavad39993e2001-07-20 01:36:49 +0000356
Kurt B. Kaisera7b804f2003-01-10 21:27:23 +0000357*Release date: 31-Dec-2002*
Steven M. Gava88ff7362001-07-21 09:50:55 +0000358
Kurt B. Kaisera7b804f2003-01-10 21:27:23 +0000359- First release of major new functionality. For further details refer to
360 Idle-dev and/or the Sourceforge CVS.
Steven M. Gavad39993e2001-07-20 01:36:49 +0000361
Kurt B. Kaisera7b804f2003-01-10 21:27:23 +0000362- Adapted to the Mac platform.
Steven M. Gavad39993e2001-07-20 01:36:49 +0000363
Kurt B. Kaisera7b804f2003-01-10 21:27:23 +0000364- Overhauled the IDLE startup options and revised the idle -h help message,
365 which provides details of command line usage.
Steven M. Gavad39993e2001-07-20 01:36:49 +0000366
Kurt B. Kaisera7b804f2003-01-10 21:27:23 +0000367- Multiple bug fixes and usability enhancements.
368
369- Introduced the new RPC implementation, which includes a debugger. The output
370 of user code is to the shell, and the shell may be used to inspect the
371 environment after the run has finished. (In version 0.8.1 the shell
372 environment was separate from the environment of the user code.)
373
374- Introduced the configuration GUI and a new About dialog.
375
376- Removed David Scherer's Remote Procedure Call code and replaced with Guido
377 van Rossum's. GvR code has support for the IDLE debugger and uses the shell
378 to inspect the environment of code Run from an Edit window. Files removed:
379 ExecBinding.py, loader.py, protocol.py, Remote.py, spawn.py
Steven M. Gavad39993e2001-07-20 01:36:49 +0000380
Kurt B. Kaisera7b804f2003-01-10 21:27:23 +0000381--------------------------------------------------------------------
382Refer to HISTORY.txt for additional information on earlier releases.
383--------------------------------------------------------------------
David Scherer7aced172000-08-15 01:13:23 +0000384
385
David Scherer7aced172000-08-15 01:13:23 +0000386
387
David Scherer7aced172000-08-15 01:13:23 +0000388