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