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