Capture Point changes.

git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@1570 c8812cc2-4d05-0410-92ff-de0c093fc19c
This commit is contained in:
timlinux 2004-06-13 15:02:32 +00:00
parent c88d99c7a2
commit 2e023d7ba8
2 changed files with 12 additions and 3 deletions

View File

@ -1,7 +1,16 @@
QGIS Change Log
ChangeLog,v 1.126 2004/06/12 19:24:28 gsherman Exp
ChangeLog,v 1.127 2004/06/13 15:02:32 timlinux Exp
------------------------------------------------------------------------------
Version 0.3 'Madison' .... development version
2004-06-10 [ts] 0.3.0devel31
** Implemented a new map cursor type : Capture Point (little pencil icon on your toolbar).
At the moment clicking on the map in capture point mode will cause QgsMapCanvas to emit
an xyClickCoordinate(QgsPoint) signal which is picked up by qgisapp and the coordinates
are placed into the system clipboard.
In release 0.5 this will be extended to provide simple point vector file data capture /
digitising facility. This will be implemented by means of a plugin which will utilise the
aforementioned xyClickCoordinate(QgsPoint) signal.
2004-06-12 [gsherman] 0.3.0devel30
** Windows support -- lots of changes

View File

@ -1,6 +1,6 @@
dnl Process this file with autoconf to produce a configure script.
dnl configure.in,v 1.129 2004/06/12 19:24:28 gsherman Exp
dnl configure.in,v 1.130 2004/06/13 15:02:32 timlinux Exp
AC_INIT
@ -24,7 +24,7 @@ dnl ---------------------------------------------------------------------------
MAJOR_VERSION=0
MINOR_VERSION=3
MICRO_VERSION=0
EXTRA_VERSION=30
EXTRA_VERSION=31
if test $EXTRA_VERSION -eq 0; then
VERSION=${MAJOR_VERSION}.${MINOR_VERSION}.${MICRO_VERSION}
else