summaryrefslogtreecommitdiffstats
path: root/PCbuild/python20.wse
Commit message (Collapse)AuthorAgeFilesLines
* Add Jeremy's compiler to the Windows install.Tim Peters2001-03-231-0/+18
|
* Update Windows installer for 2.1b2.Tim Peters2001-03-211-2/+2
|
* When building the installer, prompt for the location of the system directoryTim Peters2001-03-191-3/+5
| | | | | on the current machine. Wise doesn't seem to know this itself, and it varies across Windows flavors.
* Windows: Fallout from renaming the pydoc file.Tim Peters2001-03-111-1/+1
|
* SF bug Win32: pydoc command isn't executable.Tim Peters2001-03-111-1/+1
| | | | | | As the bug report notes, the Windows installer creates a useless pydoc file in the base directory. Changed the installer to rename it pydoc.pyw instead.
* Magic strings in both Python and the Wise installer define the registry keyTim Peters2001-03-111-1/+4
| | | | | to be used in Windows. They got out of synch. Repaired that, and added comments to each one pointing at the other.
* Add a new item to the Python 2.1 start menu: "Module Docs".Guido van Rossum2001-03-021-0/+14
| | | | | | This brings up Ping's pydoc server. (XXX The icons for this and for IDLE seem screwed. Oh well.)
* Prepare Windows for 2.1 beta 1: installer dialogs and bump "build number".Tim Peters2001-03-011-3/+3
|
* Renamed _testXXX to _testcapiXXX. Jack is my hero -- good call!Tim Peters2001-02-041-4/+4
|
* Teach Windows build and installer about new _symtable module/DLL.Tim Peters2001-02-021-0/+10
|
* Teach the Windows installer about the _test module.Tim Peters2001-02-021-0/+10
|
* Windows build: update for 2.1a2, + get ucnhash out of the installer.Tim Peters2001-02-011-13/+3
|
* Windows: 2.1a1 changes so Python runs again. Note that the python20Tim Peters2001-01-171-4/+4
| | | | subproject is gone, replaced by the new pythoncore subproject.
* Windows installer: update dialogs, program groups, etc, to 2.1 alpha 1.Tim Peters2001-01-171-5/+5
|
* Prep the Windows installer for 2.0 final:Tim Peters2000-10-141-5/+9
| | | | | | | + Bump the build number. + Changed app name in installer dialogs. + Fiddled dialogs to repair grammar and get rid of anachronisms (e.g., "ProgMan" and "Program Manager" haven't made sense since Windows 3.1!).
* Prep Windows installer for 2.0c1: title and build number.Tim Peters2000-10-071-2/+2
|
* Yet another new unique extension in the test directory.Tim Peters2000-09-261-0/+5
|
* Windows installer:Tim Peters2000-09-211-9/+159
| | | | | Don't ship debug .dll, .pyd or .lib files. Saves space. Bumped the title to beta 2.
* Windows installer: In the Start menu IDLE shortcut, explictly invoke theTim Peters2000-09-111-1/+2
| | | | | | pythonw.exe we just installed. Making Windows key off the .pyw extension instead screws people with multiple Python installations (reported more than once on c.l.py).
* Windows installer, reflecting changes that went into a replacement 2.0b1Tim Peters2000-09-071-5/+17
| | | | | | | | | | .exe that will show up on PythonLabs.com later today: Include the Lib\xml\ package (directory + subdirectories). Include the Lib\lib-old\ directory. Include the Lib\test\*.xml test cases (well, just one now). Remove the redundant install of Lib\*.py (looks like a stray duplicate line that's been there a long time). Because of this, the new installer is a little smaller despite having more stuff in it.
* Windows build: install NEWS.txt; bump BUILD# to 3 in preparation for nextTim Peters2000-09-051-0/+5
| | | | installer.
* Now that I've got real docs, redirect _DOC_ out of the Python 1.6 tree andTim Peters2000-09-051-1/+2
| | | | | to the new docs. Added a description to the Tcl/Tk file copies.
* Install LICENSE.txt and README.txt.Tim Peters2000-09-011-12/+11
| | | | | | | In the Welcome dialog: Reworded reference to non-existent "Exit Setup" button. Removed useless "Back" button. Changed "push" to "click".
* Guido pointed out that the "non-admin install" blurb got displayedTim Peters2000-09-011-13/+11
| | | | | | | | very late in the process when running on Windows 2000 without admim privs. Rearranged so that the admin check is done at the start instead. Added words to the end of the blurb to make it very clear how to abort the install (wasn't obvious to me that "Cancel" was the right thing to click).
* Back off to HKCU (instead of HKLM) if user doesn't have "NT adminstratorTim Peters2000-09-011-1/+61
| | | | privileges". Untested except on Win98SE (where Wise writes to HKLM).
* Added installation of w9xpopen.exe.Tim Peters2000-09-011-1/+6
| | | | Removed installation of Lib/plat-win/*.py, because it no longer exists!
* In readme.txt, make what's needed to build the "optional" subprojectsTim Peters2000-08-251-2/+2
| | | | | | | much more explicit. Also document that we're moving to Tcl/Tk 8.3.2. Simplify .dsp files by getting rid of useless include paths. .wse file changed to reflect that my setup is different than Guido's: if you *build* a Python distro using python20.wse, beware!
* At Mark Hammond's request, removing registry keyGuido van Rossum2000-08-221-5/+0
| | | | | | | Software\Python\PythonCore\2.0\Dll\Python20.dll -- it's no longer needed according to him. Note: not yet tested!
* Thomas Heller noticed that the wrong registry entry was written forGuido van Rossum2000-08-221-1/+1
| | | | | | | the DLL. Replace %_SYSDEST_%\Python20.dll with %_DLLDEST_%\Python20.dll.
* somehow the 'Total Keys=1' disappears. No other changes.Guido van Rossum2000-08-011-23/+0
|
* Oops.Guido van Rossum2000-06-301-2/+2
| | | | | | | - The Tcl minor version should be 3 -- we're now using 8.3.1. - Remove the version number from yet another Tcl source file. Note that Tcl should be installed in C:\src\tcl for this to work.
* Poke and hope for Tcl version: now settable through _TCLMINOR_Guido van Rossum2000-06-301-4/+8
| | | | variable...
* Move Wise install dir consistently to C:\Wise. Don't use %_WISE_% inGuido van Rossum2000-06-301-3/+3
| | | | include, it doesn't seem to work.
* Poke and hope for Tim...Guido van Rossum2000-06-301-6/+6
| | | | (Change title to beta 1, change a few paths for typical Win98 setup.)
* Bump version to 2.0.Guido van Rossum2000-06-291-0/+1245