Skip to content

Commit ad3cf45

Browse files
author
timlinux
committedSep 12, 2009
Updates to whats new and fixed version no in index.html
git-svn-id: http://svn.osgeo.org/qgis/trunk@11634 c8812cc2-4d05-0410-92ff-de0c093fc19c
1 parent 648d51f commit ad3cf45

File tree

2 files changed

+34
-109
lines changed

2 files changed

+34
-109
lines changed
 

‎doc/index.html

Lines changed: 1 addition & 1 deletion
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 1.2.0 <i>Daphnis</i></span><br>
13+
<span class="subheader">Version 1.3.0 <i>Mimas</i></span><br>
1414
<span class="warning">Please read this entire document for important information about this release.</span>
1515
</td>
1616
</tr>

‎src/app/qgisapp.cpp

Lines changed: 33 additions & 108 deletions
Original file line numberDiff line numberDiff line change
@@ -2044,122 +2044,47 @@ void QgisApp::about()
20442044
abt->setVersion( versionString );
20452045
QString whatsNew = "<html><body>" ;
20462046
whatsNew += "<h2>" + tr( "Version" ) + " " + QString( QGis::QGIS_VERSION ) + "</h2>";
2047-
whatsNew += "<h3>" + tr( "Whats new in Version 1.2.0?" ) + "</h3>"
2047+
whatsNew += "<h3>" + tr( "Whats new in Version 1.3.0?" ) + "</h3>"
20482048
+
20492049
"<p>"
20502050
+ tr( "Please note that this is a release in our 'cutting edge' release series. As "
20512051
"such it contains new features and extends the programmatic interface over "
2052-
"QGIS 1.0.x and QGIS 1.1.0. If stability and long term support is more important to you "
2053-
"then cool new and untested features, we recommend that you use a copy "
2054-
"of QGIS from our stable 1.0.x release series." )
2052+
"QGIS 1.0.x and QGIS 1.2.0. If an unchanging user interface, programmatic API "
2053+
"and long term support is more important to you then cool new and untested "
2054+
"features, we recommend that you use a copy of QGIS from our Long Term Support "
2055+
"(LTS)1.0.x release series." )
20552056
+
20562057
"</p><p>"
20572058
+
2058-
tr( "This release includes over 140 bug fixes and enhancements "
2059-
"over the QGIS 1.1.0 release. In addition we have added "
2059+
tr( "This release includes over 30 bug fixes and enhancements "
2060+
"over the QGIS 1.2.0 release. In addition we have added "
20602061
"the following new features:" )
2061-
+ "<pre>"
2062-
+ tr( "Editing:\n"
2063-
"\n"
2064-
"Editing functionality in QGIS has had a major update in this release. This\n"
2065-
"includes the addition of new vector editing tools:\n"
2066-
"- delete part of multipart feature\n"
2067-
"- delete hole from polygon\n"
2068-
"- simplify feature\n"
2069-
"- Added a new node tool (in advanced digitizing toolbar).\n"
2070-
"- New functionality for merging features\n"
2071-
"- Added undo/redo functionality for vector layer editing.\n"
2072-
"- Added option to show only markers of selected features in editing mode.\n"
2073-
"- Change layer's icon in legend to reflext that the layer is editable.\n"
2074-
"\n"
2075-
"In addition, there are undo/redo actions in Edit menu, in Advanced digitizing toolbar\n"
2076-
"and there is a new dock widget displaying undo stack of active layer.\n"
2077-
"\n"
2078-
"About the node tool: It resembles a tool for editing paths by nodes that is\n"
2079-
"present in every vector editor. How does it work (in QGIS)? Click on a\n"
2080-
"feature, its nodes will be marked by small rectangles. Clicking and dragging a\n"
2081-
"node moves it. Double clicking a segment will add a new node. Pressing delete\n"
2082-
"key will remove active node. It's possible to select more active nodes at\n"
2083-
"once: by clicking and dragging a rectangle. It's possible to select a segment's\n"
2084-
"adjacent nodes by clicking on the segment. It's possible to add/remove active\n"
2085-
"nodes by using Ctrl when clicking a node or dragging a rectangle\n"
2086-
"\n"
2087-
"We recommend that you turn off vertex markers in QGIS options when working with\n"
2088-
"this tool: the redraws are much faster and the map is not cluttered with\n"
2089-
"markers. \n"
2090-
"\n"
2091-
"Keyboard shortcuts:\n"
2092-
"\n"
2093-
"New feature: configure shortcuts for actions within main window of qgis!\n"
2094-
"See menu Setting->Configure shortcuts\n"
2095-
"\n"
2096-
"Map Composer:\n"
2097-
"\n"
2098-
"It is now possible to lock/unlock composer item positions by right mouse click.\n"
2099-
"The width and height of the composer map will now remain fixed if user sets the\n"
2100-
"composer map extent to the map canvas extent. possibility to display\n"
2101-
"current date in composer label by typing (d 'June' yyyy) or similar.\n"
2102-
"It is now possible to keep the current layers in a composer map even if further\n"
2103-
"layers are added to the main map. Export to PDF in composer is now possible.\n"
2104-
"\n"
2105-
"Attribute tables:\n"
2106-
"\n"
2107-
"It is now possible to search the attribute table within selected records only.\n"
2108-
"General speedups have been made on the attribute table. Setting of field width\n"
2109-
"and precision when adding attributes is now possible. Handling of attribute\n"
2110-
"types in WFS provider has bee improved.\n"
2111-
"\n"
2112-
"Attribute aliases for vector layers are now available. The aliases are shown\n"
2113-
"instead of the original field names in the info tool and attribute table to\n"
2114-
"make things easier for end users. There is now a GUI for setting edit widgets\n"
2115-
"for layer attributes. A new dialog allows loading a value map from a layer\n"
2116-
"(could be non-spatial table too!). The edit widgets settings will also now\n"
2117-
"be respected in the attribute table.\n"
2118-
"\n"
2119-
"Plugins:\n"
2120-
"\n"
2121-
"- The order of layers in the WMS dialog can now be changed.\n"
2122-
"- The eVis plugin, version 1.1.0, has been added to the QGIS project and\n"
2123-
" included as a standard plugin. More information about eVis can be found here:\n"
2124-
" http://biodiversityinformatics.amnh.org/open_source/evis/documentation.php .\n"
2125-
"- The interpolation plugin now has the ability to use line layers as constrains\n"
2126-
" for triangulation in interpolation plugin. You can also now save the\n"
2127-
" triangulation to shape file.\n"
2128-
"- An new OpenStreetMap provider and plugin have been added to QGIS.\n"
2129-
"\n"
2130-
"Projects Management:\n"
2131-
"\n"
2132-
"QGIS now includes support for project relative position of file data sources\n"
2133-
"and svgs. The saving of relative paths of file data sources is optional.\n"
2134-
"\n"
2135-
"PostGIS & the PostgreSQL Provider:\n"
2136-
"\n"
2137-
"You can now select the SSL mode when adding a new DB connection. Turning off\n"
2138-
"SSL encryption can greatly improve performance of PostGIS data loading where\n"
2139-
"connection security is not required. Support has been added for more native\n"
2140-
"types and for setting of column comments.\n"
2141-
"\n"
2142-
"Symbology enhancements:\n"
2143-
"\n"
2144-
"- allow refresh of symbols via popup menu on the renderer's symbol selection\n"
2145-
"- add support for data defined symbol(name)s\n"
2146-
"- add support for font symbol markers (only data defined - no gui yet)\n"
2147-
"- add symbol size in map units (ie. symbols that keep the size in mapunits\n"
2148-
" independent of the mapscale)\n"
2149-
"\n"
2150-
"Command line arguments:\n"
2151-
"\n"
2152-
"Added command line argument support on windows.\n"
2153-
"Enhancement of command line arguments:\n"
2154-
"- allow given snapshot sizes\n"
2155-
"- allow suppression of splash screen\n"
2156-
"- capture map decorations from plugins on snapshots\n"
2157-
"\n"
2158-
"Grass:\n"
2159-
"\n"
2160-
"There is a new GRASS shell. Also there have been many cleanups and consistency\n"
2161-
"updates." )
2162-
+ "</pre></body></html>";
2062+
+ tr("<p>OSM plugin &amp; provider updates:</p>"
2063+
"<ul>"
2064+
"<li>new OSM style files.</li>"
2065+
"<li>new icons.</li>"
2066+
"<li>dialog text updated and completed.</li>"
2067+
"<li>Saving OSM into file functionality was improvements.</li>"
2068+
"<li>fixed some problems with encoding... ascii to utf-8.</li>"
2069+
"<li>all OSM layers are automatically removed after disabling OSM plugin in plugin manager.</li>"
2070+
"<li>other OSM related bugfixes.</li>"
2071+
"</ul>"
2072+
2073+
"<p>Other notable features and improvements in this release</p>"
2074+
"<ul>"
2075+
"<li>Marker size is now configurable when editing a layer.</li>"
2076+
"<li>Incorporation of the analysis library into the mainstream release.</li>"
2077+
"<li>Identify features across multiple layers.</li>"
2078+
"<li>Added a new plugin for carrying out raster terrain analysis (computing slope"
2079+
" aspect, steepness etc).</li>"
2080+
"<li>A reshape tool to apply to line/polygon geometries. The part of a geometry"
2081+
" between the first and last intersection of the reshape line will be replaced.</li>"
2082+
"<li>Added snapping to current layer in measure dialog.</li>"
2083+
"<li>Added ability to select the primary key for views.</li>"
2084+
"<li>Zoom to a coordinate by entering it in the status bar coordinate display.</li>"
2085+
"</ul>")
2086+
2087+
+ "</body></html>";
21632088

21642089
abt->setWhatsNew( whatsNew );
21652090

0 commit comments

Comments
 (0)
Please sign in to comment.