[maemo-commits] [maemo-commits] r12399 - in projects/haf/trunk/hildon-fm: . debian hildon-fm
From: subversion at stage.maemo.org subversion at stage.maemo.orgDate: Wed Jun 20 10:43:14 EEST 2007
- Previous message: [maemo-commits] r12398 - in projects/haf/trunk/hildon-desktop: . libhildondesktop
- Next message: [maemo-commits] r12400 - projects/haf/trunk/libhildonmime
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Author: richard Date: 2007-06-20 10:43:10 +0300 (Wed, 20 Jun 2007) New Revision: 12399 Modified: projects/haf/trunk/hildon-fm/ChangeLog projects/haf/trunk/hildon-fm/configure.ac projects/haf/trunk/hildon-fm/debian/changelog projects/haf/trunk/hildon-fm/hildon-fm/hildon-file-system-private.c Log: Fix NB#59746. Modified: projects/haf/trunk/hildon-fm/ChangeLog =================================================================== --- projects/haf/trunk/hildon-fm/ChangeLog 2007-06-19 17:45:15 UTC (rev 12398) +++ projects/haf/trunk/hildon-fm/ChangeLog 2007-06-20 07:43:10 UTC (rev 12399) @@ -1,3 +1,15 @@ +2007-06-20 Richard Hult <richard at imendio.com> + + * configure.ac: Bump version. + +2007-06-20 Carlos Garnacho <carlos at imendio.com> + + * hildon-fm/hildon-file-system-private.c + (_hildon_file_system_get_locations): Make the root filesystem node + to have the uri file:///, this way + hildon_file_system_model_load_path() will create the correct node + hierarchy on top of it when no node is found (NB59746). + 2007-06-19 Kimmo Hämäläinen <kimmo.hamalainen at nokia.com> Released 1.9.31 Modified: projects/haf/trunk/hildon-fm/configure.ac =================================================================== --- projects/haf/trunk/hildon-fm/configure.ac 2007-06-19 17:45:15 UTC (rev 12398) +++ projects/haf/trunk/hildon-fm/configure.ac 2007-06-20 07:43:10 UTC (rev 12399) @@ -1,5 +1,5 @@ AC_INIT(hildon-fm/hildon-file-system-model.c) -AM_INIT_AUTOMAKE(libhildonfm, 1.9.29) +AM_INIT_AUTOMAKE(libhildonfm, 1.9.32) AM_CONFIG_HEADER(config.h) AC_CANONICAL_HOST Modified: projects/haf/trunk/hildon-fm/debian/changelog =================================================================== --- projects/haf/trunk/hildon-fm/debian/changelog 2007-06-19 17:45:15 UTC (rev 12398) +++ projects/haf/trunk/hildon-fm/debian/changelog 2007-06-20 07:43:10 UTC (rev 12399) @@ -1,3 +1,9 @@ +libhildonfm (1:1.9.32) unstable; urgency=low + + * Fixes: NB#59746. MP crashed when tapping on details from Clip menu. + + -- Ricahrd Hult <richard at imendio.com> Wed, 20 Jun 2007 09:38:17 +0200 + libhildonfm (1:1.9.31) unstable; urgency=low * Fix icons and localised names for drives. Modified: projects/haf/trunk/hildon-fm/hildon-fm/hildon-file-system-private.c =================================================================== --- projects/haf/trunk/hildon-fm/hildon-fm/hildon-file-system-private.c 2007-06-19 17:45:15 UTC (rev 12398) +++ projects/haf/trunk/hildon-fm/hildon-fm/hildon-file-system-private.c 2007-06-20 07:43:10 UTC (rev 12399) @@ -153,7 +153,7 @@ above everything else */ location = g_object_new (HILDON_TYPE_FILE_SYSTEM_ROOT, NULL); - location->basepath = g_strdup (""); + location->basepath = g_strdup ("file:///"); locations = g_node_new (location); rootpath = get_local_device_root_path();
- Previous message: [maemo-commits] r12398 - in projects/haf/trunk/hildon-desktop: . libhildondesktop
- Next message: [maemo-commits] r12400 - projects/haf/trunk/libhildonmime
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]