Skip to content

Commit

Permalink
Updated files for 0.3 release
Browse files Browse the repository at this point in the history
** Updated whats new in qgisapp.cpp (for about dialog)
** Added border to the splash screen (Madison didn't like it without a border)
** Added map units tag to qgis.dtd -- this still needs to be implemented
   in saving/loading projects from .qgs files


git-svn-id: http://svn.osgeo.org/qgis/trunk@1474 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
gsherman committed May 26, 2004
1 parent 15b5d65 commit 58b12bc
Show file tree
Hide file tree
Showing 5 changed files with 39 additions and 58 deletions.
46 changes: 17 additions & 29 deletions README
@@ -1,34 +1,24 @@
README for QGIS version 0.2 'Pumpkin'
README for QGIS version 0.3 'Madison'
Quantum GIS (QGIS) is designed to be a Geographic Information System (GIS)
built for Linux/Unix. QGIS offers support for vector and raster formats.
Currently QGIS supports many common vector and raster formats shapefiles
and PostgreSQL/PostGIS layers.

This release adds:
Simple and graduated SVG marker symbols
SVG Marker library
Mapcanvas is updated as features are drawn (every 1,000 features)
WhatsThis? help for menus and toolbar buttons
Save map canvas as an image (.png)
Search radius for identifying features can be specified in the preferences dialog
Splashscreen can be disabled in user preferences
Raster statistics
Thumbnail preview in raster properties dialog
Metadata tab in raster properties dialog
Internationalization for several languages
Snapshot mode (invoked from command line)
Command line options for loading project files/layers
Currently loaded plugins are restored each time QGIS is started
New Core Plugins
Delimited text plugin for creating a map layer from a set of x, y coordinates
GPS importer plugin
Grid/graticule maker plugin
Grass plugin
New Contributed Plugins
Launcher plugin runs a system script or program
Worldmap
Fishing_spots tutorial plugin
Open modeller
Features
Raster pyramids
Scale display
Map units can be specified (meters, feet, decimal degrees)
Desktop icons (installed in share/qgis/images/icons)
Mac OS X vector support now works
Core Plugins
New North Arrow plugin
Improved GPS tools plugin
New Copyright plugin
Improved Grass plugin with raster and vector loaders
Contributed Plugins (available from community.qgis.org)
HTTP server (simple map server implementation)


Supported raster formats include:
Grass
Expand Down Expand Up @@ -62,11 +52,9 @@ HELP US -- Please submit bug reports using the QGIS bug tracker at:

SUPPORT - You can get support in the following ways:
1. Using the QGIS community site at http://community.qgis.org
2. Using the Help forum at:
http://sourceforge.net/forum/forum.php?forum_id=186685
3. Joining the qgis-users mailing list at:
2. Joining the qgis-users mailing list at:
http://lists.sourceforge.net/lists/listinfo/qgis-user
4. Using IRC by joining the #qgis channel on irc.freenode.net.
3. Using IRC by joining the #qgis channel on irc.freenode.net.
Please wait around for a response to your question as many
folks on the channel are doing other things and it may take a
while for them to notice your question.
Expand Down
6 changes: 3 additions & 3 deletions configure.in
@@ -1,6 +1,6 @@

dnl Process this file with autoconf to produce a configure script.
dnl configure.in,v 1.99 2004/05/25 18:21:54 larsl Exp
dnl configure.in,v 1.100 2004/05/26 05:34:46 gsherman Exp

AC_INIT

Expand All @@ -22,9 +22,9 @@ dnl ---------------------------------------------------------------------------
dnl version number
dnl ---------------------------------------------------------------------------
MAJOR_VERSION=0
MINOR_VERSION=2
MINOR_VERSION=3
MICRO_VERSION=0
EXTRA_VERSION=37
EXTRA_VERSION=0
if test $EXTRA_VERSION -eq 0; then
VERSION=${MAJOR_VERSION}.${MINOR_VERSION}.${MICRO_VERSION}
else
Expand Down
8 changes: 6 additions & 2 deletions qgis.dtd
Expand Up @@ -7,16 +7,20 @@
-- Project Properties
--
-->
<!ELEMENT qgis (title, extent, projectlayers) >
<!ELEMENT qgis (title, extent, projectlayers, mapunits) >
<!ELEMENT projectlayers (maplayer*) >
<!ELEMENT extent (xmin, ymin, xmax, ymax) >
<!ELEMENT xmin (#PCDATA) >
<!ELEMENT ymin (#PCDATA) >
<!ELEMENT xmax (#PCDATA) >
<!ELEMENT ymax (#PCDATA) >
<!ELEMENT title (#PCDATA) >
<!ELEMENT mapunits (#PCDATA) >
<!-- Attribute Lists -->
<!ATTLIST qgis projectname CDATA #REQUIRED >
<!ATTLIST qgis
projectname CDATA #REQUIRED
mapunits (meters|feet|degrees) "meters"
>
<!ATTLIST projectlayers layercount CDATA #REQUIRED >
<!--
-- General Map Layer Properties
Expand Down
Binary file modified src/images/splash/splash.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
37 changes: 13 additions & 24 deletions src/qgisapp.cpp
Expand Up @@ -402,41 +402,30 @@ void QgisApp::about()
versionString += tr(" (no PostgreSQL support)");
#endif
abt->setVersion(versionString);
QString urls = tr("Web Page: http://qgis.sourceforge.net") +
QString urls = tr("Web Page: http://qgis.org") +
"\n" + tr("Sourceforge Project Page: http://sourceforge.net/projects/qgis");
abt->setURLs(urls);
QString watsNew = "<html><body>" + tr("Version") + " ";
watsNew += QGis::qgisVersion;
watsNew += "<h3>New features</h3>";
watsNew += "<ul>"
"<li>Simple and graduated SVG marker symbols </li>"
"<li>SVG Marker library</li>"
"<li>Mapcanvas is updated as features are drawn (every 1,000 features) </li>"
"<li>WhatsThis? help for menus and toolbar buttons </li>"
"<li>Save map canvas as an image (.png) </li>"
"<li>Search radius for identifying features can be specified in the preferences dialog </li>"
"<li>Splashscreen can be disabled in user preferences</li>"
"<li>Raster statistics</li>"
"<li>Thumbnail preview in raster properties dialog</li>"
"<li>Metadata tab in raster properties dialog</li>"
"<li>Internationalization for several languages</li>"
"<li>Snapshot mode (invoked from command line)</li>"
"<li>Command line options for loading project files/layers</li>"
"<li>Currently loaded plugins are restored each time QGIS is started</li>"
"<li>Raster pyramids</li>"
"<li>Scale display</li>"
"<li>Map units can be specified (meters, feet, decimal degrees)</li>"
"<li>Desktop icons (installed in share/qgis/images/icons)</li>"
"<li>Mac OS X vector support now works</li>"
"</ul>"
"<h3>New Core Plugins</h3>"
"<h3>Core Plugins</h3>"
"<ul>"
"<li>Delimited text plugin for creating a map layer from a set of x, y coordinates</li>"
"<li>GPS importer plugin</li>"
"<li>Grid/graticule maker plugin</li>"
"<li>Grass plugin</li>"
"<li>New North Arrow plugin</li>"
"<li>Improved GPS tools plugin</li>"
"<li>New Copyright plugin</li>"
"<li>Improved Grass plugin with raster and vector loaders</li>"
"</ul>"
"<h3>New Contributed Plugins</h3>"
"These plugins are available from community.qgis.org or CVS (module plugins)"
"<ul>"
"<li>Launcher plugin runs a system script or program</li>"
"<li>Worldmap</li>"
"<li>Fishing_spots tutorial plugin</li>"
"<li>Open modeller</li>"
"<li>HTTP server</li>"
"</ul>"
"</body></html>";

Expand Down

0 comments on commit 58b12bc

Please sign in to comment.