blob: c6df2c30dae90982f31626b52d49125bb79f2b7f [file] [log] [blame]
Kurt B. Kaiserb7855182003-08-14 14:54:28 +00001What's New in IDLE 1.0+?
2===================================
3
4*Release date: XX-XXX-2003*
5
Kurt B. Kaiser924f6162003-11-19 04:52:32 +00006- After an exception, run.py was not setting the exception vector. Noam
7 Raphael suggested correcting this so pdb's postmortem pm() would work.
8 IDLEfork Patch 844675
9
Kurt B. Kaiserb7855182003-08-14 14:54:28 +000010- IDLE didn't start correctly when Python was installed in "Program Files" on
11 W2K and XP. Python Bugs 780451, 784183
12
13- config-main.def documentation incorrectly referred to idle- instead of
14 config- filenames. SF 782759 Also added note about .idlerc location.
15
16
Kurt B. Kaiser220fecf2003-07-27 03:24:19 +000017What's New in IDLE 1.0?
18===================================
19
20*Release date: 29-Jul-2003*
21
22- Added a banner to the shell discussimg warnings possibly raised by personal
23 firewall software. Added same comment to README.txt.
24
25
Kurt B. Kaiser6145a622003-07-23 15:42:14 +000026What's New in IDLE 1.0 release candidate 2?
Kurt B. Kaiser76bcb5c2003-06-14 02:51:06 +000027===================================
28
Kurt B. Kaiser6145a622003-07-23 15:42:14 +000029*Release date: 24-Jul-2003*
30
31- Calltip error when docstring was None Python Bug 775541
32
Kurt B. Kaiser220fecf2003-07-27 03:24:19 +000033
Kurt B. Kaiser6145a622003-07-23 15:42:14 +000034What's New in IDLE 1.0 release candidate 1?
35===================================
36
37*Release date: 18-Jul-2003*
Kurt B. Kaisercca91222003-07-16 03:10:43 +000038
39- Updated extend.txt, help.txt, and config-extensions.def to correctly
40 reflect the current status of the configuration system. Python Bug 768469
41
42- Fixed: Call Tip Trimming May Loop Forever. Python Patch 769142 (Daniels)
43
44- Replaced apply(f, args, kwds) with f(*args, **kwargs) to improve performance
45 Python Patch 768187
46
47- Break or continue statements outside a loop were causing IDLE crash
48 Python Bug 767794
49
50- Convert Unicode strings from readline to IOBinding.encoding. Also set
51 sys.std{in|out|err}.encoding, for both the local and the subprocess case.
52 SF IDLEfork patch 682347.
53
54
55What's New in IDLE 1.0b2?
56===================================
57
58*Release date: 29-Jun-2003*
Kurt B. Kaiser76bcb5c2003-06-14 02:51:06 +000059
60- (Created the .../Lib/idlelib directory in the Python CVS, which is a clone of
61 IDLEfork modified to install in the Python environment. The code in the
62 interrupt module has been moved to thread.interrupt_main(). )
63
64- Printing the Shell window was failing if it was not saved first SF 748975
65
66- When using the Search in Files dialog, if the user had a selection
67 highlighted in his Editor window, insert it into the dialog search field.
68
69- The Python Shell entry was disappearing from the Windows menu.
70
71- Update the Windows file list when a file name change occurs
72
73- Change to File / Open Module: always pop up the dialog, using the current
74 selection as the default value. This is easier to use habitually.
75
76- Avoided a problem with starting the subprocess when 'localhost' doesn't
77 resolve to the user's loopback interface. SF 747772
78
79- Fixed an issue with highlighted errors never de-colorizing. SF 747677. Also
80 improved notification of Tabnanny Token Error.
81
82- File / New will by default save in the directory of the Edit window from
83 which it was initiated. SF 748973 Guido van Rossum patch.
84
Steven M. Gavad39993e2001-07-20 01:36:49 +000085
Kurt B. Kaiser9a90e702003-04-25 17:48:08 +000086What's New in IDLEfork 0.9b1?
Kurt B. Kaiser003091c2003-02-17 18:57:16 +000087===================================
88
Kurt B. Kaiser76bcb5c2003-06-14 02:51:06 +000089*Release date: 02-Jun-2003*
Kurt B. Kaisera00050f2003-05-08 20:26:55 +000090
Kurt B. Kaiser5ddef752003-06-01 01:11:14 +000091- The current working directory of the execution environment (and shell
92 following completion of execution) is now that of the module being run.
93
94- Added the delete-exitfunc option to config-main.def. (This option is not
95 included in the Options dialog.) Setting this to True (the default) will
96 cause IDLE to not run sys.exitfunc/atexit when the subprocess exits.
97
98- IDLE now preserves the line ending codes when editing a file produced on
99 a different platform. SF 661759, SF 538584
100
101- Reduced default editor font size to 10 point and increased window height
102 to provide a better initial impression on Windows.
103
104- Options / Fonts/Tabs / Set Base Editor Font: List box was not highlighting
105 the default font when first installed on Windows. SF 661676
106
107- Added Autosave feature: when user runs code from edit window, if the file
108 has been modified IDLE will silently save it if Autosave is enabled. The
109 option is set in the Options dialog, and the default is to prompt the
110 user to save the file. SF 661318 Bruce Sherwood patch.
111
112- Improved the RESTART annotation in the shell window when the user restarts
113 the shell while it is generating output. Also improved annotation when user
114 repeatedly hammers the Ctrl-F6 restart.
115
Kurt B. Kaisera80d57c2003-05-17 03:15:48 +0000116- Allow IDLE to run when not installed and cwd is not the IDLE directory
117 SF Patch 686254 "Run IDLEfork from any directory without set-up" - Raphael
118
119- When a module is run from an EditorWindow: if its directory is not in
120 sys.path, prepend it. This allows the module to import other modules in
121 the same directory. Do the same for a script run from the command line.
122
Kurt B. Kaiser5ddef752003-06-01 01:11:14 +0000123- Correctly restart the subprocess if it is running user code and the user
124 attempts to run some other module or restarts the shell. Do the same if
125 the link is broken and it is possible to restart the subprocess and re-
126 connect to the GUI. SF RFE 661321.
Kurt B. Kaiser7f38ec02003-05-15 03:19:42 +0000127
128- Improved exception reporting when running commands or scripts from the
129 command line.
130
Kurt B. Kaisera80d57c2003-05-17 03:15:48 +0000131- Added a -n command line switch to start IDLE without the subprocess.
132 Removed the Shell menu when running in that mode. Updated help messages.
133
Kurt B. Kaiser7f38ec02003-05-15 03:19:42 +0000134- Added a comment to the shell startup header to indicate when IDLE is not
Kurt B. Kaisera80d57c2003-05-17 03:15:48 +0000135 using the subprocess.
Kurt B. Kaiser7f38ec02003-05-15 03:19:42 +0000136
137- Restore the ability to run without the subprocess. This can be important for
138 some platforms or configurations. (Running without the subprocess allows the
139 debugger to trace through parts of IDLE itself, which may or may not be
140 desirable, depending on your point of view. In addition, the traditional
Kurt B. Kaiser5ddef752003-06-01 01:11:14 +0000141 reload/import tricks must be use if user source code is changed.) This is
142 helpful for developing IDLE using IDLE, because one instance can be used to
143 edit the code and a separate instance run to test changes. (Multiple
144 concurrent IDLE instances with subprocesses is a future feature)
Kurt B. Kaiser7f38ec02003-05-15 03:19:42 +0000145
Kurt B. Kaiser73414a22003-05-12 03:04:59 +0000146- Improve the error message a user gets when saving a file with non-ASCII
147 characters and no source encoding is specified. Done by adding a dialog
148 'EncodingMessage', which contains the line to add in a fixed-font entry
149 widget, and which has a button to add that line to the file automatically.
150 Also, add a configuration option 'EditorWindow/encoding', which has three
151 possible values: none, utf-8, and locale. None is the default: IDLE will show
152 this dialog when non-ASCII characters are encountered. utf-8 means that files
153 with non-ASCII characters are saved as utf-8-with-bom. locale means that
154 files are saved in the locale's encoding; the dialog is only displayed if the
155 source contains characters outside the locale's charset. SF 710733 - Loewis
156
Kurt B. Kaisera00050f2003-05-08 20:26:55 +0000157- Improved I/O response by tweaking the wait parameter in various
158 calls to signal.signal().
159
160- Implemented a threaded subprocess which allows interrupting a pass
Kurt B. Kaiser73414a22003-05-12 03:04:59 +0000161 loop in user code using the 'interrupt' extension. User code runs
Kurt B. Kaiser5ddef752003-06-01 01:11:14 +0000162 in MainThread, while the RPCServer is handled by SockThread. This is
163 necessary because Windows doesn't support signals.
Kurt B. Kaiser003091c2003-02-17 18:57:16 +0000164
Kurt B. Kaiser94afd302003-03-12 20:52:00 +0000165- Implemented the 'interrupt' extension module, which allows a subthread
166 to raise a KeyboardInterrupt in the main thread.
167
168- Attempting to save the shell raised an error related to saving
169 breakpoints, which are not implemented in the shell
170
171- Provide a correct message when 'exit' or 'quit' are entered at the
172 IDLE command prompt SF 695861
173
174- Eliminate extra blank line in shell output caused by not flushing
175 stdout when user code ends with an unterminated print. SF 695861
176
177- Moved responsibility for exception formatting (i.e. pruning IDLE internal
178 calls) out of rpc.py into the client and server.
179
Kurt B. Kaiser003091c2003-02-17 18:57:16 +0000180- Exit IDLE cleanly even when doing subprocess I/O
181
Kurt B. Kaiser5ddef752003-06-01 01:11:14 +0000182- Handle subprocess interrupt with an RPC message.
Kurt B. Kaiser003091c2003-02-17 18:57:16 +0000183
184- Restart the subprocess if it terminates itself. (VPython programs do that)
185
186- Support subclassing of exceptions, including in the shell, by moving the
187 exception formatting to the subprocess.
188
Kurt B. Kaiser003091c2003-02-17 18:57:16 +0000189
190
Kurt B. Kaisera7b804f2003-01-10 21:27:23 +0000191What's New in IDLEfork 0.9 Alpha 2?
192===================================
Kurt B. Kaiser2cb54022002-12-31 18:12:04 +0000193
Kurt B. Kaiser7e172892003-01-27 02:40:20 +0000194*Release date: 27-Jan-2003*
195
196- Updated INSTALL.txt to claify use of the python2 rpm.
197
198- Improved formatting in IDLE Help.
199
200- Run menu: Replace "Run Script" with "Run Module".
201
202- Code encountering an unhandled exception under the debugger now shows
203 the correct traceback, with IDLE internal levels pruned out.
204
205- If an exception occurs entirely in IDLE, don't prune the IDLE internal
206 modules from the traceback displayed.
207
208- Class Browser and Path Browser now use Alt-Key-2 for vertical zoom.
209
210- IDLE icons will now install correctly even when setup.py is run from the
211 build directory
212
213- Class Browser now compatible with Python2.3 version of pyclbr.py
Kurt B. Kaiser2cb54022002-12-31 18:12:04 +0000214
Kurt B. Kaiser5ec186b2003-01-17 04:04:06 +0000215- Left cursor move in presence of selected text now moves from left end
216 of the selection.
217
218- Add Meta keybindings to "IDLE Classic Windows" to handle reversed
219 Alt/Meta on some Linux distros.
220
Kurt B. Kaiser8e92bf72003-01-14 22:03:31 +0000221- Change default: IDLE now starts with Python Shell.
222
223- Removed the File Path from the Additional Help Sources scrolled list.
224
225- Add capability to access Additional Help Sources on the web if the
226 Help File Path begins with //http or www. (Otherwise local path is
227 validated, as before.)
228
229- Additional Help Sources were not being posted on the Help menu in the
230 order entered. Implement sorting the list by [HelpFiles] 'option'
231 number.
232
233- Add Browse button to New Help Source dialog. Arrange to start in
234 Python/Doc if platform is Windows, otherwise start in current directory.
235
236- Put the Additional Help Sources directly on the Help menu instead of in
237 an Extra Help cascade menu. Rearrange the Help menu so the Additional
238 Help Sources come last. Update help.txt appropriately.
239
240- Fix Tk root pop-ups in configSectionNameDialog.py and configDialog.py
241
Kurt B. Kaisera7b804f2003-01-10 21:27:23 +0000242- Uniform capitalization in General tab of ConfigDialog, update the doc string.
243
244- Fix bug in ConfigDialog where SaveAllChangedConfig() was unexpectedly
245 deleting Additional Help Sources from the user's config file.
246
247- Make configHelpSourceEdit OK button the default and bind <Return>
248
249- Fix Tk root pop-ups in configHelpSourceEdit: error dialogs not attached
250 to parents.
251
252- Use os.startfile() to open both Additional Help and Python Help on the
253 Windows platform. The application associated with the file type will act as
254 the viewer. Windows help files (.chm) are now supported via the
255 Settings/General/Additional Help facility.
256
257- If Python Help files are installed locally on Linux, use them instead of
258 accessing python.org.
259
260- Make the methods for finding the Python help docs more robust, and make
261 them work in the installed configuration, also.
262
263- On the Save Before Run dialog, make the OK button the default. One
264 less mouse action!
265
266- Add a method: EditorWindow.get_geometry() for future use in implementing
267 window location persistence.
268
269- Removed the "Help/Advice" menu entry. Thanks, David! We'll remember!
270
271- Change the "Classic Windows" theme's paste key to be <ctrl-v>.
272
273- Rearrange the Shell menu to put Stack Viewer entries adjacent.
274
275- Add the ability to restart the subprocess interpreter from the shell window;
Kurt B. Kaiser7e172892003-01-27 02:40:20 +0000276 add an associated menu entry "Shell/Restart" with binding Control-F6. Update
277 IDLE help.
Kurt B. Kaisera7b804f2003-01-10 21:27:23 +0000278
279- Upon a restart, annotate the shell window with a "restart boundary". Add a
Kurt B. Kaiser7e172892003-01-27 02:40:20 +0000280 shell window menu "Shell/View Restart" with binding F6 to jump to the most
281 recent restart boundary.
Kurt B. Kaisera7b804f2003-01-10 21:27:23 +0000282
Kurt B. Kaiser7e172892003-01-27 02:40:20 +0000283- Add Shell menu to Python Shell; change "Settings" to "Options".
Kurt B. Kaisera7b804f2003-01-10 21:27:23 +0000284
285- Remove incorrect comment in setup.py: IDLEfork is now installed as a package.
286
287- Add INSTALL.txt, HISTORY.txt, NEWS.txt to installed configuration.
288
289- In installer text, fix reference to Visual Python, should be VPython.
290 Properly credit David Scherer.
291
292- Modified idle, idle.py, idle.pyw to improve exception handling.
293
Steven M. Gavad39993e2001-07-20 01:36:49 +0000294
Kurt B. Kaisera7b804f2003-01-10 21:27:23 +0000295What's New in IDLEfork 0.9 Alpha 1?
296===================================
Steven M. Gavad39993e2001-07-20 01:36:49 +0000297
Kurt B. Kaisera7b804f2003-01-10 21:27:23 +0000298*Release date: 31-Dec-2002*
Steven M. Gava88ff7362001-07-21 09:50:55 +0000299
Kurt B. Kaisera7b804f2003-01-10 21:27:23 +0000300- First release of major new functionality. For further details refer to
301 Idle-dev and/or the Sourceforge CVS.
Steven M. Gavad39993e2001-07-20 01:36:49 +0000302
Kurt B. Kaisera7b804f2003-01-10 21:27:23 +0000303- Adapted to the Mac platform.
Steven M. Gavad39993e2001-07-20 01:36:49 +0000304
Kurt B. Kaisera7b804f2003-01-10 21:27:23 +0000305- Overhauled the IDLE startup options and revised the idle -h help message,
306 which provides details of command line usage.
Steven M. Gavad39993e2001-07-20 01:36:49 +0000307
Kurt B. Kaisera7b804f2003-01-10 21:27:23 +0000308- Multiple bug fixes and usability enhancements.
309
310- Introduced the new RPC implementation, which includes a debugger. The output
311 of user code is to the shell, and the shell may be used to inspect the
312 environment after the run has finished. (In version 0.8.1 the shell
313 environment was separate from the environment of the user code.)
314
315- Introduced the configuration GUI and a new About dialog.
316
317- Removed David Scherer's Remote Procedure Call code and replaced with Guido
318 van Rossum's. GvR code has support for the IDLE debugger and uses the shell
319 to inspect the environment of code Run from an Edit window. Files removed:
320 ExecBinding.py, loader.py, protocol.py, Remote.py, spawn.py
Steven M. Gavad39993e2001-07-20 01:36:49 +0000321
Kurt B. Kaisera7b804f2003-01-10 21:27:23 +0000322--------------------------------------------------------------------
323Refer to HISTORY.txt for additional information on earlier releases.
324--------------------------------------------------------------------
David Scherer7aced172000-08-15 01:13:23 +0000325
326
David Scherer7aced172000-08-15 01:13:23 +0000327
328
David Scherer7aced172000-08-15 01:13:23 +0000329