[maemo-commits] [maemo-commits] r12038 - in projects/haf/trunk/hildon-1: . debian

From: subversion at stage.maemo.org subversion at stage.maemo.org
Date: Fri Jun 1 15:52:56 EEST 2007
Author: mdk
Date: 2007-06-01 15:52:55 +0300 (Fri, 01 Jun 2007)
New Revision: 12038

Modified:
   projects/haf/trunk/hildon-1/ChangeLog
   projects/haf/trunk/hildon-1/NEWS
   projects/haf/trunk/hildon-1/configure.ac
   projects/haf/trunk/hildon-1/debian/changelog
Log:
[1.0.8-1 release]


Modified: projects/haf/trunk/hildon-1/ChangeLog
===================================================================
--- projects/haf/trunk/hildon-1/ChangeLog	2007-06-01 12:38:29 UTC (rev 12037)
+++ projects/haf/trunk/hildon-1/ChangeLog	2007-06-01 12:52:55 UTC (rev 12038)
@@ -1,5 +1,13 @@
 2007-06-01  Michael Dominic Kostrzewa  <michael.kostrzewa at nokia.com> 
 
+	[1.0.8-1 release]
+
+	* NEWS:
+	* configure.ac:
+	* debian/changelog: Updating.
+
+2007-06-01  Michael Dominic Kostrzewa  <michael.kostrzewa at nokia.com> 
+
 	* src/hildon-window.c: When destroying the window, remove (if exists) the
 	escape timeout handler. Fixes #NB59276.
 

Modified: projects/haf/trunk/hildon-1/NEWS
===================================================================
--- projects/haf/trunk/hildon-1/NEWS	2007-06-01 12:38:29 UTC (rev 12037)
+++ projects/haf/trunk/hildon-1/NEWS	2007-06-01 12:52:55 UTC (rev 12038)
@@ -1,3 +1,9 @@
+[1.0.8-1 release]
+* HildonBanner fixes for transiency
+* InfoBanner fixes
+* Updated examples 
+* A few other fixes in few places 
+
 [1.0.7-1 release]
 * Adding the gtk-timeout-update multiplier  to certain widgets
 

Modified: projects/haf/trunk/hildon-1/configure.ac
===================================================================
--- projects/haf/trunk/hildon-1/configure.ac	2007-06-01 12:38:29 UTC (rev 12037)
+++ projects/haf/trunk/hildon-1/configure.ac	2007-06-01 12:52:55 UTC (rev 12038)
@@ -1,4 +1,4 @@
-AC_INIT([Hildon gtk widgets], [1.0.7], [michael.kostrzewa at nokia.com], [hildon])
+AC_INIT([Hildon gtk widgets], [1.0.8], [michael.kostrzewa at nokia.com], [hildon])
 AC_CANONICAL_SYSTEM
 
 AM_CONFIG_HEADER(config.h)
@@ -21,7 +21,7 @@
 #    increment current, and set revision to 0.
 # 5. If any interfaces have been added since the last public release, then increment age.
 # 6. If any interfaces have been removed since the last public release, then set age to 0.  
-AS_LIBTOOL(HILDON, 7, 0, 7)
+AS_LIBTOOL(HILDON, 8, 0, 8)
 AM_INIT_AUTOMAKE
 
 AC_PROG_CC
@@ -137,23 +137,23 @@
 fi
 
 # build with relaxed flags or not
-AC_ARG_ENABLE(xan, 
-    AC_HELP_STRING([--enable-xan], [Build with relaxed warning settings]),
+AC_ARG_ENABLE(fatal, 
+    AC_HELP_STRING([--enable-fatal], [Build with fatal warnings]),
     [
      case "${enableval}" in
-         yes) BUILD_WITH_XAN=yes ;;
-         no)  BUILD_WITH_XAN=no ;;
-         *)   AC_MSG_ERROR(bad value ${enableval} for --enable-xan) ;;
+         yes) BUILD_WITH_FATAL=yes ;;
+         no)  BUILD_WITH_FATAL=no ;;
+         *)   AC_MSG_ERROR(bad value ${enableval} for --enable-fatal) ;;
      esac],
-     [BUILD_WITH_XAN=no])
+     [BUILD_WITH_FATAL=no])
 
 # just print out our status
 if test x$BUILD_WITH_XAN = xyes; then
-    AC_MSG_NOTICE(Will build with relaxed warning settings)
+    AC_MSG_NOTICE(Will build with fatal warnings)
+    XAN_CFLAGS="-Werror"
+else
+    AC_MSG_NOTICE(Will build with non-fatal warnings)
     XAN_CFLAGS=""
-else
-    AC_MSG_NOTICE(Will build with strict warning settings)
-    XAN_CFLAGS="-Werror"
 fi
 
 # Check support (c unit test)
@@ -199,6 +199,6 @@
 - Build examples.....: ${BUILD_EXAMPLES}
 - Build with asserts.: ${BUILD_WITH_ASSERTS}
 - Build unit tests...: ${BUILD_TESTS}
-- Allow warnings.....: ${BUILD_WITH_XAN}
+- Fatal warnings.....: ${BUILD_WITH_FATAL}
 
 "

Modified: projects/haf/trunk/hildon-1/debian/changelog
===================================================================
--- projects/haf/trunk/hildon-1/debian/changelog	2007-06-01 12:38:29 UTC (rev 12037)
+++ projects/haf/trunk/hildon-1/debian/changelog	2007-06-01 12:52:55 UTC (rev 12038)
@@ -1,3 +1,24 @@
+libhildon (1.0.8-1) stable; urgency=low
+
+  * Breadcrumb fixes
+  * HildonBanner fixes for transiency 
+  * Updated examples
+
+  * Fixes: NB#56434 Name of the month truncates in the Date & Time page in the startup wizard.
+  * Fixes: NB#54127 The arrow heads of Calendar popup vanish(except the one that is tapped) when tapped on one of the arrows of month or year.
+  * Fixes: NB#50288 Box remains on the am/pm indicator of the Date and Time Settings dialog.
+  * Fixes: NB#56082 HildonCalendarpopup:Sliding sylus to a dimmed date changes the year to 1970
+  * Fixes: NB#54147 Hildon calendar popup:The range checks for the years are not consistent.
+  * Fixes: NB#41501 Last line of text in preview dialog is not shown properly when bold and maximum font is selected
+  * Fixes: NB#38955 Inconsistent behaviour observed when 2 instances of date and time applet are open.
+  * Fixes: NB#52379 HildonCaption won't accept focus when it contains a complex widget tree
+  * Fixes: NB#56624 "Searching" info note displayed even after minimizing the search window
+  * Fixes: NB#59276 Escape timeout handler is not removed when HildonWindow is deleted.
+  * Fixes: NB#55161 Refreshing library is shown on top of other applications 
+  * Fixes: NB#58982 HildonBreadcrumbtrail:Pressing Esc key does not show any effect
+
+ -- Michael Dominic Kostrzewa <michael.kostrzewa at nokia.com>  Fri, 01 Jun 2007 15:43:59 +0300
+
 libhildon (1.0.7-1) stable; urgency=low
 
   * Fixed at some point in the past, but adding here:


More information about the maemo-commits mailing list