diff --git a/ChangeLog b/ChangeLog index 3913c3d1a55..fc760d917c3 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,8 +1,21 @@ QGIS Change Log -ChangeLog,v 1.129 2004/06/13 17:25:58 timlinux Exp +ChangeLog,v 1.130 2004/06/13 22:04:47 timlinux Exp ------------------------------------------------------------------------------ Version 0.3 'Madison' .... development version + +2004-06-13 [ts] 0.3.0devel34 +** Removed gdal deps in qgisapp. + +** Moved raster load stuff to a group at the end of qgisapp.cpp file. + +** Removed generically useable raster fns from qgisapp to static methods of qgsrasterlayer. + +** Some renaming of variable names etc. + +** Added addRaster(QgsRasterLayer *) private method to qgisapp - which is intended for + use via plugins that want to load 'ready made' / symbolised raster layer into the mapCanvas. + 2004-06-13 [ts] 0.3.0devel33 ** Globally changed legen item fonts to arial 10pt for consistancy with rest of ui. Will soft diff --git a/configure.in b/configure.in index 5e7c5b57b9e..238187ac50f 100644 --- a/configure.in +++ b/configure.in @@ -1,6 +1,6 @@ dnl Process this file with autoconf to produce a configure script. -dnl configure.in,v 1.132 2004/06/13 17:25:58 timlinux Exp +dnl configure.in,v 1.133 2004/06/13 22:04:47 timlinux Exp AC_INIT @@ -24,7 +24,7 @@ dnl --------------------------------------------------------------------------- MAJOR_VERSION=0 MINOR_VERSION=3 MICRO_VERSION=0 -EXTRA_VERSION=33 +EXTRA_VERSION=34 if test $EXTRA_VERSION -eq 0; then VERSION=${MAJOR_VERSION}.${MINOR_VERSION}.${MICRO_VERSION} else