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