Skip to content

Commit 4594371

Browse files
author
timlinux
committed
Added whats new text for 1.4 release.
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@12459 c8812cc2-4d05-0410-92ff-de0c093fc19c
1 parent 3aeb915 commit 4594371

File tree

1 file changed

+64
-32
lines changed

1 file changed

+64
-32
lines changed

src/app/qgisapp.cpp

+64-32
Original file line numberDiff line numberDiff line change
@@ -2126,44 +2126,76 @@ void QgisApp::about()
21262126
abt->setVersion( versionString );
21272127
QString whatsNew = "<html><body>" ;
21282128
whatsNew += "<h2>" + tr( "Version" ) + " " + QString( QGis::QGIS_VERSION ) + "</h2>";
2129-
whatsNew += "<h3>" + tr( "Whats new in Version 1.3.0?" ) + "</h3>"
2129+
whatsNew += "<h3>" + tr( "Whats new in Version 1.4.0?" ) + "</h3>"
21302130
+
21312131
"<p>"
21322132
+ tr( "Please note that this is a release in our 'cutting edge' release series. As "
21332133
"such it contains new features and extends the programmatic interface over "
2134-
"QGIS 1.0.x and QGIS 1.2.0. If an unchanging user interface, programmatic API "
2134+
"QGIS 1.0.x and QGIS 1.3.0. If an unchanging user interface, programmatic API "
21352135
"and long term support is more important to you then cool new and untested "
21362136
"features, we recommend that you use a copy of QGIS from our Long Term Support "
2137-
"(LTS)1.0.x release series." )
2138-
+
2139-
"</p><p>"
2140-
+
2141-
tr( "This release includes over 30 bug fixes and enhancements "
2142-
"over the QGIS 1.2.0 release. In addition we have added "
2143-
"the following new features:" )
2144-
+ tr( "<p>OSM plugin &amp; provider updates:</p>\n"
2145-
"<ul>\n"
2146-
" <li>new OSM style files.</li>\n"
2147-
" <li>new icons.</li>\n"
2148-
" <li>dialog text updated and completed.</li>\n"
2149-
" <li>Saving OSM into file functionality was improvements.</li>\n"
2150-
" <li>fixed some problems with encoding... ascii to utf-8.</li>\n"
2151-
" <li>all OSM layers are automatically removed after disabling OSM plugin in plugin manager.</li>\n"
2152-
" <li>other OSM related bugfixes.</li>\n"
2153-
"</ul>\n"
2154-
"<p>Other notable features and improvements in this release</p>\n"
2155-
"<ul>\n"
2156-
" <li>Marker size is now configurable when editing a layer.</li>\n"
2157-
" <li>Incorporation of the analysis library into the mainstream release.</li>\n"
2158-
" <li>Identify features across multiple layers.</li>\n"
2159-
" <li>Added a new plugin for carrying out raster terrain analysis (computing slope aspect, steepness etc).</li>\n"
2160-
" <li>A reshape tool to apply to line/polygon geometries. The part of a geometry between the first and\n"
2161-
" last intersection of the reshape line will be replaced.</li>\n"
2162-
" <li>Added snapping to current layer in measure dialog.</li>\n"
2163-
" <li>Added ability to select the primary key for views.</li>\n"
2164-
" <li>Zoom to a coordinate by entering it in the status bar coordinate display.</li>\n"
2165-
"</ul>" )
2166-
2137+
"(LTS)1.0.x release series. In all other cases we recommend that you use this "
2138+
"version." )
2139+
+ "</p><p>" +
2140+
tr( "This release includes around 200 bug fixes, nearly 30 new "
2141+
"features and has had a lot of love and attention poured in "
2142+
"to it to take our favourite desktop GIS application another "
2143+
"step on the road to GIS nirvana! So much has happened in "
2144+
"the 3 months since our last release that it is impossible "
2145+
"to document everything here. Instead we will just highlight "
2146+
"a couple of important new features for you." )
2147+
+ "</p><p>" +
2148+
tr("Probably the biggest new feature is the addition of the new "
2149+
"vector symbology infrastructure. This is provided alongside the "
2150+
"old implementation - you can switch using a button in the "
2151+
"vector layer properties dialog. It does't replace the old "
2152+
"symbology implementation completely yet because there are "
2153+
"various isues that need to be resolved and a large amount "
2154+
"of testinhen it is considered ready.")
2155+
+ "</p><p>" +
2156+
tr("QGIS now has a field calculator, accessible via a button in "
2157+
"the attribute section of the vector properties, and from "
2158+
"the attribute table user interface. You can use feature "
2159+
"length, feature area, string concatenation and type "
2160+
"conversions in the field calculator, as well as field "
2161+
"values.")
2162+
+ "</p><p>" +
2163+
tr("The map composer has had a lot of attention. A grid can now "
2164+
"be added to composer maps. Composer maps can now be rotated "
2165+
"in the layout. The limitation of a single map layout "
2166+
"per project has been removed. A new composer manager dialog "
2167+
"has been added to manage the existing composer instances. "
2168+
"The composer widget property sheets have been completely "
2169+
"overhauled to use less screen space ")
2170+
+ "</p><p>" +
2171+
tr("Various parts of the user interface have been overhauled "
2172+
"with the goal of improving consistency and to improve "
2173+
"support for netbooks and other smaller screen devices. "
2174+
"Loading and saving of shortcuts. Position can now be "
2175+
"displayed as Degrees, Minutes, Seconds in the status bar. "
2176+
"The add, move and delete vertex buttons are now removed and "
2177+
"the node tool is moved from the advanced editing toolbar to "
2178+
"the standard editing toolbar. The identification tool has also "
2179+
"undergone numerous improvements.")
2180+
+ "</p><p>" +
2181+
tr("A render caching capability has been added to QGIS. This "
2182+
"speeds up common operations such as layer re-ordering, "
2183+
"changing symbology, WMS / WFS client, hiding / showing "
2184+
"layers and opens the door for future enhancements such as "
2185+
"threaded rendering and pre-compositing layer cache "
2186+
"manipulation. Note that it is disabled by default, and "
2187+
"can be enabled in the options dialog.")
2188+
+ "</p><p>" +
2189+
tr("User defined SVG search paths are now added to the options "
2190+
"dialog.")
2191+
+ "</p><p>" +
2192+
tr("When creating a new shapefile, you can now specify its CRS. "
2193+
"Also the avoid intersections option for polygons is now "
2194+
"also possible with background layers.")
2195+
+ "</p><p>" +
2196+
tr("For power users, you can now create customizable attribute "
2197+
"forms using Qt Designer dialog UIs.")
2198+
+ "</p>" +
21672199
+ "</body></html>";
21682200

21692201
abt->setWhatsNew( whatsNew );

0 commit comments

Comments
 (0)