[Thuban-commits] r2821 - in trunk/thuban: . Doc/manual Thuban Thuban/UI po
scm-commit@wald.intevation.org
scm-commit at wald.intevation.org
Wed Jan 30 00:18:20 CET 2008
Author: bernhard
Date: 2008-01-30 00:18:17 +0100 (Wed, 30 Jan 2008)
New Revision: 2821
Modified:
trunk/thuban/ChangeLog
trunk/thuban/Doc/manual/README
trunk/thuban/README
trunk/thuban/Releasenotes.txt
trunk/thuban/Thuban/UI/about.py
trunk/thuban/Thuban/version.py
trunk/thuban/po/de.po
trunk/thuban/po/es.po
trunk/thuban/po/fr.po
trunk/thuban/po/hu.po
trunk/thuban/po/it.po
trunk/thuban/po/pt_BR.po
trunk/thuban/po/ru.po
trunk/thuban/setup.py
Log:
Preparing for release.
* Thuban/version.py, setup.py: Moved version number to 1.2.1.
* Thuban/UI/about.py: Bumped copyright to 2008.
* README: Added hint that there are tests and a manual
to the installation section. Also a hint about the manual for the
packagers.
* Doc/manual/README: Mentioned the "Makefile" as prefered method.
* Releasenotes.txt: Drafted an announcement and notes for 1.2.1.
* po/*: Run the update (basically a date change)
Modified: trunk/thuban/ChangeLog
===================================================================
--- trunk/thuban/ChangeLog 2008-01-29 19:08:21 UTC (rev 2820)
+++ trunk/thuban/ChangeLog 2008-01-29 23:18:17 UTC (rev 2821)
@@ -1,3 +1,21 @@
+2008-01-30 Bernhard Reiter <bernhard at intevation.de>
+
+ Preparing for release.
+
+ * Thuban/version.py, setup.py: Moved version number to 1.2.1.
+
+ * Thuban/UI/about.py: Bumped copyright to 2008.
+
+ * README: Added hint that there are tests and a manual
+ to the installation section. Also a hint about the manual for the
+ packagers.
+
+ * Doc/manual/README: Mentioned the "Makefile" as prefered method.
+
+ * Releasenotes.txt: Drafted an announcement and notes for 1.2.1.
+
+ * po/*: Run the update (basically a date change)
+
2008-01-29 Bernhard Reiter <bernhard at intevation.de>
* NEWS: Updated changes up to upcoming release 1.2.1.
Modified: trunk/thuban/Doc/manual/README
===================================================================
--- trunk/thuban/Doc/manual/README 2008-01-29 19:08:21 UTC (rev 2820)
+++ trunk/thuban/Doc/manual/README 2008-01-29 23:18:17 UTC (rev 2821)
@@ -5,8 +5,10 @@
The manual is written using DocBook XML. To convert to other formats use
-the docbook tools. Examples:
+the docbook tools. The Makefile has targets defined.
+Examples for manual use:
+
Convert to PostScript (the output will be manual.ps)
$ db2ps manual.xml
Modified: trunk/thuban/README
===================================================================
--- trunk/thuban/README 2008-01-29 19:08:21 UTC (rev 2820)
+++ trunk/thuban/README 2008-01-29 23:18:17 UTC (rev 2821)
@@ -85,7 +85,13 @@
you have to build the message catalogs manually before you run setup.py.
See po/README for more information.
+There are a number of automated tests that will check a great
+deal of Thuban's funcationality. See test/README for details.
+You should consider running them.
+Thuban has a nice manual, go to the "Doc/manual" and try "make".
+
+
Build Troubleshooting
---------------------
@@ -123,6 +129,8 @@
all interesting extensions. Administrators should edit this files to their
need, e.g. when they want to not show some extensions by default.
+Choose a format of the manual you want to install with the package.
+
License
-------
Modified: trunk/thuban/Releasenotes.txt
===================================================================
--- trunk/thuban/Releasenotes.txt 2008-01-29 19:08:21 UTC (rev 2820)
+++ trunk/thuban/Releasenotes.txt 2008-01-29 23:18:17 UTC (rev 2821)
@@ -1,5 +1,43 @@
$Rev$
+Release Notes for Thuban-1.2.1 (released 2008-xx-xx)
+````````````````````````````````````````````````````
+
+Announcement Thuban 1.2.1
+
+Bringing out to light what was hidden -
+is a fitting motto of this maintenance release. Thuban had a few interesting
+Extensions, but if users saw them depended on their customisation. Now
+all Extensions can be enabled per installation. Not all of these gems
+have been fully brought back to life. With ogr you can still open up
+all formats this powerful library can read. Wms currently needs a makeover
+which is on the list for the next release. Of course a number of defects
+have been fixed. The Thuban 1.2.x series seems a little less stable then
+usual because of the way we are half way there to fully support unicode
+internally. But thanks to our users, all reports help us to iron out
+the problems! Thanks to all you have send us feedback!
+
+Bernhard Reiter
+Didrik Pinte
+
+
+Notable issues:
+ - Extension OGR:
+ - Two tests fail (probably because of an ogr/shapelib problem.)
+ https://wald.intevation.org/tracker/index.php?func=detail&aid=91
+ The failure looks harmless. As the ogr layer support is beta
+ it did not block the release.
+ - Is slower than native Shapefile support.
+ - Classification might not work.
+ - Extension WMS: probably does not work correctly, thus it is disabled
+ in Thuban/thuban_cfg.py.
+ - Extension profiling: makes use of a non-free "profile" module which
+ therefor will not be available on all python installations. Consequently
+ it is also not enabled by default.
+ - Because we enabled translations for the Extensions only recently,
+ some translations will be outdated more then usual.
+
+
Release Notes for Thuban-1.2.0 (released 2007-03-13)
````````````````````````````````````````````````````
Modified: trunk/thuban/Thuban/UI/about.py
===================================================================
--- trunk/thuban/Thuban/UI/about.py 2008-01-29 19:08:21 UTC (rev 2820)
+++ trunk/thuban/Thuban/UI/about.py 2008-01-29 23:18:17 UTC (rev 2821)
@@ -147,7 +147,7 @@
text_title = wx.StaticText(self, -1,
_("Thuban is a program for exploring geographic data.\n\n") +
- "Copyright 2001-2007 Intevation GmbH.\n" +
+ "Copyright 2001-2008 Intevation GmbH.\n" +
_("Thuban is licensed under the GNU GPL v>=2"),
style=wx.ST_NO_AUTORESIZE|wx.ALIGN_CENTRE)
Modified: trunk/thuban/Thuban/version.py
===================================================================
--- trunk/thuban/Thuban/version.py 2008-01-29 19:08:21 UTC (rev 2820)
+++ trunk/thuban/Thuban/version.py 2008-01-29 23:18:17 UTC (rev 2821)
@@ -41,7 +41,7 @@
#
thuban_branch = "1.2"
-thuban_release = "svn"
+thuban_release = "1"
Modified: trunk/thuban/po/de.po
===================================================================
--- trunk/thuban/po/de.po 2008-01-29 19:08:21 UTC (rev 2820)
+++ trunk/thuban/po/de.po 2008-01-29 23:18:17 UTC (rev 2821)
@@ -8,7 +8,7 @@
msgstr ""
"Project-Id-Version: Thuban 1.2\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-01-27 23:25+0000\n"
+"POT-Creation-Date: 2008-01-29 23:03+0000\n"
"PO-Revision-Date: 2008-01-28 00:35+0100\n"
"Last-Translator: Bernhard Reiter <bernhard at intevation.de>\n"
"Language-Team: Thuban Development List <thuban-devel at intevation.de>\n"
@@ -1905,8 +1905,8 @@
#: ../Extensions/bboxdump/bboxdump.py:196
msgid "Dump bounding boxes of selected shapes ..."
-msgstr "Schreibe Ausdehnungsbereiche ('bounding-boxes') "
-"von ausgewählen 'shapes' ..."
+msgstr ""
+"Schreibe Ausdehnungsbereiche ('bounding-boxes') von ausgewählen 'shapes' ..."
#: ../Extensions/bboxdump/bboxdump.py:238
msgid "BBox Dump"
Modified: trunk/thuban/po/es.po
===================================================================
--- trunk/thuban/po/es.po 2008-01-29 19:08:21 UTC (rev 2820)
+++ trunk/thuban/po/es.po 2008-01-29 23:18:17 UTC (rev 2821)
@@ -9,7 +9,7 @@
msgstr ""
"Project-Id-Version: Thuban 1.2\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-01-27 23:25+0000\n"
+"POT-Creation-Date: 2008-01-29 23:03+0000\n"
"PO-Revision-Date: 2007-11-29 22:57-0500\n"
"Last-Translator: Daniel Calvelo Aros <dcalvelo at gmail.com>\n"
"Language-Team: Thuban <thuban-devel at intevation.de>\n"
Modified: trunk/thuban/po/fr.po
===================================================================
--- trunk/thuban/po/fr.po 2008-01-29 19:08:21 UTC (rev 2820)
+++ trunk/thuban/po/fr.po 2008-01-29 23:18:17 UTC (rev 2821)
@@ -9,7 +9,7 @@
msgstr ""
"Project-Id-Version: Thuban 1.2\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-01-27 23:25+0000\n"
+"POT-Creation-Date: 2008-01-29 23:03+0000\n"
"PO-Revision-Date: 2008-01-21 11:11+0100\n"
"Last-Translator: Didrik Pinte <dpinte at itae.be>\n"
"Language-Team: Thuban developers <thuban-devel at intevation.de>\n"
Modified: trunk/thuban/po/hu.po
===================================================================
--- trunk/thuban/po/hu.po 2008-01-29 19:08:21 UTC (rev 2820)
+++ trunk/thuban/po/hu.po 2008-01-29 23:18:17 UTC (rev 2821)
@@ -7,7 +7,7 @@
msgstr ""
"Project-Id-Version: Thuban 1.2\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-01-27 23:25+0000\n"
+"POT-Creation-Date: 2008-01-29 23:03+0000\n"
"PO-Revision-Date: 2004-11-09 11:31+0100\n"
"Last-Translator: Solymosi Norbert <Solymosi.Norbert at aotk.szie.hu>\n"
"Language-Team: hungarian <Solymosi.Norbert at aotk.szie.hu>\n"
Modified: trunk/thuban/po/it.po
===================================================================
--- trunk/thuban/po/it.po 2008-01-29 19:08:21 UTC (rev 2820)
+++ trunk/thuban/po/it.po 2008-01-29 23:18:17 UTC (rev 2821)
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: Thuban 1.2t\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-01-27 23:25+0000\n"
+"POT-Creation-Date: 2008-01-29 23:03+0000\n"
"PO-Revision-Date: 2003-12-22 23:09+0100\n"
"Last-Translator: Maurizio Napolitano <napo at itc.it>\n"
"Language-Team: Thuban Developers Mailinglist <thuban-devel at intevation.de>\n"
Modified: trunk/thuban/po/pt_BR.po
===================================================================
--- trunk/thuban/po/pt_BR.po 2008-01-29 19:08:21 UTC (rev 2820)
+++ trunk/thuban/po/pt_BR.po 2008-01-29 23:18:17 UTC (rev 2821)
@@ -9,7 +9,7 @@
msgstr ""
"Project-Id-Version: Thuban 1.2\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-01-27 23:25+0000\n"
+"POT-Creation-Date: 2008-01-29 23:03+0000\n"
"PO-Revision-Date: 2004-01-15 16:07+0300\n"
"Last-Translator: Eduardo Patto Kanegae <eduardo at consultoria.eti.br>\n"
"Language-Team: Thuban Developers Mailinglist <thuban-devel at intevation.de>\n"
Modified: trunk/thuban/po/ru.po
===================================================================
--- trunk/thuban/po/ru.po 2008-01-29 19:08:21 UTC (rev 2820)
+++ trunk/thuban/po/ru.po 2008-01-29 23:18:17 UTC (rev 2821)
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: Thuban 1.2\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-01-27 23:25+0000\n"
+"POT-Creation-Date: 2008-01-29 23:03+0000\n"
"PO-Revision-Date: 2003-12-26 12:00+0400\n"
"Last-Translator: Alex Shevlakov <alex at motivation.ru>\n"
"Language-Team: RU\n"
Modified: trunk/thuban/setup.py
===================================================================
--- trunk/thuban/setup.py 2008-01-29 19:08:21 UTC (rev 2820)
+++ trunk/thuban/setup.py 2008-01-29 23:18:17 UTC (rev 2821)
@@ -1168,7 +1168,7 @@
"""
setup(name = "Thuban",
- version = "1.2.0+svn",
+ version = "1.2.1",
description = "Geographic data viewer",
long_description = long_description,
license = "GPL",
More information about the Thuban-commits
mailing list