Changelogs

Overview

These changelogs reflect the history of all files in the Subversion repository. The changelog has been generated at 2016-05-09 08:38:04

Changes per page:

25 50 100 250 500 1000 2000

Changelog for wxWidgets (70435 changes):

2005-09-12 20:04 MBN, revision 35478

Revert change 1.131 which actually broke inital size handling. Set background colour for all widgets (same as foreground colour).

2005-09-12 19:00 VS, revision 35477

fixed presets installation for scrdir!=. case

2005-09-12 14:27 VZ, revision 35476

removed stray ^Ms

2005-09-12 13:02 VZ, revision 35475

VC++ /Wp64 warning fixes

2005-09-11 19:54 KH, revision 35474

Send mouse leave events in HandleMouseMove if HAVE_TRACKMOUSEEVENT is defined and the window has captured the mouse. This used to be done in OnInternalIdle, which now only sends leave events when HAVE_TRACKMOUSEEVENT is *not* defined. Patch from Jamie Gadd, posted 9/10/2005 on wx-dev.

2005-09-11 18:37 JS, revision 35473

Applied [ 1283696 ] wxDC::GetPartialTextExtents crashes on empty strings

2005-09-11 18:36 JS, revision 35472

Updated change log

2005-09-11 18:34 JS, revision 35471

Applied [ 1235509 ] wxCocoa unicode wxT("fixes")

2005-09-11 18:31 JS, revision 35470

Applied patch [ 1263950 ] wxConnection fixes for Unicode By Jurgen Doornik

2005-09-11 18:04 JS, revision 35469

Applied patch [ 1284335 ] doc update for wxString::operator[]

2005-09-11 12:09 VZ, revision 35468

unused var warning in Mac build

2005-09-11 11:55 VZ, revision 35467

use given position for page insertion instead of trying to find the page to insert before (bug 1287730)

2005-09-11 11:47 VZ, revision 35466

added ToLong/ULong/Double() tests

2005-09-11 11:44 VZ, revision 35465

clarified ToULong() behaviour with negative numbers

2005-09-11 11:31 VZ, revision 35464

show that key codes are defined in wx/defs.h (patch 1284054)

2005-09-11 11:18 VZ, revision 35463

accept grey PNM images (patch 1285885)

2005-09-11 11:14 VZ, revision 35462

Respect wxListItem::m_mask in general list control Set/GetItem() and allow them to be used to change/query the item selection and focus status (second part of patch 1264533 from Ryan, modified to be backwards compatible)

2005-09-11 11:04 VZ, revision 35461

wxMediaCtrl patch from Ryan: - factored out Active X code into separate files - also refactored common part of all backends in mediactrlcmn.cpp - adds async loading from URLs support to Mac version - support for ShowPlayerControls() in Mac wxMediaCtrl - more minor bug fixes in the MSW version and the sample (this is slightly modified patch 1264533 (without the list control part))

2005-09-10 22:57 MW, revision 35460

Improve instructions for compiling with djgpp

2005-09-10 21:21 MW, revision 35459

Compile fix for VC++ 5

2005-09-10 21:15 MW, revision 35458

Update to zlib 1.2.3

2005-09-10 20:52 , revision 35457
  • A /wxWidgets/tags/ZLIB_1_2_3
  • D /wxWidgets/tags/ZLIB_1_2_3/src/zlib/configure
  • D /wxWidgets/tags/ZLIB_1_2_3/src/zlib/descrip.mms
  • D /wxWidgets/tags/ZLIB_1_2_3/src/zlib/infblock.c
  • D /wxWidgets/tags/ZLIB_1_2_3/src/zlib/infblock.h
  • D /wxWidgets/tags/ZLIB_1_2_3/src/zlib/infcodes.c
  • D /wxWidgets/tags/ZLIB_1_2_3/src/zlib/infcodes.h
  • D /wxWidgets/tags/ZLIB_1_2_3/src/zlib/infutil.c
  • D /wxWidgets/tags/ZLIB_1_2_3/src/zlib/infutil.h
  • D /wxWidgets/tags/ZLIB_1_2_3/src/zlib/Makefile.riscos
  • D /wxWidgets/tags/ZLIB_1_2_3/src/zlib/Make_vms.com
  • D /wxWidgets/tags/ZLIB_1_2_3/src/zlib/maketree.c

This commit was manufactured by cvs2svn to create tag 'ZLIB_1_2_3'.

2005-09-10 20:52 MW, revision 35456
  • R /wxWidgets/trunk/src/zlib/FAQ
  • R /wxWidgets/trunk/src/zlib/inflate.h
  • R /wxWidgets/trunk/src/zlib/README

This commit was generated by cvs2svn to compensate for changes in r35455, which included commits to RCS files with non-trunk default branches.

2005-09-10 20:52 MW, revision 35455

Import zlib 1.2.3

2005-09-09 22:17 DE, revision 35454

Use AC_CHECK_TOOL rather than AC_CHECK_PROG for AR, RANLIB, STRIP, RESCOMP, and DLLTOOL. This automatically searches for tools with a prefix of "$host_alias-" when cross compiling then falls back to the unprefixed tool name if that fails. If the user specifies the tool using the appropriate variable (e.g. CC, CXX, AR, RANLIB, STRIP, etc.) then it will be checked as is. Removed the major hack that did something similar to this but simply ignored user-provided variables and used default tool names. For example, CC was locked to $host_alias-gcc when cross compiling even if the user specified CC on the configure command-line. This brings wxWidgets in line with other autoconf 2.5x projects. The only downside to this approach is that our old method would fail if $host_alias-toolname was not present whereas the autoconf method will silently use the host compiler (which is usually _not_ what the user wants).