Skip to content

Commit 49ac27c

Browse files
author
timlinux
committed
Updated changelogs and versions etc for 0.9.2rc1 release
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@8067 c8812cc2-4d05-0410-92ff-de0c093fc19c
1 parent f899940 commit 49ac27c

File tree

5 files changed

+63
-71
lines changed

5 files changed

+63
-71
lines changed

ChangeLog

+13
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
/* ChangeLog,v 1.214 2004/11/12 00:42:21 gsherman Exp */
22
------------------------------------------------------------------------------
3+
Version 0.9.2rc1 'Ganymede'
4+
** This release candidate includes over 40 bug fixes and enchancements
5+
** over the QGIS 0.9.1 release. In addition we have added
6+
** the following new features:
7+
** Imrovements to digitising capabilities.
8+
** Supporting default and defined styles (.qml) files for file based
9+
** vector layers. With styles you can save the symbolisation
10+
** and other settings associated with a vector layer and they
11+
** will be loaded whenever you load that layer.
12+
** Improved support for transparency and contrast stretching
13+
** in raster layers. Support for color ramps in raster layers.
14+
** Support for non-north up rasters. Many other raster
15+
** improvements 'under the hood'.
316
Version 0.9.1 'Ganymede'
417
** This is a bug fix release
518
** 70 Bugs closed

debian/changelog

+17
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
1+
qgis (0.9.2rc1) gutsy; urgency=low
2+
3+
* This release candidate includes over 40 bug fixes and enchancements
4+
* over the QGIS 0.9.1 release. In addition we have added
5+
* the following new features:
6+
* Imrovements to digitising capabilities.
7+
* Supporting default and defined styles (.qml) files for file based
8+
* vector layers. With styles you can save the symbolisation
9+
* and other settings associated with a vector layer and they
10+
* will be loaded whenever you load that layer.
11+
* Improved support for transparency and contrast stretching
12+
* in raster layers. Support for color ramps in raster layers.
13+
* Support for non-north up rasters. Many other raster
14+
* improvements 'under the hood'.
15+
16+
-- Tim Sutton <tim@linfiniti.com> Mon, 28 Jan 2008 23:00:41 -0200
17+
118
qgis (0.9.1) gutsy; urgency=low
219

320
* This is a bug fix release

doc/index.html

+14-43
Original file line numberDiff line numberDiff line change
@@ -21,55 +21,26 @@
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.9?</h2>
24+
<h2>Whats new in Version 0.9.2rc1?</h2>
2525
<p>
26-
Version 0.9.0 brought some very interesting new features and updates to you.
2726
</p>
28-
<ul>
29-
<li>
30-
Python bindings - This is the major focus of this release
31-
it is now possible to create plugins using python. It is also
32-
possible to create GIS enabled applications written in python
33-
that use the QGIS libraries.
27+
This release candidate includes over 40 bug fixes and enchancements
28+
over the QGIS 0.9.1 release. In addition we have added
29+
the following new features:
30+
<ul><li>
31+
Imrovements to digitising capabilities.
3432
</li>
3533
<li>
36-
Removed automake build system - QGIS now needs CMake for compilation.
34+
Supporting default and defined styles (.qml) files for file based
35+
vector layers. With styles you can save the symbolisation
36+
and other settings associated with a vector layer and they
37+
will be loaded whenever you load that layer.
3738
</li>
3839
<li>
39-
Many new GRASS tools added (with thanks to http://faunalia.it/)
40-
</li>
41-
<li>
42-
Map Composer updates
43-
</li>
44-
<li>
45-
Crash fix for 2.5D shapefiles
46-
</li>
47-
<li>
48-
The QGIS libraries have been refactored and better organised.
49-
</li>
50-
<li>
51-
Improvements to the GeoReferencer
52-
</li>
53-
</ul>
54-
55-
<p>
56-
Version 0.9.1 concentrates on stabilization and feature enhancement.
57-
</p>
58-
<ul>
59-
<li>
60-
70 bugfixes and feature improvements
61-
</li>
62-
<li>
63-
New window arrangement feature for the Georeferencer
64-
</li>
65-
<li>
66-
New locale tab in the options dialog
67-
</li>
68-
<li>
69-
Download progress information for WMS and WFS data
70-
</li>
71-
<li>
72-
More GRASS modules added to the GRASS toolbox
40+
Improved support for transparency and contrast stretching
41+
in raster layers. Support for color ramps in raster layers.
42+
Support for non-north up rasters. Many other raster
43+
improvements 'under the hood'.
7344
</li>
7445
</ul>
7546

scripts/build_debian_package.sh

+2-1
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,6 @@ fi
2020

2121
export DEBFULLNAME="Tim Sutton"
2222
export DEBEMAIL=tim@linfiniti.com
23-
dch -v 0.9.1+svn`date +%Y%m%d`
23+
#dch -v 0.9.1+svn`date +%Y%m%d`
24+
dch -v 0.9.2rc1
2425
fakeroot dpkg-buildpackage

src/app/qgisapp.cpp

+17-27
Original file line numberDiff line numberDiff line change
@@ -1504,44 +1504,34 @@ void QgisApp::about()
15041504
tr("http://www.gnu.org/licenses") +
15051505
"</p>";
15061506
abt->setURLs(urls);
1507-
QString watsNew = "<html><body>" + tr("Version") + " ";
1508-
watsNew += QGis::qgisVersion;
1509-
watsNew += "<h3>" + tr("New features") + "</h3>";
1510-
watsNew += "<ul><li>"
1511-
+ tr("Python bindings - This is the major focus of this release "
1512-
"it is now possible to create plugins using python. It is also "
1513-
"possible to create GIS enabled applications written in python "
1514-
"that use the QGIS libraries."
1515-
)
1507+
QString whatsNew = "<html><body>" + tr("Version") + " ";
1508+
whatsNew += QGis::qgisVersion;
1509+
whatsNew += "<h3>" + tr("New features") + "</h3>";
1510+
+ tr("This release candidate includes over 40 bug fixes and enchancements "
1511+
"over the QGIS 0.9.1 release. In addition we have added "
1512+
"the following new features:")
1513+
whatsNew += "<ul><li>"
1514+
+ tr("Imrovements to digitising capabilities.")
15161515
+ "</li>"
15171516
+ "<li>"
1518-
+ tr("Removed automake build system - QGIS now needs CMake for compilation.")
1517+
+ tr("Supporting default and defined styles (.qml) files for file based "
1518+
"vector layers. With styles you can save the symbolisation "
1519+
"and other settings associated with a vector layer and they "
1520+
"will be loaded whenever you load that layer.")
15191521
+ "</li>"
15201522
+ "<li>"
1521-
+ tr("Many new GRASS tools added (with thanks to http://faunalia.it/)")
1522-
+ "</li>"
1523-
+ "<li>"
1524-
+ tr("Map Composer updates")
1525-
+ "</li>"
1526-
+ "<li>"
1527-
+ tr("Crash fix for 2.5D shapefiles")
1528-
+ "</li>"
1529-
+ "<li>"
1530-
+ tr("The QGIS libraries have been refactored and better organised.")
1531-
+ "</li>"
1532-
+ "<li>"
1533-
+ tr("Improvements to the GeoReferencer")
1534-
+ "</li>"
1535-
+ "<li>"
1536-
+ tr("Added locale options to options dialog.")
1523+
+ tr("Improved support for transparency and contrast stretching "
1524+
"in raster layers. Support for color ramps in raster layers. "
1525+
"Support for non-north up rasters. Many other raster "
1526+
"improvements 'under the hood'.")
15371527
+ "</li>"
15381528
//+ "<li>"
15391529
//+ tr("X")
15401530
//+ "</li>"
15411531
+ "</ul></body></html>";
15421532

15431533

1544-
abt->setWhatsNew(watsNew);
1534+
abt->setWhatsNew(whatsNew);
15451535

15461536
// add the available plugins to the list
15471537
QString providerInfo = "<b>" + tr("Available Data Provider Plugins") + "</b><br>";

0 commit comments

Comments
 (0)