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):

2009-07-12 02:21 VZ, revision 61408

correct translation of "in." (Isaac Marino Bavaresco)

2009-07-11 23:15 VZ, revision 61407

compilation fix after last commit

2009-07-11 22:46 VZ, revision 61406

Added wxThread::GetMainId(). This is useful for checking if a message was logged from the main thread or not and also allows us to implement IsMain() by comparing GetCurrentId() with GetMainId() in all ports and avoid repetition.

2009-07-11 10:16 JMS, revision 61405

Added named section 'Property development funcions'

2009-07-11 09:59 JMS, revision 61404

Added wxPropertyGrid::WasValueChangedInEvent(), added code to avoid showing colour picker dialog twice when 'Custom' colour was picked from drop-down list

2009-07-11 09:29 JMS, revision 61403

Fixed 'Custom' entry in the colour property combo boxes

2009-07-11 09:08 JMS, revision 61402

Made sorting case-insensitive (to match wxComboBox behavior, backported from SVN trunk)

2009-07-11 09:01 JMS, revision 61401

Made sorting case-insensitive (to match wxComboBox) and fixed sorting in general for combo box classes inheriting from wxOwnerDrawnComboBox

2009-07-11 01:19 PJC, revision 61398

Implemented most of remaining code for minimising ribbon panels and externally expanding them (though not yet perfect). Added minimised icons to panels which minimise in ribbon sample. Minor reworking of some images in ribbon sample.

2009-07-10 22:48 VZ, revision 61384

fix harmless warnings about uninitialized (not really) variables in MSVC release build

2009-07-10 21:19 SC, revision 61383

adapting to widgetimpl extensions and iPhone OS 3.0

2009-07-10 19:56 SC, revision 61382

updating conditions for OSX

2009-07-10 19:53 SC, revision 61381

adding #ifs for reflecting existing controls, fixing #ifdefs

2009-07-10 19:46 SC, revision 61380

adapting init sequence for different osx platforms

2009-07-10 19:41 SC, revision 61379

committing current iphone state

2009-07-10 19:38 SC, revision 61378

guarding for scrollbar use

2009-07-10 19:33 SC, revision 61377

iPhone bitmap support

2009-07-10 19:31 SC, revision 61376

more iPhone types

2009-07-10 19:29 SC, revision 61375

correcting to ifdef to if

2009-07-10 19:28 SC, revision 61374

guarding scrollbar

2009-07-10 18:23 BBE, revision 61373

Removed unnecessary '*' to align the documentation with wxWidgets style

2009-07-10 16:50 JMS, revision 61372

Do not disable some useful buttons when wxCB_SORT style is used in wxBitmapComboBox sample

2009-07-10 16:47 JMS, revision 61371

Fixed wxCB_SORT for wxMSW and generic wxBitmapComboBox

2009-07-10 16:26 SC, revision 61370

backport of r61369

2009-07-10 16:24 SC, revision 61369

supporting SetFont(wxNullFont), fixes #10980

2009-07-10 03:33 PJC, revision 61368

Added mouse hover effects to ribbon panels. Implemented some of the logic for minimising ribbon panels (though artwork for it not implemented). Improved panel collapsing on ribbon pages by always collapsing panels in reverse order to that in which they were expanded. Changed wxRibbonControl::GetNextLarger/SmallerSize interface to take a size as an argument rather than operating on the current size.

2009-07-10 00:00 VZ, revision 61367

don't mark GetTraceMask() deprecated as we use it in the same header which provokes warnings when including it from outside wx

2009-07-09 23:41 VZ, revision 61366

remove scope-resolution operator from wxLogError() call: this doesn't work any more as it's a macro and not a function now; mention this in the docs

2009-07-09 23:39 VZ, revision 61365

fix MSVC compilation: as string literals are of non-const char* type with this compiler, they are implicitly convertible to void* resulting in overloading ambiguities with wxLogger::Log()

2009-07-09 22:30 VZ, revision 61364

implement wxLogTrace(wxTraceMask, format, ...) overload too

2009-07-09 22:26 VZ, revision 61363

Add information about the log message generation location to wxLog. This means that wxLog::DoLogRecord() can now retrieve the file name, line number and the function where the message was logged. An unfortunate consequence of this change is that now if ( condition ) wxLogError("Whatever"); results in a warning from g++ 4.x with -Wparentehses, so extra parentheses had to be added in many places. Finally, also allow storing arbitrary attributes in wxLogRecordInfo. This had to be added to implement our own overloaded wxLogStatus() and wxLogSysError() and will probably be useful for the others as well.

2009-07-09 22:18 BBE, revision 61362

Updated documentation of file system watcher: added to the file category, added sample. A couple of stylistical corrections.

2009-07-09 20:26 RR, revision 61361

Reduce size of virtual list before sending out delete notification, fixes #10966: wxDataViewVirtualListModel row deletion bug

2009-07-09 19:23 BBE, revision 61360

First version of file system watcher documentation

2009-07-09 18:21 SC, revision 61359

backport of r61356

2009-07-09 17:19 VZ, revision 61358

disable VC6 warnings before warning(push), otherwise they're reenabled by warning(pop) in wx/afterstd.h

2009-07-09 17:13 VZ, revision 61357

fix VC6 warnings about not enough parameters for wxDEPRECATED_BUT_USED_INTERNALLY_INLINE

2009-07-09 16:47 SC, revision 61356

adding special case for Carbon DataBrowser Checkbox

2009-07-09 15:11 VZ, revision 61355

make bitmap button background more visible

2009-07-09 14:50 VZ, revision 61354

remove out of date bugs; mention VC8 and wxUSE_NO_MANIFEST

2009-07-09 14:22 VZ, revision 61353

disable MSVC deprecation warnings as we intentionally test deprecated methods in this test

2009-07-09 14:00 VZ, revision 61352

compilation fix for !WXWIN_COMPATIBILITY_2_8 build

2009-07-08 21:49 BBE, revision 61351

Null pointer represented by NULL not 0 Naming change: GetWD(),SetWD() => Get[Set]WatchDescriptor() Corrected name: GetWathedPathsCount()

2009-07-08 21:20 BBE, revision 61350

Added methods: GetWatchedPaths(), GetWatchedPathsCount() Refactoring of wxInotifyFileSystemWatcher: moved some common code to separate methods Ignoring events generated by inotify when removing watched path Fixed sample to delete watcher on stop and recreate it on start instead of calling API which didn't get into svn

2009-07-08 18:06 VZ, revision 61349

update IfaceCheckLog definition after wxLog::DoLogXXX() changes

2009-07-08 16:16 VZ, revision 61348

added wxLog::IsLevelEnabled() helper; document it and a few related functions which were not, or poorly, documented

2009-07-08 15:53 VZ, revision 61347

update LboxLogger definition after the previous revision changes

2009-07-08 15:47 VZ, revision 61346

Changed wxLog DoLogXXX() callbacks and introduced wxLogRecordInfo. The main logging callback is now DoLogRecord() with DoLogTextAtLevel() and DoLogText() provided for convenience. The old DoLog() and DoLogString() are still called but deprecated and their overloads taking wxString which were only added in 2.9.0 are removed. wxLogRecordInfo allows associating more information than just the time stamp with the log record; for now only the logging thread id was added but more fields will make their appearance soon.

2009-07-07 23:03 PJC, revision 61345

Implemented more of wxRibbonButtonBar. Added another button bar to the ribbon sample. Updated interface headers with button bar related stuff and other recent changes. Fix ribbon pages creating visible scroll buttons when invisible.

2009-07-07 17:23 JMS, revision 61344

Further fixes to colour properties that use wxPG_COLOUR_ALLOW_CUSTOM attribute

2009-07-07 14:19 VZ, revision 61343

added a simple wxLog unit test

2009-07-07 12:52 VZ, revision 61342

update the intl.* files directly from genlang.py script instead of generating snippets which had then to be manually pasted in

2009-07-07 11:35 VZ, revision 61341

fix linking error when wxUSE_ON_FATAL_EXCEPTION==0 (closes #10969)

2009-07-06 23:19 VZ, revision 61340

correct writing direction for Farsi

2009-07-06 23:11 VZ, revision 61339

regenerated after r60684

2009-07-06 16:02 PJC, revision 61338

Implemented more of wxRibbonBar. Improved sizing and child positioning for ribbon panels with children. Improved wxRibbonMSWArtProvider, removing the need for transparent windows and painting done during background erase rather than paint. Added Realize method to all ribbon controls. Added button bar to ribbon sample. Fixed indentation (tabs -> spaces) in ribbon sample. Removed svn-merge artefacts from buttonbar.cpp.

2009-07-06 15:58 CE, revision 61337

change for 2.9.0-rc5

2009-07-05 23:42 VZ, revision 61336

don't call OnWriteWaiting() if we lost connection in OnReadWaiting() called just before it (closes #10963)

2009-07-05 23:36 VZ, revision 61335

change wxSocketInputBasedManager::AddInput() to take a pointer to wxSocketImpl, not base class wxFDIOHandler

2009-07-05 20:53 VZ, revision 61334

don't call release() on non-owned buffer in wchar_t build (closes #10964); copy utf8_str() return value in ASCII one

2009-07-05 17:49 BBE, revision 61333

GTK AddSource(): more possible conditions to wait upon passed to GTK Better and simpler asserts

2009-07-05 17:46 BBE, revision 61332

fswatcher sample: changed menu button to check box

2009-07-05 17:21 VZ, revision 61331

added EVT_DATAVIEW_CACHE_HINT event (closes #9891)

2009-07-05 16:34 BBE, revision 61330

Automatically generated project files for fswatcher sample and updated build system files

2009-07-05 16:32 BBE, revision 61329

Added fswatcher sample to build system.

2009-07-05 16:30 BBE, revision 61328

Removed unnecessary resource file and updated bakefile to reflect this.

2009-07-05 16:24 BBE, revision 61327

Sample demonstrating the usage of file system watcher.

2009-07-05 15:34 VZ, revision 61326

made code more const-correct to fix g++ warnings about converting literal strings to non-const char*

2009-07-05 15:32 VZ, revision 61325

compilation fix after last change

2009-07-05 15:16 BBE, revision 61324

Implementation of event loop sources for GTK

2009-07-05 15:10 VZ, revision 61323

really fix compilation fix after last change

2009-07-05 13:51 VZ, revision 61322

updated the version to 2.9.1

2009-07-05 13:51 VZ, revision 61321

updated list of files to change

2009-07-05 13:49 VZ, revision 61320

update the script to update more files; removed old LaTeX file which doesn't exist any more

2009-07-05 13:48 VZ, revision 61319

translate wxMessageDialog labels to the language of the current locale (closes #10962)

2009-07-04 00:07 VZ, revision 61318

add more tests for wxFileName::Normalize(DOTS) (see #10960)

2009-07-03 19:52 VZ, revision 61317

compilation fix after last change

2009-07-03 19:51 VZ, revision 61316

another attempt to fix signed/unsigned comparison warning in OS X build

2009-07-03 19:32 PJC, revision 61315

Beginning to implement wxRibbonButtonBar and associated art methods.

2009-07-03 16:49 JMS, revision 61314

A better fix for one unused variable warning (one that actually compiles in debug mode)

2009-07-03 16:39 JMS, revision 61313

Colour property with attribute wxPG_COLOUR_ALLOW_CUSTOM = false did not render correctly

2009-07-03 16:29 VZ, revision 61312

we need to reset m_connected flag as well as setting m_closed when the connection is lost

2009-07-03 16:28 VZ, revision 61311

don't call wxSocketImpl::ReenableEvents() if the socket was closed while reading/writing to avoid an assert in it

2009-07-03 14:48 VZ, revision 61310

fix harmless warnings (mostly about unused parameters/variables)

2009-07-03 14:46 VZ, revision 61309

fix overriding OnPoke() too

2009-07-03 14:43 VZ, revision 61308

blind fix to make IPC work again by overriding OnExec() correctly in IPC connection class

2009-07-03 14:39 VZ, revision 61307

make the sample work again by correcting DrawHeaderButton() signature

2009-07-03 14:22 VZ, revision 61306

compilation fix for wxOSX/Cocoa: don't use Carbon functions in common to all OS X ports OpenGL code

2009-07-03 14:16 VZ, revision 61305

suppress harmless warning about unused variable

2009-07-03 14:14 VZ, revision 61304

suppress harmless warning about possibly uninitialized variable in ParseRfc822Date() in OSX build

2009-07-03 14:13 VZ, revision 61303

suppress harmless warning about possibly uninitialized variable in OpenLogFile() in OSX build

2009-07-03 14:03 VZ, revision 61302

document SetStandardFonts() and SetFonts() methods of various wxHTML classes (closes #10913)

2009-07-03 13:53 SC, revision 61301

backport brackting 10.5 only code

2009-07-03 13:51 SC, revision 61300

bracket 10.5 only code

2009-07-03 09:16 SC, revision 61299

backport r61297 and r61298

2009-07-03 09:13 SC, revision 61298

better font round-trip fidelity (native->wx->native), fixing fontdialog for osx_cocoa, closes #10856

2009-07-03 08:49 SC, revision 61297

fixing warnings

2009-07-03 00:43 VZ, revision 61296

use WXSIZEOF(x) instead of sizeof(x)/sizeof(x[0]) (closes #10701)

2009-07-03 00:38 VZ, revision 61295

reset m_establishing flag and last error when asynchronous connection is established (closes #10838)

2009-07-03 00:29 VZ, revision 61294

fix typo in wxClient::MakeConnection() docs (closes #10841)