HISTORY.txt 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296
  1. IDLE History
  2. ============
  3. This file contains the release messages for previous IDLE releases.
  4. As you read on you go back to the dark ages of IDLE's history.
  5. What's New in IDLEfork 0.8.1?
  6. =============================
  7. *Release date: 22-Jul-2001*
  8. - New tarball released as a result of the 'revitalisation' of the IDLEfork
  9. project.
  10. - This release requires python 2.1 or better. Compatibility with earlier
  11. versions of python (especially ancient ones like 1.5x) is no longer a
  12. priority in IDLEfork development.
  13. - This release is based on a merging of the earlier IDLE fork work with current
  14. cvs IDLE (post IDLE version 0.8), with some minor additional coding by Kurt
  15. B. Kaiser and Stephen M. Gava.
  16. - This release is basically functional but also contains some known breakages,
  17. particularly with running things from the shell window. Also the debugger is
  18. not working, but I believe this was the case with the previous IDLE fork
  19. release (0.7.1) as well.
  20. - This release is being made now to mark the point at which IDLEfork is
  21. launching into a new stage of development.
  22. - IDLEfork CVS will now be branched to enable further development and
  23. exploration of the two "execution in a remote process" patches submitted by
  24. David Scherer (David's is currently in IDLEfork) and GvR, while stabilisation
  25. and development of less heavyweight improvements (like user customisation)
  26. can continue on the trunk.
  27. What's New in IDLEfork 0.7.1?
  28. ==============================
  29. *Release date: 15-Aug-2000*
  30. - First project tarball released.
  31. - This was the first release of IDLE fork, which at this stage was a
  32. combination of IDLE 0.5 and the VPython idle fork, with additional changes
  33. coded by David Scherer, Peter Schneider-Kamp and Nicholas Riley.
  34. IDLEfork 0.7.1 - 29 May 2000
  35. -----------------------------
  36. David Scherer <dscherer@cmu.edu>
  37. - This is a modification of the CVS version of IDLE 0.5, updated as of
  38. 2000-03-09. It is alpha software and might be unstable. If it breaks, you
  39. get to keep both pieces.
  40. - If you have problems or suggestions, you should either contact me or post to
  41. the list at http://www.python.org/mailman/listinfo/idle-dev (making it clear
  42. that you are using this modified version of IDLE).
  43. - Changes:
  44. - The ExecBinding module, a replacement for ScriptBinding, executes programs
  45. in a separate process, piping standard I/O through an RPC mechanism to an
  46. OnDemandOutputWindow in IDLE. It supports executing unnamed programs
  47. (through a temporary file). It does not yet support debugging.
  48. - When running programs with ExecBinding, tracebacks will be clipped to
  49. exclude system modules. If, however, a system module calls back into the
  50. user program, that part of the traceback will be shown.
  51. - The OnDemandOutputWindow class has been improved. In particular, it now
  52. supports a readline() function used to implement user input, and a
  53. scroll_clear() operation which is used to hide the output of a previous run
  54. by scrolling it out of the window.
  55. - Startup behavior has been changed. By default IDLE starts up with just a
  56. blank editor window, rather than an interactive window. Opening a file in
  57. such a blank window replaces the (nonexistent) contents of that window
  58. instead of creating another window. Because of the need to have a
  59. well-known port for the ExecBinding protocol, only one copy of IDLE can be
  60. running. Additional invocations use the RPC mechanism to report their
  61. command line arguments to the copy already running.
  62. - The menus have been reorganized. In particular, the excessively large
  63. 'edit' menu has been split up into 'edit', 'format', and 'run'.
  64. - 'Python Documentation' now works on Windows, if the win32api module is
  65. present.
  66. - A few key bindings have been changed: F1 now loads Python Documentation
  67. instead of the IDLE help; shift-TAB is now a synonym for unindent.
  68. - New modules:
  69. ExecBinding.py Executes program through loader
  70. loader.py Bootstraps user program
  71. protocol.py RPC protocol
  72. Remote.py User-process interpreter
  73. spawn.py OS-specific code to start programs
  74. - Files modified:
  75. autoindent.py ( bindings tweaked )
  76. bindings.py ( menus reorganized )
  77. config.txt ( execbinding enabled )
  78. editorwindow.py ( new menus, fixed 'Python Documentation' )
  79. filelist.py ( hook for "open in same window" )
  80. formatparagraph.py ( bindings tweaked )
  81. idle.bat ( removed absolute pathname )
  82. idle.pyw ( weird bug due to import with same name? )
  83. iobinding.py ( open in same window, EOL convention )
  84. keydefs.py ( bindings tweaked )
  85. outputwindow.py ( readline, scroll_clear, etc )
  86. pyshell.py ( changed startup behavior )
  87. readme.txt ( <Recursion on file with id=1234567> )
  88. IDLE 0.5 - February 2000 - Release Notes
  89. ----------------------------------------
  90. This is an early release of IDLE, my own attempt at a Tkinter-based
  91. IDE for Python.
  92. (For a more detailed change log, see the file ChangeLog.)
  93. FEATURES
  94. IDLE has the following features:
  95. - coded in 100% pure Python, using the Tkinter GUI toolkit (i.e. Tcl/Tk)
  96. - cross-platform: works on Windows and Unix (on the Mac, there are
  97. currently problems with Tcl/Tk)
  98. - multi-window text editor with multiple undo, Python colorizing
  99. and many other features, e.g. smart indent and call tips
  100. - Python shell window (a.k.a. interactive interpreter)
  101. - debugger (not complete, but you can set breakpoints, view and step)
  102. USAGE
  103. The main program is in the file "idle.py"; on Unix, you should be able
  104. to run it by typing "./idle.py" to your shell. On Windows, you can
  105. run it by double-clicking it; you can use idle.pyw to avoid popping up
  106. a DOS console. If you want to pass command line arguments on Windows,
  107. use the batch file idle.bat.
  108. Command line arguments: files passed on the command line are executed,
  109. not opened for editing, unless you give the -e command line option.
  110. Try "./idle.py -h" to see other command line options.
  111. IDLE requires Python 1.5.2, so it is currently only usable with a
  112. Python 1.5.2 distribution. (An older version of IDLE is distributed
  113. with Python 1.5.2; you can drop this version on top of it.)
  114. COPYRIGHT
  115. IDLE is covered by the standard Python copyright notice
  116. (http://www.python.org/doc/Copyright.html).
  117. New in IDLE 0.5 (2/15/2000)
  118. ---------------------------
  119. Tons of stuff, much of it contributed by Tim Peters and Mark Hammond:
  120. - Status bar, displaying current line/column (Moshe Zadka).
  121. - Better stack viewer, using tree widget. (XXX Only used by Stack
  122. Viewer menu, not by the debugger.)
  123. - Format paragraph now recognizes Python block comments and reformats
  124. them correctly (MH)
  125. - New version of pyclbr.py parses top-level functions and understands
  126. much more of Python's syntax; this is reflected in the class and path
  127. browsers (TP)
  128. - Much better auto-indent; knows how to indent the insides of
  129. multi-line statements (TP)
  130. - Call tip window pops up when you type the name of a known function
  131. followed by an open parenthesis. Hit ESC or click elsewhere in the
  132. window to close the tip window (MH)
  133. - Comment out region now inserts ## to make it stand out more (TP)
  134. - New path and class browsers based on a tree widget that looks
  135. familiar to Windows users
  136. - Reworked script running commands to be more intuitive: I/O now
  137. always goes to the *Python Shell* window, and raw_input() works
  138. correctly. You use F5 to import/reload a module: this adds the module
  139. name to the __main__ namespace. You use Control-F5 to run a script:
  140. this runs the script *in* the __main__ namespace. The latter also
  141. sets sys.argv[] to the script name
  142. New in IDLE 0.4 (4/7/99)
  143. ------------------------
  144. Most important change: a new menu entry "File -> Path browser", shows
  145. a 4-column hierarchical browser which lets you browse sys.path,
  146. directories, modules, and classes. Yes, it's a superset of the Class
  147. browser menu entry. There's also a new internal module,
  148. MultiScrolledLists.py, which provides the framework for this dialog.
  149. New in IDLE 0.3 (2/17/99)
  150. -------------------------
  151. Most important changes:
  152. - Enabled support for running a module, with or without the debugger.
  153. Output goes to a new window. Pressing F5 in a module is effectively a
  154. reload of that module; Control-F5 loads it under the debugger.
  155. - Re-enable tearing off the Windows menu, and make a torn-off Windows
  156. menu update itself whenever a window is opened or closed.
  157. - Menu items can now be have a checkbox (when the menu label starts
  158. with "!"); use this for the Debugger and "Auto-open stack viewer"
  159. (was: JIT stack viewer) menu items.
  160. - Added a Quit button to the Debugger API.
  161. - The current directory is explicitly inserted into sys.path.
  162. - Fix the debugger (when using Python 1.5.2b2) to use canonical
  163. filenames for breakpoints, so these actually work. (There's still a
  164. lot of work to be done to the management of breakpoints in the
  165. debugger though.)
  166. - Closing a window that is still colorizing now actually works.
  167. - Allow dragging of the separator between the two list boxes in the
  168. class browser.
  169. - Bind ESC to "close window" of the debugger, stack viewer and class
  170. browser. It removes the selection highlighting in regular text
  171. windows. (These are standard Windows conventions.)
  172. New in IDLE 0.2 (1/8/99)
  173. ------------------------
  174. Lots of changes; here are the highlights:
  175. General:
  176. - You can now write and configure your own IDLE extension modules; see
  177. extend.txt.
  178. File menu:
  179. The command to open the Python shell window is now in the File menu.
  180. Edit menu:
  181. New Find dialog with more options; replace dialog; find in files dialog.
  182. Commands to tabify or untabify a region.
  183. Command to format a paragraph.
  184. Debug menu:
  185. JIT (Just-In-Time) stack viewer toggle -- if set, the stack viewer
  186. automaticall pops up when you get a traceback.
  187. Windows menu:
  188. Zoom height -- make the window full height.
  189. Help menu:
  190. The help text now show up in a regular window so you can search and
  191. even edit it if you like.
  192. IDLE 0.1 was distributed with the Python 1.5.2b1 release on 12/22/98.
  193. ======================================================================