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