Tue Mar  4 22:43:27 GMT 2008  Eric Kow <[EMAIL PROTECTED]>
  * Bump to 0.10.3.

Wed Mar  5 10:32:28 GMT 2008  Eric Kow <[EMAIL PROTECTED]>
  * Add vim modeline for makefile.lib.
  It's really irritating otherwise; vim thinks it's COBOL.

Wed Mar  5 11:14:15 GMT 2008  Eric Kow <[EMAIL PROTECTED]>
  * Don't do wildcard expansion in cp-echo.
  It seems to expand non-wildcard strings like into the empty string.
  Not sure if this breaks anything else, though.

Wed Mar  5 11:23:24 GMT 2008  Eric Kow <[EMAIL PROTECTED]>
  * Fix dep: wx-bindist requires wx

Wed Mar  5 11:24:01 GMT 2008  Eric Kow <[EMAIL PROTECTED]>
  * Withdraw haddock support for GHC < 6.2.
  Portability is nice and all, but this is getting hard to maintain.

Wed Mar  5 11:26:39 GMT 2008  Eric Kow <[EMAIL PROTECTED]>
  * Update URL for haddock interface files.

Wed Mar  5 11:27:20 GMT 2008  Eric Kow <[EMAIL PROTECTED]>
  * (configure/haddock) Set normdocroot on non-Cygwin.

Wed Mar  5 11:38:37 GMT 2008  Eric Kow <[EMAIL PROTECTED]>
  * Also take advantage of -split-objs for wx.

Wed Mar  5 13:48:26 GMT 2008  Eric Kow <[EMAIL PROTECTED]>
  * Update hdocbases to work with haddock2 and ghc 6.8.2
  I'm not sure which, but this makes it compile on my end.

Wed Mar  5 13:52:06 GMT 2008  Eric Kow <[EMAIL PROTECTED]>
  * Update list of developers (homepage).

Wed Mar  5 13:52:27 GMT 2008  Eric Kow <[EMAIL PROTECTED]>
  * Update repository info (now using darcs, not CVS). (homepage)

Wed Mar  5 13:54:36 GMT 2008  Eric Kow <[EMAIL PROTECTED]>
  * Remove scintilla from wishlist (homepage).
  Already implemented as far as I know.

Wed Mar  5 14:18:06 GMT 2008  Eric Kow <[EMAIL PROTECTED]>
  * Add bugs to the dist files.
  
  We want people to know we're aware of them, and we want them
  to get the idea of writing bug reports with demonstrators.

Wed Mar  5 14:18:41 GMT 2008  Eric Kow <[EMAIL PROTECTED]>
  * Add XRC as a wishlist task (homepage).

Wed Mar  5 14:20:57 GMT 2008  Eric Kow <[EMAIL PROTECTED]>
  * Last modified (homepage).

Wed Mar  5 17:22:00 GMT 2008  Eric Kow <[EMAIL PROTECTED]>
  * More portable haddocking for Windows.
  As suggested by shelarcy.

Wed Mar  5 17:35:55 GMT 2008  Eric Kow <[EMAIL PROTECTED]>
  * Don't call wxcore-clean when building wx.
  Also, build wxcore in its own directory, so we don't get overlapping with wx.
  (I'm guessing that the overlap is why we called wxcore-clean)

Wed Mar  5 17:38:25 GMT 2008  Eric Kow <[EMAIL PROTECTED]>
  * Fix mispelling of Mads's family name.
  Sorry!

New patches:

[Bump to 0.10.3.
Eric Kow <[EMAIL PROTECTED]>**20080304224327] {
hunk ./configure 15
 #--------------------------------------------------------------------
 # Versioning
 #--------------------------------------------------------------------
-version="0.10.2"
+version="0.10.3"
 release="0"
 
 #--------------------------------------------------------------------
hunk ./wx/wx.cabal 2
 Name:           wx
-Version:        0.10.2
+Version:        0.10.3
 License:        LGPL
 License-file:   license.txt
 Author:         Daan Leijen
hunk ./wxcore.cabal 2
 Name:           wxcore
-Version:        0.10.2
+Version:        0.10.3
 License:        LGPL
 License-file:   license.txt
 Author:         Daan Leijen
}
[Add vim modeline for makefile.lib.
Eric Kow <[EMAIL PROTECTED]>**20080305103228
 It's really irritating otherwise; vim thinks it's COBOL.
] hunk ./makefile.lib 1
+# vim:syntax=make:indentexpr=GetMakeIndent():
 #-----------------------------------------------------------------------
 #  Copyright (c) 2003 2004 Daan Leijen.
 #  This file is distributed under the wxWindows library license.
[Don't do wildcard expansion in cp-echo.
Eric Kow <[EMAIL PROTECTED]>**20080305111415
 It seems to expand non-wildcard strings like into the empty string.
 Not sure if this breaks anything else, though.
] hunk ./makefile.lib 215
 # use -R switch to copy symbolic links literally instead of following the links.
 # use -p to preserve file dates to avoid linker bug on macosX with .a files.
 cp-echox	=echo  "copy $(1) to $(2)" && $(CP) -p -R $(1) $(2) && :
-cp-echo         =$(foreach file,$(wildcard $(1)),$(call cp-echox,$(file),$(2)))
+cp-echo         =$(foreach file,$(1),$(call cp-echox,$(file),$(2)))
 cp-fromto	=$(call ensure-dirs-of-files,$(call relative-fromto,$(1),$(2),$(3))) && \
 		 $(foreach file,$(3),$(call cp-echo,$(file),$(dir $(call relative-fromto,$(1),$(2),$(file)))) && ) :
 cp-bindist	=$(call cp-fromto,$(patsubst %/,%,$(1)),$(patsubst %/,%,$(2)),$(3))
[Fix dep: wx-bindist requires wx
Eric Kow <[EMAIL PROTECTED]>**20080305112324] hunk ./makefile 698
 	@$(call cp-srcdist, $^)
 
 # bindist
-wx-bindist: 
+wx-bindist: wx
 	@$(call cp-bindist,$(WX-OUTDIR),$(BINDIST-LIBDIR),$(WX-BINS))
 ifdef ENABLE-PROF
 	@$(call cp-bindist,$(WX-OUTDIR),$(BINDIST-LIBDIR),$(WX-PROF-BINS))
[Withdraw haddock support for GHC < 6.2.
Eric Kow <[EMAIL PROTECTED]>**20080305112401
 Portability is nice and all, but this is getting hard to maintain.
] hunk ./configure 688
       normdocroot="`cygpath -w $docroot | sed -e 's|\\\\|/|g'`"
     fi
 
-    if test -d "$docroot"; then
-      # modern ghc >= 6.2, include all available haddock files
-      cd $docroot
-      for file in */*.haddock
-      do
-	 basename="`echo $file | sed -e 's|/.*||'`"
-	 hdocbases="$hdocbases -ihttp://haskell.cs.yale.edu/ghc/docs/latest/html/libraries/$basename,$normdocroot/$file";
-      done
-      cd $topdir
-    else
-      # older ghc < 6.2, try to include the base.haddock file
-      if test -f "$ghcroot/doc/html/base/base.haddock"; then
-	hdocbases=" -ihttp://haskell.cs.yale.edu/ghc/docs/6.0.1/html/base,$ghcroot/doc/html/base/base.haddock";
-      fi
-    fi
+    # modern ghc >= 6.2, include all available haddock files
+    cd $docroot
+    for file in */*.haddock
+    do
+      basename="`echo $file | sed -e 's|/.*||'`"
+      hdocbases="$hdocbases -ihttp://haskell.cs.yale.edu/ghc/docs/latest/html/libraries/$basename,$normdocroot/$file";
+    done
+    cd $topdir
   fi
 fi
 
[Update URL for haddock interface files.
Eric Kow <[EMAIL PROTECTED]>**20080305112639] hunk ./configure 693
     for file in */*.haddock
     do
       basename="`echo $file | sed -e 's|/.*||'`"
-      hdocbases="$hdocbases -ihttp://haskell.cs.yale.edu/ghc/docs/latest/html/libraries/$basename,$normdocroot/$file";
+      hdocbases="$hdocbases -ihttp://www.haskell.org/ghc/docs/latest/html/libraries/$basename,$normdocroot/$file";
     done
     cd $topdir
   fi
[(configure/haddock) Set normdocroot on non-Cygwin.
Eric Kow <[EMAIL PROTECTED]>**20080305112720] hunk ./configure 686
     # normalize the root since haddock doesn't like unix names
     if test "$cygpathfound"; then
       normdocroot="`cygpath -w $docroot | sed -e 's|\\\\|/|g'`"
+    else
+      normdocroot="$docroot"
     fi
 
     # modern ghc >= 6.2, include all available haddock files
[Also take advantage of -split-objs for wx.
Eric Kow <[EMAIL PROTECTED]>**20080305113837] {
hunk ./makefile 731
 
 # build a library
 $(WX-LIB): $(WX-OBJS)
+ifdef ENABLE-SPLITOBJS
+	$(call make-archive-of-splitobjs,$@,$^)
+else
 	$(call make-archive,$@,$^)
hunk ./makefile 735
+endif
 
 # create an object file from source files.
 $(WX-OBJS): $(WX-IMPORTSDIR)/%.o: $(WX-SRCDIR)/%.hs
}
[Update hdocbases to work with haddock2 and ghc 6.8.2
Eric Kow <[EMAIL PROTECTED]>**20080305134826
 I'm not sure which, but this makes it compile on my end.
] {
hunk ./configure 208
 fi
 fi
 
-# guess base.haddock location
-if findprogram "ghc"; then
-  guesshdocbase="`which ghc | sed -e 's|/bin/ghc|/doc/html/base/base.haddock|'`"
-  if test -f "$guesshdocbase"; then
-    hdocbase="$guesshdocbase"
-  fi
-fi
-
 
 # improve the guesses if wx-config is present.
 if findprogram "$wxconfig"; then
hunk ./configure 657
   echo " You can specify the haddock executable on the command line."
   echo " For example: ./configure --haddock=/usr/local/bin/haddock"
   echo ""
-  hdocbase=""
+  hdocbases=""
   hdocfound="no"
 fi
 
hunk ./configure 661
+# guess base.haddock location
+if findprogram "ghc"; then
+  guesshdocbase="`which ghc | sed -e 's|/bin/ghc|/doc/html/base/base.haddock|'`"
+  if test -f "$guesshdocbase"; then
+    hdocbases="$guesshdocbase"
+  fi
+  guessghclibdir=`which ghc | sed -e "s|/bin/ghc|/lib/ghc-$hcversion|"`
+  if test -d "$guessghclibdir"; then
+    hdocbases="$hdocbases -B $guessghclibdir"
+  fi
+fi
+
 
 # Find .haddock files
 if test "$hdocfound" = "yes"; then
hunk ./configure 683
       6.0* | 6.1* | 6.2* | 6.3* | 6.4* | 6.5* | 6.6*)
 	docroot="$ghcroot/doc/html/libraries";;
       6.*) 
-	docroot="$ghcroot/doc/libraries";;
+	docroot="$ghcroot/share/doc/ghc/libraries";;
       *)
 	docroot="$ghcroot/doc/libraries";;
     esac
}
[Update list of developers (homepage).
Eric Kow <[EMAIL PROTECTED]>**20080305135206] {
hunk ./homepage/development.html 57
 <a href="contribute.html">contribute</a> page for more information.) Currently
 the development team consists of:</p>
 <dl>
-<dt>Daan Leijen</dt>
-<dd>The main developer and designer of wxHaskell</dd>
+<dt>Jeremy O'Donoghue</dt>
+<dd>Team leader</dd>
+<dt>Tim Docker</dt>
+<dd>MacOS X support</dd>
+<dt>Mads Lindstr&ouml;m</dt>
+<dd>Linux support</dd>
+<dt>Kido Takahiro (shelarcy)</dt>
+<dd>Windows support</dd>
+<dt>Frank Berthold</dt>
+<dd>Samples author</dd>
+<dt>Eric Kow</dt>
+<dd>Repository maintainer</dd>
 </dl>
 
 <p>Furthermore, the following people have contributed to the wxHaskell project:</p>
hunk ./homepage/development.html 73
 <dl>
+<dt>Daan Leijen</dt>
+<dd>The main developer and designer of wxHaskell</dd>
 <dt>Wolfgang Thaller</dt>
 <dd>Contributed a nifty MacOS X module that enables the use of GHCi on MacOS X.</dd>
 <dt>Martijn Schrage</dt>
}
[Update repository info (now using darcs, not CVS). (homepage)
Eric Kow <[EMAIL PROTECTED]>**20080305135227] hunk ./homepage/development.html 106
 <div class="text">
 <h2>Overview</h2>
 <p><span class="lib">wxHaskell</span> is a project hosted on <a href="http://sourceforge.net/projects/wxhaskell";>sourceforge</a>. The sources are
-available on the sourceforge <a href="http://sourceforge.net/cvs/?group_id=73133";>cvs repository</a>.
-Currently, <span class="lib">wxHaskell</span> hosts four subprojects.
+available via darcs on <a
+  href="http://darcs.haskell.org/wxhaskell";>darcs.haskell.org</a>.
 </p>
 <ul>
 <li><span class="lib">wx</span> [<a class="quicklink" href="doc">documentation</a>]. The main middle-level library. This library is written in Haskell and only depends on the <span class="lib">wxcore</span> package. It uses overloading and attributes to expose a nice functional
[Remove scintilla from wishlist (homepage).
Eric Kow <[EMAIL PROTECTED]>**20080305135436
 Already implemented as far as I know.
] hunk ./homepage/contribute.html 87
 facet of this task could be the use of resource bundles, or ways to internationalize
 the application.
 </dd>
-<dt>Add support for the scintilla styled text control</dt>
-<dd>This task requires good knowledge of Haskell, C, and the compilation process.
-The styled text control of wxWidgets wraps the generic scintilla editor
-&ndash; an awesome editor component with great functionality. wxEiffel already has
-some wrappers for the styled text control but some fiddling with linking
-the right libraries is needed, together with an adaption of wxDirect to
-remove the /ignore/ clauses for the scintilla classes.</dd>
 <dt>Create a good tree control / list control abstraction</dt>
 <dd>At the moment, trees and list controls are cumbersome to deal with.
 It would be nice if better abstractions could be devised that work well
[Add bugs to the dist files.
Eric Kow <[EMAIL PROTECTED]>**20080305141806
 
 We want people to know we're aware of them, and we want them
 to get the idea of writing bug reports with demonstrators.
] hunk ./makefile 250
 	samples/contrib/PaintDirect.hs \
 	samples/contrib/NotebookRight.hs \
 	samples/contrib/GLCanvas.hs \
-	samples/contrib/GLMultiCanvas.hs 
-
+	samples/contrib/GLMultiCanvas.hs\
+	\
+	bugs/FontFixed.hs\
+	bugs/SubMenu.hs\
+	bugs/StartStart.hs\
+	bugs/NonModalDialog.hs\
+	bugs/BoxedCombinator.hs\
+	bugs/TextColor.hs\
 	
 #--------------------------------------------------------------------------
 # The main targets.
[Add XRC as a wishlist task (homepage).
Eric Kow <[EMAIL PROTECTED]>**20080305141841] hunk ./homepage/contribute.html 95
 variable of the tree control. Requires a good feeling for elegant
 and practical design with Haskell, together with some GUI experience.</dd>
 </dl>
+<dt>XRC support</dt>
+<dd>From the wxWidgets homepage:
+<blockquote>
+The XML-based resource system, known as XRC, allows user interface
+elements such as dialogs, menu bars and toolbars, to be stored in text
+files and loaded into the application at run-time.
+</blockquote>
+It would certainly be useful if people could use tools like wxGlade
+to build interfaces and use them for Haskell programming.
+<a href="http://www.haskell.org/gtk2hs";>gtk2hs</a> seems to support
+an equivalent feature, so perhaps you could get some tips from them.
+</dl>
 </div>
 
 <div class="text">
[Last modified (homepage).
Eric Kow <[EMAIL PROTECTED]>**20080305142057] {
hunk ./homepage/contribute.html 125
 </div>
 
 <div class="status">
-<a style="float: right" href="#body">top</a>last update: "Apr  1 2004".
+<a style="float: right" href="#body">top</a>last update: "5 March 2008".
 </div>
 
 </div>
hunk ./homepage/development.html 128
 </div>
 
 <div class="status">
-<a style="float: right" href="#body">top</a>last update: "Apr  1 2004".
+<a style="float: right" href="#body">top</a>last update: "5 March 2008".
 </div>
 
 </div>
}
[More portable haddocking for Windows.
Eric Kow <[EMAIL PROTECTED]>**20080305172200
 As suggested by shelarcy.
] hunk ./configure 683
       6.0* | 6.1* | 6.2* | 6.3* | 6.4* | 6.5* | 6.6*)
 	docroot="$ghcroot/doc/html/libraries";;
       6.*) 
-	docroot="$ghcroot/share/doc/ghc/libraries";;
+         if test "$cygpathfound"; then
+           docroot="$ghcroot/doc/libraries"
+         else
+           docroot="$ghcroot/share/doc/ghc/libraries"
+         fi
+         ;;
       *)
 	docroot="$ghcroot/doc/libraries";;
     esac
[Don't call wxcore-clean when building wx.
Eric Kow <[EMAIL PROTECTED]>**20080305173555
 Also, build wxcore in its own directory, so we don't get overlapping with wx.
 (I'm guessing that the overlap is why we called wxcore-clean)
] {
hunk ./makefile 460
 WXCORE-PKG	=config/$(WXCORE).pkg
 WXCORE-SRCDIR	=$(WXCORE)/src
 WXCORE-HPATH	=Graphics/UI/WXCore
-WXCORE-OUTDIR	=$(OUTDIR)/wx
+WXCORE-OUTDIR	=$(OUTDIR)/wxcore
 WXCORE-IMPORTSDIR=$(WXCORE-OUTDIR)/imports
 
 WXCORE-HSDIRS	=-i$(WXCORE-SRCDIR) -i$(WXD-SRCDIR)
hunk ./makefile 677
 
 # build main library
 ifdef ENABLE-PROF
-wx: wx-main-only wx-prof
+wx: wx-only wx-prof
 else
hunk ./makefile 679
-wx: wx-main-only
+wx: wx-only
 endif
 
hunk ./makefile 682
-wx-main-only: wxcore-clean wx-main
-
-wx-main: wx-dirs $(WX-LIBS)
+wx-only: wx-dirs $(WX-LIBS)
 
 wx-install: wx-install-files wx-register
 
}
[Fix mispelling of Mads's family name.
Eric Kow <[EMAIL PROTECTED]>**20080305173825
 Sorry!
] hunk ./homepage/development.html 61
 <dd>Team leader</dd>
 <dt>Tim Docker</dt>
 <dd>MacOS X support</dd>
-<dt>Mads Lindstr&ouml;m</dt>
+<dt>Mads Lindstr&oslash;m</dt>
 <dd>Linux support</dd>
 <dt>Kido Takahiro (shelarcy)</dt>
 <dd>Windows support</dd>

Context:

[Added testcase for FontFixed problem (1906476)
Mads Lindstroem <[EMAIL PROTECTED]>**20080304060118] 
[Fix: bugs/makefile's "make clean" doesn't clean Windows things.
shelarcy <[EMAIL PROTECTED]>**20080228082649] 
[Remove List Control test case (bug 1742979 is already fixed on darcs).
shelarcy <[EMAIL PROTECTED]>**20080228081614] 
[Maintainer is wxhaskell-devel not wxhaskell-users.
Eric Kow <[EMAIL PROTECTED]>**20080225003139] 
[Specify what OS BoxedCombinator bug fails on.
Eric Kow <[EMAIL PROTECTED]>**20080227135140] 
[Fix bugs makefile under Linux
Eric Kow <[EMAIL PROTECTED]>**20080227134848] 
[Remove parasite configure change.
Eric Kow <[EMAIL PROTECTED]>**20080227134757
 Move around some variables to make more sense.
] 
[Add wx-prof target for Windows binary distribution.
shelarcy <[EMAIL PROTECTED]>**20080227035051] 
[Fix bugs in enable wxcore profiling.
shelarcy <[EMAIL PROTECTED]>**20080227034845] 
[Add a configure option to enable wxcore profiling.
Eric Kow <[EMAIL PROTECTED]>**20080226215155] 
[Fix some bugs pointed out by shelarcy on wxcore-prof.
Eric Kow <[EMAIL PROTECTED]>**20080226211227] 
[Add wxcore-prof target for compiling profiling versions of wxcore.
Eric Kow <[EMAIL PROTECTED]>**20080225231635] 
[Remove support for GHC prior to 6.4.
Eric Kow <[EMAIL PROTECTED]>**20080225223554] 
[Change samples/contrib/Camels.hs encoding to UTF-8.
shelarcy <[EMAIL PROTECTED]>**20080225142551] 
[Fix: docdist and bindist's wx documents don't link wxcore documents.
shelarcy <[EMAIL PROTECTED]>**20080225141105] 
[Fix: configure doesn't find GHC's Haddock document directory on GHC 6.8.x or higher.
shelarcy <[EMAIL PROTECTED]>**20080225135754] 
[Add a test case for start >> start (1610984)
Eric Kow <[EMAIL PROTECTED]>**20080225001328] 
[Fix bug pointed out by shelarcy in --enable-mediactrl flag.
Eric Kow <[EMAIL PROTECTED]>**20080225110340
 It was setting the opengl flag instead.
] 
[Implement an --enable-mediactrl configure flag.
Eric Kow <[EMAIL PROTECTED]>**20080225000109
 with mediactrl disabled by default.
] 
[(OS X) Skip intermediate step of compiling master.o (revisited!)
Eric Kow <[EMAIL PROTECTED]>**20080218225200
 
 I'm going to quote some mails from Malcolm Wallace on wxhaskel-users in early
 2008-02.
 
 First message:
 > I'm attempting to install wxHaskell from the darcs repo at
 > darcs.haskell.org, under ghc-6.6. on MacOS 10.4.11, with
 > wxMac-2.6.4.
 >
 > The compilation of wxHaskell seems to proceed OK until the link
 > stage:
 >
 >     g++ -r -keep_private_externs -nostdlib -o out/wxc/master.o ....
 >
 > which failed because there is no -lstdc++-static on my machine.  I
 > found the place in the makefile to replace -lstdc++-static with
 > the dynamic -lstdc++, and compilation proceeds further, but not
 > much:
 >
 >      g++ -dynamiclib -install_name\
 > /usr/local/wxhaskell/lib/libwxc-mac2.6.4-0.10.1.dylib -undefined suppress\
 > -flat_namespace -o out/wxc/libwxc-mac2.6.4-0.10.1.dylib out/wxc/master.o\
 > -lwx_macu_gl-2.6 -L/usr/local/lib -framework QuickTime -framework IOKit\
 > -framework Carbon -framework Cocoa -framework System -lwx_macu_media-2.6\
 > -lwx_macu-2.6
 >     ld: out/wxc/master.o undefined symbol 12387 (__ZTI10wxListBase) can't be a weak definition
 >     /usr/bin/libtool: internal link edit command failed
 >
 > The offending symbol __ZTI10wxListBase looks like it might be a
 > z-encoded symbol from Haskell-land, but I'm not sure how to proceed.
 
 Second message:
 > A correct build on MacOS 10.4.11 with ghc-6.6 requires that
 > wxWidgets is configured with --enable-shared, and that this patch:
 >
 >     (OS X) Check architecture to use intermediate step of compiling
 >     master.o or not.
 >
 > be darcs unpulled from your local repo.
 >
 > With these tweaks, wxHaskell builds, compiles, and runs the demo
 > programs.
 
] 
[Add a diagram of wxhaskell components.
Eric Kow <[EMAIL PROTECTED]>**20080224185557] 
[Eliminate mandatory --with-opengl on Linux.
Eric Kow <[EMAIL PROTECTED]>**20080219171912
 
 If wxWidgets is compiled with opengl, its header files
  #define wxUSE_GLCANVAS 1
 
 (See, for example, /usr/lib/wx/include/gtk2-unicode-release-2.6/wx/setup.h on
 Ubuntu Gutsy Gibbon), which causes us to compile glcanvas as if we were going
 to link against the wxWidgets opengl library.  But since we are not linking
 against that, the user gets errors compiling their applications.
 
 Here we introduce an extra preprocessor flag to really insist that no, despite
 what wxWidgets says, we don't want to use GLCANVAS.
] 
[Fix: wxPrint**, wxPreviveFrame** and other function causes link error by undefined reference on Windows (Visual Studio).
shelarcy <[EMAIL PROTECTED]>**20080219034144] 
[Export TabPage type synonym (bug 1349475)
Eric Kow <[EMAIL PROTECTED]>**20080218005112] 
[Add ListControl test case (bug 1742979)
Eric Kow <[EMAIL PROTECTED]>**20080218002441
 This might only be a bug on Windows, if at all.
] 
[Add test case textColor attribute (bug 1224727).
Eric Kow <[EMAIL PROTECTED]>**20080218000738] 
[Fix Landscape printing (bug 1168903).
Eric Kow <[EMAIL PROTECTED]>**20080217235724
 
 Filed on behalf on Lennart Augustson <[EMAIL PROTECTED]>, who
 submitted a regular Unix patch.
] 
[Add BoxedCombinator test case (bug 1549363)
Eric Kow <[EMAIL PROTECTED]>**20080217233719] 
[Add Sound type's Media class stop method.
shelarcy <[EMAIL PROTECTED]>**20080218160511] 
[Fix STC* test cases.
shelarcy <[EMAIL PROTECTED]>**20080218155734] 
[Fix: wrapper.h and sound.cpp doesn't care about wxWindows 2.4.2.
shelarcy <[EMAIL PROTECTED]>**20080218155605] 
[Sync Visual Studio Project's source flatten away ewxw directories.
shelarcy <[EMAIL PROTECTED]>**20080218142201] 
[Cleanup passing of std/media/stc/opengl to wx-config.
Eric Kow <[EMAIL PROTECTED]>**20080218130345] 
[Add the submenu bug.
Eric Kow <[EMAIL PROTECTED]>**20080217174326] 
[Add NonModalDialog test case (bug #1372529)
Eric Kow <[EMAIL PROTECTED]>**20080217174203] 
[Add a bugs directory for test cases.
Eric Kow <[EMAIL PROTECTED]>**20080217174142] 
[Fix UTF8Sampler test case.
Eric Kow <[EMAIL PROTECTED]>**20080217130553] 
[Fix typo pointed out on bugtracker.
Eric Kow <[EMAIL PROTECTED]>**20080217114303] 
[dos2unix files that have both CRLF and LF line terminators
Eric Kow <[EMAIL PROTECTED]>**20080217095711
 
 Text editors get confused by these.
 Get rid of trailing whitespace while we're at it.
] 
[Flatten away ewxw directories.
Eric Kow <[EMAIL PROTECTED]>**20080217094929
 
 This is to mirror the wxc project, making it easier to compare our
 version of wxc with the standalone one.
] 
[Remove unused ewxw files.
Eric Kow <[EMAIL PROTECTED]>**20080217082029
 
 There is an overlap between ./wxc/src/ewxw and ./wxc/src.  The makefile seems
 to ignore the ones in ewxw.
] 
[Synch Visual Studio Project's wxc library version
shelarcy <[EMAIL PROTECTED]>**20080216161420] 
[Synch Visual Studio Project's output dir same as makefile
shelarcy <[EMAIL PROTECTED]>**20080216155656] 
[Ugly hack to make setup haddock work without first building.
Eric Kow <[EMAIL PROTECTED]>**20080216135157] 
[Bump to 0.10.2.
Eric Kow <[EMAIL PROTECTED]>**20080216130854] 
[Mimick cabal in placement of haddocks.
Eric Kow <[EMAIL PROTECTED]>**20080216130819] 
[Move cabal stuff to end of makefile.
Eric Kow <[EMAIL PROTECTED]>**20080216125445
 so that all variables are defined.
] 
[Add Hs-Source-Dirs for wxcore.cabal.
Eric Kow <[EMAIL PROTECTED]>**20080216125112
 In case we ever switch to the Simple build type.
] 
[Re-add time package dependency (needed by wxdirect).
Eric Kow <[EMAIL PROTECTED]>**20080216124853] 
[Improve description and synopsis of cabal files.
Eric Kow <[EMAIL PROTECTED]>**20080216124832] 
[Split doc building into wxcore and wx version.
Eric Kow <[EMAIL PROTECTED]>**20080216124746] 
[Modernise haskell98 imports in wxdirect.
Eric Kow <[EMAIL PROTECTED]>**20080216120113] 
[Prefer /usr/local/wxhaskell/bin/wx-config to the one on the path.
Eric Kow <[EMAIL PROTECTED]>**20080216113844
 
 This makes it easier to install wxhaskell via cabal-install.
 Just set up a symbolic link to point to point to your wxWidgets,
 no need for the --wx-config flag.
] 
[Add some --bindir, --datadir, --libexecdir to configure script.
Eric Kow <[EMAIL PROTECTED]>**20080216113837
 For Cabal.  The last two are ignored.
] 
[Change output dir to 'dist' to mimick cabal.
Eric Kow <[EMAIL PROTECTED]>**20080216104847] 
[Modernise haskell98 imports in wxcore.
Eric Kow <[EMAIL PROTECTED]>**20080216100020] 
[Consolidate build targets which exist purely for the sake of Cabal.
Eric Kow <[EMAIL PROTECTED]>**20080216095845] 
[Fix some dependencies that Ross Paterson pointed out.
Eric Kow <[EMAIL PROTECTED]>**20080215181444] 
[TAG 0.10.1
Eric Kow <[EMAIL PROTECTED]>**20080215173503] 
Patch bundle hash:
01caacb60122d3e5e0d90200edc5542d95f4e12d
-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
wxhaskell-devel mailing list
wxhaskell-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wxhaskell-devel

Reply via email to