Skip to content

Commit 023b895

Browse files
author
timlinux
committed
Updated whats new etc for release
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@9790 c8812cc2-4d05-0410-92ff-de0c093fc19c
1 parent d478ff2 commit 023b895

File tree

2 files changed

+68
-24
lines changed

2 files changed

+68
-24
lines changed

doc/index.html

Lines changed: 35 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
</td>
1111
<td valign="center">
1212
<span class="header">Quantum GIS Documentation</span><br>
13-
<span class="subheader">Version 0.10.0 <i>Io</i></span><br>
13+
<span class="subheader">Version 1.0.0 <i>Io</i></span><br>
1414
<span class="warning">Please read this entire document for important information about this release.</span>
1515
</td>
1616
</tr>
@@ -21,36 +21,57 @@
2121
-->
2222
<!-- This documentation describes the Quantum GIS (QGIS) application. More
2323
information on QGIS is available on the web page at http://qgis.org. -->
24-
<h2>Whats new in Version 0.11.0?</h2>
24+
<h2>Whats new in Version 1.0.0?</h2>
2525
<p>
2626
</p>
27-
This release includes over 60 bug fixes and enchancements
28-
over the QGIS 0.10.0 release. In addition we have added
27+
This release includes over 265 bug fixes and enchancements
28+
over the QGIS 0.11.0 release. In addition we have added
2929
the following new features:
3030
<ul>
3131
<li>
32-
Revision of all dialogs for user interface consistancy
32+
HIG Compliance improvements for Windows / Mac OS X / KDE / Gnome
3333
</li>
3434
<li>
35-
Improvements to unique value renderer vector dialog
35+
Saving a vector layer or subset of that layer to disk with a different Coordinate Reference System to the original.
3636
</li>
3737
<li>
38-
Symbol previews when defining vector classes
38+
Advanced topological editing of vector data.
3939
</li>
4040
<li>
41-
Separation of python support into its own library
41+
Single click selection of vector features.
4242
</li>
4343
<li>
44-
List view and filter for GRASS toolbox to find tools more quickly
44+
Many improvements to raster rendering and support for building pyramids external to the raster file.
4545
</li>
4646
<li>
47-
List view and filter for Plugin Manager to find plugins more easily
47+
Overhaul of the map composer for much improved printing support.
4848
</li>
4949
<li>
50-
Updated Spatial Reference System definitions
50+
A new 'coordinate capture' plugin was added that lets you click on the map and then cut & paste the coordinates to and from the clipboard
5151
</li>
5252
<li>
53-
QML Style support for rasters and database layers
53+
A new plugin for converting between OGR supported formats was added.
54+
</li>
55+
<li>
56+
A new plugin for converting from DXF files to shapefiles was added.
57+
</li>
58+
<li>
59+
A new plugin was added for interpolating point features into ASCII grid layers.
60+
</li>
61+
<li>
62+
The python plugin manager was completely overhauled, the new version having many improvements, including checking that the version of QGIS running will support a plugin that is being installed.
63+
</li>
64+
<li>
65+
Plugin toolbar positions are now correctly saved when the application is closed.
66+
</li>
67+
<li>
68+
In the WMS client, WMS standards support has been improved.
69+
</li>
70+
<li>
71+
Complete API revision - we now have a stable API following well defined naming conventions.
72+
</li>
73+
<li>
74+
Ported all GDAL/OGR and GEOS usage to use C APIs only.
5475
</li>
5576
</ul>
5677

@@ -93,8 +114,8 @@ <h2>Whats new in Version 0.11.0?</h2>
93114
<dd>
94115
If think you have found a bug, please consider reporting it to the development team. The steps to report a bug are:
95116
<ol class="normal">
96-
<li>Go to the Bug Tracker at <a href="https://svn.qgis.org/trac">https://svn.qgis.org/trac</a>
97-
<li>Read <a href="https://svn.qgis.org/trac/wiki/UsingTracWithQuantumGis">Using Trac With QGIS</a> to learn about the submission process
117+
<li>Go to the Bug Tracker at <a href="https://trac.osgeo.org/qgis">https://svn.qgis.org/trac</a>
118+
<li>Read <a href="https://trac.osgeo.org/qgis/wiki/UsingTracWithQuantumGis">Using Trac With QGIS</a> to learn about the submission process
98119
<li>Review the list of current issues to make sure your bug has not already been submitted. If it has, review the submission and see if there is anything you can add to the bug report to aid the developers
99120
<li>If your bug has not been reported, create a new ticket, making sure to either login to trac or provide your email address. Tickets lacking contact information are subject to deletion.
100121
</ol>

src/app/qgisapp.cpp

Lines changed: 33 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1801,33 +1801,56 @@ void QgisApp::about()
18011801
QString whatsNew = "<html><body>" + tr( "Version" ) + " ";
18021802
whatsNew += QGis::QGIS_VERSION;
18031803
whatsNew += "<h3>" + tr( "New features" ) + "</h3>" +
1804-
tr( "This release candidate includes over 60 bug fixes and enchancements "
1805-
"over the QGIS 0.10.0 release. In addition we have added "
1804+
tr( "This release candidate includes over 265 bug fixes and enchancements "
1805+
"over the QGIS 0.11.0 release. In addition we have added "
18061806
"the following new features:" );
18071807
whatsNew += "<ul><li>"
1808-
+ tr( "Revision of all dialogs for user interface consistancy" )
1808+
+ tr( "HIG Compliance improvements for Windows / Mac OS X / KDE / Gnome" )
18091809
+ "</li>"
18101810
+ "<li>"
1811-
+ tr( "Improvements to unique value renderer vector dialog" )
1811+
+ tr( "Saving a vector layer or subset of that layer to disk with a different Coordinate Reference System to the original." )
18121812
+ "</li>"
18131813
+ "<li>"
1814-
+ tr( "Symbol previews when defining vector classes" )
1814+
+ tr( "Advanced topological editing of vector data." )
18151815
+ "</li>"
18161816
+ "<li>"
1817-
+ tr( "Separation of python support into its own library" )
1817+
+ tr( "Single click selection of vector features." )
18181818
+ "</li>"
18191819
+ "<li>"
1820-
+ tr( "List view and filter for GRASS toolbox to find tools more quickly" )
1820+
+ tr( "Many improvements to raster rendering and support for building pyramids external to the raster file." )
18211821
+ "</li>"
18221822
+ "<li>"
1823-
+ tr( "List view and filter for Plugin Manager to find plugins more easily" )
1823+
+ tr( "Overhaul of the map composer for much improved printing support." )
18241824
+ "</li>"
18251825
+ "<li>"
1826-
+ tr( "Updated Spatial Reference System definitions" )
1826+
+ tr( "A new 'coordinate capture' plugin was added that lets you click on the map and then cut & paste the coordinates to and from the clipboard." )
18271827
+ "</li>"
18281828
+ "<li>"
1829-
+ tr( "QML Style support for rasters and database layers" )
1829+
+ tr( "A new plugin for converting between OGR supported formats was added." )
18301830
+ "</li>"
1831+
+ "<li>"
1832+
+ tr( "A new plugin for converting from DXF files to shapefiles was added." )
1833+
+ "</li>"
1834+
+ "<li>"
1835+
+ tr( "A new plugin was added for interpolating point features into ASCII grid layers." )
1836+
+ "</li>"
1837+
+ "<li>"
1838+
+ tr( "The python plugin manager was completely overhauled, the new version having many improvements, including checking that the version of QGIS running will support a plugin that is being installed." )
1839+
+ "</li>"
1840+
+ "<li>"
1841+
+ tr( "Plugin toolbar positions are now correctly saved when the application is closed." )
1842+
+ "</li>"
1843+
+ "<li>"
1844+
+ tr( "In the WMS client, WMS standards support has been improved." )
1845+
+ "</li>"
1846+
+ "<li>"
1847+
+ tr( "Complete API revision - we now have a stable API following well defined naming conventions." )
1848+
+ "</li>"
1849+
+ "<li>"
1850+
+ tr( "Ported all GDAL/OGR and GEOS usage to use C APIs only." )
1851+
+ "</li>"
1852+
+ "<li>"
1853+
18311854
//+ "<li>"
18321855
//+ tr("X")
18331856
//+ "</li>"

0 commit comments

Comments
 (0)