|
From: shelarcy <she...@gm...> - 2008-10-10 17:08:03
|
DarcsURL: she...@co...:/srv/code/wxhaskell
MIME-Version: 1.0
Content-Type: multipart/mixed; boundary="=_"
--=_
Content-Type: text/plain
Content-Transfer-Encoding: quoted-printable
Fri Oct 10 23:59:51 =93=8C=8B=9E (=95W=8F=80=8E=9E) 2008 shelarcy <shelarc=
y...@gm...>
* Change SVG's auto-generated function name to be more friendly.
Sat Oct 11 00:01:13 =93=8C=8B=9E (=95W=8F=80=8E=9E) 2008 shelarcy <shelarc=
y...@gm...>
* Update wx packages' description and dependency.
Sat Oct 11 01:03:51 =93=8C=8B=9E (=95W=8F=80=8E=9E) 2008 shelarcy <shelarc=
y...@gm...>
* Update changes.txt information by 0.10.4's changes.
Sat Oct 11 02:02:30 =93=8C=8B=9E (=95W=8F=80=8E=9E) 2008 shelarcy <shelarc=
y...@gm...>
* Use -dep-makefile instead of -optdep-f on GHC 6.10.x to avoid warning a=
bout using dreprecated option message.
--=_
Content-Type: text/x-darcs-patch; name="change-svg_s-auto_generated-function-name-to-be-more-friendly_.dpatch"
Content-Transfer-Encoding: quoted-printable
Content-Description: A darcs patch for your repository!
New patches:
[Change SVG's auto-generated function name to be more friendly.
shelarcy <she...@gm...>**20081010145951] {
hunk ./wxcore/src/Graphics/UI/WXCore/Draw.hs 87
- =3D bracket (sVGFileDCCreate fname) (sVGFileDCDelete) (\dc -> dcDraw dc =
(draw dc))
+ =3D bracket (svgFileDCCreate fname) (svgFileDCDelete) (\dc -> dcDraw dc =
(draw dc))
hunk ./wxcore/src/Graphics/UI/WXCore/Draw.hs 91
- =3D bracket (sVGFileDCCreateWithSize fname size) (sVGFileDCDelete) (\dc =
-> dcDraw dc (draw dc))
+ =3D bracket (svgFileDCCreateWithSize fname size) (svgFileDCDelete) (\dc =
-> dcDraw dc (draw dc))
hunk ./wxcore/src/Graphics/UI/WXCore/Draw.hs 95
- =3D bracket (sVGFileDCCreateWithSizeAndResolution fname size dpi) (sVGFi=
leDCDelete) (\dc -> dcDraw dc (draw dc))
+ =3D bracket (svgFileDCCreateWithSizeAndResolution fname size dpi) (svgFi=
leDCDelete) (\dc -> dcDraw dc (draw dc))
hunk ./wxdirect/src/HaskellNames.hs 88
+ | isPrefixOf "wxSVG" name =3D haskellName ("svg" ++ drop 5 name)
}
[Update wx packages' description and dependency.
shelarcy <she...@gm...>**20081010150113] {
hunk ./wx/wx.cabal 9
-Description: wxHaskell is a portable and native GUI library for Haskell=
. It is built on top of wxWidgets - a comprehensive C++ library that is po=
rtable across all major GUI platforms; including GTK, Windows, X11, and Mac=
OS X. At present, it works with wxWidgets 2.6 (and sadly, not with with wx=
Widgets 2.8)
+Description: wxHaskell is a portable and native GUI library for Haskell=
. It is built on top of wxWidgets - a comprehensive C++ library that is po=
rtable across all major GUI platforms; including GTK, Windows, X11, and Mac=
OS X. This version works with wxWidgets 2.8 only.
hunk ./wx/wx.cabal 19
- build-depends: base >=3D 3, wxcore >=3D 0.10.1, stm
+ build-depends: base >=3D 3, wxcore >=3D 0.10.4, stm
hunk ./wx/wx.cabal 21
- build-depends: base < 3, wxcore >=3D 0.10.1, stm
+ build-depends: base < 3, wxcore >=3D 0.10.4, stm
}
[Update changes.txt information by 0.10.4's changes.
shelarcy <she...@gm...>**20081010160351] {
hunk ./changes.txt 7
+Version 0.10.4
+-------------
+Non backward compatible changes:
+- Changed wxhaskell official web page to Haskell wiki
+ http://haskell.org/haskellwiki/WxHaskell
+- Changed official darcs repository to code.haskell.org
+- Adapted the wxHaskell C-layer to work with wxWidgets 2.8
+- Adapted some part of wxcore API to be able to refer to wxWidgets =
+ 2.8 documentation for wxcore functions
+- Added "TopLevelWindow", which mainly removes some functionality =
+ from "Frame"
+- Changed "--with-stc" argument to "--with-cotrib"
+- Removed "Wave" type synonym
+
+Backward compatible additions:
+- Adapted the configuration to work with GHC 6.10.
+- Changed "Var" type synonym from "IORef" to stm's "TVar" for thread =
+ safety
+- Changed "imageGetPixelArray" and "imageCreateFromPixelArray" to be =
+ more flexible.
+- Changed "Point", "Size", "Vector" and "Rect" to be type synonym. =
+- Added "wxcMilliSleep". Now, "wxcAppUSleep" is deprecated. Use =
+ "wxcMilliSleep" instead
+- Added very experimental wxGraphicsContext support
+- Added wxSVGFileDC functions
+
+Bugfixes:
+- Fixed "processExecAsync" hangs Windows GUI-only program
+- Fixed Windows binary install problem when path with spaces (bug 1400488)
+- Probably fixed the applicattion failed to initialize properly when =
+ using Windows binary.
+
hunk ./changes.txt 88
-
-Version 0.9
--------------
-Non backward compatible changes:
-- Changed "image" attribute to "picture"
-
-Backward compatible additions:
-- Added Multiple OpenGL Canvas example and fixed old example.
-- Much improved process support in WXCore.Process. Use =
- "processExecAsyncTimed" instead of "processExecASync".
-- Full printing support in WXCore.Print
-- Added SpintControl events.
-- Fixed bug in MultiListBoxes where selections would only be
- added.
-- Added "pixelBufferGetPixels" and "pixelBufferSetPixels" and
- according functions for images.
-- Added "image" and made it an instance of the "Sized" class
- exported "imageCreateFromPixels" and "imageCreateFromPixelArray"
-- Added "drawImage" =
-- Removed dependency on "readline" package in ghc 6.2.2
-- Added "--cache" argument to configure script
-
-Bug fixes:
-- fixed "on command" event handlers in submenus.
-
}
[Use -dep-makefile instead of -optdep-f on GHC 6.10.x to avoid warning abou=
t using dreprecated option message.
shelarcy <she...@gm...>**20081010170230] {
hunk ./configure 596
- 6.0* | 6.1.* | 6.2*)
+ 6.0* | 6.1.* | 6.2* | 6.3* | 6.4* )
hunk ./configure 602
+ 6.5* | 6.6* | 6.7* | 6.8* )
+ ghcold=3D"yes";;
hunk ./configure 897
+GHCOLD=3D$ghcold
hunk ./makefile.lib 118
-
-# GHC 6.4+ and others
hunk ./makefile.lib 126
+
+ifeq ($(GHCOLD),yes)
+# pre GHC 6.10
hunk ./makefile.lib 131
+else
+# GHC 6.10+ and others
+make-hs-deps =3D$(HC) $(2) $(3) -odir $(4) -hidir $(4) $(5) -M -dep-makefi=
le -optdep$(basename $(1)).d.in && \
+ sed -e 's|\.hi|\.o|g' $(basename $(1)).d.in | grep '^$(1)' > $(basename=
$(1)).d =
+endif
}
Context:
[Bump Cabal's version number to 0.10.4, too.
shelarcy <she...@gm...>**20081009094345] =
[Bump version number to 0.10.4
shelarcy <she...@gm...>**20081009092404] =
[Fix make uninstall doesn't work well on GHC 6.10.x.
shelarcy <she...@gm...>**20080930052522] =
[Fix wxcore's depends field has two base package version.
shelarcy <she...@gm...>**20080930052150] =
[Only use wxEVT_MEDIA* when wxUSE_MEDIACTRL-flag is set
mad...@ya...**20080919152917] =
[Fix building with GHC 6.10.*.
shelarcy <she...@gm...>**20080922155920] =
[Change wxcAppUSleep to wxcMilliSleep (wxcAppUSleep is deprecated now).
shelarcy <she...@gm...>**20080730094020] =
[Removed unnecessary parameter from logSelect helper in Controls.hs WX samp=
le
jo...@gm...**20080812170441] =
[Use meta tag for auto-redirect to Haskell wiki.
Eric Kow <eri...@gm...>**20080805182057] =
[Update links to homepage itself to point to Haskell wiki.
Eric Kow <eri...@gm...>**20080805182031] =
[Replace body of index.html with link to Haskell wiki
Eric Kow <eri...@gm...>**20080805181958] =
[Replace contents of pages which have been moved to Haskell wiki.
Eric Kow <eri...@gm...>**20080805151503
Make these pages just a link to the WxHaskell part of the wiki.
] =
[Update homepage menus to link to Haskell wiki.
Eric Kow <eri...@gm...>**20080805150421] =
[Fix typo in contribute.html
Eric Kow <eri...@gm...>**20080805101258] =
[Fix: we can't build wxc without wxGraphicsContext support.
shelarcy <she...@gm...>**20080729111606] =
[Use wxWidgets 2.8.8 in default when building on Windows.
shelarcy <she...@gm...>**20080729105641] =
[Fix building with old version of Visual Studio (according to John Lask).
shelarcy <she...@gm...>**20080709063851] =
[Fix: linking incorrect runtime on Visual Studio (pointed out by John Lask)=
.
shelarcy <she...@gm...>**20080709063820] =
[Add download link to two GHC 6.8.3's binary.
shelarcy <she...@gm...>**20080630144522] =
[Fix Building without WXWIN_COMPATIBILITY_2_6 in eljrc.cpp.
shelarcy <she...@gm...>**20080630120326] =
[Fix: hardcoded keycode doesn't work well when using wxWidgets 2.8.x.
shelarcy <she...@gm...>**20080630120118] =
[Clean up duplicate ewxw_def.h file.
shelarcy <she...@gm...>**20080628114449] =
[Remove wxScintilla code (use wxStyledTextCtrl instead).
shelarcy <she...@gm...>**20080626055907] =
[Fix: eljdcsvg.cpp doesn't build other than Windows.
shelarcy <she...@gm...>**20080625095858] =
[Just reviving ELJ's wxXmlResource code.
shelarcy <she...@gm...>**20080625052046] =
[Use Int64 representing wxFileOffset type.
shelarcy <she...@gm...>**20080624152015] =
[Add dropped wxMedia's events to wxc.
shelarcy <she...@gm...>**20080624140139] =
[Add dropped wx*DCs.
shelarcy <she...@gm...>**20080624122641] =
[Update building information about --with-contrib option.
shelarcy <she...@gm...>**20080624113243] =
[Revive wxSVGFileDC code.
shelarcy <she...@gm...>**20080624113214] =
[Change --with-stc to --with-contrib for future contrib libraries support.
shelarcy <she...@gm...>**20080624032429] =
[Update information about builiding wxWidgets and wxc with Microsoft Visual=
C++ Express Edition.
shelarcy <she...@gm...>**20080624023628] =
[Fix #1400488: Win install problem when path with spaces, e.g. "Program Fil=
es".
shelarcy <she...@gm...>**20080624020657] =
[Partialy fix a bug in wxhaskell-register.bat.
shelarcy <she...@gm...>**20080623152256] =
[Add --enable-optimization opition for building library with optimization f=
lags.
shelarcy <she...@gm...>**20080531114050] =
[Use CDouble and realToFrac instead of marshaling Double type directly.
shelarcy <she...@gm...>**20080530024730] =
[Remove unused make before-dist.
shelarcy <she...@gm...>**20080529120234] =
[Fix a bug in haddock documentation structure of Rectangle.
shelarcy <she...@gm...>**20080529111415] =
[Use putTraceMsg instead of hPutStrLn for Windows GUI-only program.
shelarcy <she...@gm...>**20080526070627] =
[Add very experimental wxGraphicsContext support.
shelarcy <she...@gm...>**20080526063228] =
[Change Point, Size, Vector and Rect to be type synonym for adding wxGraphi=
csContext support.
shelarcy <she...@gm...>**20080526055033] =
[Fix: wxSound isn't managed object.
shelarcy <she...@gm...>**20080524021436] =
[Remove wxWidgets 2.4.x's wxWave code.
shelarcy <she...@gm...>**20080430002921] =
[Remove Wave type synonym.
shelarcy <she...@gm...>**20080429233348] =
[Change samples/contrib/PaintDirect to use withPixelBuffer instead of image=
GetPixelBuffer.
shelarcy <she...@gm...>**20080429232026] =
[Change imageGetPixelArray and imageCreateFromPixelArray to be more flexibl=
e.
shelarcy <she...@gm...>**20080429183518] =
[Fix: some samples don't run because of using undefined function since wxWi=
dgets 2.8.x support.
shelarcy <she...@gm...>**20080429145931] =
[Add note about defaultButton's incompatible change since wxWidgets 2.8.x s=
upport.
shelarcy <she...@gm...>**20080429141545] =
[Change Var type synonym from IORef to stm's TVar for thread safety.
shelarcy <she...@gm...>**20080425114909] =
[Fix: dists dropped two samples in samples/wx direcotory.
shelarcy <she...@gm...>**20080425102416] =
[Clean up wxWindows class's function declaration.
shelarcy <she...@gm...>**20080425054152] =
[Clean up #ifdef wxUSE_UNICODE flag by wxStrdup function.
shelarcy <she...@gm...>**20080425051404] =
[Replace _wcsdup with wxStrdup in wxWidgets 2.8 compat code.
Eric Kow <eri...@gm...>**20080420115042
According to shelarcy and Jeremy, _wcsdup is Windows-specific.
] =
[wxWidgets 2.8.7 on 0.10.3 release version
jer...@gm...**20080410134132] =
[TAG wxWidgets2.8.7_on_0.10.3rc1
jer...@gm...**20080410113256] =
[Add TopLevelWindow for wxWidgets 2.8.7 support
jer...@gm...**20080410113113] =
[Preliminary wxWidgets 2.8.7 support
jer...@gm...**20080410112559] =
[Shifted to Pavel's Debian build system
Mads Lindstroem <mad...@ya...>**20080413131752
=
I have changed the current Debian build system to the one made by
Pavel Shramov. It is a lot simpler than the current one. Also it is
similar to what can normally be found in the Debian archieve, and I
therefore assume that it will be easier to some day get an offecial
WxHaskell Debian package.
=
All of the files in the debian directory is the work of Pavel.
=
I changed only one thing, as compared to Pavel's version. Namely that
I removed the dependcy on libghc6-time-dev. I did it, as this
dependency makes the package un-buildable on Debian unstable (GHC
6.8). At release 0.10.3, some users requested a GHC 6.8 version, and
it is therefore important that we can provide one.
=
=
] =
[Removed check for Data.Time
Mads Lindstroem <mad...@ya...>**20080413114242
=
Removed the check for Data.Time as it is not needed. I originally
added it as I had somehow overlooked the Debian package
libghc6-time-dev. Sorry about the unneccessary noise :(
=
] =
[Fix: samples/wx/makefile's "make clean" doesn't clean Windows things.
shelarcy <she...@gm...>**20080409133446] =
[Fix 1932640: samples/wx/FileBrowse is broken on Windows. =
shelarcy <she...@gm...>**20080409132157] =
[Add containers package dependency to wxcore.cabal.
shelarcy <she...@gm...>**20080328131307] =
[Remove IntMap from wxcore. Use the containers version instead.
shelarcy <she...@gm...>**20080328131144] =
[Add containers package to wxcore.
shelarcy <she...@gm...>**20080328123744] =
[Remove Set from wxdirect. Use the containers version instead.
Eric Kow <eri...@gm...>**20080322140544] =
[Remove Map from wxdirect. Use the containers version instead.
Eric Kow <eri...@gm...>**20080322140245] =
[Add containers package to wxdirect.
Eric Kow <eri...@gm...>**20080322135933] =
[Split makefile entry for wxdirect containers into separate lines.
Eric Kow <eri...@gm...>**20080322135824
For more independence between patches which remove Map, Set and
MultiSet in favour of the containers version.
] =
[Use string comparison in haddockversion test.
Eric Kow <eri...@gm...>**20080326224059
Again, for the case where haddock is not found.
] =
[Fix bug in configure script if Haddock is not found.
Eric Kow <eri...@gm...>**20080324155706
(discovered by S. Doaitse Swierstra)
] =
[Add wx/license.txt to srcdist (to avoid build error).
Eric Kow <eri...@gm...>**20080323125315] =
[Fix download link typos.
Eric Kow <eri...@gm...>**20080322130605] =
[Kill a broken link (we no longer use CVS).
Eric Kow <eri...@gm...>**20080322125822] =
[Overwrite 0.10.3rc1 news with proper 0.10.3 news.
Eric Kow <eri...@gm...>**20080322125032] =
[TAG 0.10.3
Eric Kow <eri...@gm...>**20080321183613] =
Patch bundle hash:
17aec7871c8982cd149f3de0494ce0c88bdec8b9
--=_--
.
|