From ddd548c653cde334262f54d58a91aa4d49160323 Mon Sep 17 00:00:00 2001 From: Grover Jackson <135006+cdmdotnet@users.noreply.github.com> Date: Fri, 13 Mar 2026 09:36:50 +1300 Subject: [PATCH 1/5] nemo-window: Add dual-pane layout options (vertical split, separate sidebars, separate nav bars) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Three new preferences in Preferences > Behavior > Dual Pane: - "Show panes vertically (one above the other)" [dual-pane-vertical-split] Switches the split-view HPaned to a VPaned so panes stack top/bottom instead of side by side. - "Separate sidebar per pane" [dual-pane-separate-sidebar] Requires vertical split. Each pane gets its own Places/Tree sidebar, allowing the second pane's sidebar to track its own location without needing to change focus first. Sidebar type (Places/Tree) and visibility remain global toggles. - "Separate path bar / location entry per pane" [dual-pane-separate-nav-bar] Requires vertical split. Each pane embeds its own toolbar (path bar and location entry) above its tab strip. Toggle Location Entry, clicking the path bar to switch to location entry, and Go menu / bookmarks all operate on the focused pane only. "Always start in dual-pane view" is moved into the new Dual Pane section. Implementation: - GSettings schema: 3 new bool keys in org.nemo.preferences (default false) - Layout: pri_paned/sec_paned wrapper HPaneds hold sidebar+pane columns when separate-sidebar is active; torn down cleanly on pref change or split-view-off - Sidebar: NemoPlacesSidebar and FMTreeView accept an optional NemoWindowPane* to filter loading-uri signals to their own pane - Toolbar: nemo_window_pane_embed/detach_toolbar reparents the toolbar into/out of the pane widget for per-pane nav bar mode - CSS: .nemo-active-sidebar / .nemo-inactive-pane classes colour each sidebar to match its pane's active/inactive state - Path bar callbacks: right-click, middle-click, and location-entry toggle all route to pane->active_slot (not the window's active slot) - Destroy order: pane1 wrapper → sidebar2 → sidebar → panes (all paths) Tests: - test/test-dual-pane-schema.c: 9 GSettings unit tests verifying the three new keys exist with correct schema defaults and round-trip correctly; runs without a display or D-Bus session --- .gitignore | 3 + debian/changelog | 11 + .../nemo-file-management-properties.glade | 115 +- gresources/nemo-style-fallback-mandatory.css | 13 + libnemo-private/nemo-global-preferences.h | 3 + libnemo-private/org.nemo.gschema.xml | 15 + meson.build | 2 +- src/nemo-file-management-properties.c | 55 + src/nemo-places-sidebar.c | 40 +- src/nemo-places-sidebar.h | 7 +- src/nemo-tree-sidebar.c | 43 +- src/nemo-tree-sidebar.h | 6 +- src/nemo-window-pane.c | 132 +- src/nemo-window-pane.h | 2 + src/nemo-window-private.h | 9 + src/nemo-window.c | 857 ++++++++++- test/meson.build | 46 + test/test-dual-pane-schema.c | 192 +++ test/test-dual-pane.c | 1277 +++++++++++++++++ 19 files changed, 2780 insertions(+), 48 deletions(-) create mode 100644 test/test-dual-pane-schema.c create mode 100644 test/test-dual-pane.c diff --git a/.gitignore b/.gitignore index 2a64eee33e..d7475ecfec 100644 --- a/.gitignore +++ b/.gitignore @@ -9,12 +9,15 @@ .project .metadata bin/** +pkg/** tmp/** tmp/**/* *.tmp *.bak *.swp *~.nib +*.sh +*.deb local.properties .classpath .settings/ diff --git a/debian/changelog b/debian/changelog index c38222ba8c..eb834274fa 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,14 @@ +nemo (6.6.4) zena; urgency=medium + + [ cdmdotnet Limited ] + * Dual-pane enhancements: vertical split mode (panes stacked one above + the other), separate sidebar per pane, separate Path Bar / Location + Entry per pane. All options default to off, preserving existing + behaviour when not enabled. New preferences exposed in a dedicated + Dual Pane section of the Behaviour tab. + + -- Nemo User Sat, 14 Mar 2026 00:00:00 +0000 + nemo (6.6.3) zena; urgency=medium [ Michael Webster ] diff --git a/gresources/nemo-file-management-properties.glade b/gresources/nemo-file-management-properties.glade index 02b8e4cb4c..9df8fee7d7 100644 --- a/gresources/nemo-file-management-properties.glade +++ b/gresources/nemo-file-management-properties.glade @@ -1239,6 +1239,70 @@ along with . If not, see . 2 + + + Automatically expand rows during drag-and-drop + True + True + False + True + 0 + True + + + False + False + 3 + + + + + + + False + False + 1 + + + + + False + True + 1 + + + + + True + False + 6 + vertical + 6 + + + True + False + <b>Dual Pane</b> + True + 0 + + + False + False + 0 + + + + + True + False + 40 + + + True + False + vertical + 6 Always start in dual-pane view @@ -1252,13 +1316,12 @@ along with . If not, see . False False - 3 - 3 + 0 - - Automatically expand rows during drag-and-drop + + Show panes vertically - one above the other True True False @@ -1269,7 +1332,39 @@ along with . If not, see . False False - 4 + 1 + + + + + Separate sidebar per pane + True + True + False + True + 0 + True + + + False + False + 2 + + + + + Separate Path Bar/Location Entry per pane + True + True + False + True + 0 + True + + + False + False + 3 @@ -1285,7 +1380,7 @@ along with . If not, see . False True - 1 + 2 @@ -1384,7 +1479,7 @@ along with . If not, see . False True - 2 + 3 @@ -1495,7 +1590,7 @@ along with . If not, see . False True - 3 + 4 @@ -1623,7 +1718,7 @@ along with . If not, see . False True - 4 + 5 @@ -1710,7 +1805,7 @@ along with . If not, see . False True - 5 + 6 diff --git a/gresources/nemo-style-fallback-mandatory.css b/gresources/nemo-style-fallback-mandatory.css index d559e6fa23..529f44185a 100644 --- a/gresources/nemo-style-fallback-mandatory.css +++ b/gresources/nemo-style-fallback-mandatory.css @@ -34,3 +34,16 @@ color: @theme_selected_fg_color; background-color: @theme_selected_bg_color; } + +/* Per-pane sidebar colouring (dual-pane mode with separate sidebars). + * + * When two sidebars are shown, the ACTIVE sidebar box has GTK_STYLE_CLASS_SIDEBAR + * removed by sidebar_set_active_style() so the theme's grey .sidebar rules no + * longer apply — it simply uses the normal window background. + * + * The INACTIVE sidebar keeps GTK_STYLE_CLASS_SIDEBAR (grey) and also gets + * "nemo-inactive-pane" so the rule below greys its treeview rows explicitly. + * (The existing rule at the top of this file handles .nemo-inactive-pane .view.) + * + * No additional CSS rules are needed here for the active sidebar. + */ diff --git a/libnemo-private/nemo-global-preferences.h b/libnemo-private/nemo-global-preferences.h index 576a4616de..216f32de04 100644 --- a/libnemo-private/nemo-global-preferences.h +++ b/libnemo-private/nemo-global-preferences.h @@ -137,6 +137,9 @@ typedef enum #define NEMO_PREFERENCES_CLOSE_DEVICE_VIEW_ON_EJECT "close-device-view-on-device-eject" #define NEMO_PREFERENCES_START_WITH_DUAL_PANE "start-with-dual-pane" +#define NEMO_PREFERENCES_DUAL_PANE_VERTICAL_SPLIT "dual-pane-vertical-split" +#define NEMO_PREFERENCES_DUAL_PANE_SEPARATE_SIDEBAR "dual-pane-separate-sidebar" +#define NEMO_PREFERENCES_DUAL_PANE_SEPARATE_NAV_BAR "dual-pane-separate-nav-bar" #define NEMO_PREFERENCES_IGNORE_VIEW_METADATA "ignore-view-metadata" #define NEMO_PREFERENCES_SHOW_BOOKMARKS_IN_TO_MENUS "show-bookmarks-in-to-menus" #define NEMO_PREFERENCES_SHOW_PLACES_IN_TO_MENUS "show-places-in-to-menus" diff --git a/libnemo-private/org.nemo.gschema.xml b/libnemo-private/org.nemo.gschema.xml index a43065d356..79727a9121 100644 --- a/libnemo-private/org.nemo.gschema.xml +++ b/libnemo-private/org.nemo.gschema.xml @@ -346,6 +346,21 @@ Whether to default to showing dual-pane view when a new window is opened If set to true, new Nemo windows will default to showing two panes + + false + Whether to show dual panes vertically (one above the other) + If set to true, dual-pane view will show one pane above the other instead of side by side + + + false + Whether each pane has its own sidebar + If set to true, each pane in dual-pane view will have its own independent sidebar + + + false + Whether each pane has its own path bar / location entry + If set to true, each pane in dual-pane view will have its own independent navigation bar + false Whether to ignore folder metadata for view zoom levels and layouts diff --git a/meson.build b/meson.build index 2271e7511a..9c52d68177 100644 --- a/meson.build +++ b/meson.build @@ -1,7 +1,7 @@ # Meson build file # https://github.com/linuxmint/nemo -project('nemo', 'c', version : '6.6.3', meson_version : '>=0.56.0') +project('nemo', 'c', version : '6.6.4', meson_version : '>=0.56.0') # 1. If the library code has changed at all since last release, then increment revision. # 2. If any interfaces have been added, then increment current and set revision to 0. diff --git a/src/nemo-file-management-properties.c b/src/nemo-file-management-properties.c index d0a1958e1d..7e8f5c2d1b 100644 --- a/src/nemo-file-management-properties.c +++ b/src/nemo-file-management-properties.c @@ -99,6 +99,9 @@ #define NEMO_FILE_MANAGEMENT_PROPERTIES_DETECT_CONTENT_MEDIA_WIDGET "media_detect_content_checkbutton" #define NEMO_FILE_MANAGEMENT_PROPERTIES_SHOW_ADVANCED_PERMISSIONS_WIDGET "show_advanced_permissions_checkbutton" #define NEMO_FILE_MANAGEMENT_PROPERTIES_START_WITH_DUAL_PANE_WIDGET "start_with_dual_pane_checkbutton" +#define NEMO_FILE_MANAGEMENT_PROPERTIES_DUAL_PANE_VERTICAL_SPLIT_WIDGET "dual_pane_vertical_split_checkbutton" +#define NEMO_FILE_MANAGEMENT_PROPERTIES_DUAL_PANE_SEPARATE_SIDEBAR_WIDGET "dual_pane_separate_sidebar_checkbutton" +#define NEMO_FILE_MANAGEMENT_PROPERTIES_DUAL_PANE_SEPARATE_NAV_BAR_WIDGET "dual_pane_separate_nav_bar_checkbutton" #define NEMO_FILE_MANAGEMENT_PROPERTIES_IGNORE_VIEW_METADATA_WIDGET "ignore_view_metadata_checkbutton" #define NEMO_FILE_MANAGEMENT_PROPERTIES_BOOKMARKS_IN_TO_MENUS_WIDGET "bookmarks_in_to_checkbutton" #define NEMO_FILE_MANAGEMENT_PROPERTIES_PLACES_IN_TO_MENUS_WIDGET "places_in_to_checkbutton" @@ -772,6 +775,43 @@ setup_configurable_menu_items (GtkBuilder *builder) } } +/* When "Show panes vertically" is off, the two dependent options + * (separate sidebar, separate nav bar) are meaningless -- they only + * apply to vertical split mode. Disable and uncheck them whenever + * the vertical-split toggle is off. + */ +static void +setup_dual_pane_sensitivity (GtkBuilder *builder) +{ + gboolean vertical = + gtk_toggle_button_get_active ( + GTK_TOGGLE_BUTTON (W (NEMO_FILE_MANAGEMENT_PROPERTIES_DUAL_PANE_VERTICAL_SPLIT_WIDGET))); + + GtkWidget *sep_sidebar = + GTK_WIDGET (W (NEMO_FILE_MANAGEMENT_PROPERTIES_DUAL_PANE_SEPARATE_SIDEBAR_WIDGET)); + GtkWidget *sep_nav = + GTK_WIDGET (W (NEMO_FILE_MANAGEMENT_PROPERTIES_DUAL_PANE_SEPARATE_NAV_BAR_WIDGET)); + + if (!vertical) { + /* Turn off and grey out the dependent options */ + gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (sep_sidebar), FALSE); + gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (sep_nav), FALSE); + } + + gtk_widget_set_sensitive (sep_sidebar, vertical); + gtk_widget_set_sensitive (sep_nav, vertical); +} + +static void +connect_dual_pane_sensitivity (GtkBuilder *builder) +{ + g_signal_connect_swapped ( + GTK_TOGGLE_BUTTON (W (NEMO_FILE_MANAGEMENT_PROPERTIES_DUAL_PANE_VERTICAL_SPLIT_WIDGET)), + "toggled", + G_CALLBACK (setup_dual_pane_sensitivity), + builder); +} + static void setup_tooltip_items (GtkBuilder *builder) { @@ -1067,6 +1107,18 @@ nemo_file_management_properties_dialog_setup (GtkBuilder *builder, NEMO_FILE_MANAGEMENT_PROPERTIES_START_WITH_DUAL_PANE_WIDGET, NEMO_PREFERENCES_START_WITH_DUAL_PANE); + bind_builder_bool (builder, nemo_preferences, + NEMO_FILE_MANAGEMENT_PROPERTIES_DUAL_PANE_VERTICAL_SPLIT_WIDGET, + NEMO_PREFERENCES_DUAL_PANE_VERTICAL_SPLIT); + + bind_builder_bool (builder, nemo_preferences, + NEMO_FILE_MANAGEMENT_PROPERTIES_DUAL_PANE_SEPARATE_SIDEBAR_WIDGET, + NEMO_PREFERENCES_DUAL_PANE_SEPARATE_SIDEBAR); + + bind_builder_bool (builder, nemo_preferences, + NEMO_FILE_MANAGEMENT_PROPERTIES_DUAL_PANE_SEPARATE_NAV_BAR_WIDGET, + NEMO_PREFERENCES_DUAL_PANE_SEPARATE_NAV_BAR); + bind_builder_bool (builder, nemo_preferences, NEMO_FILE_MANAGEMENT_PROPERTIES_IGNORE_VIEW_METADATA_WIDGET, NEMO_PREFERENCES_IGNORE_VIEW_METADATA); @@ -1127,6 +1179,9 @@ nemo_file_management_properties_dialog_setup (GtkBuilder *builder, NEMO_FILE_MANAGEMENT_PROPERTIES_SHOW_LIST_VIEW_EXPANDERS_WIDGET, NEMO_PREFERENCES_LIST_VIEW_ENABLE_EXPANSION); + setup_dual_pane_sensitivity (builder); + connect_dual_pane_sensitivity (builder); + setup_tooltip_items (builder); connect_tooltip_items (builder); diff --git a/src/nemo-places-sidebar.c b/src/nemo-places-sidebar.c index 564b30d15a..6a7ad608a7 100644 --- a/src/nemo-places-sidebar.c +++ b/src/nemo-places-sidebar.c @@ -61,12 +61,14 @@ #include "nemo-places-sidebar.h" #include "nemo-properties-window.h" #include "nemo-window.h" +#include "nemo-window-pane.h" #include "nemo-window-slot.h" #define DEBUG_FLAG NEMO_DEBUG_PLACES #include #define EXPANDER_PAD_COLUMN_WIDTH 4 + #define EJECT_COLUMN_MIN_WIDTH 22 #define EJECT_COLUMN_MAX_WIDTH 60 #define DRAG_EXPAND_CATEGORY_DELAY 500 @@ -92,6 +94,7 @@ typedef struct { GtkTreeModel *store_filter; NemoWindow *window; + NemoWindowPane *pane; /* NULL = track active pane; non-NULL = locked to this pane */ NemoBookmarkList *bookmarks; GVolumeMonitor *volume_monitor; @@ -163,6 +166,16 @@ typedef struct { GObjectClass parent; } NemoPlacesSidebarProviderClass; +/* Return the slot for this sidebar - pane->active_slot if pane-locked, else window active slot */ +static NemoWindowSlot * +sidebar_get_slot (NemoPlacesSidebar *sidebar) +{ + if (sidebar->pane != NULL) { + return sidebar->pane->active_slot; + } + return nemo_window_get_active_slot (sidebar->window); +} + enum { PLACES_SIDEBAR_COLUMN_ROW_TYPE, PLACES_SIDEBAR_COLUMN_URI, @@ -768,7 +781,7 @@ update_places (NemoPlacesSidebar *sidebar) sidebar->devices_header_added = FALSE; sidebar->bookmarks_header_added = FALSE; - slot = nemo_window_get_active_slot (sidebar->window); + slot = sidebar_get_slot (sidebar); location = nemo_window_slot_get_current_uri (slot); network_mounts = network_volumes = NULL; @@ -1464,6 +1477,15 @@ loading_uri_callback (NemoWindow *window, NemoPlacesSidebar *sidebar) { GtkTreeSelection *selection; + + /* If this sidebar is locked to a specific pane, only update when + * the loading slot belongs to that pane */ + if (sidebar->pane != NULL) { + NemoWindowSlot *active = sidebar_get_slot (sidebar); + if (active == NULL || g_strcmp0 (nemo_window_slot_get_current_uri (active), location) != 0) { + return; + } + } GtkTreeIter iter_cat, iter_child; gboolean valid_cat, valid_child; char *uri; @@ -2505,7 +2527,7 @@ open_selected_bookmark (NemoPlacesSidebar *sidebar, location = g_file_new_for_uri (uri); /* Navigate to the clicked location */ if ((flags & NEMO_WINDOW_OPEN_FLAG_NEW_WINDOW) == 0) { - slot = nemo_window_get_active_slot (sidebar->window); + slot = sidebar_get_slot (sidebar); nemo_window_slot_open_location (slot, location, flags); } else { NemoWindow *cur, *new; @@ -2533,7 +2555,7 @@ open_selected_bookmark (NemoPlacesSidebar *sidebar, g_assert (sidebar->go_to_after_mount_slot == NULL); - slt = nemo_window_get_active_slot (sidebar->window); + slt = sidebar_get_slot (sidebar); sidebar->go_to_after_mount_slot = slt; g_object_add_weak_pointer (G_OBJECT (sidebar->go_to_after_mount_slot), (gpointer *) &sidebar->go_to_after_mount_slot); @@ -4621,6 +4643,18 @@ nemo_places_sidebar_new (NemoWindow *window) return GTK_WIDGET (sidebar); } +GtkWidget * +nemo_places_sidebar_new_for_pane (NemoWindow *window, NemoWindowPane *pane) +{ + NemoPlacesSidebar *sidebar; + + sidebar = g_object_new (NEMO_TYPE_PLACES_SIDEBAR, NULL); + nemo_places_sidebar_set_parent_window (sidebar, window); + sidebar->pane = pane; + + return GTK_WIDGET (sidebar); +} + /* Drag and drop interfaces */ diff --git a/src/nemo-places-sidebar.h b/src/nemo-places-sidebar.h index 656cd225cd..022e43bc9d 100644 --- a/src/nemo-places-sidebar.h +++ b/src/nemo-places-sidebar.h @@ -42,9 +42,12 @@ #define NEMO_PLACES_SIDEBAR_GET_CLASS(obj) \ (G_TYPE_INSTANCE_GET_CLASS ((obj), NEMO_TYPE_PLACES_SIDEBAR, NemoPlacesSidebarClass)) +#include "nemo-window-types.h" -GType nemo_places_sidebar_get_type (void); -GtkWidget * nemo_places_sidebar_new (NemoWindow *window); +GType nemo_places_sidebar_get_type (void); +GtkWidget *nemo_places_sidebar_new (NemoWindow *window); +GtkWidget *nemo_places_sidebar_new_for_pane (NemoWindow *window, + NemoWindowPane *pane); #endif diff --git a/src/nemo-tree-sidebar.c b/src/nemo-tree-sidebar.c index 65de30ccd4..0c24518802 100644 --- a/src/nemo-tree-sidebar.c +++ b/src/nemo-tree-sidebar.c @@ -37,6 +37,7 @@ #include "nemo-tree-sidebar-model.h" #include "nemo-properties-window.h" #include "nemo-window-slot.h" +#include "nemo-window-pane.h" #include #include @@ -73,6 +74,7 @@ typedef struct { struct FMTreeViewDetails { NemoWindow *window; + NemoWindowPane *pane; /* NULL = track active pane; non-NULL = locked to this pane */ GtkTreeView *tree_widget; GtkTreeModelSort *sort_model; FMTreeModel *child_model; @@ -132,8 +134,18 @@ static void rebuild_menu (FMTreeView *view); // static void add_action_popup_items (FMTreeView *view); G_DEFINE_TYPE (FMTreeView, fm_tree_view, GTK_TYPE_SCROLLED_WINDOW) + #define parent_class fm_tree_view_parent_class +static NemoWindowSlot * +tree_view_get_slot (FMTreeView *view) +{ + if (view->details->pane != NULL) { + return view->details->pane->active_slot; + } + return nemo_window_get_active_slot (view->details->window); +} + static void notify_clipboard_info (NemoClipboardMonitor *monitor, NemoClipboardInfo *info, @@ -361,7 +373,7 @@ got_activation_uri_callback (NemoFile *file, gpointer callback_data) (NEMO_WINDOW_OPEN_FLAG_NEW_WINDOW | NEMO_WINDOW_OPEN_FLAG_NEW_TAB)) == 0; - slot = nemo_window_get_active_slot (view->details->window); + slot = tree_view_get_slot (view); uri = nemo_file_get_activation_uri (file); if (nemo_file_is_launcher (file)) { @@ -1584,7 +1596,7 @@ create_tree (FMTreeView *view) "key-press-event", G_CALLBACK (key_press_callback), view); - slot = nemo_window_get_active_slot (view->details->window); + slot = tree_view_get_slot (view); location = nemo_window_slot_get_current_uri (slot); schedule_select_and_show_location (view, location); g_free (location); @@ -1640,6 +1652,21 @@ loading_uri_callback (NemoWindow *window, FMTreeView *view; view = FM_TREE_VIEW (callback_data); + + /* If locked to a pane, only update when that pane's slot is loading */ + if (view->details->pane != NULL) { + NemoWindowSlot *slot = tree_view_get_slot (view); + if (slot == NULL) { + return; + } + char *slot_uri = nemo_window_slot_get_current_uri (slot); + gboolean match = (slot_uri != NULL && strcmp (slot_uri, location) == 0); + g_free (slot_uri); + if (!match) { + return; + } + } + schedule_select_and_show_location (view, location); } @@ -1885,3 +1912,15 @@ nemo_tree_sidebar_new (NemoWindow *window) return GTK_WIDGET (sidebar); } + +GtkWidget * +nemo_tree_sidebar_new_for_pane (NemoWindow *window, NemoWindowPane *pane) +{ + FMTreeView *sidebar; + + sidebar = g_object_new (fm_tree_view_get_type (), NULL); + fm_tree_view_set_parent_window (sidebar, window); + sidebar->details->pane = pane; + + return GTK_WIDGET (sidebar); +} diff --git a/src/nemo-tree-sidebar.h b/src/nemo-tree-sidebar.h index 2c7d0d56c6..02cc3d76fa 100644 --- a/src/nemo-tree-sidebar.h +++ b/src/nemo-tree-sidebar.h @@ -59,8 +59,12 @@ typedef struct { GtkScrolledWindowClass parent_class; } FMTreeViewClass; +#include "nemo-window-types.h" + GType fm_tree_view_get_type (void); -GtkWidget *nemo_tree_sidebar_new (NemoWindow *window); +GtkWidget *nemo_tree_sidebar_new (NemoWindow *window); +GtkWidget *nemo_tree_sidebar_new_for_pane (NemoWindow *window, + NemoWindowPane *pane); #endif /* FM_TREE_VIEW_H */ diff --git a/src/nemo-window-pane.c b/src/nemo-window-pane.c index a7841b0024..eacbf7fa19 100644 --- a/src/nemo-window-pane.c +++ b/src/nemo-window-pane.c @@ -295,8 +295,9 @@ path_bar_button_pressed_callback (GtkWidget *widget, GINT_TO_POINTER (TRUE)); if (event->button == GDK_BUTTON_SECONDARY) { - slot = nemo_window_get_active_slot (pane->window); - view = slot->content_view; + /* Use this pane's slot so right-click context menu works on inactive panes */ + slot = pane->active_slot; + view = slot ? slot->content_view : NULL; if (view != NULL) { button_location = nemo_path_bar_get_path_for_button ( NEMO_PATH_BAR (pane->path_bar), widget); @@ -344,8 +345,8 @@ path_bar_button_released_callback (GtkWidget *widget, } if (flags != 0) { - slot = nemo_window_get_active_slot (pane->window); - nemo_window_slot_open_location (slot, button_location, flags); + /* Open tab/window relative to this pane, not the window-active pane */ + nemo_window_slot_open_location (pane->active_slot, button_location, flags); g_object_unref (button_location); return TRUE; } @@ -358,9 +359,11 @@ path_bar_button_released_callback (GtkWidget *widget, if (event->button == GDK_BUTTON_PRIMARY) { NemoView *view; - slot = nemo_window_get_active_slot (pane->window); - view = slot->content_view; - + /* Use this pane's active slot, not the window's active slot, so that + * clicking a path-bar button in an inactive pane works on that pane. */ + slot = pane->active_slot; + view = slot ? slot->content_view : NULL; + if (view != NULL) { button_location = nemo_path_bar_get_path_for_button (NEMO_PATH_BAR (pane->path_bar), widget); if (button_location != NULL) { @@ -377,6 +380,8 @@ path_bar_button_released_callback (GtkWidget *widget, } if (current_location_clicked) { + /* Switch THIS pane's toolbar to location-entry mode, not the active pane's. */ + nemo_window_set_active_pane (pane->window, pane); nemo_window_show_location_entry (pane->window); return GDK_EVENT_STOP; } @@ -764,7 +769,6 @@ action_show_hide_search_callback (GtkAction *action, gpointer user_data) { NemoWindowPane *pane = user_data; - NemoWindow *window = pane->window; NemoWindowSlot *slot; slot = pane->active_slot; @@ -789,7 +793,8 @@ action_show_hide_search_callback (GtkAction *action, location = g_file_new_for_path (g_get_home_dir ()); } - nemo_window_go_to (window, location); + /* Navigate this pane's slot directly, not the window-active slot */ + nemo_window_slot_open_location (slot, location, 0); g_object_unref (location); } @@ -882,7 +887,12 @@ only_show_active_pane_toolbar_mapping (GValue *value, gboolean chrome_allowed = g_value_get_boolean (value); gboolean self_is_active = (pane == nemo_window_get_active_pane (pane->window)); - g_value_set_boolean (value, chrome_allowed && self_is_active); + /* If toolbar is embedded inside the pane itself (separate nav bar mode), + * always show it regardless of which pane is active, so each pane's + * navigation bar is always visible. */ + gboolean is_embedded = (gtk_widget_get_parent (pane->tool_bar) == GTK_WIDGET (pane)); + + g_value_set_boolean (value, chrome_allowed && (self_is_active || is_embedded)); } return TRUE; @@ -1098,11 +1108,52 @@ nemo_window_pane_set_active_style (NemoWindowPane *pane, gtk_widget_reset_style (GTK_WIDGET (pane)); } +/* Apply or remove active/inactive CSS classes on a sidebar box. + * + * The active sidebar gets "nemo-active-sidebar" (overrides the grey + * GTK_STYLE_CLASS_SIDEBAR background with the pane's white background). + * The inactive sidebar gets "nemo-inactive-pane" (keeps the grey). + * + * Both classes are defined in nemo-style-fallback-mandatory.css. + */ +static void +sidebar_set_active_style (GtkWidget *sidebar_box, gboolean is_active) +{ + GtkStyleContext *style; + + if (sidebar_box == NULL) { + return; + } + + style = gtk_widget_get_style_context (sidebar_box); + + if (is_active) { + /* Remove the GTK sidebar class so the theme's grey .sidebar rules + * no longer apply to this box or its children. The box then falls + * back to the normal window background colour. + * Also remove nemo-inactive-pane in case we're toggling back. */ + gtk_style_context_remove_class (style, GTK_STYLE_CLASS_SIDEBAR); + gtk_style_context_remove_class (style, "nemo-inactive-pane"); + } else { + /* Restore the GTK sidebar class so the theme greys this box, and + * add nemo-inactive-pane so our own rule also greys the treeview rows. */ + gtk_style_context_add_class (style, GTK_STYLE_CLASS_SIDEBAR); + gtk_style_context_add_class (style, "nemo-inactive-pane"); + } + + gtk_widget_reset_style (sidebar_box); + /* Force children (scrolled window, viewport, treeview) to repaint too */ + gtk_widget_queue_draw (sidebar_box); +} + void nemo_window_pane_set_active (NemoWindowPane *pane, gboolean is_active) { NemoNavigationState *nav_state; + NemoWindow *window = pane->window; + gboolean is_pane1; + gboolean per_pane_mode; if (is_active) { nav_state = nemo_window_get_navigation_state (pane->window); @@ -1110,6 +1161,17 @@ nemo_window_pane_set_active (NemoWindowPane *pane, } /* pane inactive style */ nemo_window_pane_set_active_style (pane, is_active); + + /* In per-pane mode (both sidebars visible), also update the paired sidebar */ + per_pane_mode = (window->details->primary_pane_content_paned != NULL); + if (per_pane_mode && window->details->panes != NULL) { + is_pane1 = (window->details->panes->data == pane); + if (is_pane1) { + sidebar_set_active_style (window->details->sidebar, is_active); + } else { + sidebar_set_active_style (window->details->sidebar2, is_active); + } + } } void @@ -1384,3 +1446,53 @@ nemo_window_pane_open_slot (NemoWindowPane *pane, return slot; } + +/** + * nemo_window_pane_embed_toolbar: + * Move pane's toolbar from the shared toolbar_holder into the pane itself, + * so each pane shows its own navigation bar (used in vertical split mode). + */ +void +nemo_window_pane_embed_toolbar (NemoWindowPane *pane) +{ + NemoWindow *window = pane->window; + GtkWidget *tb = pane->tool_bar; + + /* Already embedded in the pane itself? */ + if (gtk_widget_get_parent (tb) == GTK_WIDGET (pane)) { + return; + } + + g_object_ref (tb); + gtk_container_remove (GTK_CONTAINER (window->details->toolbar_holder), tb); + + /* Insert toolbar above the notebook (position 0 in the pane box) */ + gtk_box_pack_start (GTK_BOX (pane), tb, FALSE, FALSE, 0); + gtk_box_reorder_child (GTK_BOX (pane), tb, 0); + gtk_widget_show (tb); + g_object_unref (tb); +} + +/** + * nemo_window_pane_detach_toolbar: + * Move pane's toolbar back from the pane into the shared toolbar_holder. + */ +void +nemo_window_pane_detach_toolbar (NemoWindowPane *pane) +{ + NemoWindow *window = pane->window; + GtkWidget *tb = pane->tool_bar; + + /* Already in toolbar_holder? */ + if (gtk_widget_get_parent (tb) == window->details->toolbar_holder) { + return; + } + + g_object_ref (tb); + gtk_container_remove (GTK_CONTAINER (pane), tb); + + gtk_box_pack_start (GTK_BOX (window->details->toolbar_holder), tb, TRUE, TRUE, 0); + /* Keep it hidden — the primary toolbar is what's shown in the holder */ + gtk_widget_hide (tb); + g_object_unref (tb); +} diff --git a/src/nemo-window-pane.h b/src/nemo-window-pane.h index 18db76a338..f77b3851cc 100644 --- a/src/nemo-window-pane.h +++ b/src/nemo-window-pane.h @@ -104,5 +104,7 @@ void nemo_window_pane_grab_focus (NemoWindowPane *pane); void nemo_window_pane_sync_up_actions (NemoWindowPane *pane); /* bars */ void nemo_window_pane_ensure_location_bar (NemoWindowPane *pane); +void nemo_window_pane_embed_toolbar (NemoWindowPane *pane); +void nemo_window_pane_detach_toolbar (NemoWindowPane *pane); #endif /* NEMO_WINDOW_PANE_H */ diff --git a/src/nemo-window-private.h b/src/nemo-window-private.h index b8f8e04444..6b8bc9f521 100644 --- a/src/nemo-window-private.h +++ b/src/nemo-window-private.h @@ -99,6 +99,15 @@ struct NemoWindowDetails // location changes. GFile *secondary_pane_last_location; + /* second sidebar for dual-pane separate sidebar mode */ + GtkWidget *sidebar2; + gchar *sidebar2_id; + int side_pane2_width; + /* outer HPaned wrapper for pane1 column (sidebar1-inline + pane1) in per-pane mode */ + GtkWidget *primary_pane_content_paned; + /* outer HPaned wrapper for pane2 column (sidebar2 + pane2) in per-pane mode */ + GtkWidget *secondary_pane_content_paned; + gboolean disable_chrome; guint sidebar_width_handler_id; diff --git a/src/nemo-window.c b/src/nemo-window.c index a9e502d72c..6b795c482f 100644 --- a/src/nemo-window.c +++ b/src/nemo-window.c @@ -91,6 +91,14 @@ static void side_pane_id_changed (NemoWindow *wind static void toggle_menubar (NemoWindow *window, gint action); static void nemo_window_reload (NemoWindow *window); +static void nemo_window_update_split_view_orientation (NemoWindow *window); +static void nemo_window_set_up_sidebar2 (NemoWindow *window); +static void nemo_window_tear_down_sidebar2 (NemoWindow *window); +static void nemo_window_set_up_pane1_wrapper (NemoWindow *window); +static void nemo_window_refresh_sidebar1_pane_lock (NemoWindow *window, gboolean lock_to_pane1); +static void nemo_window_tear_down_pane1_wrapper (NemoWindow *window); +static void dual_pane_prefs_changed (gpointer callback_data); +static void nemo_window_refresh_sidebar_colours (NemoWindow *window); /* Sanity check: highest mouse button value I could find was 14. 5 is our * lower threshold (well-documented to be the one of the button events for the @@ -295,7 +303,6 @@ nemo_window_sync_allow_stop (NemoWindow *window, update_cursor (window); } - notebook = NEMO_NOTEBOOK (slot->pane->notebook); nemo_notebook_sync_loading (notebook, slot); } @@ -477,6 +484,8 @@ nemo_window_hide_sidebar (NemoWindow *window) return; } + nemo_window_tear_down_pane1_wrapper (window); + nemo_window_tear_down_sidebar2 (window); nemo_window_tear_down_sidebar (window); nemo_window_update_show_hide_ui_elements (window); @@ -497,9 +506,31 @@ nemo_window_show_sidebar (NemoWindow *window) } nemo_window_set_up_sidebar (window); - nemo_window_update_show_hide_ui_elements (window); + /* Mark sidebar as shown BEFORE calling wrapper setup functions. + * set_up_pane1_wrapper guards on show_sidebar being TRUE - if we + * set it after, the guard silently skips the wrapper and sidebar1 + * stays full-height in content_paned, breaking the layout. */ nemo_window_set_show_sidebar (window, TRUE); + + /* Restore per-pane layout if applicable */ + { + gboolean split = nemo_window_split_view_showing (window); + gboolean vertical = g_settings_get_boolean (nemo_preferences, + NEMO_PREFERENCES_DUAL_PANE_VERTICAL_SPLIT); + gboolean sep_sidebar = g_settings_get_boolean (nemo_preferences, + NEMO_PREFERENCES_DUAL_PANE_SEPARATE_SIDEBAR); + gboolean sep_nav = g_settings_get_boolean (nemo_preferences, + NEMO_PREFERENCES_DUAL_PANE_SEPARATE_NAV_BAR); + /* pane1 wrapper only when separate_sidebar ON (independent of sep_nav) */ + if (split && vertical && sep_sidebar) { + nemo_window_set_up_pane1_wrapper (window); + nemo_window_set_up_sidebar2 (window); + } + } + + nemo_window_update_show_hide_ui_elements (window); + nemo_window_refresh_sidebar_colours (window); } static gboolean @@ -517,9 +548,30 @@ side_pane_id_changed (NemoWindow *window) return; } - /* refresh the sidebar setting */ + /* refresh the sidebar - tear down per-pane wrappers first so sidebar + * can be safely moved back to content_paned before rebuild */ + nemo_window_tear_down_pane1_wrapper (window); + nemo_window_tear_down_sidebar2 (window); nemo_window_tear_down_sidebar (window); nemo_window_set_up_sidebar (window); + + /* Restore per-pane layout if applicable */ + { + gboolean split = nemo_window_split_view_showing (window); + gboolean vertical = g_settings_get_boolean (nemo_preferences, + NEMO_PREFERENCES_DUAL_PANE_VERTICAL_SPLIT); + gboolean sep_sidebar = g_settings_get_boolean (nemo_preferences, + NEMO_PREFERENCES_DUAL_PANE_SEPARATE_SIDEBAR); + gboolean sep_nav = g_settings_get_boolean (nemo_preferences, + NEMO_PREFERENCES_DUAL_PANE_SEPARATE_NAV_BAR); + /* pane1 wrapper only when separate_sidebar ON (independent of sep_nav) */ + if (split && vertical && sep_sidebar && window->details->show_sidebar) { + nemo_window_set_up_pane1_wrapper (window); + nemo_window_set_up_sidebar2 (window); + } + } + + nemo_window_refresh_sidebar_colours (window); } gboolean @@ -697,7 +749,8 @@ nemo_window_constructed (GObject *self) TRUE, FALSE); gtk_widget_show (vbox); - hpaned = gtk_paned_new (GTK_ORIENTATION_HORIZONTAL); + hpaned = gtk_paned_new (g_settings_get_boolean (nemo_preferences, NEMO_PREFERENCES_DUAL_PANE_VERTICAL_SPLIT) + ? GTK_ORIENTATION_VERTICAL : GTK_ORIENTATION_HORIZONTAL); gtk_box_pack_start (GTK_BOX (vbox), hpaned, TRUE, TRUE, 0); gtk_widget_show (hpaned); window->details->split_view_hpane = hpaned; @@ -707,7 +760,6 @@ nemo_window_constructed (GObject *self) gtk_paned_pack1 (GTK_PANED (hpaned), GTK_WIDGET (pane), TRUE, FALSE); - nemo_statusbar = nemo_status_bar_new (window); window->details->nemo_status_bar = nemo_statusbar; @@ -837,6 +889,12 @@ nemo_window_destroy (GtkWidget *object) DEBUG ("Destroying window"); + /* Tear down per-pane wrappers before the sidebar and panes, so sidebar2 + * and pri_paned are removed cleanly from the widget hierarchy before + * pane widgets are destroyed. */ + nemo_window_tear_down_pane1_wrapper (window); + nemo_window_tear_down_sidebar2 (window); + /* close the sidebar first */ nemo_window_tear_down_sidebar (window); @@ -1006,8 +1064,13 @@ nemo_window_close_pane (NemoWindow *window, } /* Required really. Destroying the NemoWindowPane still leaves behind the toolbar. - * This kills it off. Do it before we call gtk_widget_destroy for safety. */ - gtk_container_remove (GTK_CONTAINER (window->details->toolbar_holder), GTK_WIDGET (pane->tool_bar)); + * This kills it off. Do it before we call gtk_widget_destroy for safety. + * The toolbar may have been reparented into the pane itself (embedded nav bar mode), + * in which case gtk_widget_destroy on the pane will handle it — but we remove it + * from toolbar_holder only if that's where it still lives. */ + if (gtk_widget_get_parent (GTK_WIDGET (pane->tool_bar)) == window->details->toolbar_holder) { + gtk_container_remove (GTK_CONTAINER (window->details->toolbar_holder), GTK_WIDGET (pane->tool_bar)); + } window->details->panes = g_list_remove (window->details->panes, pane); @@ -1082,7 +1145,12 @@ nemo_window_set_active_slot (NemoWindow *window, NemoWindowSlot *new_slot) if (old_slot->content_view != NULL) { nemo_window_disconnect_content_view (window, old_slot->content_view); } - gtk_widget_hide (GTK_WIDGET (old_slot->pane->tool_bar)); + /* Only hide the toolbar if it is in the shared toolbar_holder. + * Embedded toolbars (separate nav bar mode) must always stay visible. */ + if (gtk_widget_get_parent (GTK_WIDGET (old_slot->pane->tool_bar)) == + window->details->toolbar_holder) { + gtk_widget_hide (GTK_WIDGET (old_slot->pane->tool_bar)); + } /* inform slot & view */ g_signal_emit_by_name (old_slot, "inactive"); } @@ -1106,12 +1174,15 @@ nemo_window_set_active_slot (NemoWindow *window, NemoWindowSlot *new_slot) nemo_window_connect_content_view (window, new_slot->content_view); } - // Show active toolbar - gboolean show_toolbar; - show_toolbar = g_settings_get_boolean (nemo_window_state, NEMO_WINDOW_STATE_START_WITH_TOOLBAR); - - if ( show_toolbar) { - gtk_widget_show (GTK_WIDGET (new_slot->pane->tool_bar)); + /* Show active toolbar - but only if it is in toolbar_holder (not embedded). + * Embedded toolbars in separate-nav-bar mode are always visible. */ + if (gtk_widget_get_parent (GTK_WIDGET (new_slot->pane->tool_bar)) == + window->details->toolbar_holder) { + gboolean show_toolbar = g_settings_get_boolean (nemo_window_state, + NEMO_WINDOW_STATE_START_WITH_TOOLBAR); + if (show_toolbar) { + gtk_widget_show (GTK_WIDGET (new_slot->pane->tool_bar)); + } } /* inform slot & view */ @@ -1558,7 +1629,6 @@ zoom_level_changed_callback (NemoView *view, nemo_window_sync_zoom_widgets (window); } - /* These are called * A) when switching the view within the active slot * B) when switching the active slot @@ -1684,7 +1754,6 @@ nemo_window_get_next_pane (NemoWindow *window) return next_pane; } - void nemo_window_slot_set_viewed_file (NemoWindowSlot *slot, NemoFile *file) @@ -1774,7 +1843,6 @@ nemo_window_get_extra_slot (NemoWindow *window) g_assert (NEMO_IS_WINDOW (window)); - /* return NULL if there is only one pane */ if (window->details->panes == NULL || window->details->panes->next == NULL) { @@ -1828,9 +1896,13 @@ center_pane_divider (GtkWidget *paned, { /* Make the paned think it's been manually resized, otherwise * things like the trash bar will force unwanted resizes */ + GtkOrientation orientation = gtk_orientable_get_orientation (GTK_ORIENTABLE (paned)); + gint size = (orientation == GTK_ORIENTATION_VERTICAL) + ? gtk_widget_get_allocated_height (paned) + : gtk_widget_get_allocated_width (paned); g_object_set (G_OBJECT (paned), - "position", gtk_widget_get_allocated_width (paned) / 2, + "position", size / 2, NULL); g_signal_handlers_disconnect_by_func (G_OBJECT (paned), center_pane_divider, NULL); @@ -1960,7 +2032,6 @@ use_extra_mouse_buttons_changed (gpointer callback_data) mouse_extra_buttons = g_settings_get_boolean (nemo_preferences, NEMO_PREFERENCES_MOUSE_USE_EXTRA_BUTTONS); } - /* * Main API */ @@ -2013,6 +2084,20 @@ nemo_window_init (NemoWindow *window) "changed::" NEMO_PREFERENCES_INHERIT_SHOW_THUMBNAILS, G_CALLBACK(nemo_window_sync_thumbnail_action), window); + + /* Respond to dual pane preference changes */ + g_signal_connect_swapped (nemo_preferences, + "changed::" NEMO_PREFERENCES_DUAL_PANE_VERTICAL_SPLIT, + G_CALLBACK (dual_pane_prefs_changed), + window); + g_signal_connect_swapped (nemo_preferences, + "changed::" NEMO_PREFERENCES_DUAL_PANE_SEPARATE_SIDEBAR, + G_CALLBACK (dual_pane_prefs_changed), + window); + g_signal_connect_swapped (nemo_preferences, + "changed::" NEMO_PREFERENCES_DUAL_PANE_SEPARATE_NAV_BAR, + G_CALLBACK (dual_pane_prefs_changed), + window); } static NemoIconInfo * @@ -2187,11 +2272,701 @@ nemo_window_new (GtkApplication *application, NULL); } +/* ---- Dual pane helper functions ---- */ + +/* + * Per-pane layout helpers. + * + * When "separate sidebar per pane" or "separate nav bar per pane" is active in + * vertical (stacked) dual-pane mode, each pane column looks like: + * + * pack_paned (HPaned) + * ├── sidebar_box (pack1, fixed width) + * └── content_vbox (pack2, expanding) + * ├── toolbar (optional, via embed_toolbar) + * └── pane (NemoWindowPane) + * + * For pane1 we move the primary sidebar OUT of content_paned and INTO a new + * inline HPaned that is then packed as child1 of split_view_hpane. + * For pane2 we wrap it in the same structure as child2 of split_view_hpane. + */ + +/* ---------- pane2 (secondary) wrapper ---------- */ + +static void +nemo_window_set_up_sidebar2 (NemoWindow *window) +{ + GtkWidget *sidebar2_widget; + const gchar *sidebar_id; + GList *last; + NemoWindowPane *pane2; + GtkWidget *pane2_widget; + GtkPaned *hpane; + GtkWidget *child2; + GtkWidget *sec_paned; + GtkWidget *content_vbox; + + if (!nemo_window_split_view_showing (window)) { + return; + } + + sidebar_id = window->details->sidebar_id; + if (!sidebar_id || (g_strcmp0 (sidebar_id, NEMO_WINDOW_SIDEBAR_PLACES) != 0 && + g_strcmp0 (sidebar_id, NEMO_WINDOW_SIDEBAR_TREE) != 0)) { + return; + } + + last = g_list_last (window->details->panes); + if (!last || last->data == window->details->panes->data) { + return; + } + pane2 = last->data; + pane2_widget = GTK_WIDGET (pane2); + + if (window->details->secondary_pane_content_paned != NULL) { + return; + } + + /* pane2 may already be inside a content_vbox (from embed_toolbar). + * Whichever widget is currently child2 of split_view_hpane is what we wrap. */ + hpane = GTK_PANED (window->details->split_view_hpane); + child2 = gtk_paned_get_child2 (hpane); + if (child2 == NULL) { + return; + } + + g_object_ref (child2); + gtk_container_remove (GTK_CONTAINER (hpane), child2); + + /* If pane2 doesn't yet have a content_vbox (embed_toolbar not called), wrap it now */ + if (child2 == pane2_widget) { + content_vbox = gtk_box_new (GTK_ORIENTATION_VERTICAL, 0); + gtk_widget_show (content_vbox); + gtk_box_pack_start (GTK_BOX (content_vbox), pane2_widget, TRUE, TRUE, 0); + g_object_unref (child2); + child2 = content_vbox; + g_object_ref (child2); + } + + /* Create outer HPaned: sidebar2 | content_vbox */ + sec_paned = gtk_paned_new (GTK_ORIENTATION_HORIZONTAL); + window->details->secondary_pane_content_paned = sec_paned; + gtk_widget_show (sec_paned); + + /* Create sidebar2 box locked to pane2 */ + window->details->sidebar2 = gtk_box_new (GTK_ORIENTATION_VERTICAL, 0); + gtk_style_context_add_class (gtk_widget_get_style_context (window->details->sidebar2), + GTK_STYLE_CLASS_SIDEBAR); + + if (g_strcmp0 (sidebar_id, NEMO_WINDOW_SIDEBAR_PLACES) == 0) { + sidebar2_widget = nemo_places_sidebar_new_for_pane (window, pane2); + } else { + sidebar2_widget = nemo_tree_sidebar_new_for_pane (window, pane2); + } + + gtk_box_pack_start (GTK_BOX (window->details->sidebar2), sidebar2_widget, TRUE, TRUE, 0); + gtk_widget_show (sidebar2_widget); + gtk_widget_show (window->details->sidebar2); + + /* sidebar2 on left (fixed), content_vbox on right (expanding) */ + gtk_paned_pack1 (GTK_PANED (sec_paned), window->details->sidebar2, FALSE, FALSE); + gtk_paned_pack2 (GTK_PANED (sec_paned), child2, TRUE, FALSE); + g_object_unref (child2); + + gtk_paned_set_position (GTK_PANED (sec_paned), + g_settings_get_int (nemo_window_state, NEMO_WINDOW_STATE_SIDEBAR_WIDTH)); + + gtk_paned_pack2 (GTK_PANED (hpane), sec_paned, TRUE, FALSE); + + /* Sync sidebar2 active/inactive CSS class to reflect current active pane */ + { + GtkStyleContext *s2 = gtk_widget_get_style_context (window->details->sidebar2); + gboolean pane2_active = (window->details->active_pane == pane2); + if (pane2_active) { + gtk_style_context_remove_class (s2, "nemo-inactive-pane"); + gtk_style_context_add_class (s2, "nemo-active-sidebar"); + } else { + gtk_style_context_remove_class (s2, "nemo-active-sidebar"); + gtk_style_context_add_class (s2, "nemo-inactive-pane"); + } + gtk_widget_reset_style (window->details->sidebar2); + } +} + +static void +nemo_window_tear_down_sidebar2 (NemoWindow *window) +{ + GList *last; + NemoWindowPane *pane2; + GtkWidget *pane2_widget; + GtkPaned *hpane; + GtkWidget *sec_paned; + GtkWidget *restore_widget; /* what gets packed back into hpane as child2 */ + + if (window->details->secondary_pane_content_paned == NULL) { + return; + } + + sec_paned = window->details->secondary_pane_content_paned; + window->details->secondary_pane_content_paned = NULL; + window->details->sidebar2 = NULL; + + if (!nemo_window_split_view_showing (window)) { + return; + } + + last = g_list_last (window->details->panes); + if (!last || last->data == window->details->panes->data) { + return; + } + pane2 = last->data; + pane2_widget = GTK_WIDGET (pane2); + + hpane = GTK_PANED (window->details->split_view_hpane); + + /* Walk up from pane2 to find the direct child of sec_paned that contains + * it (may be pane2 itself, or a content_vbox wrapping it). */ + restore_widget = pane2_widget; + { + GtkWidget *p = gtk_widget_get_parent (pane2_widget); + while (p != NULL && p != sec_paned) { + restore_widget = p; + p = gtk_widget_get_parent (p); + } + if (p == NULL) { + return; + } + } + + /* Safely lift restore_widget out of sec_paned before destroying sec_paned */ + g_object_ref (restore_widget); + gtk_container_remove (GTK_CONTAINER (sec_paned), restore_widget); + + /* Now sec_paned only has sidebar2 left; remove it from hpane and destroy it. + * sidebar2 is destroyed with it - that is safe, it has no panes inside. + * Hold a ref across the remove so the widget isn't freed before destroy. */ + g_object_ref (sec_paned); + if (gtk_widget_get_parent (sec_paned) == GTK_WIDGET (hpane)) { + gtk_container_remove (GTK_CONTAINER (hpane), sec_paned); + } + gtk_widget_destroy (sec_paned); + g_object_unref (sec_paned); + + /* Put pane2 (or its vbox wrapper) back as child2 of hpane */ + gtk_paned_pack2 (GTK_PANED (hpane), restore_widget, TRUE, FALSE); + g_object_unref (restore_widget); + +} + +/* Rebuild the inner sidebar1 widget with or without pane1 locking. + * When per-pane mode is active, sidebar1 must be locked to pane1 so it only + * updates when pane1 navigates, not when pane2 does. */ +static void +nemo_window_refresh_sidebar1_pane_lock (NemoWindow *window, gboolean lock_to_pane1) +{ + GtkWidget *sidebar_box; + GtkWidget *old_widget; + GtkWidget *new_widget; + GList *children; + NemoWindowPane *pane1; + const gchar *sidebar_id; + + if (window->details->sidebar == NULL) { + return; + } + + sidebar_id = window->details->sidebar_id; + if (!sidebar_id || (g_strcmp0 (sidebar_id, NEMO_WINDOW_SIDEBAR_PLACES) != 0 && + g_strcmp0 (sidebar_id, NEMO_WINDOW_SIDEBAR_TREE) != 0)) { + return; + } + + sidebar_box = window->details->sidebar; + pane1 = window->details->panes ? window->details->panes->data : NULL; + + /* Remove the existing inner widget */ + children = gtk_container_get_children (GTK_CONTAINER (sidebar_box)); + if (children != NULL) { + old_widget = GTK_WIDGET (children->data); + gtk_container_remove (GTK_CONTAINER (sidebar_box), old_widget); + g_list_free (children); + } + + /* Create a replacement with or without pane lock */ + if (lock_to_pane1 && pane1 != NULL) { + if (g_strcmp0 (sidebar_id, NEMO_WINDOW_SIDEBAR_PLACES) == 0) { + new_widget = nemo_places_sidebar_new_for_pane (window, pane1); + } else { + new_widget = nemo_tree_sidebar_new_for_pane (window, pane1); + } + } else { + if (g_strcmp0 (sidebar_id, NEMO_WINDOW_SIDEBAR_PLACES) == 0) { + new_widget = nemo_places_sidebar_new (window); + } else { + new_widget = nemo_tree_sidebar_new (window); + } + } + + gtk_box_pack_start (GTK_BOX (sidebar_box), new_widget, TRUE, TRUE, 0); + gtk_widget_show (new_widget); +} + +/* ---------- pane1 (primary) wrapper ---------- + * + * Moves the primary sidebar from content_paned (where it spans full height) + * into an inline HPaned that lives as child1 of split_view_hpane, so that + * pane1 has its own sidebar column just like pane2. + */ + +static void +nemo_window_set_up_pane1_wrapper (NemoWindow *window) +{ + NemoWindowPane *pane1; + GtkWidget *pane1_widget; + GtkWidget *sidebar1; + GtkPaned *split_hpane; + GtkWidget *child1; + GtkWidget *pri_paned; + GtkWidget *content_vbox; + + if (window->details->primary_pane_content_paned != NULL) { + return; /* Already set up */ + } + + if (!window->details->show_sidebar || window->details->sidebar == NULL) { + return; /* No sidebar to move */ + } + + pane1 = window->details->panes->data; + pane1_widget = GTK_WIDGET (pane1); + split_hpane = GTK_PANED (window->details->split_view_hpane); + + /* child1 of split_view_hpane is either pane1 directly, or a content_vbox + * containing toolbar + pane1 (if embed_toolbar was called for pane1). */ + child1 = gtk_paned_get_child1 (split_hpane); + if (child1 == NULL) { + return; + } + + g_object_ref (child1); + gtk_container_remove (GTK_CONTAINER (split_hpane), child1); + + /* If child1 is the bare pane, wrap it in a content_vbox so toolbar can + * be added later consistently */ + if (child1 == pane1_widget) { + content_vbox = gtk_box_new (GTK_ORIENTATION_VERTICAL, 0); + gtk_widget_show (content_vbox); + gtk_box_pack_start (GTK_BOX (content_vbox), pane1_widget, TRUE, TRUE, 0); + g_object_unref (child1); + child1 = content_vbox; + g_object_ref (child1); + } + + /* Move the primary sidebar widget out of content_paned and into a new + * inline HPaned. We take the sidebar box (window->details->sidebar). */ + sidebar1 = window->details->sidebar; + + g_object_ref (sidebar1); + gtk_container_remove (GTK_CONTAINER (window->details->content_paned), sidebar1); + + /* Hide content_paned's now-empty pack1 gap by setting position to 0 */ + gtk_paned_set_position (GTK_PANED (window->details->content_paned), 0); + + /* Create inline HPaned for pane1: sidebar1 | content_vbox */ + pri_paned = gtk_paned_new (GTK_ORIENTATION_HORIZONTAL); + window->details->primary_pane_content_paned = pri_paned; + gtk_widget_show (pri_paned); + + gtk_paned_pack1 (GTK_PANED (pri_paned), sidebar1, FALSE, FALSE); + g_object_unref (sidebar1); + gtk_paned_pack2 (GTK_PANED (pri_paned), child1, TRUE, FALSE); + g_object_unref (child1); + + gtk_paned_set_position (GTK_PANED (pri_paned), + g_settings_get_int (nemo_window_state, NEMO_WINDOW_STATE_SIDEBAR_WIDTH)); + + gtk_paned_pack1 (GTK_PANED (split_hpane), pri_paned, TRUE, FALSE); + + /* Lock sidebar1 to pane1 now that we are in per-pane mode */ + nemo_window_refresh_sidebar1_pane_lock (window, TRUE); + + /* Add a top separator to sidebar1 to restore the border that was previously + * provided by toolbar_holder sitting above it */ + if (sidebar1 != NULL) { + GtkWidget *sep = gtk_separator_new (GTK_ORIENTATION_HORIZONTAL); + gtk_box_pack_start (GTK_BOX (sidebar1), sep, FALSE, FALSE, 0); + gtk_box_reorder_child (GTK_BOX (sidebar1), sep, 0); + gtk_widget_show (sep); + g_object_set_data (G_OBJECT (sidebar1), "pane-wrapper-top-sep", sep); + } + + /* Sync sidebar1 active/inactive CSS class to reflect current active pane. + * sidebar_set_active_style is defined in nemo-window-pane.c; we replicate + * the same logic here to avoid adding a cross-file helper just for this. */ + { + GtkStyleContext *s1 = gtk_widget_get_style_context (window->details->sidebar); + gboolean pane1_active = (window->details->active_pane == pane1); + if (pane1_active) { + gtk_style_context_remove_class (s1, "nemo-inactive-pane"); + gtk_style_context_add_class (s1, "nemo-active-sidebar"); + } else { + gtk_style_context_remove_class (s1, "nemo-active-sidebar"); + gtk_style_context_add_class (s1, "nemo-inactive-pane"); + } + gtk_widget_reset_style (window->details->sidebar); + } + +} + +static void +nemo_window_tear_down_pane1_wrapper (NemoWindow *window) +{ + NemoWindowPane *pane1; + GtkWidget *pane1_widget; + GtkWidget *sidebar1; + GtkPaned *split_hpane; + GtkWidget *pri_paned; + GtkWidget *restore_widget; + + if (window->details->primary_pane_content_paned == NULL) { + return; + } + + pri_paned = window->details->primary_pane_content_paned; + window->details->primary_pane_content_paned = NULL; + + pane1 = window->details->panes->data; + pane1_widget = GTK_WIDGET (pane1); + split_hpane = GTK_PANED (window->details->split_view_hpane); + sidebar1 = window->details->sidebar; + + /* Walk up from pane1 to find the direct child of pri_paned that contains it */ + restore_widget = pane1_widget; + { + GtkWidget *p = gtk_widget_get_parent (pane1_widget); + while (p != NULL && p != GTK_WIDGET (pri_paned)) { + restore_widget = p; + p = gtk_widget_get_parent (p); + } + if (p == NULL) { + goto restore_sidebar; + } + } + + /* Step 1: Rescue sidebar1 from pri_paned BEFORE we touch anything else. + * This must happen first so content_paned.pack1 is populated before + * pri_paned is unparented — GTK may re-layout between operations. */ + if (sidebar1 != NULL && gtk_widget_get_parent (sidebar1) == GTK_WIDGET (pri_paned)) { + g_object_ref (sidebar1); + gtk_container_remove (GTK_CONTAINER (pri_paned), sidebar1); + + /* Remove the top separator we added when entering per-pane mode */ + { + GtkWidget *sep = g_object_get_data (G_OBJECT (sidebar1), "pane-wrapper-top-sep"); + if (sep != NULL) { + gtk_widget_destroy (sep); + g_object_set_data (G_OBJECT (sidebar1), "pane-wrapper-top-sep", NULL); + } + } + + /* sidebar1 goes back into content_paned pack1 at full window height */ + gtk_paned_pack1 (GTK_PANED (window->details->content_paned), + sidebar1, FALSE, FALSE); + g_object_unref (sidebar1); + gtk_paned_set_position (GTK_PANED (window->details->content_paned), + g_settings_get_int (nemo_window_state, + NEMO_WINDOW_STATE_SIDEBAR_WIDTH)); + } else { + } + + /* Step 2: Extract restore_widget (content_vbox containing pane1) from + * pri_paned and put it back as child1 of split_hpane. */ + g_object_ref (restore_widget); + gtk_container_remove (GTK_CONTAINER (pri_paned), restore_widget); + + /* Step 3: Remove pri_paned from split_hpane and destroy it. + * Hold a ref so the widget isn't freed by the remove before destroy. */ + g_object_ref (pri_paned); + if (gtk_widget_get_parent (GTK_WIDGET (pri_paned)) == GTK_WIDGET (split_hpane)) { + gtk_container_remove (GTK_CONTAINER (split_hpane), GTK_WIDGET (pri_paned)); + } + gtk_widget_destroy (GTK_WIDGET (pri_paned)); + g_object_unref (pri_paned); + + /* Step 4: Restore pane1 (or its vbox) as child1 of split_hpane. */ + gtk_paned_pack1 (GTK_PANED (split_hpane), restore_widget, TRUE, FALSE); + g_object_unref (restore_widget); + + /* Step 5: Unlock sidebar1 from pane1 now that we are leaving per-pane mode. */ + nemo_window_refresh_sidebar1_pane_lock (window, FALSE); + + return; + +restore_sidebar: + /* Fallback: pane1 was not inside pri_paned (already moved). Still need to + * rescue sidebar1 from pri_paned back to content_paned if it's there. */ + if (sidebar1 != NULL && gtk_widget_get_parent (sidebar1) == GTK_WIDGET (pri_paned)) { + g_object_ref (sidebar1); + gtk_container_remove (GTK_CONTAINER (pri_paned), sidebar1); + gtk_paned_pack1 (GTK_PANED (window->details->content_paned), + sidebar1, FALSE, FALSE); + g_object_unref (sidebar1); + gtk_paned_set_position (GTK_PANED (window->details->content_paned), + g_settings_get_int (nemo_window_state, + NEMO_WINDOW_STATE_SIDEBAR_WIDTH)); + } + g_object_ref (pri_paned); + if (gtk_widget_get_parent (GTK_WIDGET (pri_paned)) == GTK_WIDGET (split_hpane)) { + gtk_container_remove (GTK_CONTAINER (split_hpane), GTK_WIDGET (pri_paned)); + } + gtk_widget_destroy (GTK_WIDGET (pri_paned)); + g_object_unref (pri_paned); + nemo_window_refresh_sidebar1_pane_lock (window, FALSE); +} + +/* Recreate the split_view_hpane with the new orientation */ +static void +nemo_window_update_split_view_orientation (NemoWindow *window) +{ + gboolean vertical; + GtkOrientation desired; + GtkOrientation current; + GtkWidget *old_paned; + GtkWidget *parent; + GtkWidget *child1; + GtkWidget *child2; + GtkWidget *new_paned; + + vertical = g_settings_get_boolean (nemo_preferences, + NEMO_PREFERENCES_DUAL_PANE_VERTICAL_SPLIT); + desired = vertical ? GTK_ORIENTATION_VERTICAL : GTK_ORIENTATION_HORIZONTAL; + + old_paned = window->details->split_view_hpane; + if (old_paned == NULL) { + return; + } + + current = gtk_orientable_get_orientation (GTK_ORIENTABLE (old_paned)); + if (current == desired) { + return; /* Nothing to do */ + } + + /* Get parent container (the vbox) */ + parent = gtk_widget_get_parent (old_paned); + if (parent == NULL) { + return; + } + + /* Collect children from the old paned */ + child1 = gtk_paned_get_child1 (GTK_PANED (old_paned)); + child2 = gtk_paned_get_child2 (GTK_PANED (old_paned)); + + if (child1) g_object_ref (child1); + if (child2) g_object_ref (child2); + if (child1) gtk_container_remove (GTK_CONTAINER (old_paned), child1); + if (child2) gtk_container_remove (GTK_CONTAINER (old_paned), child2); + + gtk_container_remove (GTK_CONTAINER (parent), old_paned); + + /* Create new paned with desired orientation */ + new_paned = gtk_paned_new (desired); + gtk_box_pack_start (GTK_BOX (parent), new_paned, TRUE, TRUE, 0); + gtk_widget_show (new_paned); + window->details->split_view_hpane = new_paned; + + /* Re-attach children */ + if (child1) { + gtk_paned_pack1 (GTK_PANED (new_paned), child1, TRUE, FALSE); + g_object_unref (child1); + } + if (child2) { + gtk_paned_pack2 (GTK_PANED (new_paned), child2, TRUE, FALSE); + g_object_unref (child2); + } + + /* Center the divider */ + if (child2) { + g_signal_connect_after (new_paned, + "notify::position", + G_CALLBACK (center_pane_divider), + NULL); + } +} + +/* Refresh sidebar background colours to match current per-pane state. + * + * Called after any operation that creates, destroys, or changes sidebars: + * - split_view_on / split_view_off + * - show_sidebar / hide_sidebar + * - side_pane_id_changed (Places <-> Tree switch) + * - dual_pane_prefs_changed (any of the three dual-pane prefs) + * + * Rules: + * Per-pane mode active (both sidebars visible): + * - sidebar for the active pane → GTK_STYLE_CLASS_SIDEBAR removed (normal bg) + * - sidebar for the inactive pane → GTK_STYLE_CLASS_SIDEBAR kept + nemo-inactive-pane + * Single sidebar / not in per-pane mode: + * - sidebar1 → GTK_STYLE_CLASS_SIDEBAR restored (theme default, no custom class) + */ +static void +nemo_window_refresh_sidebar_colours (NemoWindow *window) +{ + gboolean per_pane_mode; + NemoWindowPane *active_pane; + NemoWindowPane *pane1; + GList *last; + NemoWindowPane *pane2; + + if (window->details->sidebar == NULL) { + return; + } + + per_pane_mode = (window->details->primary_pane_content_paned != NULL) && + (window->details->sidebar2 != NULL); + + if (per_pane_mode) { + active_pane = nemo_window_get_active_pane (window); + pane1 = window->details->panes ? window->details->panes->data : NULL; + last = g_list_last (window->details->panes); + pane2 = (last && last->data != pane1) ? last->data : NULL; + + gboolean pane1_active = (active_pane == pane1); + + nemo_window_pane_set_active (pane1, pane1_active); + if (pane2) { + nemo_window_pane_set_active (pane2, !pane1_active); + } + } else { + /* Not in per-pane mode: restore sidebar1 to normal themed state. + * Remove any custom classes we may have set, restore GTK_STYLE_CLASS_SIDEBAR. */ + GtkStyleContext *style = gtk_widget_get_style_context (window->details->sidebar); + gtk_style_context_remove_class (style, "nemo-inactive-pane"); + if (!gtk_style_context_has_class (style, GTK_STYLE_CLASS_SIDEBAR)) { + gtk_style_context_add_class (style, GTK_STYLE_CLASS_SIDEBAR); + } + gtk_widget_reset_style (window->details->sidebar); + gtk_widget_queue_draw (window->details->sidebar); + } +} + +static void +dual_pane_prefs_changed (gpointer callback_data) +{ + NemoWindow *window = NEMO_WINDOW (callback_data); + gboolean split_showing; + gboolean want_per_pane; + gboolean want_sidebar2; + GList *last; + NemoWindowPane *pane1; + NemoWindowPane *pane2; + gboolean vertical; + gboolean separate_nav; + gboolean separate_sidebar; + + split_showing = nemo_window_split_view_showing (window); + vertical = g_settings_get_boolean (nemo_preferences, + NEMO_PREFERENCES_DUAL_PANE_VERTICAL_SPLIT); + separate_nav = g_settings_get_boolean (nemo_preferences, + NEMO_PREFERENCES_DUAL_PANE_SEPARATE_NAV_BAR); + separate_sidebar = g_settings_get_boolean (nemo_preferences, + NEMO_PREFERENCES_DUAL_PANE_SEPARATE_SIDEBAR); + + /* Handle orientation change - must happen before any wrapper setup */ + nemo_window_update_split_view_orientation (window); + + /* The pane1 sidebar wrapper (pri_paned) is ONLY needed when separate_sidebar + * is ON. Per spec 3.5.3, toolbar embedding (separate_nav) is independent of + * sidebar layout — when nav bar is ON but sidebar is OFF the sidebar stays + * full-height in content_paned and pri_paned must NOT be created. + * + * want_per_pane = controls the pane1 sidebar wrapper (pri_paned) + * want_sidebar2 = controls the pane2 sidebar wrapper (sec_paned + sidebar2) */ + want_per_pane = split_showing && vertical && separate_sidebar && + window->details->show_sidebar; + + want_sidebar2 = want_per_pane; + + /* --- Sidebar wrapper teardown/setup (order is critical, per spec section 5): + * + * TEARDOWN order: pane1_wrapper first, then sidebar2. + * tear_down_pane1_wrapper() rescues sidebar1 back into content_paned. + * tear_down_sidebar2() then finds pane2 cleanly inside hpane.child2. + * Reversing this order leaves sidebar1 stranded inside a half-destroyed + * pri_paned when sidebar2 tries to walk the widget tree from pane2. + * + * SETUP order: sidebar2 first, then pane1_wrapper (matches build order). + */ + + /* --- pane1 sidebar wrapper (teardown only — setup happens after sidebar2) --- */ + if (!want_per_pane && window->details->primary_pane_content_paned != NULL) { + nemo_window_tear_down_pane1_wrapper (window); + } + + /* --- pane2 sidebar wrapper --- */ + if (want_sidebar2 && window->details->secondary_pane_content_paned == NULL) { + nemo_window_set_up_sidebar2 (window); + } else if (!want_sidebar2 && window->details->secondary_pane_content_paned != NULL) { + nemo_window_tear_down_sidebar2 (window); + } + + /* --- pane1 sidebar wrapper (setup only — teardown happened above) --- */ + if (want_per_pane && window->details->primary_pane_content_paned == NULL) { + nemo_window_set_up_pane1_wrapper (window); + } + + /* --- per-pane toolbars --- */ + if (split_showing) { + pane1 = window->details->panes->data; + last = g_list_last (window->details->panes); + pane2 = (last && last->data != pane1) ? last->data : NULL; + + if (vertical && separate_nav) { + /* Embed toolbar into each pane */ + nemo_window_pane_embed_toolbar (pane1); + if (pane2) { + nemo_window_pane_embed_toolbar (pane2); + } + } else { + /* Detach pane toolbars back to toolbar_holder. + * detach_toolbar() hides the toolbar after moving it (so only the + * active pane's bar is visible in the shared holder). After + * detaching we must explicitly re-show the active pane's toolbar + * because no set_active_slot() call will be triggered by the pref + * change alone — without this the toolbar holder stays empty. */ + nemo_window_pane_detach_toolbar (pane1); + if (pane2) { + nemo_window_pane_detach_toolbar (pane2); + } + + /* Re-show the active pane's toolbar in the holder, respecting the + * toolbar visibility setting. */ + { + NemoWindowPane *active_pane = nemo_window_get_active_pane (window); + if (active_pane != NULL) { + GtkWidget *tb = GTK_WIDGET (active_pane->tool_bar); + gboolean show_toolbar = g_settings_get_boolean (nemo_window_state, + NEMO_WINDOW_STATE_START_WITH_TOOLBAR); + if (show_toolbar && + gtk_widget_get_parent (tb) == window->details->toolbar_holder) { + gtk_widget_show (tb); + } + } + } + } + } + + /* Apply sidebar background colours after any structural change. */ + nemo_window_refresh_sidebar_colours (window); +} + void nemo_window_split_view_on (NemoWindow *window) { NemoWindowSlot *slot, *old_active_slot; GFile *location; + NemoWindowPane *pane2; + gboolean vertical; + gboolean separate_nav; old_active_slot = nemo_window_get_active_slot (window); slot = create_extra_pane (window); @@ -2215,6 +2990,34 @@ nemo_window_split_view_on (NemoWindow *window) g_object_unref (location); window_set_search_action_text (window, FALSE); + + /* Set up per-pane features if enabled */ + pane2 = slot->pane; + + vertical = g_settings_get_boolean (nemo_preferences, + NEMO_PREFERENCES_DUAL_PANE_VERTICAL_SPLIT); + separate_nav = g_settings_get_boolean (nemo_preferences, + NEMO_PREFERENCES_DUAL_PANE_SEPARATE_NAV_BAR); + gboolean separate_sidebar = g_settings_get_boolean (nemo_preferences, + NEMO_PREFERENCES_DUAL_PANE_SEPARATE_SIDEBAR); + /* Per spec 3.5.3: toolbar embedding is independent of sidebar layout. + * pane1 wrapper (pri_paned) is ONLY created when separate_sidebar is ON. */ + gboolean per_pane = vertical && separate_sidebar && + window->details->show_sidebar; + + if (vertical && separate_nav) { + NemoWindowPane *pane1 = window->details->panes->data; + nemo_window_pane_embed_toolbar (pane1); + nemo_window_pane_embed_toolbar (pane2); + } + + if (per_pane) { + nemo_window_set_up_pane1_wrapper (window); + nemo_window_set_up_sidebar2 (window); + } + + /* Apply sidebar background colours now that all sidebars are in place. */ + nemo_window_refresh_sidebar_colours (window); } void @@ -2225,6 +3028,13 @@ nemo_window_split_view_off (NemoWindow *window) active_pane = nemo_window_get_active_pane (window); + /* Tear down all per-pane wrappers before closing panes. + * Order is critical (spec section 5): pane1_wrapper first, then sidebar2. + * tear_down_pane1_wrapper rescues sidebar1 back to content_paned first; + * tear_down_sidebar2 then finds pane2 cleanly in hpane.child2. */ + nemo_window_tear_down_pane1_wrapper (window); + nemo_window_tear_down_sidebar2 (window); + /* delete all panes except the first (main) pane */ for (l = window->details->panes; l != NULL; l = next) { next = l->next; @@ -2232,10 +3042,18 @@ nemo_window_split_view_off (NemoWindow *window) if (pane != active_pane) { g_clear_object (&window->details->secondary_pane_last_location); window->details->secondary_pane_last_location = nemo_window_slot_get_location (pane->active_slot); + /* Detach embedded toolbar back to toolbar_holder before destroying pane */ + nemo_window_pane_detach_toolbar (pane); nemo_window_close_pane (window, pane); } } + /* Also detach pane1 toolbar (pane1 might have had its toolbar embedded) */ + if (window->details->panes != NULL) { + NemoWindowPane *pane1 = window->details->panes->data; + nemo_window_pane_detach_toolbar (pane1); + } + /* Reset split view pane's position so the position can be * caught again later */ g_object_set (G_OBJECT (window->details->split_view_hpane), @@ -2248,6 +3066,7 @@ nemo_window_split_view_off (NemoWindow *window) active_pane->action_group); nemo_window_update_show_hide_ui_elements (window); + nemo_window_refresh_sidebar_colours (window); } gboolean diff --git a/test/meson.build b/test/meson.build index f13e573bf9..add7f116a0 100644 --- a/test/meson.build +++ b/test/meson.build @@ -26,3 +26,49 @@ test('Copy test', ), args: [] ) + +# --------------------------------------------------------------------------- +# Dual-pane schema tests +# --------------------------------------------------------------------------- +# Compile our schema + any installed nemo/cinnamon schemas into the test +# build dir so GSETTINGS_SCHEMA_DIR points at a valid gschemas.compiled. +# Outputs land in meson.current_build_dir() (i.e. build/test/). +nemo_compiled_schemas = custom_target('nemo-compiled-schemas', + output: 'gschemas.compiled', + input: join_paths(meson.project_source_root(), 'libnemo-private', 'org.nemo.gschema.xml'), + command: [ + find_program('sh'), '-c', + 'set -e; D="@OUTDIR@";' + + 'cp /usr/share/glib-2.0/schemas/org.nemo*.xml "$D/" 2>/dev/null || true;' + + 'cp /usr/share/glib-2.0/schemas/org.cinnamon*.xml "$D/" 2>/dev/null || true;' + + 'cp /usr/share/glib-2.0/schemas/org.gtk.*.xml "$D/" 2>/dev/null || true;' + + 'cp @INPUT0@ "$D/org.nemo.gschema.xml";' + + 'glib-compile-schemas "$D"', + ], + build_by_default: false, +) + +# Schema unit tests — no display, no D-Bus, no session required. +# Tests that our three new preference keys exist with correct defaults. +# This is the authoritative automated test for the dual-pane feature's schema. +test('Dual Pane schema test', + executable('test-dual-pane-schema', + [ 'test-dual-pane-schema.c' ], + include_directories: [ rootInclude, ], + dependencies: [ glib, gobject, gio ], + c_args: nemo_definitions, + ), + args: [], + suite: [ 'dual-pane' ], + depends: [ nemo_compiled_schemas ], + env: [ 'GSETTINGS_SCHEMA_DIR=' + meson.current_build_dir() ], + timeout: 30, +) + +# NOTE: Widget layout tests (test-dual-pane.c) require a full Nemo session: +# a running display, D-Bus session bus, and GVfs. They are not run as part +# of the automated suite. Run manually with Xvfb: +# +# xvfb-run meson test -C build --suite dual-pane-widget +# +# when that suite is added in the future. diff --git a/test/test-dual-pane-schema.c b/test/test-dual-pane-schema.c new file mode 100644 index 0000000000..39df3124a6 --- /dev/null +++ b/test/test-dual-pane-schema.c @@ -0,0 +1,192 @@ +/* + * test-dual-pane-schema.c + * + * Pure GSettings unit tests for the three new dual-pane schema keys. + * No window, no display, no GtkApplication required. + * + * These tests verify: + * - Each key exists in the schema (schema lookup does not abort) + * - Each key defaults to FALSE in the schema (preserving existing behaviour) + * - Each key can be set and read back via dconf + * - start-with-dual-pane still exists (regression: we didn't remove it) + * + * "Default" tests use g_settings_get_default_value() which reads the schema + * XML directly, bypassing any dconf overrides left by previous test runs. + * + * Run with: + * GSETTINGS_SCHEMA_DIR=/test meson test --suite dual-pane + */ + +#include +#include + +#define NEMO_SCHEMA "org.nemo.preferences" + +/* ------------------------------------------------------------------ */ +/* Helpers */ +/* ------------------------------------------------------------------ */ + +static GSettings * +open_nemo_prefs (void) +{ + GSettings *s = g_settings_new (NEMO_SCHEMA); + g_assert_nonnull (s); + return s; +} + +/* Read the schema-declared default, bypassing any dconf override. */ +static gboolean +schema_default_bool (GSettings *s, const gchar *key) +{ + GVariant *v = g_settings_get_default_value (s, key); + g_assert_nonnull (v); + gboolean result = g_variant_get_boolean (v); + g_variant_unref (v); + return result; +} + +/* ------------------------------------------------------------------ */ +/* Tests */ +/* ------------------------------------------------------------------ */ + +static void +test_schema_loads (void) +{ + GSettings *s = open_nemo_prefs (); + /* If the schema didn't load, g_settings_new would have aborted. */ + g_object_unref (s); +} + +static void +test_start_with_dual_pane_exists (void) +{ + GSettings *s = open_nemo_prefs (); + /* Regression guard: moving the key to the Dual Pane section in the UI + * must not remove it from the schema. */ + GVariant *v = g_settings_get_default_value (s, "start-with-dual-pane"); + g_assert_nonnull (v); + g_assert_true (g_variant_is_of_type (v, G_VARIANT_TYPE_BOOLEAN)); + g_variant_unref (v); + g_object_unref (s); +} + +static void +test_vertical_split_default_false (void) +{ + GSettings *s = open_nemo_prefs (); + g_assert_false (schema_default_bool (s, "dual-pane-vertical-split")); + g_object_unref (s); +} + +static void +test_separate_sidebar_default_false (void) +{ + GSettings *s = open_nemo_prefs (); + g_assert_false (schema_default_bool (s, "dual-pane-separate-sidebar")); + g_object_unref (s); +} + +static void +test_separate_nav_bar_default_false (void) +{ + GSettings *s = open_nemo_prefs (); + g_assert_false (schema_default_bool (s, "dual-pane-separate-nav-bar")); + g_object_unref (s); +} + +static void +test_vertical_split_roundtrip (void) +{ + GSettings *s = open_nemo_prefs (); + g_settings_set_boolean (s, "dual-pane-vertical-split", TRUE); + g_assert_true (g_settings_get_boolean (s, "dual-pane-vertical-split")); + g_settings_set_boolean (s, "dual-pane-vertical-split", FALSE); + g_assert_false (g_settings_get_boolean (s, "dual-pane-vertical-split")); + g_settings_reset (s, "dual-pane-vertical-split"); + g_object_unref (s); +} + +static void +test_separate_sidebar_roundtrip (void) +{ + GSettings *s = open_nemo_prefs (); + g_settings_set_boolean (s, "dual-pane-separate-sidebar", TRUE); + g_assert_true (g_settings_get_boolean (s, "dual-pane-separate-sidebar")); + g_settings_set_boolean (s, "dual-pane-separate-sidebar", FALSE); + g_assert_false (g_settings_get_boolean (s, "dual-pane-separate-sidebar")); + g_settings_reset (s, "dual-pane-separate-sidebar"); + g_object_unref (s); +} + +static void +test_separate_nav_bar_roundtrip (void) +{ + GSettings *s = open_nemo_prefs (); + g_settings_set_boolean (s, "dual-pane-separate-nav-bar", TRUE); + g_assert_true (g_settings_get_boolean (s, "dual-pane-separate-nav-bar")); + g_settings_set_boolean (s, "dual-pane-separate-nav-bar", FALSE); + g_assert_false (g_settings_get_boolean (s, "dual-pane-separate-nav-bar")); + g_settings_reset (s, "dual-pane-separate-nav-bar"); + g_object_unref (s); +} + +static void +test_all_three_keys_independent (void) +{ + /* Setting one key must not affect the others. */ + GSettings *s = open_nemo_prefs (); + + g_settings_set_boolean (s, "dual-pane-vertical-split", TRUE); + g_settings_set_boolean (s, "dual-pane-separate-sidebar", FALSE); + g_settings_set_boolean (s, "dual-pane-separate-nav-bar", FALSE); + + g_assert_true (g_settings_get_boolean (s, "dual-pane-vertical-split")); + g_assert_false (g_settings_get_boolean (s, "dual-pane-separate-sidebar")); + g_assert_false (g_settings_get_boolean (s, "dual-pane-separate-nav-bar")); + + g_settings_set_boolean (s, "dual-pane-vertical-split", FALSE); + g_settings_set_boolean (s, "dual-pane-separate-sidebar", TRUE); + g_settings_set_boolean (s, "dual-pane-separate-nav-bar", FALSE); + + g_assert_false (g_settings_get_boolean (s, "dual-pane-vertical-split")); + g_assert_true (g_settings_get_boolean (s, "dual-pane-separate-sidebar")); + g_assert_false (g_settings_get_boolean (s, "dual-pane-separate-nav-bar")); + + /* Reset all to schema defaults so subsequent runs start clean. */ + g_settings_reset (s, "dual-pane-vertical-split"); + g_settings_reset (s, "dual-pane-separate-sidebar"); + g_settings_reset (s, "dual-pane-separate-nav-bar"); + + g_object_unref (s); +} + +/* ------------------------------------------------------------------ */ +/* main */ +/* ------------------------------------------------------------------ */ + +int +main (int argc, char *argv[]) +{ + g_test_init (&argc, &argv, NULL); + + g_test_add_func ("/dual-pane/schema/loads", + test_schema_loads); + g_test_add_func ("/dual-pane/schema/start-with-dual-pane-exists", + test_start_with_dual_pane_exists); + g_test_add_func ("/dual-pane/schema/vertical-split-default-false", + test_vertical_split_default_false); + g_test_add_func ("/dual-pane/schema/separate-sidebar-default-false", + test_separate_sidebar_default_false); + g_test_add_func ("/dual-pane/schema/separate-nav-bar-default-false", + test_separate_nav_bar_default_false); + g_test_add_func ("/dual-pane/schema/vertical-split-roundtrip", + test_vertical_split_roundtrip); + g_test_add_func ("/dual-pane/schema/separate-sidebar-roundtrip", + test_separate_sidebar_roundtrip); + g_test_add_func ("/dual-pane/schema/separate-nav-bar-roundtrip", + test_separate_nav_bar_roundtrip); + g_test_add_func ("/dual-pane/schema/all-three-keys-independent", + test_all_three_keys_independent); + + return g_test_run (); +} diff --git a/test/test-dual-pane.c b/test/test-dual-pane.c new file mode 100644 index 0000000000..8c14f32e93 --- /dev/null +++ b/test/test-dual-pane.c @@ -0,0 +1,1277 @@ +/* + * test-dual-pane.c + * + * GTest-based tests for Nemo dual-pane layout functionality. + * + * Covers: + * - Existing split-view on/off cycle (regression guard) + * - New preference: vertical split layout + * - New preference: separate sidebar per pane + * - New preference: separate nav bar per pane + * - Combinations of the above + * - Sidebar type change while per-pane mode is active (crash regression) + * - Hide/show sidebar while per-pane mode is active + * - Window destroy with per-pane mode active (crash regression) + * - Active-pane tracking through tear-down/rebuild cycles + * - pane->active_slot independence after wrappers are set up + * + * These tests require a running GLib main loop (gtk_init) and access to a + * GSettings schema directory. Run via: + * + * GSETTINGS_SCHEMA_DIR=/tmp/nemo-schemas meson test --suite dual-pane + * + * or the project build script. + * + * NOTE: Because NemoWindow requires a GtkApplication, the tests use + * NemoMainApplication as the singleton app context. Many tests only + * inspect widget hierarchy state (parent/child relationships) and do not + * navigate to real filesystem paths, so no D-Bus or display compositor is + * required beyond what Xvfb provides in CI. + */ + +#include +#include +#include +#include + +#include "src/nemo-main-application.h" +#include "src/nemo-application.h" +#include "src/nemo-window.h" +#include "src/nemo-window-private.h" +#include "src/nemo-window-pane.h" +#include "libnemo-private/nemo-global-preferences.h" + +/* ------------------------------------------------------------------ */ +/* Helpers */ +/* ------------------------------------------------------------------ */ + +/* Global app singleton shared across all tests in this process. */ +static NemoApplication *test_app = NULL; + +/* + * create_test_window: + * Create a fresh NemoWindow for a test. The window is NOT shown; + * widget hierarchies are still inspectable without a realised window. + * The caller must gtk_widget_destroy() it when done. + */ +static NemoWindow * +create_test_window (void) +{ + NemoWindow *window; + + g_assert_nonnull (test_app); + + window = NEMO_APPLICATION_GET_CLASS (test_app)->create_window ( + test_app, + gdk_screen_get_default ()); + + /* Flush pending GTK/GLib events so construction signals settle */ + while (g_main_context_iteration (NULL, FALSE)) + ; + + return window; +} + +/* Convenience: set a dual-pane bool preference and flush events. */ +static void +set_pref_bool (const gchar *key, gboolean val) +{ + g_settings_set_boolean (nemo_preferences, key, val); + while (g_main_context_iteration (NULL, FALSE)) + ; +} + +/* Return the number of panes currently on a window. */ +static guint +pane_count (NemoWindow *window) +{ + return g_list_length (window->details->panes); +} + +/* Return the second pane or NULL. */ +static NemoWindowPane * +get_pane2 (NemoWindow *window) +{ + GList *last = g_list_last (window->details->panes); + if (!last || last->data == window->details->panes->data) + return NULL; + return NEMO_WINDOW_PANE (last->data); +} + +/* Return TRUE if the widget is an ancestor of the given container. */ +static gboolean +widget_is_inside (GtkWidget *widget, GtkWidget *container) +{ + GtkWidget *p = widget; + while (p != NULL) { + if (p == container) return TRUE; + p = gtk_widget_get_parent (p); + } + return FALSE; +} + +/* ------------------------------------------------------------------ */ +/* Test suite setup / teardown */ +/* ------------------------------------------------------------------ */ + +static void +suite_setup (void) +{ + /* Ensure all dual-pane prefs are at defaults before each test */ + set_pref_bool (NEMO_PREFERENCES_DUAL_PANE_VERTICAL_SPLIT, FALSE); + set_pref_bool (NEMO_PREFERENCES_DUAL_PANE_SEPARATE_SIDEBAR, FALSE); + set_pref_bool (NEMO_PREFERENCES_DUAL_PANE_SEPARATE_NAV_BAR, FALSE); +} + +/* ------------------------------------------------------------------ */ +/* ------------------------------------------------------------------ */ +/* GROUP 1: Existing split-view behaviour (all new prefs OFF) */ +/* ------------------------------------------------------------------ */ +/* ------------------------------------------------------------------ */ + +/* + * test_split_view_on_off: + * Basic split-view cycle: single pane → split → single. + * Verifies pane count and that the window doesn't crash. + */ +static void +test_split_view_on_off (void) +{ + NemoWindow *w = create_test_window (); + + g_assert_cmpuint (pane_count (w), ==, 1); + + nemo_window_split_view_on (w); + while (g_main_context_iteration (NULL, FALSE)) ; + + g_assert_cmpuint (pane_count (w), ==, 2); + g_assert_nonnull (get_pane2 (w)); + + nemo_window_split_view_off (w); + while (g_main_context_iteration (NULL, FALSE)) ; + + g_assert_cmpuint (pane_count (w), ==, 1); + g_assert_null (get_pane2 (w)); + + gtk_widget_destroy (GTK_WIDGET (w)); +} + +/* + * test_split_view_active_pane_survives: + * After split-view-off, the surviving pane is the one that was active. + */ +static void +test_split_view_active_pane_survives (void) +{ + NemoWindow *w = create_test_window (); + NemoWindowPane *pane1; + + nemo_window_split_view_on (w); + while (g_main_context_iteration (NULL, FALSE)) ; + + pane1 = w->details->panes->data; + nemo_window_set_active_pane (w, pane1); + while (g_main_context_iteration (NULL, FALSE)) ; + + nemo_window_split_view_off (w); + while (g_main_context_iteration (NULL, FALSE)) ; + + /* pane1 must be the survivor */ + g_assert_cmpuint (pane_count (w), ==, 1); + g_assert_true (w->details->panes->data == pane1); + + gtk_widget_destroy (GTK_WIDGET (w)); +} + +/* + * test_split_view_secondary_pane_active_survives: + * If pane2 is active when split-view-off fires, pane2 should survive. + */ +static void +test_split_view_secondary_pane_active_survives (void) +{ + NemoWindow *w = create_test_window (); + NemoWindowPane *pane2; + + nemo_window_split_view_on (w); + while (g_main_context_iteration (NULL, FALSE)) ; + + pane2 = get_pane2 (w); + g_assert_nonnull (pane2); + nemo_window_set_active_pane (w, pane2); + while (g_main_context_iteration (NULL, FALSE)) ; + + nemo_window_split_view_off (w); + while (g_main_context_iteration (NULL, FALSE)) ; + + g_assert_cmpuint (pane_count (w), ==, 1); + g_assert_true (w->details->panes->data == pane2); + + gtk_widget_destroy (GTK_WIDGET (w)); +} + +/* + * test_split_view_toolbar_returns_to_holder: + * After split-view-off with all new prefs OFF, both toolbars should be + * back in toolbar_holder, not inside the pane widget. + */ +static void +test_split_view_toolbar_returns_to_holder (void) +{ + NemoWindow *w = create_test_window (); + NemoWindowPane *pane1; + + nemo_window_split_view_on (w); + while (g_main_context_iteration (NULL, FALSE)) ; + nemo_window_split_view_off (w); + while (g_main_context_iteration (NULL, FALSE)) ; + + pane1 = w->details->panes->data; + /* toolbar's parent should be toolbar_holder */ + g_assert_true ( + gtk_widget_get_parent (pane1->tool_bar) == + w->details->toolbar_holder); + + gtk_widget_destroy (GTK_WIDGET (w)); +} + +/* + * test_sidebar_hide_show_no_split: + * Hide and show sidebar without any split view; no crash, sidebar + * pointer follows. + */ +static void +test_sidebar_hide_show_no_split (void) +{ + NemoWindow *w = create_test_window (); + + g_assert_nonnull (w->details->sidebar); + + nemo_window_hide_sidebar (w); + while (g_main_context_iteration (NULL, FALSE)) ; + g_assert_null (w->details->sidebar); + + nemo_window_show_sidebar (w); + while (g_main_context_iteration (NULL, FALSE)) ; + g_assert_nonnull (w->details->sidebar); + + gtk_widget_destroy (GTK_WIDGET (w)); +} + +/* + * test_sidebar_hide_show_with_split_prefs_off: + * Sidebar hide/show works correctly with split view on but new prefs off. + */ +static void +test_sidebar_hide_show_with_split_prefs_off (void) +{ + NemoWindow *w = create_test_window (); + + nemo_window_split_view_on (w); + while (g_main_context_iteration (NULL, FALSE)) ; + + nemo_window_hide_sidebar (w); + while (g_main_context_iteration (NULL, FALSE)) ; + g_assert_null (w->details->sidebar); + /* Wrappers must not be active without per-pane prefs */ + g_assert_null (w->details->primary_pane_content_paned); + g_assert_null (w->details->secondary_pane_content_paned); + + nemo_window_show_sidebar (w); + while (g_main_context_iteration (NULL, FALSE)) ; + g_assert_nonnull (w->details->sidebar); + + gtk_widget_destroy (GTK_WIDGET (w)); +} + +/* ------------------------------------------------------------------ */ +/* ------------------------------------------------------------------ */ +/* GROUP 2: Vertical split orientation pref */ +/* ------------------------------------------------------------------ */ +/* ------------------------------------------------------------------ */ + +/* + * test_vertical_split_orientation: + * Enabling vertical-split should change split_view_hpane orientation to + * GTK_ORIENTATION_VERTICAL. + */ +static void +test_vertical_split_orientation (void) +{ + NemoWindow *w = create_test_window (); + + nemo_window_split_view_on (w); + while (g_main_context_iteration (NULL, FALSE)) ; + + /* Default: horizontal */ + g_assert_cmpint ( + gtk_orientable_get_orientation ( + GTK_ORIENTABLE (w->details->split_view_hpane)), + ==, GTK_ORIENTATION_HORIZONTAL); + + set_pref_bool (NEMO_PREFERENCES_DUAL_PANE_VERTICAL_SPLIT, TRUE); + + g_assert_cmpint ( + gtk_orientable_get_orientation ( + GTK_ORIENTABLE (w->details->split_view_hpane)), + ==, GTK_ORIENTATION_VERTICAL); + + gtk_widget_destroy (GTK_WIDGET (w)); +} + +/* + * test_vertical_split_orientation_toggle: + * Toggling the pref multiple times changes orientation and doesn't crash. + */ +static void +test_vertical_split_orientation_toggle (void) +{ + NemoWindow *w = create_test_window (); + + nemo_window_split_view_on (w); + while (g_main_context_iteration (NULL, FALSE)) ; + + set_pref_bool (NEMO_PREFERENCES_DUAL_PANE_VERTICAL_SPLIT, TRUE); + g_assert_cmpint (gtk_orientable_get_orientation ( + GTK_ORIENTABLE (w->details->split_view_hpane)), + ==, GTK_ORIENTATION_VERTICAL); + + set_pref_bool (NEMO_PREFERENCES_DUAL_PANE_VERTICAL_SPLIT, FALSE); + g_assert_cmpint (gtk_orientable_get_orientation ( + GTK_ORIENTABLE (w->details->split_view_hpane)), + ==, GTK_ORIENTATION_HORIZONTAL); + + set_pref_bool (NEMO_PREFERENCES_DUAL_PANE_VERTICAL_SPLIT, TRUE); + g_assert_cmpint (gtk_orientable_get_orientation ( + GTK_ORIENTABLE (w->details->split_view_hpane)), + ==, GTK_ORIENTATION_VERTICAL); + + gtk_widget_destroy (GTK_WIDGET (w)); +} + +/* + * test_vertical_split_pane_count_preserved: + * Changing orientation must not alter the pane count. + */ +static void +test_vertical_split_pane_count_preserved (void) +{ + NemoWindow *w = create_test_window (); + + nemo_window_split_view_on (w); + while (g_main_context_iteration (NULL, FALSE)) ; + g_assert_cmpuint (pane_count (w), ==, 2); + + set_pref_bool (NEMO_PREFERENCES_DUAL_PANE_VERTICAL_SPLIT, TRUE); + g_assert_cmpuint (pane_count (w), ==, 2); + + set_pref_bool (NEMO_PREFERENCES_DUAL_PANE_VERTICAL_SPLIT, FALSE); + g_assert_cmpuint (pane_count (w), ==, 2); + + gtk_widget_destroy (GTK_WIDGET (w)); +} + +/* + * test_vertical_split_off_then_split_view_off: + * Disabling split view after a vertical-split session must leave a + * single pane with no dangling wrappers. + */ +static void +test_vertical_split_off_then_split_view_off (void) +{ + NemoWindow *w = create_test_window (); + + nemo_window_split_view_on (w); + while (g_main_context_iteration (NULL, FALSE)) ; + set_pref_bool (NEMO_PREFERENCES_DUAL_PANE_VERTICAL_SPLIT, TRUE); + + nemo_window_split_view_off (w); + while (g_main_context_iteration (NULL, FALSE)) ; + + g_assert_cmpuint (pane_count (w), ==, 1); + g_assert_null (w->details->primary_pane_content_paned); + g_assert_null (w->details->secondary_pane_content_paned); + + gtk_widget_destroy (GTK_WIDGET (w)); +} + +/* ------------------------------------------------------------------ */ +/* ------------------------------------------------------------------ */ +/* GROUP 3: Separate sidebar per pane */ +/* ------------------------------------------------------------------ */ +/* ------------------------------------------------------------------ */ + +/* + * test_separate_sidebar_creates_sidebar2: + * Enabling separate-sidebar in vertical+split mode must create sidebar2. + */ +static void +test_separate_sidebar_creates_sidebar2 (void) +{ + NemoWindow *w = create_test_window (); + + nemo_window_split_view_on (w); + while (g_main_context_iteration (NULL, FALSE)) ; + set_pref_bool (NEMO_PREFERENCES_DUAL_PANE_VERTICAL_SPLIT, TRUE); + set_pref_bool (NEMO_PREFERENCES_DUAL_PANE_SEPARATE_SIDEBAR, TRUE); + + g_assert_nonnull (w->details->sidebar2); + g_assert_nonnull (w->details->secondary_pane_content_paned); + g_assert_nonnull (w->details->primary_pane_content_paned); + + gtk_widget_destroy (GTK_WIDGET (w)); +} + +/* + * test_separate_sidebar_disabled_removes_sidebar2: + * Disabling separate-sidebar must remove sidebar2 cleanly. + */ +static void +test_separate_sidebar_disabled_removes_sidebar2 (void) +{ + NemoWindow *w = create_test_window (); + + nemo_window_split_view_on (w); + while (g_main_context_iteration (NULL, FALSE)) ; + set_pref_bool (NEMO_PREFERENCES_DUAL_PANE_VERTICAL_SPLIT, TRUE); + set_pref_bool (NEMO_PREFERENCES_DUAL_PANE_SEPARATE_SIDEBAR, TRUE); + + g_assert_nonnull (w->details->sidebar2); + + set_pref_bool (NEMO_PREFERENCES_DUAL_PANE_SEPARATE_SIDEBAR, FALSE); + + g_assert_null (w->details->sidebar2); + g_assert_null (w->details->secondary_pane_content_paned); + + gtk_widget_destroy (GTK_WIDGET (w)); +} + +/* + * test_separate_sidebar_pane2_inside_sec_paned: + * When sidebar2 is active, pane2 must be a descendant of + * secondary_pane_content_paned. + */ +static void +test_separate_sidebar_pane2_inside_sec_paned (void) +{ + NemoWindow *w = create_test_window (); + NemoWindowPane *pane2; + + nemo_window_split_view_on (w); + while (g_main_context_iteration (NULL, FALSE)) ; + set_pref_bool (NEMO_PREFERENCES_DUAL_PANE_VERTICAL_SPLIT, TRUE); + set_pref_bool (NEMO_PREFERENCES_DUAL_PANE_SEPARATE_SIDEBAR, TRUE); + + pane2 = get_pane2 (w); + g_assert_nonnull (pane2); + g_assert_true (widget_is_inside (GTK_WIDGET (pane2), + w->details->secondary_pane_content_paned)); + + gtk_widget_destroy (GTK_WIDGET (w)); +} + +/* + * test_separate_sidebar_pane1_inside_pri_paned: + * When pane1 wrapper is active, pane1 must be inside + * primary_pane_content_paned. + */ +static void +test_separate_sidebar_pane1_inside_pri_paned (void) +{ + NemoWindow *w = create_test_window (); + NemoWindowPane *pane1; + + nemo_window_split_view_on (w); + while (g_main_context_iteration (NULL, FALSE)) ; + set_pref_bool (NEMO_PREFERENCES_DUAL_PANE_VERTICAL_SPLIT, TRUE); + set_pref_bool (NEMO_PREFERENCES_DUAL_PANE_SEPARATE_SIDEBAR, TRUE); + + pane1 = w->details->panes->data; + g_assert_true (widget_is_inside (GTK_WIDGET (pane1), + w->details->primary_pane_content_paned)); + + gtk_widget_destroy (GTK_WIDGET (w)); +} + +/* + * test_separate_sidebar_not_active_without_vertical_split: + * sidebar2 must NOT be created if vertical-split is off, even if + * separate-sidebar is on, because per-pane mode requires vertical. + */ +static void +test_separate_sidebar_not_active_without_vertical_split (void) +{ + NemoWindow *w = create_test_window (); + + nemo_window_split_view_on (w); + while (g_main_context_iteration (NULL, FALSE)) ; + + /* horizontal split + separate-sidebar: should NOT create sidebar2 */ + set_pref_bool (NEMO_PREFERENCES_DUAL_PANE_SEPARATE_SIDEBAR, TRUE); + /* vertical is still FALSE */ + + g_assert_null (w->details->sidebar2); + g_assert_null (w->details->secondary_pane_content_paned); + + gtk_widget_destroy (GTK_WIDGET (w)); +} + +/* + * test_separate_sidebar_sidebar_hide_show_cycle: + * Hide and show sidebar while separate-sidebar is active; no crash and + * sidebar2 comes back. + */ +static void +test_separate_sidebar_hide_show_cycle (void) +{ + NemoWindow *w = create_test_window (); + + nemo_window_split_view_on (w); + while (g_main_context_iteration (NULL, FALSE)) ; + set_pref_bool (NEMO_PREFERENCES_DUAL_PANE_VERTICAL_SPLIT, TRUE); + set_pref_bool (NEMO_PREFERENCES_DUAL_PANE_SEPARATE_SIDEBAR, TRUE); + + g_assert_nonnull (w->details->sidebar2); + + nemo_window_hide_sidebar (w); + while (g_main_context_iteration (NULL, FALSE)) ; + + g_assert_null (w->details->sidebar); + g_assert_null (w->details->sidebar2); + g_assert_null (w->details->primary_pane_content_paned); + g_assert_null (w->details->secondary_pane_content_paned); + + nemo_window_show_sidebar (w); + while (g_main_context_iteration (NULL, FALSE)) ; + + g_assert_nonnull (w->details->sidebar); + g_assert_nonnull (w->details->sidebar2); + g_assert_nonnull (w->details->primary_pane_content_paned); + g_assert_nonnull (w->details->secondary_pane_content_paned); + + gtk_widget_destroy (GTK_WIDGET (w)); +} + +/* + * test_separate_sidebar_split_view_off_cleans_up: + * Turning split view off while separate-sidebar is active must leave no + * orphaned wrapper pointers. + */ +static void +test_separate_sidebar_split_view_off_cleans_up (void) +{ + NemoWindow *w = create_test_window (); + + nemo_window_split_view_on (w); + while (g_main_context_iteration (NULL, FALSE)) ; + set_pref_bool (NEMO_PREFERENCES_DUAL_PANE_VERTICAL_SPLIT, TRUE); + set_pref_bool (NEMO_PREFERENCES_DUAL_PANE_SEPARATE_SIDEBAR, TRUE); + + nemo_window_split_view_off (w); + while (g_main_context_iteration (NULL, FALSE)) ; + + g_assert_cmpuint (pane_count (w), ==, 1); + g_assert_null (w->details->sidebar2); + g_assert_null (w->details->primary_pane_content_paned); + g_assert_null (w->details->secondary_pane_content_paned); + + gtk_widget_destroy (GTK_WIDGET (w)); +} + +/* + * test_separate_sidebar_type_change_places_to_tree: + * CRASH REGRESSION: Changing sidebar type from Places→Tree while + * separate-sidebar mode is active must not crash. + * (The bug was pri_paned still occupying split_hpane child1 during teardown.) + */ +static void +test_separate_sidebar_type_change_places_to_tree (void) +{ + NemoWindow *w = create_test_window (); + + /* Ensure we start with places sidebar */ + nemo_window_set_sidebar_id (w, NEMO_WINDOW_SIDEBAR_PLACES); + while (g_main_context_iteration (NULL, FALSE)) ; + + nemo_window_split_view_on (w); + while (g_main_context_iteration (NULL, FALSE)) ; + set_pref_bool (NEMO_PREFERENCES_DUAL_PANE_VERTICAL_SPLIT, TRUE); + set_pref_bool (NEMO_PREFERENCES_DUAL_PANE_SEPARATE_SIDEBAR, TRUE); + + g_assert_nonnull (w->details->sidebar2); + + /* This used to crash with pane->slots == NULL assertion */ + nemo_window_set_sidebar_id (w, NEMO_WINDOW_SIDEBAR_TREE); + while (g_main_context_iteration (NULL, FALSE)) ; + + /* Wrappers should be rebuilt correctly after the type change */ + g_assert_nonnull (w->details->sidebar); + g_assert_nonnull (w->details->sidebar2); + g_assert_nonnull (w->details->primary_pane_content_paned); + g_assert_nonnull (w->details->secondary_pane_content_paned); + g_assert_cmpuint (pane_count (w), ==, 2); + + gtk_widget_destroy (GTK_WIDGET (w)); +} + +/* + * test_separate_sidebar_type_change_tree_to_places: + * Same crash regression in the other direction. + */ +static void +test_separate_sidebar_type_change_tree_to_places (void) +{ + NemoWindow *w = create_test_window (); + + nemo_window_set_sidebar_id (w, NEMO_WINDOW_SIDEBAR_TREE); + while (g_main_context_iteration (NULL, FALSE)) ; + + nemo_window_split_view_on (w); + while (g_main_context_iteration (NULL, FALSE)) ; + set_pref_bool (NEMO_PREFERENCES_DUAL_PANE_VERTICAL_SPLIT, TRUE); + set_pref_bool (NEMO_PREFERENCES_DUAL_PANE_SEPARATE_SIDEBAR, TRUE); + + nemo_window_set_sidebar_id (w, NEMO_WINDOW_SIDEBAR_PLACES); + while (g_main_context_iteration (NULL, FALSE)) ; + + g_assert_nonnull (w->details->sidebar); + g_assert_nonnull (w->details->sidebar2); + g_assert_cmpuint (pane_count (w), ==, 2); + + gtk_widget_destroy (GTK_WIDGET (w)); +} + +/* + * test_separate_sidebar_type_change_multiple_cycles: + * Multiple sidebar-type changes in a row must not accumulate damage. + */ +static void +test_separate_sidebar_type_change_multiple_cycles (void) +{ + NemoWindow *w = create_test_window (); + + nemo_window_split_view_on (w); + while (g_main_context_iteration (NULL, FALSE)) ; + set_pref_bool (NEMO_PREFERENCES_DUAL_PANE_VERTICAL_SPLIT, TRUE); + set_pref_bool (NEMO_PREFERENCES_DUAL_PANE_SEPARATE_SIDEBAR, TRUE); + + for (int i = 0; i < 4; i++) { + const gchar *id = (i % 2 == 0) ? NEMO_WINDOW_SIDEBAR_TREE + : NEMO_WINDOW_SIDEBAR_PLACES; + nemo_window_set_sidebar_id (w, id); + while (g_main_context_iteration (NULL, FALSE)) ; + + g_assert_nonnull (w->details->sidebar); + g_assert_nonnull (w->details->sidebar2); + g_assert_cmpuint (pane_count (w), ==, 2); + } + + gtk_widget_destroy (GTK_WIDGET (w)); +} + +/* + * test_separate_sidebar_window_destroy: + * CRASH REGRESSION: Destroying the window while separate-sidebar is + * active must not crash (nemo_window_destroy lacked teardown calls). + */ +static void +test_separate_sidebar_window_destroy (void) +{ + NemoWindow *w = create_test_window (); + + nemo_window_split_view_on (w); + while (g_main_context_iteration (NULL, FALSE)) ; + set_pref_bool (NEMO_PREFERENCES_DUAL_PANE_VERTICAL_SPLIT, TRUE); + set_pref_bool (NEMO_PREFERENCES_DUAL_PANE_SEPARATE_SIDEBAR, TRUE); + + g_assert_nonnull (w->details->sidebar2); + + /* Must not crash */ + gtk_widget_destroy (GTK_WIDGET (w)); +} + +/* ------------------------------------------------------------------ */ +/* ------------------------------------------------------------------ */ +/* GROUP 4: Separate nav bar per pane */ +/* ------------------------------------------------------------------ */ +/* ------------------------------------------------------------------ */ + +/* + * test_separate_nav_bar_embeds_toolbars: + * With separate-nav-bar + vertical + split, both pane toolbars must be + * inside their respective pane widgets (not in toolbar_holder). + */ +static void +test_separate_nav_bar_embeds_toolbars (void) +{ + NemoWindow *w = create_test_window (); + NemoWindowPane *pane1, *pane2; + + nemo_window_split_view_on (w); + while (g_main_context_iteration (NULL, FALSE)) ; + set_pref_bool (NEMO_PREFERENCES_DUAL_PANE_VERTICAL_SPLIT, TRUE); + set_pref_bool (NEMO_PREFERENCES_DUAL_PANE_SEPARATE_NAV_BAR, TRUE); + + pane1 = w->details->panes->data; + pane2 = get_pane2 (w); + g_assert_nonnull (pane2); + + /* Toolbars must be inside the pane, not toolbar_holder */ + g_assert_true (widget_is_inside (pane1->tool_bar, GTK_WIDGET (pane1))); + g_assert_true (widget_is_inside (pane2->tool_bar, GTK_WIDGET (pane2))); + + gtk_widget_destroy (GTK_WIDGET (w)); +} + +/* + * test_separate_nav_bar_detaches_on_disable: + * Disabling separate-nav-bar must move toolbars back to toolbar_holder. + */ +static void +test_separate_nav_bar_detaches_on_disable (void) +{ + NemoWindow *w = create_test_window (); + NemoWindowPane *pane1, *pane2; + + nemo_window_split_view_on (w); + while (g_main_context_iteration (NULL, FALSE)) ; + set_pref_bool (NEMO_PREFERENCES_DUAL_PANE_VERTICAL_SPLIT, TRUE); + set_pref_bool (NEMO_PREFERENCES_DUAL_PANE_SEPARATE_NAV_BAR, TRUE); + + pane1 = w->details->panes->data; + pane2 = get_pane2 (w); + + set_pref_bool (NEMO_PREFERENCES_DUAL_PANE_SEPARATE_NAV_BAR, FALSE); + + g_assert_true ( + gtk_widget_get_parent (pane1->tool_bar) == w->details->toolbar_holder); + g_assert_true ( + gtk_widget_get_parent (pane2->tool_bar) == w->details->toolbar_holder); + + gtk_widget_destroy (GTK_WIDGET (w)); +} + +/* + * test_separate_nav_bar_not_active_without_vertical_split: + * Toolbars must remain in toolbar_holder when vertical-split is off, + * even if separate-nav-bar is on. + */ +static void +test_separate_nav_bar_not_active_without_vertical_split (void) +{ + NemoWindow *w = create_test_window (); + NemoWindowPane *pane1, *pane2; + + nemo_window_split_view_on (w); + while (g_main_context_iteration (NULL, FALSE)) ; + + set_pref_bool (NEMO_PREFERENCES_DUAL_PANE_SEPARATE_NAV_BAR, TRUE); + /* vertical is still FALSE */ + + pane1 = w->details->panes->data; + pane2 = get_pane2 (w); + + g_assert_true ( + gtk_widget_get_parent (pane1->tool_bar) == w->details->toolbar_holder); + g_assert_true ( + gtk_widget_get_parent (pane2->tool_bar) == w->details->toolbar_holder); + + gtk_widget_destroy (GTK_WIDGET (w)); +} + +/* + * test_separate_nav_bar_split_view_off_restores_toolbar: + * After split-view-off with separate-nav-bar active, remaining pane's + * toolbar must be back in toolbar_holder. + */ +static void +test_separate_nav_bar_split_view_off_restores_toolbar (void) +{ + NemoWindow *w = create_test_window (); + NemoWindowPane *pane1; + + nemo_window_split_view_on (w); + while (g_main_context_iteration (NULL, FALSE)) ; + set_pref_bool (NEMO_PREFERENCES_DUAL_PANE_VERTICAL_SPLIT, TRUE); + set_pref_bool (NEMO_PREFERENCES_DUAL_PANE_SEPARATE_NAV_BAR, TRUE); + + nemo_window_split_view_off (w); + while (g_main_context_iteration (NULL, FALSE)) ; + + pane1 = w->details->panes->data; + g_assert_true ( + gtk_widget_get_parent (pane1->tool_bar) == w->details->toolbar_holder); + + gtk_widget_destroy (GTK_WIDGET (w)); +} + +/* + * test_separate_nav_bar_window_destroy: + * Destroying the window while separate-nav-bar is active must not crash. + */ +static void +test_separate_nav_bar_window_destroy (void) +{ + NemoWindow *w = create_test_window (); + + nemo_window_split_view_on (w); + while (g_main_context_iteration (NULL, FALSE)) ; + set_pref_bool (NEMO_PREFERENCES_DUAL_PANE_VERTICAL_SPLIT, TRUE); + set_pref_bool (NEMO_PREFERENCES_DUAL_PANE_SEPARATE_NAV_BAR, TRUE); + + /* Must not crash */ + gtk_widget_destroy (GTK_WIDGET (w)); +} + +/* ------------------------------------------------------------------ */ +/* ------------------------------------------------------------------ */ +/* GROUP 5: All three new prefs on simultaneously */ +/* ------------------------------------------------------------------ */ +/* ------------------------------------------------------------------ */ + +/* + * test_all_prefs_on_structure: + * With all three new prefs on, verify full expected structure: + * - split_hpane has two children + * - child1 = pri_paned (sidebar1 + pane1 inside) + * - child2 = sec_paned (sidebar2 + pane2 inside) + * - pane1 toolbar is embedded in pane1 + * - pane2 toolbar is embedded in pane2 + */ +static void +test_all_prefs_on_structure (void) +{ + NemoWindow *w = create_test_window (); + NemoWindowPane *pane1, *pane2; + + nemo_window_split_view_on (w); + while (g_main_context_iteration (NULL, FALSE)) ; + set_pref_bool (NEMO_PREFERENCES_DUAL_PANE_VERTICAL_SPLIT, TRUE); + set_pref_bool (NEMO_PREFERENCES_DUAL_PANE_SEPARATE_SIDEBAR, TRUE); + set_pref_bool (NEMO_PREFERENCES_DUAL_PANE_SEPARATE_NAV_BAR, TRUE); + + pane1 = w->details->panes->data; + pane2 = get_pane2 (w); + g_assert_nonnull (pane2); + + /* Pane count intact */ + g_assert_cmpuint (pane_count (w), ==, 2); + + /* Wrapper pointers set */ + g_assert_nonnull (w->details->primary_pane_content_paned); + g_assert_nonnull (w->details->secondary_pane_content_paned); + g_assert_nonnull (w->details->sidebar2); + + /* Panes inside their wrappers */ + g_assert_true (widget_is_inside (GTK_WIDGET (pane1), + w->details->primary_pane_content_paned)); + g_assert_true (widget_is_inside (GTK_WIDGET (pane2), + w->details->secondary_pane_content_paned)); + + /* Toolbars embedded */ + g_assert_true (widget_is_inside (pane1->tool_bar, GTK_WIDGET (pane1))); + g_assert_true (widget_is_inside (pane2->tool_bar, GTK_WIDGET (pane2))); + + gtk_widget_destroy (GTK_WIDGET (w)); +} + +/* + * test_all_prefs_on_then_split_view_off: + * Full teardown with all prefs on should leave exactly 1 pane and no + * dangling pointers. + */ +static void +test_all_prefs_on_then_split_view_off (void) +{ + NemoWindow *w = create_test_window (); + + nemo_window_split_view_on (w); + while (g_main_context_iteration (NULL, FALSE)) ; + set_pref_bool (NEMO_PREFERENCES_DUAL_PANE_VERTICAL_SPLIT, TRUE); + set_pref_bool (NEMO_PREFERENCES_DUAL_PANE_SEPARATE_SIDEBAR, TRUE); + set_pref_bool (NEMO_PREFERENCES_DUAL_PANE_SEPARATE_NAV_BAR, TRUE); + + nemo_window_split_view_off (w); + while (g_main_context_iteration (NULL, FALSE)) ; + + g_assert_cmpuint (pane_count (w), ==, 1); + g_assert_null (w->details->sidebar2); + g_assert_null (w->details->primary_pane_content_paned); + g_assert_null (w->details->secondary_pane_content_paned); + + NemoWindowPane *pane1 = w->details->panes->data; + g_assert_true ( + gtk_widget_get_parent (pane1->tool_bar) == w->details->toolbar_holder); + + gtk_widget_destroy (GTK_WIDGET (w)); +} + +/* + * test_all_prefs_on_sidebar_type_change: + * Changing sidebar type with all prefs on must not crash and must + * rebuild both sidebars. + */ +static void +test_all_prefs_on_sidebar_type_change (void) +{ + NemoWindow *w = create_test_window (); + + nemo_window_set_sidebar_id (w, NEMO_WINDOW_SIDEBAR_PLACES); + while (g_main_context_iteration (NULL, FALSE)) ; + + nemo_window_split_view_on (w); + while (g_main_context_iteration (NULL, FALSE)) ; + set_pref_bool (NEMO_PREFERENCES_DUAL_PANE_VERTICAL_SPLIT, TRUE); + set_pref_bool (NEMO_PREFERENCES_DUAL_PANE_SEPARATE_SIDEBAR, TRUE); + set_pref_bool (NEMO_PREFERENCES_DUAL_PANE_SEPARATE_NAV_BAR, TRUE); + + nemo_window_set_sidebar_id (w, NEMO_WINDOW_SIDEBAR_TREE); + while (g_main_context_iteration (NULL, FALSE)) ; + + g_assert_nonnull (w->details->sidebar); + g_assert_nonnull (w->details->sidebar2); + g_assert_cmpuint (pane_count (w), ==, 2); + + gtk_widget_destroy (GTK_WIDGET (w)); +} + +/* + * test_all_prefs_on_hide_show_sidebar: + * Hide/show sidebar with all prefs on must rebuild the full per-pane + * layout after show. + */ +static void +test_all_prefs_on_hide_show_sidebar (void) +{ + NemoWindow *w = create_test_window (); + + nemo_window_split_view_on (w); + while (g_main_context_iteration (NULL, FALSE)) ; + set_pref_bool (NEMO_PREFERENCES_DUAL_PANE_VERTICAL_SPLIT, TRUE); + set_pref_bool (NEMO_PREFERENCES_DUAL_PANE_SEPARATE_SIDEBAR, TRUE); + set_pref_bool (NEMO_PREFERENCES_DUAL_PANE_SEPARATE_NAV_BAR, TRUE); + + nemo_window_hide_sidebar (w); + while (g_main_context_iteration (NULL, FALSE)) ; + + g_assert_null (w->details->sidebar); + g_assert_null (w->details->sidebar2); + g_assert_null (w->details->primary_pane_content_paned); + g_assert_null (w->details->secondary_pane_content_paned); + + nemo_window_show_sidebar (w); + while (g_main_context_iteration (NULL, FALSE)) ; + + g_assert_nonnull (w->details->sidebar); + g_assert_nonnull (w->details->sidebar2); + g_assert_nonnull (w->details->primary_pane_content_paned); + g_assert_nonnull (w->details->secondary_pane_content_paned); + + gtk_widget_destroy (GTK_WIDGET (w)); +} + +/* + * test_all_prefs_on_window_destroy: + * Window destroy with all prefs on must not crash. + */ +static void +test_all_prefs_on_window_destroy (void) +{ + NemoWindow *w = create_test_window (); + + nemo_window_split_view_on (w); + while (g_main_context_iteration (NULL, FALSE)) ; + set_pref_bool (NEMO_PREFERENCES_DUAL_PANE_VERTICAL_SPLIT, TRUE); + set_pref_bool (NEMO_PREFERENCES_DUAL_PANE_SEPARATE_SIDEBAR, TRUE); + set_pref_bool (NEMO_PREFERENCES_DUAL_PANE_SEPARATE_NAV_BAR, TRUE); + + /* Must not crash */ + gtk_widget_destroy (GTK_WIDGET (w)); +} + +/* ------------------------------------------------------------------ */ +/* ------------------------------------------------------------------ */ +/* GROUP 6: Active pane tracking */ +/* ------------------------------------------------------------------ */ +/* ------------------------------------------------------------------ */ + +/* + * test_active_pane_pointer_valid_after_split_on: + * After split-view-on, the active pane pointer must still be valid. + */ +static void +test_active_pane_pointer_valid_after_split_on (void) +{ + NemoWindow *w = create_test_window (); + NemoWindowPane *pane1 = w->details->panes->data; + + nemo_window_split_view_on (w); + while (g_main_context_iteration (NULL, FALSE)) ; + + /* active pane should be set to something valid */ + g_assert_nonnull (w->details->active_pane); + g_assert_true (g_list_find (w->details->panes, w->details->active_pane) != NULL); + + gtk_widget_destroy (GTK_WIDGET (w)); + (void) pane1; +} + +/* + * test_active_pane_pointer_valid_after_orientation_change: + * Changing orientation must not invalidate the active pane pointer. + */ +static void +test_active_pane_pointer_valid_after_orientation_change (void) +{ + NemoWindow *w = create_test_window (); + + nemo_window_split_view_on (w); + while (g_main_context_iteration (NULL, FALSE)) ; + + NemoWindowPane *active_before = w->details->active_pane; + + set_pref_bool (NEMO_PREFERENCES_DUAL_PANE_VERTICAL_SPLIT, TRUE); + + g_assert_true (w->details->active_pane == active_before); + g_assert_true (g_list_find (w->details->panes, w->details->active_pane) != NULL); + + gtk_widget_destroy (GTK_WIDGET (w)); +} + +/* + * test_active_pane_set_to_pane2: + * Setting active pane to pane2 and then doing an orientation change + * must leave pane2 as the active pane. + */ +static void +test_active_pane_set_to_pane2 (void) +{ + NemoWindow *w = create_test_window (); + + nemo_window_split_view_on (w); + while (g_main_context_iteration (NULL, FALSE)) ; + + NemoWindowPane *pane2 = get_pane2 (w); + nemo_window_set_active_pane (w, pane2); + while (g_main_context_iteration (NULL, FALSE)) ; + + g_assert_true (w->details->active_pane == pane2); + + set_pref_bool (NEMO_PREFERENCES_DUAL_PANE_VERTICAL_SPLIT, TRUE); + + /* pane2 still the active pane after orientation change */ + g_assert_true (w->details->active_pane == pane2); + + gtk_widget_destroy (GTK_WIDGET (w)); +} + +/* + * test_active_slot_per_pane_independent: + * Each pane's active_slot must be non-NULL and independent objects. + */ +static void +test_active_slot_per_pane_independent (void) +{ + NemoWindow *w = create_test_window (); + + nemo_window_split_view_on (w); + while (g_main_context_iteration (NULL, FALSE)) ; + + NemoWindowPane *pane1 = w->details->panes->data; + NemoWindowPane *pane2 = get_pane2 (w); + + g_assert_nonnull (pane1->active_slot); + g_assert_nonnull (pane2->active_slot); + g_assert_true (pane1->active_slot != pane2->active_slot); + + gtk_widget_destroy (GTK_WIDGET (w)); +} + +/* ------------------------------------------------------------------ */ +/* ------------------------------------------------------------------ */ +/* GROUP 7: Pref idempotency */ +/* ------------------------------------------------------------------ */ +/* ------------------------------------------------------------------ */ + +/* + * test_pref_idempotent_separate_sidebar: + * Setting separate-sidebar to the same value twice must not change + * structure or crash. + */ +static void +test_pref_idempotent_separate_sidebar (void) +{ + NemoWindow *w = create_test_window (); + + nemo_window_split_view_on (w); + while (g_main_context_iteration (NULL, FALSE)) ; + set_pref_bool (NEMO_PREFERENCES_DUAL_PANE_VERTICAL_SPLIT, TRUE); + set_pref_bool (NEMO_PREFERENCES_DUAL_PANE_SEPARATE_SIDEBAR, TRUE); + + GtkWidget *sec_paned_first = w->details->secondary_pane_content_paned; + g_assert_nonnull (sec_paned_first); + + /* Setting to TRUE again should be a no-op */ + set_pref_bool (NEMO_PREFERENCES_DUAL_PANE_SEPARATE_SIDEBAR, TRUE); + + g_assert_true (w->details->secondary_pane_content_paned == sec_paned_first); + g_assert_cmpuint (pane_count (w), ==, 2); + + gtk_widget_destroy (GTK_WIDGET (w)); +} + +/* + * test_pref_idempotent_separate_nav_bar: + * Setting separate-nav-bar to the same value twice must not crash or + * double-embed toolbars. + */ +static void +test_pref_idempotent_separate_nav_bar (void) +{ + NemoWindow *w = create_test_window (); + NemoWindowPane *pane1, *pane2; + + nemo_window_split_view_on (w); + while (g_main_context_iteration (NULL, FALSE)) ; + set_pref_bool (NEMO_PREFERENCES_DUAL_PANE_VERTICAL_SPLIT, TRUE); + set_pref_bool (NEMO_PREFERENCES_DUAL_PANE_SEPARATE_NAV_BAR, TRUE); + + pane1 = w->details->panes->data; + pane2 = get_pane2 (w); + + /* Set again — embed_toolbar guard must prevent double-parenting */ + set_pref_bool (NEMO_PREFERENCES_DUAL_PANE_SEPARATE_NAV_BAR, TRUE); + + g_assert_true (widget_is_inside (pane1->tool_bar, GTK_WIDGET (pane1))); + g_assert_true (widget_is_inside (pane2->tool_bar, GTK_WIDGET (pane2))); + g_assert_cmpuint (pane_count (w), ==, 2); + + gtk_widget_destroy (GTK_WIDGET (w)); +} + +/* ------------------------------------------------------------------ */ +/* main */ +/* ------------------------------------------------------------------ */ + +int +main (int argc, char *argv[]) +{ + g_test_init (&argc, &argv, NULL); + + gtk_init (&argc, &argv); + nemo_global_preferences_init (); + + /* Create and register the application singleton that NemoWindow requires. + * G_APPLICATION_NON_UNIQUE prevents D-Bus primary-instance negotiation + * so tests work without a session bus and run safely in parallel. + * g_application_register() must be called before gtk_window_set_application + * (called from nemo_window_constructed) will accept the window. */ + test_app = nemo_application_initialize_singleton ( + NEMO_TYPE_MAIN_APPLICATION, + "application-id", "org.Nemo.Test", + "flags", G_APPLICATION_NON_UNIQUE, + NULL); + /* g_application_register emits the startup signal, which calls + * continue_startup, which registers all file views in the factory. + * Do NOT register views manually after this - factory asserts on duplicates. */ + g_application_register (G_APPLICATION (test_app), NULL, NULL); + + suite_setup (); + + /* GROUP 1: Existing split-view behaviour */ + g_test_add_func ("/dual-pane/split-view/on-off", + test_split_view_on_off); + g_test_add_func ("/dual-pane/split-view/active-pane-survives", + test_split_view_active_pane_survives); + g_test_add_func ("/dual-pane/split-view/secondary-active-survives", + test_split_view_secondary_pane_active_survives); + g_test_add_func ("/dual-pane/split-view/toolbar-returns-to-holder", + test_split_view_toolbar_returns_to_holder); + g_test_add_func ("/dual-pane/split-view/sidebar-hide-show-no-split", + test_sidebar_hide_show_no_split); + g_test_add_func ("/dual-pane/split-view/sidebar-hide-show-with-split-prefs-off", + test_sidebar_hide_show_with_split_prefs_off); + + /* GROUP 2: Vertical split orientation */ + g_test_add_func ("/dual-pane/vertical-split/orientation-changes", + test_vertical_split_orientation); + g_test_add_func ("/dual-pane/vertical-split/orientation-toggle", + test_vertical_split_orientation_toggle); + g_test_add_func ("/dual-pane/vertical-split/pane-count-preserved", + test_vertical_split_pane_count_preserved); + g_test_add_func ("/dual-pane/vertical-split/split-view-off-cleanup", + test_vertical_split_off_then_split_view_off); + + /* GROUP 3: Separate sidebar per pane */ + g_test_add_func ("/dual-pane/separate-sidebar/creates-sidebar2", + test_separate_sidebar_creates_sidebar2); + g_test_add_func ("/dual-pane/separate-sidebar/disable-removes-sidebar2", + test_separate_sidebar_disabled_removes_sidebar2); + g_test_add_func ("/dual-pane/separate-sidebar/pane2-inside-sec-paned", + test_separate_sidebar_pane2_inside_sec_paned); + g_test_add_func ("/dual-pane/separate-sidebar/pane1-inside-pri-paned", + test_separate_sidebar_pane1_inside_pri_paned); + g_test_add_func ("/dual-pane/separate-sidebar/not-without-vertical-split", + test_separate_sidebar_not_active_without_vertical_split); + g_test_add_func ("/dual-pane/separate-sidebar/hide-show-sidebar", + test_separate_sidebar_hide_show_cycle); + g_test_add_func ("/dual-pane/separate-sidebar/split-view-off-cleanup", + test_separate_sidebar_split_view_off_cleans_up); + g_test_add_func ("/dual-pane/separate-sidebar/sidebar-type-places-to-tree", + test_separate_sidebar_type_change_places_to_tree); + g_test_add_func ("/dual-pane/separate-sidebar/sidebar-type-tree-to-places", + test_separate_sidebar_type_change_tree_to_places); + g_test_add_func ("/dual-pane/separate-sidebar/sidebar-type-multiple-cycles", + test_separate_sidebar_type_change_multiple_cycles); + g_test_add_func ("/dual-pane/separate-sidebar/window-destroy", + test_separate_sidebar_window_destroy); + + /* GROUP 4: Separate nav bar per pane */ + g_test_add_func ("/dual-pane/separate-nav-bar/embeds-toolbars", + test_separate_nav_bar_embeds_toolbars); + g_test_add_func ("/dual-pane/separate-nav-bar/detaches-on-disable", + test_separate_nav_bar_detaches_on_disable); + g_test_add_func ("/dual-pane/separate-nav-bar/not-without-vertical-split", + test_separate_nav_bar_not_active_without_vertical_split); + g_test_add_func ("/dual-pane/separate-nav-bar/split-view-off-restores-toolbar", + test_separate_nav_bar_split_view_off_restores_toolbar); + g_test_add_func ("/dual-pane/separate-nav-bar/window-destroy", + test_separate_nav_bar_window_destroy); + + /* GROUP 5: All three prefs on simultaneously */ + g_test_add_func ("/dual-pane/all-prefs-on/structure", + test_all_prefs_on_structure); + g_test_add_func ("/dual-pane/all-prefs-on/split-view-off", + test_all_prefs_on_then_split_view_off); + g_test_add_func ("/dual-pane/all-prefs-on/sidebar-type-change", + test_all_prefs_on_sidebar_type_change); + g_test_add_func ("/dual-pane/all-prefs-on/hide-show-sidebar", + test_all_prefs_on_hide_show_sidebar); + g_test_add_func ("/dual-pane/all-prefs-on/window-destroy", + test_all_prefs_on_window_destroy); + + /* GROUP 6: Active pane tracking */ + g_test_add_func ("/dual-pane/active-pane/valid-after-split-on", + test_active_pane_pointer_valid_after_split_on); + g_test_add_func ("/dual-pane/active-pane/valid-after-orientation-change", + test_active_pane_pointer_valid_after_orientation_change); + g_test_add_func ("/dual-pane/active-pane/set-to-pane2-survives-orientation", + test_active_pane_set_to_pane2); + g_test_add_func ("/dual-pane/active-pane/slots-are-independent", + test_active_slot_per_pane_independent); + + /* GROUP 7: Pref idempotency */ + g_test_add_func ("/dual-pane/idempotency/separate-sidebar", + test_pref_idempotent_separate_sidebar); + g_test_add_func ("/dual-pane/idempotency/separate-nav-bar", + test_pref_idempotent_separate_nav_bar); + + int result = g_test_run (); + + /* Reset prefs to defaults before exit */ + set_pref_bool (NEMO_PREFERENCES_DUAL_PANE_VERTICAL_SPLIT, FALSE); + set_pref_bool (NEMO_PREFERENCES_DUAL_PANE_SEPARATE_SIDEBAR, FALSE); + set_pref_bool (NEMO_PREFERENCES_DUAL_PANE_SEPARATE_NAV_BAR, FALSE); + + return result; +} From 6614ad8258dfbcecf9b06e6c0e461842bd39c4b6 Mon Sep 17 00:00:00 2001 From: Grover Jackson <135006+cdmdotnet@users.noreply.github.com> Date: Sat, 14 Mar 2026 21:34:17 +1300 Subject: [PATCH 2/5] - Separate statusbar per pane" (default: off, requires vertical split + separate sidebar) Adds a full-width NemoStatusBar below each pane column (spanning both the sidebar and content area). Each per-pane bar is locked to its pane so its zoom and sidebar buttons operate on that pane only. The places / tree toggle buttons swap the per-pane sidebar widget, keeping each pane's sidebar type independent. --- .gitignore | 1 - .../nemo-file-management-properties.glade | 16 + libnemo-private/nemo-global-preferences.h | 1 + libnemo-private/org.nemo.gschema.xml | 5 + .../glib-2.0/schemas/org.nemo.gschema.xml | 918 ++++++++++++++++++ src/nemo-file-management-properties.c | 42 +- src/nemo-statusbar.c | 101 +- src/nemo-statusbar.h | 6 + src/nemo-window-private.h | 9 + src/nemo-window.c | 267 ++++- 10 files changed, 1334 insertions(+), 32 deletions(-) create mode 100644 pkg/usr/share/glib-2.0/schemas/org.nemo.gschema.xml diff --git a/.gitignore b/.gitignore index d7475ecfec..0814649807 100644 --- a/.gitignore +++ b/.gitignore @@ -9,7 +9,6 @@ .project .metadata bin/** -pkg/** tmp/** tmp/**/* *.tmp diff --git a/gresources/nemo-file-management-properties.glade b/gresources/nemo-file-management-properties.glade index 9df8fee7d7..53bdf5743d 100644 --- a/gresources/nemo-file-management-properties.glade +++ b/gresources/nemo-file-management-properties.glade @@ -1367,6 +1367,22 @@ along with . If not, see . 3 + + + Separate statusbar per pane + True + True + False + True + 0 + True + + + False + False + 4 + + diff --git a/libnemo-private/nemo-global-preferences.h b/libnemo-private/nemo-global-preferences.h index 216f32de04..0d50f34da9 100644 --- a/libnemo-private/nemo-global-preferences.h +++ b/libnemo-private/nemo-global-preferences.h @@ -140,6 +140,7 @@ typedef enum #define NEMO_PREFERENCES_DUAL_PANE_VERTICAL_SPLIT "dual-pane-vertical-split" #define NEMO_PREFERENCES_DUAL_PANE_SEPARATE_SIDEBAR "dual-pane-separate-sidebar" #define NEMO_PREFERENCES_DUAL_PANE_SEPARATE_NAV_BAR "dual-pane-separate-nav-bar" +#define NEMO_PREFERENCES_DUAL_PANE_SEPARATE_STATUSBAR "dual-pane-separate-statusbar" #define NEMO_PREFERENCES_IGNORE_VIEW_METADATA "ignore-view-metadata" #define NEMO_PREFERENCES_SHOW_BOOKMARKS_IN_TO_MENUS "show-bookmarks-in-to-menus" #define NEMO_PREFERENCES_SHOW_PLACES_IN_TO_MENUS "show-places-in-to-menus" diff --git a/libnemo-private/org.nemo.gschema.xml b/libnemo-private/org.nemo.gschema.xml index 79727a9121..337720776b 100644 --- a/libnemo-private/org.nemo.gschema.xml +++ b/libnemo-private/org.nemo.gschema.xml @@ -361,6 +361,11 @@ Whether each pane has its own path bar / location entry If set to true, each pane in dual-pane view will have its own independent navigation bar + + false + Whether each pane has its own status bar + If set to true, each pane in vertical dual-pane view with separate sidebars will have its own status bar below it + false Whether to ignore folder metadata for view zoom levels and layouts diff --git a/pkg/usr/share/glib-2.0/schemas/org.nemo.gschema.xml b/pkg/usr/share/glib-2.0/schemas/org.nemo.gschema.xml new file mode 100644 index 0000000000..337720776b --- /dev/null +++ b/pkg/usr/share/glib-2.0/schemas/org.nemo.gschema.xml @@ -0,0 +1,918 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 'after-current-tab' + Where to position newly open tabs in browser windows. + If set to "after-current-tab", then new tabs are inserted after the current tab. If set to "end", then new tabs are appended to the end of the tab list. + + + true + Enables the classic Nemo behavior, where all windows are browsers + If set to true, then all Nemo windows will be browser windows. This is how Nemo used to behave before version 2.6, and some people prefer this behavior. + + + false + Enables renaming of icons by two times clicking with pause between clicks + If set to true, then icons in all Nemo windows will be able to get renamed quickly. Users should click two times on icons with a pause time more than double-click time of their system. + + + true + During drag-and-drop operations, automatically expand rows when hovering them briefly + + + false + Show the location entry by default + If set to true, then Nemo browser windows will show a textual input entry for the location toolbar. + + + true + Show Previous button in nemo toolbar + If set to true, then Nemo browser windows will show the button. + + + true + Show Next button in nemo toolbar + If set to true, then Nemo browser windows will show the button. + + + true + Show Up button in nemo toolbar + If set to true, then Nemo browser windows will show the button. + + + false + Show refresh button in nemo toolbar + If set to true, then Nemo browser windows will show the button. + + + true + Show toggle button location entry/pathbar + If set to true, then Nemo browser windows will show the button. + + + false + Show Home button in nemo toolbar + If set to true, then Nemo browser windows will show the button. + + + false + Show Computer button in nemo toolbar + If set to true, then Nemo browser windows will show the button. + + + true + Show Search button in nemo toolbar + If set to true, then Nemo browser windows will show the button. + + + false + Show new folder button in nemo toolbar + If set to true, then Nemo browser windows will show the button. + + + false + Show open in terminal in the nemo toolbar + If set to true, then Nemo browser windows will show the button. + + + true + Show Icon View button in nemo toolbar + If set to true, then Nemo browser windows will show the button. + + + true + Show List View button in nemo toolbar + If set to true, then Nemo browser windows will show the button. + + + true + Show Compact View button in nemo toolbar + If set to true, then Nemo browser windows will show the button. + + + false + Show Thumbnails button in nemo toolbar + If set to true, then Nemo browser windows will show the button. + + + false + Show Extra Pane button in nemo toolbar + If set to true, then Nemo browser windows will show the button. + + + true + Show warning when opening as root + If set to true, then Nemo show warning message when run Nemo as root user. + + + false + Whether to ask for confirmation when moving files to Trash + If set to true, then Nemo will ask for confirmation when you attempt to move files to the Trash. + + + true + Whether to ask for confirmation when deleting files, or emptying Trash + If set to true, then Nemo will ask for confirmation when you attempt to delete files, or empty the Trash. + + + true + Whether to enable immediate deletion + If set to true, then Nemo will have a feature allowing you to delete a file immediately and in-place, instead of moving it to the trash. This feature can be dangerous, so use caution. + + + false + Whether to swap the hotkeys for Trash and Delete + If set to true, the Delete key will permanently delete a file, and the Shift-Delete key will only trash a file. + + + + 'local-only' + When to show number of items in a folder + Speed tradeoff for when to show the number of items in a folder. If set to "always" then always show item counts, even if the folder is on a remote server. If set to "local-only" then only show counts for local file systems. If set to "never" then never bother to compute item counts. + + + 'double' + Type of click used to launch/open files + Possible values are "single" to launch files on a single click, or "double" to launch them on a double click. + + + 'ask' + What to do with executable text files when activated + What to do with executable text files when they are activated (single or double clicked). Possible values are "launch" to launch them as programs, "ask" to ask what to do via a dialog, and "display" to display them as text files. + + + ['xviewer','feh','sxiv'] + Image viewer executables to pass sort order to + When opening a single image with an application in this list, allow that viewer to display other images in the current nemo view, in the presented order (including searches). Other image viewers can be added, but are likely to ignore the order. The viewer Exec line must accept a list of files (either %U or %F). + + + true + Use extra mouse button events in Nemo' browser window + For users with mice that have "Forward" and "Back" buttons, this key will determine if any action is taken inside of Nemo when either is pressed. + + + 9 + Mouse button to activate the "Forward" command in browser window + For users with mice that have buttons for "Forward" and "Back", this key will set which button activates the "Forward" command in a browser window. Possible values range between 6 and 14. + + + 8 + Mouse button to activate the "Back" command in browser window + For users with mice that have buttons for "Forward" and "Back", this key will set which button activates the "Back" command in a browser window. Possible values range between 6 and 14. + + + + 'local-only' + When to show thumbnails of image files + Speed tradeoff for when to show an image file as a thumbnail. If set to "always" then always thumbnail, even if the folder is on a remote server. If set to "local-only" then only show thumbnails for local file systems. If set to "never" then never bother to thumbnail images, just use a generic icon. + + + false + Inherit thumbnail visibility from parent + If set, folders will inherit their thumbnail visibility from their parents + + + 1048576 + Maximum image size for thumbnailing + Images over this size (in bytes) won't be thumbnailed. The purpose of this setting is to avoid thumbnailing large images that may take a long time to load or use lots of memory. + + + false + Show advanced permissions in the file property dialog + If set to true, then Nemo lets you edit and display file permissions in a more unix-like way, accessing some more esoteric options. + + + true + Show folders first in windows + If set to true, then Nemo shows folders prior to showing files in the icon and list views. + + + true + Show favorites first in windows + If set to true, then Nemo shows favorites prior to other files in the icon and list views. + + + + + + 'name' + Default sort order + The default sort-order for items in the icon view. Possible values are "name", "size", "type" and "mtime". + + + false + Reverse sort order in new windows + If true, files in new windows will be sorted in reverse order. ie, if sorted by name, then instead of sorting the files from "a" to "z", they will be sorted from "z" to "a"; if sorted by size, instead of being incrementally they will be sorted decrementally. + + + false + Nemo uses the users home folder as the desktop + If set to true, then Nemo will use the user's home folder as the desktop. If it is false, then it will use ~/Desktop as the desktop. + + + + + + + + 'icon-view' + Default folder viewer + When a folder is visited this viewer is used unless you have selected another view for that particular folder. Possible values are "list-view", "icon-view" and "compact-view". + + + false + Inherit the view type (icon, compact, list) from parent to children + When a folder is visited the viewer is inherited from that folder's parent unless you have selected another view for that particular folder. + + + 'locale' + Date Format + The format of file dates. Possible values are "locale", "iso", and "informal". + + + 'auto-mono' + The font to use for the date/time columns. + The format of file dates. Possible values are "auto-mono" (best effort to match the application font), "system-mono" (use the current system mono font), and "no-mono" (use a normal font). + + + false + Whether to show hidden files + If set to true, then hidden files are shown by default in the file manager. Hidden files are either dotfiles, listed in the folder's .hidden file or backup files ending with a tilde (~). + + + false + Whether to show the full path of the current view in the title bar and tab bars + If set to true, will show the normal title of a window or tab, followed by the full path to that location in parentheses. + + + [] + Bulk rename utility + If set, Nemo will append URIs of selected files and treat the result as a command line for bulk renaming. Bulk rename applications can register themselves in this key by setting the key to a space-separated string of their executable name and any command line options. If the executable name is not set to a full path, it will be searched for in the search path. + + + 'base-10' + Prefixes used for file sizes + Determines whether Nemo uses base-10, base-10 long, base-2 or base-2 long file size prefixes + + + false + Whether to close a view of a removeable device instead of navigating Home + If set to true, a view open for a removeable device will be closed instead of sent Home if the device is ejected + + + false + Whether to default to showing dual-pane view when a new window is opened + If set to true, new Nemo windows will default to showing two panes + + + false + Whether to show dual panes vertically (one above the other) + If set to true, dual-pane view will show one pane above the other instead of side by side + + + false + Whether each pane has its own sidebar + If set to true, each pane in dual-pane view will have its own independent sidebar + + + false + Whether each pane has its own path bar / location entry + If set to true, each pane in dual-pane view will have its own independent navigation bar + + + false + Whether each pane has its own status bar + If set to true, each pane in vertical dual-pane view with separate sidebars will have its own status bar below it + + + false + Whether to ignore folder metadata for view zoom levels and layouts + If set to true, views will not change according to their metadata, but stay consistent for the life of that window + + + true + Whether to list bookmarks in the Move To/Copy To menus + If set to true, bookmarks will be listed in the MoveTo/CopyTo menus + + + true + Whether to list places in the Move To/Copy To menus + If set to true, places will be listed in the MoveTo/CopyTo menus + + + false + deprecated - no longer used + + + false + Show tooltips for desktop items + If true, tooltips will be displayed for desktop items. + + + false + Show tooltips when hovering on items in an icon or compact view + If true, tooltips will be displayed for icon and compact view items + + + false + Show tooltips when hovering on items in a list view + If true, tooltips will be displayed for list view items + + + false + Show detailed file type in tooltip + If true, tooltips will show a detailed file type. + + + false + Show file modified date in tooltip + If true, tooltips will show their modified date. + + + false + Show file accessed date in tooltip + If true, tooltips will show their accessed date. + + + false + Show file creation (birth) date in tooltip + If true, tooltips will show their creation date. + + + false + Show full path in tooltip + If true, tooltips will show the file's full path. + + + false + Don't show the explainer message when turning off the main menu + If true, you will no longer recieve a popup explaining how to reactivate the main menu once you've hidden it + + + 2 + Last server connect method used + + + false + If true, all file operations will start immediately + + + false + If true, double click left on blank area will go to parent folder + + + false + Display the 'Make executable and run' button in the mime-action dialog (open an unknown filetype) + + + 150 + Maximum number of files to preload deferred attributes for when opening a directory + Certain file attributes (like thumbnail and extension info) are deferred until a folder finishes loading. This number specifies how many files to skip this behavior on so that smaller folders won't have an obvious delay when loading these attributes. + + + false + Suppress any safeguards when running nemo/nemo-desktop as the root user. For some systems there is only a root user. + + + true + If true, enable detection of the type of content of a mounted media and display a suggested application to open the media. + + + -1 + Number of threads to dedicate to thumbnailing. -1 to let the program decide. The maximum allowed threads is half the number of logical processors, regardless of what is set here. If you change this setting you must restart Nemo for it to take effect. + + + + + + [ 'none', 'size', 'date_modified' ] + List of possible captions on icons + A list of captions below an icon in the icon view and + the desktop. The actual number of captions shown depends on + the zoom level. Some possible values are: + "size", "type", "date_modified", "date_changed", "date_accessed", "owner", + "group", "permissions", "octal_permissions" and "mime_type". + + + false + deprecated - not used + + + false + Put labels beside icons + If true, labels will be placed beside icons rather than underneath them. + + + 'standard' + Default icon zoom level + Default zoom level used by the icon view. + + + 64 + Default Thumbnail Icon Size + The default size of an icon for a thumbnail in the icon view. + + + [ '3' ] + Text Ellipsis Limit + A string specifying how parts of overlong file names + should be replaced by ellipses, depending on the zoom + level. + Each of the list entries is of the form "Zoom Level:Integer". + For each specified zoom level, if the given integer is + larger than 0, the file name will not exceed the given number of lines. + If the integer is 0 or smaller, no limit is imposed on the specified zoom level. + A default entry of the form "Integer" without any specified zoom level + is also allowed. It defines the maximum number of lines for all other zoom levels. + Examples: + 0 - always display overlong file names; + 3 - shorten file names if they exceed three lines; + smallest:5,smaller:4,0 - shorten file names if they exceed five lines + for zoom level "smallest". Shorten file names if they exceed four lines + for zoom level "smaller". Do not shorten file names for other zoom levels. + + Available zoom levels: + smallest (33%), smaller (50%), small (66%), standard (100%), large (150%), + larger (200%), largest (400%) + + + + + + 'standard' + Default compact view zoom level + Default zoom level used by the compact view. + + + false + All columns have same width + If this preference is set, all columns in the compact view have the same width. Otherwise, the width of each column is determined seperately. + + + + + + 'smaller' + Default list zoom level + Default zoom level used by the list view. + + + [ 'name', 'size', 'type', 'date_modified' ] + Default list of columns visible in the list view + Default list of columns visible in the list view. + + + [ 'name', 'size', 'type', 'date_modified' ] + Default column order in the list view + Default column order in the list view. + + + false + If true, allow folders with content to be expanded in the current view. + + + + + + + + + + true + Only show folders in the tree side pane + If set to true, Nemo will only show folders in the tree side pane. Otherwise it will show both folders and files. + + + + + + 'Noto Sans 10' + Desktop font + The font description used for the icons on the desktop. + + + "true::false" + Desktop layout + Format bool:bool, show desktop folder on primary monitor:show desktop on remaining monitors + + + true + Whether to show icons from inactive monitors on another monitor + + + true + Deprecated: Allow Nemo to manage the desktop + Deprecated: If this is set to true, Nemo will autostart and manage the desktop + + + true + Which desktop view type to use + If true, the new desktop grid view will be used by nemo-desktop, otherwise the legacy view will be used. + + + 1.0 + Vertical desktop grid adjustment + Overrides the standard vertical spacing for the desktop grid, in situation where default spacing is not ideal due to label customizations. This is a value from 0.5 to 1.5, with 1.0 being no adjustment, and 0.5 being half the default spacing. + + + 1.0 + Horizontal desktop grid adjustment + Overrides the standard horizontal spacing for the desktop grid, in situation where default spacing is not ideal due to label customizations. This is a value from 0.5 to 1.5, with 1.0 being no adjustment, and 0.5 being half the default spacing. + + + false + Home icon visible on desktop + If this is set to true, an icon linking to the home folder will be put on the desktop. + + + false + Computer icon visible on desktop + If this is set to true, an icon linking to the computer location will be put on the desktop. + + + false + Trash icon visible on desktop + If this is set to true, an icon linking to the trash will be put on the desktop. + + + false + Show mounted volumes on the desktop + If this is set to true, icons linking to mounted volumes will be put on the desktop. + + + false + Network Servers icon visible on the desktop + If this is set to true, an icon linking to the Network Servers view will be put on the desktop. + + + 2 + Text Ellipsis Limit + An integer specifying how parts of overlong file names should be replaced by ellipses on the desktop. If the number is larger than 0, the file name will not exceed the given number of lines. If the number is 0 or smaller, no limit is imposed on the number of displayed lines. + + + ['conky', 'csd-background'] + List of desktop-handling to ignore when determining whether or not to manager the desktop. + Nemo checks for _NET_WM_WINDOW_TYPE_DESKTOP-type windows, and skips managing the desktop if any others are detected. Add potential names to this list to ignore when performing this check. This means that you want nemo to create its own desktop window(s) even though something else already seems to. The check is based on a program's WM_CLASS. + + + true + Fade the background on change + If set to true, then Nemo will use a fade effect to change the desktop background. + + + + + + '' + The geometry string for a navigation window. + A string containing the saved geometry and coordinates string for navigation windows. + + + false + Whether the navigation window should be maximized. + Whether the navigation window should be maximized by default. + + + 170 + Width of the side pane + The default width of the side pane in new windows. + + + -1 + Index of the bookmark list to jump to the dedicated sidebar bookmark section + This is an internal setting for the sidebar that tracks the index in the bookmark list that separates bookmarks in the Computer section from bookmarks in the Bookmark section. + + + true + Show toolbar in new windows + If set to true, newly opened windows will have toolbars visible. + + + true + Show location bar in new windows + If set to true, newly opened windows will have the location bar visible. + + + true + Show status bar in new windows + If set to true, newly opened windows will have the status bar visible. + + + true + Show side pane in new windows + If set to true, newly opened windows will have the side pane visible. + + + true + Show menu bar in new windows + If set to true, newly opened windows will have the menu bar visible. + + + true + Expand My Computer section in places sidebar + View state storage for My Computer in places sidebar + + + true + Expand Bookmark section in places sidebar + View state storage for Bookmarks in places sidebar + + + true + Expand Devices section in places sidebar + View state storage for My Computer in places sidebar + + + true + Expand Network section in places sidebar + View state storage for My Computer in places sidebar + + + + + + + + + + + 'places' + Side pane view + The side pane view to show in newly opened windows. + + + + + + [] + List of extensions -not- to load. + List of extension names you do -not- want to load. This maintains the behavior of an installed extension being enabled by default. + + + [] + List of NemoActions -not- to load. + List of action files you do -not- want loaded. This maintains the behavior of an installed action being enabled by default. + + + [] + List of scripts -not- to load. + List of script files you do -not- want loaded. This maintains the behavior of an installed script being enabled by default. + + + + + + + true + Show the selection context menu's Open item. + + + true + Show the selection context menu's Open in New Tab item. + + + true + Show the selection context menu's Open in New Window item. + + + true + Show the selection context menu's Scripts submenu. + + + true + Show the selection context menu's Cut item. + + + true + Show the selection context menu's Copy item. + + + true + Show the selection context menu's Paste item. + + + false + Show the selection context menu's Duplicate item. + + + true + Show the selection context menu's Pin/Unpin item. + + + true + Show the selection context menu's Favorite/Unfavorite item. + + + false + Show the selection context menu's Create Link item. + + + true + Show the selection context menu's Rename item. + + + false + Show the selection context menu's Copy To submenu. + + + false + Show the selection context menu's Move To submenu. + + + true + Show the selection context menu's Open in Terminal item. + + + true + Show the selection context menu's Open As Root item. + + + true + Show the selection context menu's Move to Trash item. + + + true + Show the selection context menu's Properties item. + + + + + true + Show the background context menu's Create New Folder item. + + + true + Show the background context menu's Scripts submenu. + + + true + Show the background context menu's Open in Terminal item. + + + true + Show the background context menu's Open as Root item. + + + true + Show the background context menu's Show Hidden Files item. + + + true + Show the background context menu's Paste item. + + + true + Show the background context menu's Properties item. + + + + + true + Show the background context menu's Arrange Items submenu (icon view only). + + + true + Show the background context menu's Organize by Name item (icon view only). + + + + + true + Show the background context menu's Customize item (new-style desktop only). + + + + + + false + Stores the most recent state of the file search regex toggle + + + false + Stores the most recent state of the content search regex toggle + + + 'pcre' + valid formats: pcre, javascript + + + false + Treat patterns as raw bytes, not utf-8 + + + false + Stores the most recent state of the file search case toggle + + + false + Stores the most recent state of the content search case toggle + + + ['/dev', '/proc', '/sys', 'dosdevices', '.git'] + Paths or folder names to never recurse into when searching + List of locations that the search engine will never enter when looking for matches. These can be absolute or simply folder names (like .git). You can still enter those folders and search inside of them, however. + + + true + Recurse into subfolders when performing a search + + + [] + Saved list of columns visible in the search view. + + + '' + Column to sort on when viewing search results + + + false + Reverse the direction of the sort when viewing search results + + + [] + List of search helper filenames to skip when using content search. + + + diff --git a/src/nemo-file-management-properties.c b/src/nemo-file-management-properties.c index 7e8f5c2d1b..1aeb85d818 100644 --- a/src/nemo-file-management-properties.c +++ b/src/nemo-file-management-properties.c @@ -102,6 +102,7 @@ #define NEMO_FILE_MANAGEMENT_PROPERTIES_DUAL_PANE_VERTICAL_SPLIT_WIDGET "dual_pane_vertical_split_checkbutton" #define NEMO_FILE_MANAGEMENT_PROPERTIES_DUAL_PANE_SEPARATE_SIDEBAR_WIDGET "dual_pane_separate_sidebar_checkbutton" #define NEMO_FILE_MANAGEMENT_PROPERTIES_DUAL_PANE_SEPARATE_NAV_BAR_WIDGET "dual_pane_separate_nav_bar_checkbutton" +#define NEMO_FILE_MANAGEMENT_PROPERTIES_DUAL_PANE_SEPARATE_STATUSBAR_WIDGET "dual_pane_separate_statusbar_checkbutton" #define NEMO_FILE_MANAGEMENT_PROPERTIES_IGNORE_VIEW_METADATA_WIDGET "ignore_view_metadata_checkbutton" #define NEMO_FILE_MANAGEMENT_PROPERTIES_BOOKMARKS_IN_TO_MENUS_WIDGET "bookmarks_in_to_checkbutton" #define NEMO_FILE_MANAGEMENT_PROPERTIES_PLACES_IN_TO_MENUS_WIDGET "places_in_to_checkbutton" @@ -775,10 +776,12 @@ setup_configurable_menu_items (GtkBuilder *builder) } } -/* When "Show panes vertically" is off, the two dependent options - * (separate sidebar, separate nav bar) are meaningless -- they only - * apply to vertical split mode. Disable and uncheck them whenever +/* When "Show panes vertically" is off, the three dependent options + * (separate sidebar, separate nav bar, separate statusbar) are meaningless -- + * they only apply to vertical split mode. Disable and uncheck them whenever * the vertical-split toggle is off. + * Additionally, "separate statusbar" requires "separate sidebar" to also be on + * (it needs the per-pane column VBoxes that separate sidebar creates). */ static void setup_dual_pane_sensitivity (GtkBuilder *builder) @@ -791,15 +794,28 @@ setup_dual_pane_sensitivity (GtkBuilder *builder) GTK_WIDGET (W (NEMO_FILE_MANAGEMENT_PROPERTIES_DUAL_PANE_SEPARATE_SIDEBAR_WIDGET)); GtkWidget *sep_nav = GTK_WIDGET (W (NEMO_FILE_MANAGEMENT_PROPERTIES_DUAL_PANE_SEPARATE_NAV_BAR_WIDGET)); + GtkWidget *sep_statusbar = + GTK_WIDGET (W (NEMO_FILE_MANAGEMENT_PROPERTIES_DUAL_PANE_SEPARATE_STATUSBAR_WIDGET)); + + gboolean sidebar_on = vertical && + gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (sep_sidebar)); if (!vertical) { - /* Turn off and grey out the dependent options */ - gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (sep_sidebar), FALSE); - gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (sep_nav), FALSE); + /* Turn off and grey out all vertical-only options */ + gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (sep_sidebar), FALSE); + gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (sep_nav), FALSE); + gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (sep_statusbar), FALSE); + } + + if (!sidebar_on) { + /* Statusbar requires separate sidebar */ + gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (sep_statusbar), FALSE); } - gtk_widget_set_sensitive (sep_sidebar, vertical); - gtk_widget_set_sensitive (sep_nav, vertical); + gtk_widget_set_sensitive (sep_sidebar, vertical); + gtk_widget_set_sensitive (sep_nav, vertical); + /* Statusbar is only sensitive when vertical AND separate sidebar are both on */ + gtk_widget_set_sensitive (sep_statusbar, sidebar_on); } static void @@ -810,6 +826,12 @@ connect_dual_pane_sensitivity (GtkBuilder *builder) "toggled", G_CALLBACK (setup_dual_pane_sensitivity), builder); + /* Also re-evaluate when separate_sidebar changes, since statusbar depends on it */ + g_signal_connect_swapped ( + GTK_TOGGLE_BUTTON (W (NEMO_FILE_MANAGEMENT_PROPERTIES_DUAL_PANE_SEPARATE_SIDEBAR_WIDGET)), + "toggled", + G_CALLBACK (setup_dual_pane_sensitivity), + builder); } static void @@ -1119,6 +1141,10 @@ nemo_file_management_properties_dialog_setup (GtkBuilder *builder, NEMO_FILE_MANAGEMENT_PROPERTIES_DUAL_PANE_SEPARATE_NAV_BAR_WIDGET, NEMO_PREFERENCES_DUAL_PANE_SEPARATE_NAV_BAR); + bind_builder_bool (builder, nemo_preferences, + NEMO_FILE_MANAGEMENT_PROPERTIES_DUAL_PANE_SEPARATE_STATUSBAR_WIDGET, + NEMO_PREFERENCES_DUAL_PANE_SEPARATE_STATUSBAR); + bind_builder_bool (builder, nemo_preferences, NEMO_FILE_MANAGEMENT_PROPERTIES_IGNORE_VIEW_METADATA_WIDGET, NEMO_PREFERENCES_IGNORE_VIEW_METADATA); diff --git a/src/nemo-statusbar.c b/src/nemo-statusbar.c index 40ff78bc38..3664ea5a26 100644 --- a/src/nemo-statusbar.c +++ b/src/nemo-statusbar.c @@ -19,14 +19,16 @@ */ #include "nemo-statusbar.h" - +#include "nemo-window-pane.h" #include "nemo-actions.h" +#include + #include #include enum { - LAST_SIGNAL + LAST_SIGNAL }; enum { @@ -38,10 +40,43 @@ static GParamSpec *properties[NUM_PROPERTIES] = { NULL, }; G_DEFINE_TYPE (NemoStatusBar, nemo_status_bar, GTK_TYPE_BOX); +/* --------------------------------------------------------------------------- + * Helpers: resolve "which slot / sidebar" this bar operates on. + * + * When locked_pane is set the bar always tracks that pane. + * Otherwise it tracks the window's currently active pane (classic behaviour). + * --------------------------------------------------------------------------- */ + +static NemoWindowSlot * +bar_get_slot (NemoStatusBar *bar) +{ + if (bar->locked_pane != NULL) { + return bar->locked_pane->active_slot; + } + return nemo_window_get_active_slot (bar->window); +} + +/* Return the sidebar_id this bar should reflect. + * Both per-pane bars reflect the same global sidebar type (only the content + * differs between the two sidebars). */ +static const gchar * +bar_get_sidebar_id (NemoStatusBar *bar) +{ + return nemo_window_get_sidebar_id (NEMO_WINDOW (bar->window)); +} + +/* Return whether the sidebar for this bar is visible. */ +static gboolean +bar_get_sidebar_visible (NemoStatusBar *bar) +{ + return nemo_window_get_show_sidebar (NEMO_WINDOW (bar->window)); +} + static void nemo_status_bar_init (NemoStatusBar *bar) { bar->window = NULL; + bar->locked_pane = NULL; } static void @@ -86,15 +121,19 @@ nemo_status_bar_dispose (GObject *object) NemoStatusBar *bar = NEMO_STATUS_BAR (object); bar->window = NULL; + bar->locked_pane = NULL; G_OBJECT_CLASS (nemo_status_bar_parent_class)->dispose (object); } +/* --------------------------------------------------------------------------- + * Button callbacks + * --------------------------------------------------------------------------- */ + static void action_places_toggle_callback (GtkButton *button, NemoStatusBar *bar) { nemo_window_set_sidebar_id (NEMO_WINDOW (bar->window), NEMO_WINDOW_SIDEBAR_PLACES); - nemo_status_bar_sync_button_states (bar); } @@ -102,7 +141,6 @@ static void action_treeview_toggle_callback (GtkButton *button, NemoStatusBar *bar) { nemo_window_set_sidebar_id (NEMO_WINDOW (bar->window), NEMO_WINDOW_SIDEBAR_TREE); - nemo_status_bar_sync_button_states (bar); } @@ -115,7 +153,25 @@ action_show_sidebar_callback (GtkButton *button, NemoStatusBar *bar) static void action_hide_sidebar_callback (GtkButton *button, NemoStatusBar *bar) { - nemo_window_hide_sidebar (bar->window); + NemoWindow *win = NEMO_WINDOW (bar->window); + + if (bar->locked_pane != NULL) { + GList *panes = win->details->panes; + + if (panes != NULL && bar->locked_pane == (NemoWindowPane *) panes->data) { + /* pane1 bar: hiding sidebar turns off the whole sidebar, + * which also disables dual-sidebar (see dual_pane_prefs_changed). */ + nemo_window_hide_sidebar (win); + } else { + /* pane2 bar: "hide" means turn off the separate-sidebar feature. + * This triggers dual_pane_prefs_changed which tears everything down. */ + g_settings_set_boolean (nemo_preferences, + NEMO_PREFERENCES_DUAL_PANE_SEPARATE_SIDEBAR, + FALSE); + } + } else { + nemo_window_hide_sidebar (win); + } } static void @@ -136,7 +192,7 @@ on_slider_changed_cb (GtkWidget *zoom_slider, gpointer user_data) NemoStatusBar *bar = NEMO_STATUS_BAR (user_data); gdouble val = gtk_range_get_value (GTK_RANGE (zoom_slider)); - NemoWindowSlot *slot = nemo_window_get_active_slot (bar->window); + NemoWindowSlot *slot = bar_get_slot (bar); if (!NEMO_IS_WINDOW_SLOT (slot)) return; @@ -288,6 +344,29 @@ nemo_status_bar_new (NemoWindow *window) NULL); } +/** + * nemo_status_bar_new_for_pane: + * + * Create a status bar locked to @pane. The zoom slider reads/writes + * @pane->active_slot instead of the window's active slot. The hide-sidebar + * button behaviour depends on which pane this bar is associated with + * (see action_hide_sidebar_callback). + */ +GtkWidget * +nemo_status_bar_new_for_pane (NemoWindow *window, NemoWindowPane *pane) +{ + NemoStatusBar *bar; + + bar = NEMO_STATUS_BAR ( + g_object_new (NEMO_TYPE_STATUS_BAR, + "orientation", GTK_ORIENTATION_HORIZONTAL, + "spacing", 0, + "window", window, + NULL)); + bar->locked_pane = pane; + return GTK_WIDGET (bar); +} + GtkWidget * nemo_status_bar_get_real_statusbar (NemoStatusBar *bar) { @@ -297,9 +376,8 @@ nemo_status_bar_get_real_statusbar (NemoStatusBar *bar) void nemo_status_bar_sync_button_states (NemoStatusBar *bar) { - const gchar *sidebar_id = nemo_window_get_sidebar_id (NEMO_WINDOW (bar->window)); - - gboolean sidebar_visible = nemo_window_get_show_sidebar (NEMO_WINDOW (bar->window)); + const gchar *sidebar_id = bar_get_sidebar_id (bar); + gboolean sidebar_visible = bar_get_sidebar_visible (bar); if (sidebar_visible) { gtk_widget_show (bar->tree_button); @@ -323,9 +401,7 @@ nemo_status_bar_sync_button_states (NemoStatusBar *bar) } g_signal_handlers_unblock_by_func (GTK_BUTTON (bar->tree_button), action_treeview_toggle_callback, bar); - g_signal_handlers_block_by_func (GTK_BUTTON (bar->places_button), action_places_toggle_callback, bar); - if (g_strcmp0 (sidebar_id, NEMO_WINDOW_SIDEBAR_PLACES) == 0) { gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (bar->places_button), TRUE); } else { @@ -337,8 +413,7 @@ nemo_status_bar_sync_button_states (NemoStatusBar *bar) void nemo_status_bar_sync_zoom_widgets (NemoStatusBar *bar) { - - NemoWindowSlot *slot = nemo_window_get_active_slot (bar->window); + NemoWindowSlot *slot = bar_get_slot (bar); if (!NEMO_IS_WINDOW_SLOT (slot)) return; diff --git a/src/nemo-statusbar.h b/src/nemo-statusbar.h index 5b8af4d023..f9555342f5 100644 --- a/src/nemo-statusbar.h +++ b/src/nemo-statusbar.h @@ -25,6 +25,7 @@ #include #include "nemo-window.h" #include "nemo-window-slot.h" +#include "nemo-window-pane.h" #include "nemo-view.h" typedef struct _NemoStatusBar NemoStatusBar; @@ -54,6 +55,10 @@ struct _NemoStatusBar GtkWidget *show_button; GtkWidget *hide_button; GtkWidget *separator; + + /* When non-NULL this bar is locked to a specific pane instead of + * following the active pane. Used for per-pane statusbars. */ + NemoWindowPane *locked_pane; }; struct _NemoStatusBarClass @@ -64,6 +69,7 @@ struct _NemoStatusBarClass GType nemo_status_bar_get_type (void) G_GNUC_CONST; GtkWidget *nemo_status_bar_new (NemoWindow *window); +GtkWidget *nemo_status_bar_new_for_pane (NemoWindow *window, NemoWindowPane *pane); GtkWidget *nemo_status_bar_get_real_statusbar (NemoStatusBar *bar); diff --git a/src/nemo-window-private.h b/src/nemo-window-private.h index 6b8bc9f521..636fe805d4 100644 --- a/src/nemo-window-private.h +++ b/src/nemo-window-private.h @@ -108,6 +108,15 @@ struct NemoWindowDetails /* outer HPaned wrapper for pane2 column (sidebar2 + pane2) in per-pane mode */ GtkWidget *secondary_pane_content_paned; + /* per-pane statusbars (only when dual-pane-separate-statusbar is on) */ + GtkWidget *nemo_status_bar2; /* NemoStatusBar for pane2 */ + GtkWidget *statusbar2; /* inner GtkStatusbar from nemo_status_bar2 */ + GtkWidget *statusbar2_eb; /* event-box wrapper */ + GtkWidget *statusbar2_sep; /* separator above statusbar2 */ + /* pane1 statusbar container (the original nemo_status_bar moved into pane1 col) */ + GtkWidget *statusbar1_eb; /* event-box wrapper used in pane1 col */ + GtkWidget *statusbar1_sep; /* separator above statusbar1 in pane1 col */ + gboolean disable_chrome; guint sidebar_width_handler_id; diff --git a/src/nemo-window.c b/src/nemo-window.c index 6b795c482f..af71564fbf 100644 --- a/src/nemo-window.c +++ b/src/nemo-window.c @@ -99,6 +99,9 @@ static void nemo_window_refresh_sidebar1_pane_lock (NemoWindow *window, gboolea static void nemo_window_tear_down_pane1_wrapper (NemoWindow *window); static void dual_pane_prefs_changed (gpointer callback_data); static void nemo_window_refresh_sidebar_colours (NemoWindow *window); +static void nemo_window_set_up_per_pane_statusbars (NemoWindow *window); +static void nemo_window_tear_down_per_pane_statusbars (NemoWindow *window); +static gboolean on_button_press_callback (GtkWidget *widget, GdkEventButton *event, gpointer user_data); /* Sanity check: highest mouse button value I could find was 14. 5 is our * lower threshold (well-documented to be the one of the button events for the @@ -167,11 +170,43 @@ nemo_window_push_status (NemoWindow *window, { g_return_if_fail (NEMO_IS_WINDOW (window)); + /* When per-pane statusbars are active, route the message to the + * statusbar that is paired with the currently active pane, so each + * pane's bar shows that pane's own status text. */ + GtkStatusbar *target = NULL; + + if (window->details->nemo_status_bar2 != NULL) { + NemoWindowPane *active = nemo_window_get_active_pane (window); + GList *panes = window->details->panes; + + if (panes != NULL && active == (NemoWindowPane *) panes->data) { + /* Active pane is pane1 — use statusbar inside statusbar1_eb */ + if (window->details->statusbar1_eb != NULL) { + GList *ch = gtk_container_get_children ( + GTK_CONTAINER (window->details->statusbar1_eb)); + if (ch != NULL && NEMO_IS_STATUS_BAR (ch->data)) { + target = GTK_STATUSBAR ( + NEMO_STATUS_BAR (ch->data)->real_statusbar); + } + g_list_free (ch); + } + } else { + /* Active pane is pane2 */ + if (window->details->statusbar2 != NULL) { + target = GTK_STATUSBAR (window->details->statusbar2); + } + } + } + + if (target == NULL) { + target = GTK_STATUSBAR (window->details->statusbar); + } + /* clear any previous message, underflow is allowed */ - gtk_statusbar_pop (GTK_STATUSBAR (window->details->statusbar), 0); + gtk_statusbar_pop (target, 0); if (text != NULL && text[0] != '\0') { - gtk_statusbar_push (GTK_STATUSBAR (window->details->statusbar), 0, text); + gtk_statusbar_push (target, 0, text); } } @@ -484,7 +519,8 @@ nemo_window_hide_sidebar (NemoWindow *window) return; } - nemo_window_tear_down_pane1_wrapper (window); + nemo_window_tear_down_per_pane_statusbars (window); + nemo_window_tear_down_pane1_wrapper (window); nemo_window_tear_down_sidebar2 (window); nemo_window_tear_down_sidebar (window); nemo_window_update_show_hide_ui_elements (window); @@ -520,12 +556,15 @@ nemo_window_show_sidebar (NemoWindow *window) NEMO_PREFERENCES_DUAL_PANE_VERTICAL_SPLIT); gboolean sep_sidebar = g_settings_get_boolean (nemo_preferences, NEMO_PREFERENCES_DUAL_PANE_SEPARATE_SIDEBAR); - gboolean sep_nav = g_settings_get_boolean (nemo_preferences, - NEMO_PREFERENCES_DUAL_PANE_SEPARATE_NAV_BAR); + gboolean sep_statusbar = g_settings_get_boolean (nemo_preferences, + NEMO_PREFERENCES_DUAL_PANE_SEPARATE_STATUSBAR); /* pane1 wrapper only when separate_sidebar ON (independent of sep_nav) */ if (split && vertical && sep_sidebar) { nemo_window_set_up_pane1_wrapper (window); nemo_window_set_up_sidebar2 (window); + if (sep_statusbar) { + nemo_window_set_up_per_pane_statusbars (window); + } } } @@ -550,6 +589,7 @@ side_pane_id_changed (NemoWindow *window) /* refresh the sidebar - tear down per-pane wrappers first so sidebar * can be safely moved back to content_paned before rebuild */ + nemo_window_tear_down_per_pane_statusbars (window); nemo_window_tear_down_pane1_wrapper (window); nemo_window_tear_down_sidebar2 (window); nemo_window_tear_down_sidebar (window); @@ -562,12 +602,15 @@ side_pane_id_changed (NemoWindow *window) NEMO_PREFERENCES_DUAL_PANE_VERTICAL_SPLIT); gboolean sep_sidebar = g_settings_get_boolean (nemo_preferences, NEMO_PREFERENCES_DUAL_PANE_SEPARATE_SIDEBAR); - gboolean sep_nav = g_settings_get_boolean (nemo_preferences, - NEMO_PREFERENCES_DUAL_PANE_SEPARATE_NAV_BAR); + gboolean sep_statusbar = g_settings_get_boolean (nemo_preferences, + NEMO_PREFERENCES_DUAL_PANE_SEPARATE_STATUSBAR); /* pane1 wrapper only when separate_sidebar ON (independent of sep_nav) */ if (split && vertical && sep_sidebar && window->details->show_sidebar) { nemo_window_set_up_pane1_wrapper (window); nemo_window_set_up_sidebar2 (window); + if (sep_statusbar) { + nemo_window_set_up_per_pane_statusbars (window); + } } } @@ -892,6 +935,7 @@ nemo_window_destroy (GtkWidget *object) /* Tear down per-pane wrappers before the sidebar and panes, so sidebar2 * and pri_paned are removed cleanly from the widget hierarchy before * pane widgets are destroyed. */ + nemo_window_tear_down_per_pane_statusbars (window); nemo_window_tear_down_pane1_wrapper (window); nemo_window_tear_down_sidebar2 (window); @@ -1525,6 +1569,24 @@ nemo_window_sync_zoom_widgets (NemoWindow *window) gtk_action_set_sensitive (action, can_zoom); nemo_status_bar_sync_zoom_widgets (NEMO_STATUS_BAR (window->details->nemo_status_bar)); + + /* When per-pane statusbars are active, sync both locked bars independently + * so each shows the correct zoom level for its own pane. */ + if (window->details->nemo_status_bar2 != NULL) { + nemo_status_bar_sync_zoom_widgets (NEMO_STATUS_BAR (window->details->nemo_status_bar2)); + /* Also sync pane1's statusbar (stored inside statusbar1_eb) */ + if (window->details->statusbar1_eb != NULL) { + GList *children = gtk_container_get_children ( + GTK_CONTAINER (window->details->statusbar1_eb)); + if (children != NULL) { + GtkWidget *sb1 = GTK_WIDGET (children->data); + if (NEMO_IS_STATUS_BAR (sb1)) { + nemo_status_bar_sync_zoom_widgets (NEMO_STATUS_BAR (sb1)); + } + g_list_free (children); + } + } + } } void @@ -2098,6 +2160,10 @@ nemo_window_init (NemoWindow *window) "changed::" NEMO_PREFERENCES_DUAL_PANE_SEPARATE_NAV_BAR, G_CALLBACK (dual_pane_prefs_changed), window); + g_signal_connect_swapped (nemo_preferences, + "changed::" NEMO_PREFERENCES_DUAL_PANE_SEPARATE_STATUSBAR, + G_CALLBACK (dual_pane_prefs_changed), + window); } static NemoIconInfo * @@ -2849,6 +2915,159 @@ nemo_window_refresh_sidebar_colours (NemoWindow *window) } } +/* --------------------------------------------------------------------------- + * Per-pane status bars + * + * When "separate statusbar per pane" is on (requires vertical split + + * separate sidebar), each pane column VBox already exists: + * split_view_hpane + * child1: pri_paned (HPaned) <- pane1 column + * sidebar1 | pane1_content_vbox + * child2: sec_paned (HPaned) <- pane2 column + * sidebar2 | pane2_content_vbox + * + * We append a separator + NemoStatusBar at the BOTTOM of each content_vbox, + * and hide the global statusbar (its outer event-box remains in the grid so + * widget references stay valid). + * --------------------------------------------------------------------------- */ + +/* Walk up from pane widget to find its direct-child-of-paned container + * (either the bare pane or the content_vbox wrapping it). */ +static GtkWidget * +find_content_vbox_for_pane (NemoWindow *window, NemoWindowPane *pane) +{ + GtkWidget *w = GTK_WIDGET (pane); + while (w != NULL) { + GtkWidget *p = gtk_widget_get_parent (w); + if (p == NULL) + return NULL; + if (GTK_IS_PANED (p)) + return w; /* direct child of a Paned — that is the content vbox */ + w = p; + } + return NULL; +} + +static void +nemo_window_set_up_per_pane_statusbars (NemoWindow *window) +{ + NemoWindowPane *pane1, *pane2; + GtkWidget *vbox1, *vbox2; + GList *last; + + if (window->details->nemo_status_bar2 != NULL) + return; /* already set up */ + + if (!nemo_window_split_view_showing (window)) + return; + + last = g_list_last (window->details->panes); + if (!last || last->data == window->details->panes->data) + return; + + pane1 = (NemoWindowPane *) window->details->panes->data; + pane2 = (NemoWindowPane *) last->data; + + /* Per-pane statusbars require the sidebar column VBoxes to exist. */ + if (window->details->primary_pane_content_paned == NULL || + window->details->secondary_pane_content_paned == NULL) + return; + + vbox1 = find_content_vbox_for_pane (window, pane1); + vbox2 = find_content_vbox_for_pane (window, pane2); + + if (vbox1 == NULL || vbox2 == NULL) + return; + + /* ---- statusbar for pane1 ---- */ + { + GtkWidget *sep = gtk_separator_new (GTK_ORIENTATION_HORIZONTAL); + gtk_box_pack_end (GTK_BOX (vbox1), sep, FALSE, FALSE, 0); + gtk_widget_show (sep); + window->details->statusbar1_sep = sep; + + GtkWidget *sb = nemo_status_bar_new_for_pane (window, pane1); + GtkWidget *eb = gtk_event_box_new (); + gtk_widget_add_events (eb, GDK_BUTTON_PRESS_MASK); + g_signal_connect_object (eb, "button-press-event", + G_CALLBACK (on_button_press_callback), window, 0); + gtk_container_add (GTK_CONTAINER (eb), sb); + gtk_box_pack_end (GTK_BOX (vbox1), eb, FALSE, FALSE, 0); + gtk_widget_show (eb); + window->details->statusbar1_eb = eb; + + nemo_status_bar_sync_zoom_widgets (NEMO_STATUS_BAR (sb)); + nemo_status_bar_sync_button_states (NEMO_STATUS_BAR (sb)); + } + + /* ---- statusbar for pane2 ---- */ + { + GtkWidget *sep = gtk_separator_new (GTK_ORIENTATION_HORIZONTAL); + gtk_box_pack_end (GTK_BOX (vbox2), sep, FALSE, FALSE, 0); + gtk_widget_show (sep); + window->details->statusbar2_sep = sep; + + GtkWidget *sb = nemo_status_bar_new_for_pane (window, pane2); + window->details->nemo_status_bar2 = sb; + window->details->statusbar2 = nemo_status_bar_get_real_statusbar (NEMO_STATUS_BAR (sb)); + + GtkWidget *eb = gtk_event_box_new (); + gtk_widget_add_events (eb, GDK_BUTTON_PRESS_MASK); + g_signal_connect_object (eb, "button-press-event", + G_CALLBACK (on_button_press_callback), window, 0); + gtk_container_add (GTK_CONTAINER (eb), sb); + gtk_box_pack_end (GTK_BOX (vbox2), eb, FALSE, FALSE, 0); + gtk_widget_show (eb); + window->details->statusbar2_eb = eb; + + nemo_status_bar_sync_zoom_widgets (NEMO_STATUS_BAR (sb)); + nemo_status_bar_sync_button_states (NEMO_STATUS_BAR (sb)); + } + + /* Hide the global statusbar (outer NemoStatusBar widget). + * Its event-box wrapper stays in the grid so existing bindings remain valid. */ + gtk_widget_hide (window->details->nemo_status_bar); +} + +static void +nemo_window_tear_down_per_pane_statusbars (NemoWindow *window) +{ + /* Destroy pane1 statusbar widgets */ + if (window->details->statusbar1_eb != NULL) { + gtk_widget_destroy (window->details->statusbar1_eb); + window->details->statusbar1_eb = NULL; + } + if (window->details->statusbar1_sep != NULL) { + gtk_widget_destroy (window->details->statusbar1_sep); + window->details->statusbar1_sep = NULL; + } + + /* Destroy pane2 statusbar widgets (nemo_status_bar2 is inside statusbar2_eb) */ + if (window->details->statusbar2_eb != NULL) { + gtk_widget_destroy (window->details->statusbar2_eb); + window->details->statusbar2_eb = NULL; + } + if (window->details->statusbar2_sep != NULL) { + gtk_widget_destroy (window->details->statusbar2_sep); + window->details->statusbar2_sep = NULL; + } + window->details->nemo_status_bar2 = NULL; + window->details->statusbar2 = NULL; + + /* Restore the global statusbar — guard against being called during window + * destruction when the widget may no longer be valid. */ + if (window->details->nemo_status_bar != NULL && + GTK_IS_WIDGET (window->details->nemo_status_bar)) { + gtk_widget_show (window->details->nemo_status_bar); + + /* Sync the restored global bar */ + nemo_status_bar_sync_zoom_widgets ( + NEMO_STATUS_BAR (window->details->nemo_status_bar)); + nemo_status_bar_sync_button_states ( + NEMO_STATUS_BAR (window->details->nemo_status_bar)); + } +} + static void dual_pane_prefs_changed (gpointer callback_data) { @@ -2870,6 +3089,8 @@ dual_pane_prefs_changed (gpointer callback_data) NEMO_PREFERENCES_DUAL_PANE_SEPARATE_NAV_BAR); separate_sidebar = g_settings_get_boolean (nemo_preferences, NEMO_PREFERENCES_DUAL_PANE_SEPARATE_SIDEBAR); + gboolean separate_statusbar = g_settings_get_boolean (nemo_preferences, + NEMO_PREFERENCES_DUAL_PANE_SEPARATE_STATUSBAR); /* Handle orientation change - must happen before any wrapper setup */ nemo_window_update_split_view_orientation (window); @@ -2879,13 +3100,25 @@ dual_pane_prefs_changed (gpointer callback_data) * sidebar layout — when nav bar is ON but sidebar is OFF the sidebar stays * full-height in content_paned and pri_paned must NOT be created. * - * want_per_pane = controls the pane1 sidebar wrapper (pri_paned) - * want_sidebar2 = controls the pane2 sidebar wrapper (sec_paned + sidebar2) */ + * want_per_pane = controls the pane1 sidebar wrapper (pri_paned) + * want_sidebar2 = controls the pane2 sidebar wrapper (sec_paned + sidebar2) + * want_per_statusbar = controls the per-pane statusbar widgets */ want_per_pane = split_showing && vertical && separate_sidebar && window->details->show_sidebar; want_sidebar2 = want_per_pane; + /* Per-pane statusbars require vertical + separate_sidebar (column VBoxes must + * exist). They are also disabled when the global statusbar is visible and + * the user hasn't turned on this feature. */ + gboolean want_per_statusbar = want_per_pane && separate_statusbar; + + /* --- Per-pane statusbar teardown (must happen BEFORE sidebar teardown so + * the column VBoxes still exist when we remove the statusbar widgets) --- */ + if (!want_per_statusbar && window->details->nemo_status_bar2 != NULL) { + nemo_window_tear_down_per_pane_statusbars (window); + } + /* --- Sidebar wrapper teardown/setup (order is critical, per spec section 5): * * TEARDOWN order: pane1_wrapper first, then sidebar2. @@ -2914,6 +3147,11 @@ dual_pane_prefs_changed (gpointer callback_data) nemo_window_set_up_pane1_wrapper (window); } + /* --- per-pane statusbars (setup — column VBoxes now exist) --- */ + if (want_per_statusbar && window->details->nemo_status_bar2 == NULL) { + nemo_window_set_up_per_pane_statusbars (window); + } + /* --- per-pane toolbars --- */ if (split_showing) { pane1 = window->details->panes->data; @@ -3000,6 +3238,8 @@ nemo_window_split_view_on (NemoWindow *window) NEMO_PREFERENCES_DUAL_PANE_SEPARATE_NAV_BAR); gboolean separate_sidebar = g_settings_get_boolean (nemo_preferences, NEMO_PREFERENCES_DUAL_PANE_SEPARATE_SIDEBAR); + gboolean separate_statusbar = g_settings_get_boolean (nemo_preferences, + NEMO_PREFERENCES_DUAL_PANE_SEPARATE_STATUSBAR); /* Per spec 3.5.3: toolbar embedding is independent of sidebar layout. * pane1 wrapper (pri_paned) is ONLY created when separate_sidebar is ON. */ gboolean per_pane = vertical && separate_sidebar && @@ -3016,6 +3256,11 @@ nemo_window_split_view_on (NemoWindow *window) nemo_window_set_up_sidebar2 (window); } + /* Per-pane statusbars require the column VBoxes to be in place first */ + if (per_pane && separate_statusbar) { + nemo_window_set_up_per_pane_statusbars (window); + } + /* Apply sidebar background colours now that all sidebars are in place. */ nemo_window_refresh_sidebar_colours (window); } @@ -3029,9 +3274,11 @@ nemo_window_split_view_off (NemoWindow *window) active_pane = nemo_window_get_active_pane (window); /* Tear down all per-pane wrappers before closing panes. - * Order is critical (spec section 5): pane1_wrapper first, then sidebar2. + * Order is critical (spec section 5): statusbars first (need column VBoxes), + * then pane1_wrapper, then sidebar2. * tear_down_pane1_wrapper rescues sidebar1 back to content_paned first; * tear_down_sidebar2 then finds pane2 cleanly in hpane.child2. */ + nemo_window_tear_down_per_pane_statusbars (window); nemo_window_tear_down_pane1_wrapper (window); nemo_window_tear_down_sidebar2 (window); From 41c4bc95f5eb090124e3d5d16c366c06d4a2f56f Mon Sep 17 00:00:00 2001 From: Grover Jackson <135006+cdmdotnet@users.noreply.github.com> Date: Sun, 15 Mar 2026 19:37:17 +1300 Subject: [PATCH 3/5] Added some tests. --- debian/changelog | 37602 +++++++++++++++++++++++++-- src/nemo-statusbar.c | 71 +- src/nemo-window-private.h | 5 + src/nemo-window-slot.c | 7 +- src/nemo-window.c | 303 +- src/nemo-window.h | 11 + test/test-dual-pane-integration.py | 809 + test/test-meson.build | 143 + 8 files changed, 36506 insertions(+), 2445 deletions(-) create mode 100644 test/test-dual-pane-integration.py create mode 100644 test/test-meson.build diff --git a/debian/changelog b/debian/changelog index eb834274fa..3dc1c1ea94 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3096 +1,35940 @@ -nemo (6.6.4) zena; urgency=medium - - [ cdmdotnet Limited ] - * Dual-pane enhancements: vertical split mode (panes stacked one above - the other), separate sidebar per pane, separate Path Bar / Location - Entry per pane. All options default to off, preserving existing - behaviour when not enabled. New preferences exposed in a dedicated - Dual Pane section of the Behaviour tab. - - -- Nemo User Sat, 14 Mar 2026 00:00:00 +0000 - -nemo (6.6.3) zena; urgency=medium - - [ Michael Webster ] - * nemo-blank-desktop-window.c: Fix potential crash when actions are updates. - * nemo-blank-desktop-window.c: Make sure there's a menu available at startup. - * search: Restore implied 'AND' behavior in non-regex file match mode (#3659) - * nemo-places-sidebar.c: Restore visibility of mounts with no (#3670) - - -- Clement Lefebvre Thu, 08 Jan 2026 13:29:12 +0000 - -nemo (6.6.2) zena; urgency=medium - - [ Cobinja ] - * Fix for progress handling (#3651) - - [ Michael Webster ] - * templates: Improve invalid XDG_TEMPLATES_DIR handling. - - -- Clement Lefebvre Tue, 16 Dec 2025 15:23:49 +0000 - -nemo (6.6.1) zena; urgency=medium - - [ Michael Webster ] - * nemo-action.c: Fix issues in the recent:// folder. - - -- Clement Lefebvre Wed, 10 Dec 2025 14:26:56 +0000 - -nemo (6.6.0) zena; urgency=medium - - [ Jeffrey Knockel ] - * nemo-view.c: fix crash after some shortcuts (#3525) +commit 0000000000000000000000000000000000000001 +Author: Nemo Developer +Date: 2025-01-01 + + dual-pane: add vertical split, separate sidebars, nav bars, and statusbars + + Extend the dual-pane feature with four new user-configurable options, + all found in Preferences → Behaviour → Dual Pane: + + "Show panes vertically – one above the other" (default: off) + Adds a VPaned orientation for split-view in addition to the existing + side-by-side HPaned layout. The split_view_hpane is recreated with + the appropriate GtkOrientation when the preference changes. + + "Separate sidebar per pane" (default: off, requires vertical split) + In vertical split mode each pane column gets its own independent + sidebar (places or tree) locked to that pane's navigation so + browsing in one pane does not move the other pane's sidebar. + Implemented by wrapping pane1 in a new inline HPaned + (primary_pane_content_paned) and adding a second sidebar box + (sidebar2 / secondary_pane_content_paned) for pane2. + + "Separate Path Bar/Location Entry per pane" (default: off, requires vertical split) + Embeds a full toolbar (path bar / location entry) directly inside + each pane column so each pane tracks its own navigation history + independently without sharing the window-level toolbar. - [ Michael Webster ] - * search: Remove unused search history code. - * search: Allow regular expression filename matching, improve editor. - * nemo-file-management-properties.glade: Add translation comments for tooltip options. - * list-view: Don't show folder expanders by default. - * nemo-list-view.c: Ignore expander size for click position calculations if expanders are disabled. - * nemo-window.c: Remember the second pane's location until the remaining pane's location changes. - * nemo-query-editor.c: Don't use new glib function. + "Separate statusbar per pane" (default: off, requires vertical split + separate sidebar) + Adds a full-width NemoStatusBar below each pane column (spanning + both the sidebar and content area). The global statusbar is hidden + by concealing its outer event-box wrapper rather than changing its + visible property, preserving the GSettings binding that controls the + floating-bar "selected items" overlay. Each per-pane bar is locked + to its pane via a new PROP_PANE construct property so its zoom + slider and sidebar buttons operate on that pane only. The places / + tree toggle buttons call the new nemo_window_set_pane_sidebar_type() + helper which swaps the sidebar widget in-place without firing the + global notify::sidebar-view-id signal, keeping each pane's sidebar + type independent. - [ Josh Ellithorpe ] - * Add Matcha to Supported Theme Hints (#3573) + Modified files: + src/nemo-window.c + src/nemo-window.h + src/nemo-window-private.h + src/nemo-window-slot.c + src/nemo-statusbar.c + src/nemo-statusbar.h + src/nemo-file-management-properties.c + gresources/nemo-file-management-properties.glade + libnemo-private/nemo-global-preferences.h + libnemo-private/org.nemo.gschema.xml - [ Michael Webster ] - * preferences: Remove scripts widget from Plugins. - * preferences: Add templates to plugins tab. - * Action layout editor: put direction buttons in a more traditional location, make the editor launcher button more prominent in Nemo's preferences. - * nemo-template-config-widget.c: Don't use g_strv_builder_take(). - * nemo-template-config-widget: Allow editing of a template. +M src/nemo-window.c +M src/nemo-window.h +M src/nemo-window-private.h +M src/nemo-window-slot.c +M src/nemo-statusbar.c +M src/nemo-statusbar.h +M src/nemo-file-management-properties.c +M gresources/nemo-file-management-properties.glade +M libnemo-private/nemo-global-preferences.h +M libnemo-private/org.nemo.gschema.xml - [ Zariep ] - * add --select compatibility flag (#3589) +commit 16763a8b828387930641d69c04451e02d67cadd6 +Author: Cosimo Cecchi +Date: 2012-05-14 - [ Michael Webster ] - * nemo-action.c: Fix loading of absolute icon paths. - * nemo-action.c: Support icons provided by Spices. - * nemo-search-engine-advanced.c: Support wildcard mimetypes. - * nemo-search-engine-advanced.c: Allow multiple helpers to run on the same file type. - * Search: Allow disabling of search helpers via gsettings. - * nemo-action-manager.c: Don't randomize action names when rebuilding. - * nemo-action-menager.c: Use a basic Gio file monitor to watch for action directory changes. - * actions: Sort actions consistently. - * file operations: Implement pause/resume. - * nemo-file-management-properties.glade: Improve behavior tab layout. - * file operations: Fix some memory leaks. - * nemo-action-layout-editor: UI improvement for enabling/disabling actions. - * nemo-file.c: Allow files with backend-provided previews to be thumbnailed, even if their filesystem forbids it. - * nemo-toolbar.c: Just use a single change handler for toolbar settings. - * toolbar: Add 'toggle-extra-pane' button. - * navigation: Allow click event handling into an inactive pane if that pane has no selected files. - * nemo-tree-sidebar.c: disconnect handlers from the correct instance. - (Closes: #3615) - * nemo-tree-sidebar-model.c: Use g_clear_object instead of custom function. - * nemo-places-sidebar.c: Don't show shadowed mounts, or mounts without volumes. + release: prepare for 3.4.2 - [ Clement Lefebvre ] - * Prefix symbolic icons - * Switch to XApp symbolic icons - * Switch to xapp-symbolic-icons (XSI) +M NEWS +M configure.in - [ Cobinja ] - * Fix an icon name (#3635) +commit 0e08c9938a4e3557f9519aa52f2f488a99e28e97 +Author: Praveen Illa +Date: 2012-05-14 - [ jralo7 ] - * Add option to allow expanders in empty folders (#3593) + Updated Telugu Translations - [ Michael Webster ] - * list-view: Fix change handler, improve preferences description and behavior. - * nemo-file-management-properties.glade: Fix icon names. +M po/te.po - [ George Katevenis ] - * toolbar/terminal: Open in selected sub-folder, in expanded list-view (#3616) +commit 10a15760f0ba7d1b0a65693caf47a9b080742ed3 +Author: Cosimo Cecchi +Date: 2012-05-08 - [ Michael Webster ] - * icons: Drop nemo-bookmark-not-found-symbolic. Replace with xsi-folder-warning-symbolic. - * sidebar icons: Fix bookmark icons when creating a new bookmark, use a difference recent icon. - * nemo-list-view.c: Disconnect some leftover signal handlers. - * Fix some translation issues. - * nemo-query-editor.c: Don't translate an empty string. + window-manage-views: don't call methods on a NULL NemoFile - [ Clement Lefebvre ] - * Revert "add --select compatibility flag (#3589)" - * Revert "Add option to allow expanders in empty folders (#3593)" - * templates: Rephrase hint in templates folder + In got_file_info_for_view_selection_callback(), we unconditionally try + to fetch information for the parent directory in case the selection + is a + regular file, but we should avoid doing that when the file has no + parent, such as when it's the root of a web server. - [ Michael Webster ] - * preferences: Move document templates to its own tab. + https://bugzilla.gnome.org/show_bug.cgi?id=675259 - [ Clement Lefebvre ] - * preferences: Add some borders to pages - * l10n: Update files - * l10n: Update POT +M src/nemo-window-manage-views.c - [ Michael Webster ] - * preferences: Add some spacing between rows of the actions and templates lists. +commit c92532c8808815a776e377bf208bc194f077b169 +Author: Cosimo Cecchi +Date: 2012-05-07 - -- Clement Lefebvre Tue, 25 Nov 2025 17:05:20 +0000 + x-content-bar: pack the media label in the content area -nemo (6.4.5) xia; urgency=medium + Instead of just packing it into the GtkInfoBar's box, since that will + put it after the buttons of the action area. - [ Michael Webster ] - * layout editor: Don't use gettext.install to set up the locale. - * nemo-places-sidebar.c: Fix query-tooltip callback. - * nemo-style-fallback-mandatory.css: Add fallback support for the floating status bar. + https://bugzilla.gnome.org/show_bug.cgi?id=670129 - -- Clement Lefebvre Mon, 24 Feb 2025 15:23:49 +0000 +M src/nemo-x-content-bar.c -nemo (6.4.4) xia; urgency=medium +commit 7e90dabb2f38539173970fb715a53b355fb44e1c +Author: Cosimo Cecchi +Date: 2012-05-07 - [ Michael Webster ] - * nemo-places-sidebar.c: Remove delete key action for removing bookmarks. - * nemo-places-sidebar.c: Fix bookmark renaming. + places-sidebar: disallow context menus for sidebar headings - -- Clement Lefebvre Fri, 07 Feb 2025 18:33:25 +0000 + We already make them non-selectable - there's no point in having + a menu + for headings here. -nemo (6.4.3) xia; urgency=medium + https://bugzilla.redhat.com/show_bug.cgi?id=819404 - * l10n: generate additional files +M src/nemo-places-sidebar.c - -- Clement Lefebvre Thu, 05 Dec 2024 11:51:27 +0000 +commit 4e59e4cfc7bc68534664d9f72d0c7ea680b79db3 +Author: Cosimo Cecchi +Date: 2012-05-04 -nemo (6.4.2) xia; urgency=medium + places-sidebar: don't double unref GMount objects - [ ltsdw ] - * nemo-window-manage-views: fix null pointer dereference (#3492) + Fixes a lot of reported crashers with NFS/Samba volumes. - -- Clement Lefebvre Tue, 03 Dec 2024 10:14:00 +0000 + https://bugzilla.gnome.org/show_bug.cgi?id=674659 -nemo (6.4.1) xia; urgency=medium +M src/nemo-places-sidebar.c - [ Michael Webster ] - * Fix inhibit name so nemo's desktop file is discovered by cinnamon- session for the logout dialog. +commit c5b336f62e4d5efb330306cf9a905e70e7553171 +Author: Kjartan Maraas +Date: 2012-04-30 - [ Bobby Rong ] - * Remove unused libxml headers. (#3490) + Added Norwegian bokmål translation - -- Clement Lefebvre Mon, 02 Dec 2024 16:44:26 +0000 +M po/nb.po -nemo (6.4.0) xia; urgency=medium +commit fd7f5be8da08bf18d5d60314940491ff4f7fd99c +Author: Åsmund Skjæveland +Date: 2012-04-29 - [ Michael Webster ] - * Fix blocking when listing or entering a network location with an inaccessible host. - * Remove obsolete libxml dependency. - * NemoAction: Add support for keyboard shortcuts. - * layout editor: Add support for accelerator keys. - * Clean up gresource file. - * makepot: Fix some warnings - * places sidebar: Improve eject icon behavior. - * places-sidebar: Remove some obsolete code. - * Guard against gdkx11 calls in a Wayland session. - * nemo-places-sidebar.c: Only register the special eject icon size once. - * actions: Cancel action update idle callbacks during dispose for non-NemoView types. - * Add setting to disable auto-expanding of treeview rows during drag-and-drop operations. + Updated Norwegian Nynorsk translation - [ Rick Calixte ] - * action_i18n_strings.py & add-desklets.nemo_action.in: Fix spelling error (#3430) +M po/nn.po - [ Michael Webster ] - * search: Replace third-party OpenDocument search helper. - * search: Improve logging when loading search helpers. +commit dad5031da0fc176ec27dcbb3a7057cc41aee399b +Author: Sebastien Bacher +Date: 2012-04-27 - [ patlefort ] - * tree-sidebar: Add missing properties menu item. (#3476) + update ZERO_OR_THREE_DIGITS define to work as intended - [ Clement Lefebvre ] - * extract_action_strings: Don't use datetime - * extract_action_strings: Sort files - * makepot: Fix sorting and moved filename - * nemo_action_layout_editor.py: Fix non-initialized variable - * l10n: Avoid use of pango tags in msgids - * l10n: Update POT - * nemo-actions/merge_action_strings: Sort by locale - * l10n: generate additional files + https://bugzilla.gnome.org/show_bug.cgi?id=674924 - -- Clement Lefebvre Wed, 27 Nov 2024 11:30:53 +0000 +M libnemo-private/nemo-icon-canvas-item.c -nemo (6.2.8) wilma; urgency=medium +commit f5b824abf3f3b9304d7a63fd52d3f96036dc91ff +Author: Cosimo Cecchi +Date: 2012-04-24 - [ Michael Webster ] - * Remove .nemo_action language files from files/usr, they're already being installed from data/. + editable-label: fix selection color in backdrop state - [ Rick Calixte ] - * Remove gtk-layer-shell (#3443) + Don't set the ACTIVE flag if we don't have focus, it just doesn't make + sense. - [ Michael Webster ] - * Fix some codespell complaints. +M eel/eel-editable-label.c - -- Clement Lefebvre Thu, 08 Aug 2024 16:25:53 +0100 +commit dd0223773a818de92c71f119e1b42bae5157bdad +Author: Djavan Fagundes +Date: 2012-04-23 -nemo (6.2.7) wilma; urgency=medium + Fixed a string in Brazilian Portuguese translation - [ Michael Webster ] - * actions: Add better documentation, fix misleading warning message. - (closes: #3437) +M po/pt_BR.po - -- Clement Lefebvre Sun, 04 Aug 2024 14:01:25 +0100 +commit 6b692bcaa4577aa811a18ba38ecce0d925e7613d +Author: Yuri Myasoedov +Date: 2012-04-23 -nemo (6.2.6) wilma; urgency=medium + Updated Russian translation - [ Michael Webster ] - * nemo-action-manager.c: Generate unique names for actions when they're loaded. +M po/ru.po - -- Clement Lefebvre Sun, 21 Jul 2024 11:31:31 +0100 +commit 9684ae22e4b4e02d8dc0b944d956ac7f7b8863f4 +Author: Charles Kerr +Date: 2012-04-18 -nemo (6.2.5) wilma; urgency=medium + link: plug a memory leak - * action-layout-editor: Translate action names + https://bugzilla.gnome.org/show_bug.cgi?id=674087 - -- Clement Lefebvre Sat, 20 Jul 2024 09:55:59 +0100 +M libnemo-private/nemo-link.c -nemo (6.2.4) wilma; urgency=medium +commit c016565b17b2a94a1e2c7bbab9b5ae284110e578 +Author: Charles Kerr +Date: 2012-04-18 - [ Leigh Scott ] - * Update meson.build (#3431) + desktop-metadata: plug some memory leaks - [ Michael Webster ] - * nemo-view.c: Don't create a zero-length Empty Document. + https://bugzilla.gnome.org/show_bug.cgi?id=674086 - -- Clement Lefebvre Wed, 17 Jul 2024 15:48:14 +0100 +M libnemo-private/nemo-desktop-metadata.c -nemo (6.2.3) wilma; urgency=medium +commit 8118406d63b317c18cf52313a55c0f4b17093af3 +Author: Cosimo Cecchi +Date: 2012-04-18 - [ Michael Webster ] - * Fix handling of actions that are not part of the layout. - * nemo-icon-container.c: Don't tie the interactive search box with the window's lifetime. - * nemo-action-layout-editor.glade: Set a translation domain. + list-view: don't treat clicks as on an empty area if the row is + selected - -- Clement Lefebvre Fri, 05 Jul 2024 20:58:12 +0100 + When the row is selected, and we right click on it, make sure we popup + its context menu and not its parent's, since the selection is + a stronger + indication of intent. -nemo (6.2.2) wilma; urgency=medium + https://bugzilla.gnome.org/show_bug.cgi?id=674245 - [ Michael Webster ] - * layout editor: Update the disabled list immediately when an action is toggled. +M src/nemo-list-view.c - -- Clement Lefebvre Sun, 30 Jun 2024 11:37:53 +0100 +commit 2f2180c7a1e6203b3dfd9d926795aac180869fb3 +Author: Christian Kirbach +Date: 2012-04-18 -nemo (6.2.1) wilma; urgency=medium + Updated German translation (Bug #674093) - [ Michael Webster ] - * layout editor: Don't allow duplicate uuids when saving the layout. +M po/de.po - [ Rick Calixte ] - * eel-gnome-extensions.c: Set GNOME Terminal to FALSE (#3421) +commit ae6beb8030e3045b8bea3330e7b0507904a22e74 +Author: Cosimo Cecchi +Date: 2012-04-16 - -- Clement Lefebvre Tue, 18 Jun 2024 18:49:10 +0100 + release: prepare for 3.4.1 -nemo (6.2.0) wilma; urgency=medium +M NEWS +M configure.in - [ Clement Lefebvre ] - * packaging: Forbid compilation if the symbols file is outdated +commit bc3f1d8ffff2b3ca6336cef2bd5304c3f12b7418 +Author: Cosimo Cecchi +Date: 2012-04-13 - [ zsugabubus ] - * nemo-action-manager.c: Fix order of actions - * nemo-action-manager.c: Do not reinvent strcmp + undo: use g_file_info_get_attribute_byte_string for trash::orig-path - [ Michael Webster ] - * mimetype defs: Add missing key names. - * nemo-list-view.c: Add a permanent bottom margin when overlay scrolling is enabled. - * Implement submenus for actions. - * nemo-action.c: Add Locations and Files fields. + Since that's what GVfs sets. - [ Matt Turnbull ] - * Make wayland dependency optional (#3347) + https://bugzilla.gnome.org/show_bug.cgi?id=673776 - [ Michael Webster ] - * nemo-action.c: Allow absolute path pattern matching for File and Location filters. - * all: Stop using g_slice, fix a leak and remove an obsolete workaround. - * actions: Fix build for non-debug builds, remove a stray debug line. +M libnemo-private/nemo-file-undo-operations.c - [ Lorenzo Colitti ] - * Support drawing the desktop on wayland using gtk-layer-shell. (#3349) +commit 17d765a598e85eaeb785938e896d1fd44abc481a +Author: Milo Casagrande +Date: 2012-04-06 - [ Michael Webster ] - * meson.build: Build even if gtk-layer-shell's version is too low. - * Fix builds with gtk_layer_shell=false or omitted. - * meson.build: Show gtk-layer-shell status in the build summary. + [l10n] Updated Italian translation - [ Merlijn ] - * nemo-dnd: Have the drag and drop text data not be uris but plain paths. (#3356) +M po/it.po - [ Michael Webster ] - * org.nemo.root.policy.in: Allow escalation for remote users. +commit 0531db12b0a929fca139a3fde0846d31b602d922 +Author: Abderrahim Kitouni +Date: 2012-03-24 - [ Sertonix ] - * nemo-desktop: use app_id as .desktop file name (#3340) + file-operations: don't mix character and byte lengths - [ Michael Webster ] - * Rename initial desktop file to match final name, clean up some build files. - * nemo-thumbnails.c: Always have at least 1 thumbnail thread. + Otherwise untitled files end up with a (possibly) corrupt part of the + name appended. - [ Leigh Scott ] - * file: default to not being able to trash (#3381) + https://bugzilla.gnome.org/show_bug.cgi?id=672761 - [ Michael Webster ] - * nemo-view.c: Fix a build warning. - * actions: Refactor some code to reduce duplication. - * nemo-action-layout-editor.py: Enable save after drag-and-drop. - * polkit: Go back to using auth_admin_keep. +M libnemo-private/nemo-file-operations.c - [ Clement Lefebvre ] - * Revert "Rename initial desktop file to match final name, clean up some" - * Revert "nemo-desktop: use app_id as .desktop file name (#3340)" +commit ba04ec0e7435b21d492a39e0bafc167ba24e0f49 +Author: Ryan Lortie +Date: 2012-04-05 - [ Michael Webster ] - * nemo-action.c: Fix regression when processing desktop actions. - * Set a log domain to allow restricting debug output to Nemo only. - * nemo-file.c: Update default date-time formats to adapt to GDateTime change. - * application: Guard a new GLib log function with a version check. - * nemo-thumbnails.c: Always respect the thumbnail thread count if the user sets it explicitly. + NemoFile: keep free space information directly - [ Rick Calixte ] - * nemo-view.c & nemo-window-menus.c: Add support for terminals with whitespace in the exec (#3379) + There were previously some tricks in nemo to this effect: - [ Bobbe ] - * Fix confusing NEMO_LIST_ICON_SIZE_ definitions (#3407) + - when you call nemo_file_get_volume_free_space() on a + NemoFile, the return result is NULL at first and later you + get a + "changed" signal on the file after the value is filled in - [ Michael Webster ] - * nemo-view.c: Use an actual timeout duration when updating the status bar/floater while loading a directory. - * nemo-desktop-main.c: Add missing include. + - the value is being stored inside the NemoDirectory equivalent + for + the file that is created when the call is first performed and kept + around until after the change signal fires (so that the person + receiving the change signal can still get the data). This is + done to + save space by not expanding NemoFile. - [ Rick Calixte ] - * eel-gnome-extensions.c: Support whitespace in execution commands (#3413) + The NemoDirectory is then dropped after the change signal + is done + firing. - [ Michael Webster ] - * Update makepot, fix some strings in the layout editor. - * nemo-config-base-widget.c: Accommodate wider enable/disable buttons in certain languages. + - the nemo properties window has a 200ms timeout after changes to + files being reported before it re-queries the properties - [ Aliaksandr Kulinkovich ] - * Update README.md with details about history and features. (#3390) + The end result is that the NemoDirectory (which holds the + information about the free space) is already freed by the time the + properties window tries to update the free space display. + This results + in the directory being recreated and the process starting over again. + The end result is that we never get the free space shown in the dialog + and instead we have an infinite loop of CPU usage (fortunately + repeating + only every 200ms, so you get ~5% CPU usage instead of 100%). - [ Michael Webster ] - * nemo-action-layout-editor: Refactor to allow importing the editor widget separately from the default window. - * Update README.md - * layout-editor: Add a label to explain the editor. + We can solve the problem by just storing the free space information + directly in the NemoFile details structure and dropping the dance + with NemoDirectory; nothing in NemoDirectory is actually using + that information anyway. - [ Clement Lefebvre ] - * layout-editor: Simplify UI/labels, center dialog - * l10n: Update POT + https://bugzilla.gnome.org/show_bug.cgi?id=673550 - [ Michael Webster ] - * Remove Edit->Plugins. - * nemo-action-layout-editor: Add up/down arrows as an alternative to drag-and-drop. +M libnemo-private/nemo-directory-private.h +M libnemo-private/nemo-directory.c +M libnemo-private/nemo-file-private.h +M libnemo-private/nemo-file.c - [ Clement Lefebvre ] - * l10n: Update POT +commit 07f22b823cb75fc0da5dc9bc8c3805766d8baa15 +Author: Praveen Illa +Date: 2012-04-05 - -- Clement Lefebvre Thu, 13 Jun 2024 09:53:46 +0100 + Updated Telugu Translation -nemo (6.0.2) virginia; urgency=medium +M po/te.po - [ Michael Webster ] - * nemo-file.c: Escape tooltip text for markup before adding any search result snippet. +commit ae375b34c28c157950069e8bae8e033f5c12a556 +Author: Nelson Benitez Leon +Date: 2012-04-03 - -- Clement Lefebvre Thu, 28 Dec 2023 12:23:39 +0000 + list-view: don't handle extra mouse buttons events -nemo (6.0.1) virginia; urgency=medium + Don't handle extra mouse button events so they can bubble up + through GtkTreeview till NemoWindow where they are handled + to navigate the view forward and backward. - [ Leigh Scott ] - * Remove nemo-convert-metadata tool (#3335) + Part of bug 660006 - [ Michael Webster ] - * nemo-icon-canvas-item.c: Fix the state check to see if a surface can be re-used. + Signed-off-by: Nelson Benitez Leon - -- Clement Lefebvre Tue, 19 Dec 2023 12:25:11 +0000 +M src/nemo-list-view.c -nemo (6.0.0) virginia; urgency=medium +commit 3deb33d449f293b8e2597ccd7cc3bacec7b40ca2 +Author: Nelson Benitez Leon +Date: 2012-03-29 - [ Michael Webster ] - * debian: use buildtype=debugoptimized, use buildtype instead of an option for frame-pointers. - * nemo-window-slot.c: Update the drop zone target each time the location changes, not just when the view type changes. - * Fix some leaks, g_object_unref safety. + eel-canvas: ignore extra mouse button events - [ Guldoman ] - * Use `activation_uri` as a second choice in `nemo_file_get_local_uri` (#3269) + Ignore button press/release events for mouse buttons greater + than 5 so allowing forward and backward mouse buttons to work + over icons. - [ Michael Webster ] - * nemo-desktop-link.c: Fix warning when toggling the Trash icon in desktop settings. - * Fix some style/icon problems. - * search: Relax folder restrictions to allow gvfs locations. - * compact view: Improve text and selection highlight alignment. - * eel-gtk-extensions.c: (Wayland) Fix menu popup positioning, popup (#3281) + Part of bug 660006 - [ marcus125 ] - * nemo-file.c: Update hard-coded value for size of thumbnails. (#3278) + Signed-off-by: Nelson Benitez Leon - [ Michael Webster ] - * Update issue template with a link to open and closed issues. - * eel-gtk-extensions: Make wayland display check reusable. - * nemo-view.c: Use an admin:/// uri for the 'Open as Root' action when running under Wayland. - * nemo-window-slot: Set up dnd against the slot itself instead of updating the target data each time the location changes. +M eel/eel-canvas.c - [ Edgar ] - * Fix issue when generating video thumbnails from network shares (#3265) +commit 49c753b1e2adaf7803b2fd4f1685f859d979ff74 +Author: Cosimo Cecchi +Date: 2012-04-02 - [ Michael Webster ] - * nemo-thumbnails: Use g_file_peek_path to simplify network-to-local uri conversion. - * Emphasize checking for duplicate existing issues in the bug report form. - * nemo-window-slot.c: Disable drop bar, until circular reference can be resolved. - * nemo-window.c: Don't update saved window state if the window is tiled when closing it. + file-operations: fix off-by-one error in copied files count - [ Pedro Montes Alcalde ] - * Fix trying the same filename when moving a file with duplicate name (#3299) + TransferInfo->num_files counts from zero, so we have to increment + it by + one when formatting it into a string. - [ Lars Mueller ] - * Fix thumbnail creation for local files + https://bugzilla.gnome.org/show_bug.cgi?id=673345 - [ Michael Webster ] - * file ops: Use symbolic tray icons. +M libnemo-private/nemo-file-operations.c - [ Rick Calixte ] - * nemo-view.c: Show detailed actions for some selection types (#3307) - * Fix meson.build deprecations up to 0.56.0 (#3316) +commit 9b762008cf6417f1691bd94dd99c583d4e7a2c26 +Author: Cosimo Cecchi +Date: 2012-04-01 - [ Michael Webster ] - * nemo-pathbar.c: Remove unnecessary g_object_unref. - * nemo-desktop.c: Use Gtk to set the desktop window hint - * nemo-desktop: Add csd-background to ignored-desktop-handlers. - * list-view: Remove remaining unused 'drop zone' code. - * nemo-list-view: Restrict drag-into-folder actions to be triggered only over text-covered regions of a given row. - * nemo-list-view.c: Don't apply column-expand test unless there is a drag operation active. + link: remove unused code - [ Clement Lefebvre ] - * l10n: Remove unnecessary msgid - * l10n: Update POT - * l10n: Update files + nemo_link_local_get_additional_text() is now unused. - -- Clement Lefebvre Sun, 19 Nov 2023 14:05:19 +0000 +M libnemo-private/nemo-link.c +M libnemo-private/nemo-link.h -nemo (5.8.4) victoria; urgency=medium +commit afc9a8196ce9a94b900f532c3b7d433ef9641569 +Author: Cosimo Cecchi +Date: 2012-04-01 - [ Michael Webster ] - * search: Fix search directory view selection. - * nemo-search-directory.c: Don't restart the search if the query hasn't changed. - * advanced search: Fix path handling to prevent symbolic links escaping into forbidden locations. - * Fix some leaks. + icon-container: don't show comment field for desktop files - [ marcus125 ] - * nemo-style-fallback-mandatory.css: Fix styling on inactive pane (#3261) + This fixes a regression introduced in commit + 5a47a484e45218e83202c508b421b1a2707af270 - [ Michael Webster ] - * nemo-window.c: Fix crash when unmounting a network location. - * nemo-places-sidebar.c: Remove extra reference to selected sidebar file when using the popup menu. - * nemo-file-utilities.c: Simplify symbolic device icon lookup. + https://bugzilla.gnome.org/show_bug.cgi?id=673316 - -- Clement Lefebvre Fri, 07 Jul 2023 15:26:24 +0200 +M src/nemo-icon-view-container.c -nemo (5.8.3) victoria; urgency=medium +commit 3525ec8ec6b382a04affa0d02bf8ba1a1929f89b +Author: Alexander Shopov +Date: 2012-04-01 - [ Michael Webster ] - * Revert "nemo-list-view.c: Fix some tooltip markup warnings." - * Disable view selection when viewing search results. - * search: Fix tracker search, which was broken by 3c691a8e0e80b5. - * nemo-search-directory: Unset the search_running flag when the search completes. - * search view: Fix sort column/direction not being remembered. - * nemo-list-view.c: Don't try to work out a monospace font to use if no font family is set. - * nemo-places-sidebar.c: Allocate extra space for the eject button when overlay-scrollbars are enabled. + Updated Bulgarian translation - -- Clement Lefebvre Mon, 26 Jun 2023 10:47:56 +0200 +M po/bg.po -nemo (5.8.2) victoria; urgency=medium +commit c2ab193ea26c67d6031fce7fe389b3832c37cc80 +Author: Piotr Drąg +Date: 2012-03-31 - [ Michael Webster ] - * nemo-file.c: Don't try to get a 'local uri' for psuedo-files on the desktop. + Updated Polish translation - -- Clement Lefebvre Wed, 14 Jun 2023 09:25:47 +0200 +M po/pl.po -nemo (5.8.1) victoria; urgency=medium +commit ce15200eb252536bf95c0a37939b883320f851c7 +Author: Piotr Drąg +Date: 2012-03-29 - [ Michael Webster ] - * nemo-list-view.c: Reset dynamic bottom margin when loading a new location. + Added Tibetan translation to LINGUAS - [ Clement Lefebvre ] - * l10n: Generate additional files +M po/LINGUAS - -- Clement Lefebvre Thu, 08 Jun 2023 13:00:41 +0100 +commit a08f87e8fe5522dbd58573a73d3e7aac70d80cff +Author: tennom YK +Date: 2012-03-29 -nemo (5.8.0) victoria; urgency=medium + Added Tibetan translation - [ Michael Webster ] - * nemo-view-dnd.c: Fix the check for a web link's title, and use the url if it's missing. - * nemo-mime-actions.c: Prioritize an http link to open in a browser, regardless of the mimetype of the link's target. - * nemo-file-management-properties.glade: Re-save under glade 3.38. - * preferences: Allow displaying dates using the system's current monospace font. - * Reduce timeout delay for the click-to-rename feature. - * thumbnails: Use multiple threads for generating thumbnails. - * nemo-thumbnails: Restore compatibility with older glib versions, move all mutex locks off of the UI thread, clean up when nemo exits. - * nemo-icon-container.c: Fix thumbnail prioritization in the icon, compact views. - * Remove _prioritize_thumbnailing vfuncs in the icon containers. - * Clean up nemo-thumbnails.c, add some thread/queue debugging. - * nemo-thumbnails.c: Use LIFO sort for the thumbnailing thread. - * nemo-thumbnails.c: Fix thread count when the setting is a positive value (specific count desired instead of automatic). +A po/bo.po - [ kain ] - * Fix for List View thumbnail scaling at HiDPI (#3187) +commit 963ee1bd9ba64d88272bd264d76eff6846e24c7c +Author: Daniel Mustieles +Date: 2012-03-27 - [ Michael Webster ] - * thumbnails: Ignore operations if the thumbnailer isn't running. - * list-view: Scale the thumbnail correctly when applying emblems, and fix the emblem sanity checks everywhere. + Updated Spanish translation - [ Oliver Kästner ] - * Fix memleaks (#3131) +M po/es.po - [ Michael Webster ] - * file info: Use generic methods for attributes that aren't guaranteed to be supported by the filesystem. - * Fix some more GFileInfo getter problems. +commit 67b2499fc0ea6ba08063adea535a1d3529ff3053 +Author: Mantas Kriaučiūnas +Date: 2012-03-26 - [ GNL10 ] - * Stop "Searching..." pop-up button from disappearing when opening a file (#3177) + Updated Lithuanian translation - [ Michael Webster ] - * Implement a dynamic margin at the end of the file list in the list view. - * window-slot: Update status bar selection info when a location is still loading. +M po/lt.po - [ kain ] - * Icon frame only for non-transparent large icons (#3189) +commit b6972a97ab14dc86c2e5130feda39d3bc5c7a355 +Author: Cosimo Cecchi +Date: 2012-03-26 - [ Michael Webster ] - * search: increase performance, reduce memory use. - * Use GRefString instead of eel_ref_str for ref-counted strings. - * Fix some memory leaks. - * nemo-list-view.c: Fix some tooltip markup warnings. - * Use fast-content-type when normal content-type lookup fails. + release: prepare for 3.4.0 - [ Guldoman ] - * Use local URIs for drag&drop, copy/paste operations (#3220) +M NEWS +M configure.in - [ Michael Webster ] - * i18n: Add rtl versions of directional icons. - * places-sidebar: Render disk-full bars correctly in RTL languages. +commit c1551dfcfa9c92bf43c57b219535f63a9fecdad4 +Author: Cosimo Cecchi +Date: 2012-03-26 - [ Oliver Kästner ] - * properties-window: split dir elem count and size (#3225) + view: ensure we show "Open with..." entries for folders - [ Michael Webster ] - * Add a 'drop zone' to the list view. This allows drag-and-drop into the current folder even when only folders are visible in the view. - * nemo-application.c: Update the custom css provider when the system theme changes. - * nemo-list-view.c: Remove stray debug line. - * github workflow: Add optional ssh session. - * actions: Make NemoActionManager more efficient, and skip invalid directories. - * Update bug/feature templates. + This is a regression from commit + b9c51fd4eb84a9f52ee4be1bf183fc516984130b - -- Clement Lefebvre Thu, 01 Jun 2023 16:21:09 +0100 + https://bugzilla.gnome.org/show_bug.cgi?id=672809 -nemo (5.6.3) vera; urgency=medium +M src/nemo-view.c - [ Michael Webster ] - * nemo-window-menus.c: Recalculate extension/action items at an earlier stage in opening the file manu. - * nemo-extensions-list.c: Add a note regarding a memory leak. +commit d64698322ea64fed050bd82de545e678d557f85c +Author: Reşat SABIQ +Date: 2012-03-26 - -- Clement Lefebvre Wed, 18 Jan 2023 16:11:34 +0000 + Updated Crimean Tatar (Crimean Turkish) translation -nemo (5.6.2) vera; urgency=medium +M po/crh.po - [ Clement Lefebvre ] - * l10n: Update POT +commit 440d5bb1693d32a7d4fb8ef16002c130b600eb80 +Author: Jiro Matsuzawa +Date: 2012-03-25 - [ Michael Webster ] - * nemo-places-sidebar.c: Get the expander width from the current theme instead of hard-coded. + Updated Japanese translation. - [ Bobby Rong ] - * nemo-action: readlink before populate - * nemo-script-config-widget: monitor correct path for setup-dir-monitors +M po/ja.po - [ Michael Webster ] - * nemo-window-pane.c: Use the button-release event for showing the current location entry. - * Run generate_additional_file to populate desktop/action files with new translations. +commit 70b70e316cf4930036759581a935ab19475835e3 +Author: Praveen Arimbrathodiyil +Date: 2012-03-24 - -- Clement Lefebvre Sat, 07 Jan 2023 15:53:11 +0000 + Malayalam translation updated by Aslam -nemo (5.6.1) vera; urgency=medium +M po/ml.po - [ Michael Webster ] - * pathbar/entry: Give entry-preferred mode the same persistent behavior as pathbar-preferred. +commit afe92aa3ea0fdd988dd3bfe5851032843e6d808b +Author: Sasi Bhushan +Date: 2012-03-24 - -- Clement Lefebvre Tue, 13 Dec 2022 15:14:28 +0000 + Updated Telugu translation -nemo (5.6.0) vera; urgency=medium +M po/te.po - [ veractor ] - * Actions: Escape device paths also (#3057) +commit 0d165b3e0b874263e6f52127194b6e9f47ea4a1b +Author: Rajesh Ranjan +Date: 2012-03-23 - [ Michael Webster ] - * Use Github actions instead of CircleCI. + hindi translation by Chandan Kumar - [ veractor ] - * Actions: Escape path spaces when they are unquoted - * eel: Merge shell character escape functions +M po/hi.po - [ Clement Lefebvre ] - * icon view: don't highlight selected icons - * nemo-desktop: Rename new-launcher -> 90_new-launcher - * nemo-desktop: Add Desktop Settings action - * l10n: Update POT and files +commit adb6a12a7b0b08cfd441e4a75857797dc9875a43 +Author: Timo Jyrinki +Date: 2012-03-23 - [ Michael Webster ] - * search: Perform deep counts on a search directories full file list, instead of the directory itself, when opening properties. - * nemo-search-directory-file.c: Add a missing NemoDirectory method. - * location bar: Add an option to always switch back to the pathbar (breadcrumbs) widget after entering a location or otherwise using the location entry. - * Prevent interactive search from interfering with keystrokes intended for the window handler (for focusing the location entry). + Updated Finnish translation by Jiri Grönroos - [ Oliver Kästner ] - * debian/control(nemo-dbg): priority extra->optional +M po/fi.po - [ Michael Webster ] - * Remove custom btime (creation time) code. - * Add support for file creation time via GFileInfo. - * Add ability to display date columns in a monospaced font. - * nemo-file-operations.c: Fix null pointer error. - * nemo-file-operations.c: Handle a couple more potential problems with g_file_get_basename(). +commit 982ce96d810795dd30d50cb2ff8e622fcb9ff4d6 +Author: Praveen Illa +Date: 2012-03-23 - [ Clement Lefebvre ] - * list view: Do show dates in monospace font by default + Updated Telugu Translation - [ Michael Webster ] - * Change location entry/pathbar behavior. - * Fix build on LMDE. - * Toolbar: Use actions to control the location/path bar switching. - * toolbar: Hide the location entry toggle when not needed, and limit its shortcut to making sure the entry is focused. - * pathbar/entry: Fix a couple of issues when changing pathbar/entry preference. +M po/te.po - -- Clement Lefebvre Mon, 21 Nov 2022 10:36:27 +0000 +commit a6cb9e4697d904390cf54fdd19aa556b78bf98c0 +Author: Kristjan SCHMIDT +Date: 2012-03-22 -nemo (5.4.3) vanessa; urgency=medium + Updated Esperanto translation - [ Fabio Fantoni ] - * fix spelling error spotted by lintian +M po/eo.po - [ veractor ] - * App chooser: Quote custom executable file paths (#3041) +commit a5914993f533ceeef84d2d7000c64160b68d2cfb +Author: Ibrahim Saed +Date: 2012-03-21 - -- Clement Lefebvre Sat, 13 Aug 2022 12:30:16 +0200 + Updated Arabic translation -nemo (5.4.2) vanessa; urgency=medium +M po/ar.po - [ veractor ] - * Actions: Escape quoted content in paths (#3026) +commit 8d0c374a46fd90f82dea80c7d19fd8800fa67154 +Author: Duarte Loreto +Date: 2012-03-21 - [ Bobby Rong ] - * libnemo-private: add missing gio-unix-2.0 dependency (#3028) + Updated Portuguese translation - [ Michael Webster ] - * nemo-view.c: Use a shorter menu update delay when the update has been triggered by a selection change. +M po/pt.po - -- Clement Lefebvre Thu, 21 Jul 2022 11:11:21 +0200 +commit 040ee44c68efb7120e9a86f56c6e325052d42a8f +Author: Automatic Mirroring +Date: 2012-03-21 -nemo (5.4.1) vanessa; urgency=medium + Update Simplified Chinese translation. - [ Jeremy7701 ] - * Add epub search helper (#2867) +M po/zh_CN.po - [ Michael Webster ] - * Fix installation of epub search helper. +commit ef3a663a6e25040e1e96d3225654a0c774b1a823 +Author: YunQiang Su +Date: 2012-03-21 - [ Joshua Peisach ] - * icon-container: Don't free a pointer after it has already been freed + update Simplified Chinese (zh_CN) translation - [ veractor ] - * Actions: Escape tabs and newlines in paths - * Actions: Escape backslashes in paths - * Actions: Escape number signs in paths (#3022) +M po/zh_CN.po - -- Clement Lefebvre Fri, 15 Jul 2022 15:18:56 +0200 +commit 4229689853639bce00b4a8dab7f7312aafb7da32 +Author: Cosimo Cecchi +Date: 2012-03-19 -nemo (5.4.0) vanessa; urgency=medium + release: prepare for 3.3.92 - [ Michael Webster ] - * nemo-list-model.c: Fix crash/inconsistent model when expanding an unmonitored directory that no longer has any children. - * nemo-list-view.c: Use the original button-press coordinates when deciding on dnd vs rubberbanding. - * nemo-action.c: Handle get_device_path() failing more gracefully. - * nemo-window-manage-views.c: Only close a window when its location is deleted if its immediate parent was the desktop and the window also has no backward history. - * progress handler: Tell the wm that the progress window is a dialog. - * menus: when activating File->New Window in a search results view, open a new window using the original uri instead of the virtual search results location. - * Don't allow toolbar buttons to gain input focus. +M NEWS +M configure.in - [ okaestne ] - * port from libnotify to GNotification - * build: remove dependency on libnotify +commit a60e9887eebb8973c48c0151981a26cce7cc8793 +Author: Cosimo Cecchi +Date: 2012-03-19 - [ Jeffrey Knockel ] - * Add !NEMO_IS_DESKTOP_WINDOW() guards to callbacks + places-sidebar: add support for the "network" volume class identifier - [ Leigh Scott ] - * Add native exfat renaming support (#2967) - * Sync sort-directories-first with gtk file chooser (#2971) + If a GVolume has a class identifier of "network", put it (and + its mount) + in the Network section. This fixes e.g. NFS mounts showing in + the wrong + section. - [ patlefort ] - * Add option to disable or enable content type detection of mounted media. (#2913) +M src/nemo-places-sidebar.c - [ Clement Lefebvre ] - * CI: Update targets - * l10n: Update POT +commit a06988aefdf6cf147936737e48005170410046b2 +Author: Cosimo Cecchi +Date: 2012-03-19 - [ Michael Webster ] - * Add symbols file for the extension library. + places-sidebar: focus the first non-heading row on focus-in - [ Yofenry ] - * added nemo github url in THANKS + Instead of giving the focus to the heading, which would end up in + getting stuck there, since headings are not supposed to be actionable. - -- Clement Lefebvre Fri, 10 Jun 2022 15:58:12 +0200 + https://bugzilla.gnome.org/show_bug.cgi?id=672002 -nemo (5.2.4) una; urgency=medium +M src/nemo-places-sidebar.c - [ Michael Webster ] - * nemo-file.c: Remove a file's 'failed thumbnail' marker when refreshing, if it has one. +commit 003b8773399de836e11c725f24c8a1f668a29adf +Author: Cosimo Cecchi +Date: 2012-03-19 - -- Clement Lefebvre Tue, 11 Jan 2022 16:05:44 +0000 + places-sidebar: use gtk_tree_view_set_cursor() to move selection -nemo (5.2.3) una; urgency=medium + This will also move the scrolled window up/down when we navigate + the places + sidebar with keyboard. - [ Michael Webster ] - * nemo-file-operations.c: Initialize 'auto_rename' before using it. - * nemo-query-editor.c: Fix editor issue when using tabs. +M src/nemo-places-sidebar.c - -- Clement Lefebvre Fri, 31 Dec 2021 11:17:39 +0000 +commit 429d3548b72b5a29e8c0e31304db3cd51e25fcbf +Author: Cosimo Cecchi +Date: 2012-03-19 -nemo (5.2.2) una; urgency=medium + places-sidebar: make find_prev_or_next_row() start from the passed + iter - [ Michael Webster ] - * Fix mistake in shortcuts window. + This will be useful for the next commits. - [ Clement Lefebvre ] - * l10n: Generate files - * l10n: Update POT +M src/nemo-places-sidebar.c - -- Clement Lefebvre Thu, 16 Dec 2021 10:14:04 +0000 +commit 5d2471aff8033fc319957273cf20d33420c5a6f7 +Author: Carles Ferrando +Date: 2012-03-19 -nemo (5.2.1) una; urgency=medium + [l10n]Updated Catalan (Valencian) translation - [ Michael Webster ] - * search: Use the python xlrd module to read .xls files. +M po/ca@valencia.po - -- Clement Lefebvre Thu, 09 Dec 2021 11:23:52 +0000 +commit 3ea1074b29d7d25c7c087eeeece215a057ab3fbd +Author: Joan Duran +Date: 2012-03-19 -nemo (5.2.0) una; urgency=medium + [l10n] Updated Catalan translation - [ Michael Webster ] - * nemo-desktop-overlay.glade: Fix label marked untranslatable. - * makepot: Add shortcuts ui file. - * nemo-view.c: Follow the same invocation rules for bulk renaming as we do for normal renaming. - * Install language definitions to gtksourceview-4. - * nemo-file.h: Use the correct icon names for read-only and unreadable emblems. - * mount-archive.nemo_action: Use gnome-disk-image-mounter instead of gvfsd-archive. - * debian/control: Add gnome-disk-utility to recommends (for image mount action). - * Add a manpage for nemo-desktop and clean up nemo's a bit. +M po/ca.po - [ JosephMcc ] - * nemo-toolbar.c: Use flat button style +commit 63b59332d15139bd43504e0192a169cd5f924bf5 +Author: Mario Blättermann +Date: 2012-03-18 - [ Joshua Peisach ] - * extension gir: Export 'libnemo-extension' to the gir + [l10n] Updated German translation - [ Michael Webster ] - * actions: Refactor to remove unnecessary methods. - * actions: Add new conversion token for a file's parent uri (with selection_count > 0) and location uri (selection_count == 0). - * actions: Add UriScheme specifier in the action definition. - * nemo-window-manager-views.c: When removing a folder, don't close the entire window if that folder is open on another tab. - * nemo-window.c: Don't ignore tab events when renaming. - * nemo-directory-async.c: Don't write the entire buffer into the pixbuf loader all at once. - * copy/paste: Make the clipboard contents persist after the process ends. - * nemo-search-engine-advanced.c: Ensure a path before using it as a key in the skip table - g_str_hash cannot be NULL. +M po/de.po - [ Isaac Carter ] - * search: Update tooltip text (#2810) +commit f8f4f5a241dd99c04be8f327aed3316c9d87f1b2 +Author: Cosimo Cecchi +Date: 2012-03-16 - [ Minabsapi ] - * file operations: Add duplicate button (#2841) + icon-container: set a range base selection icon on _set_selection() - [ Clement Lefebvre ] - * file-operations: Rename button label in previous commit - * l10n: Generate files - * l10n: Update POT + If the selection we set if just one item (as it is in the case when + we're going back/forward in the history), set that item as a base for + range selection too, instead of just selecting it. - -- Clement Lefebvre Mon, 15 Nov 2021 14:25:48 +0000 + https://bugzilla.gnome.org/show_bug.cgi?id=672127 -nemo (5.0.3) uma; urgency=medium +M libnemo-private/nemo-icon-container.c - [ Michael Webster ] - * search: Use untex instead of detex to search latex files. - * search: Fix build from previous commit. - * nemo-search-engine-advanced.c: Also match \r (carriage return) in the newline filter. - * nemo-blank-desktop-window.c: Don't try to open a nonexistent menu. +commit ba281e27b804b1c61c715f4371f352b04e9d76ad +Author: Cosimo Cecchi +Date: 2012-03-16 - -- Clement Lefebvre Fri, 02 Jul 2021 10:49:34 +0100 + eel: delete unused code -nemo (5.0.2) uma; urgency=medium + We don't use EelDPoint/EelIPoint anymore; other functions here + are just + unused. - [ Michael Webster ] - * settings: Make the default search button states match the old search behavior. - * nemo-search-engine-advanced.c: Escape paths properly before passing them to search helpers. - * nemo-query-editor.c: Don't show the bar separator if the search box isn't being shown. - * Search: Allow TryExec to be a list of programs. - * Search: Update search README.md for TryExec changes. - * search-helpers/nemo-mso-to-txt.c: Refactor and improve error handling. - * Search: Add .doc, .xls and .tex helpers. - * Search: Add .ppt helper. - * debian/control: Make search helper programs dependencies instead of recommends. - * nemo-mime-actions.c: Only add entire view file list to an image viewer launch if its commandline supports multiple files. - * nemo-search-engine-advanced.c: Ensure that the final snippet endpoint is no greater than the original endpoint. - * nemo-search-engine-advanced.c: a couple fixes. - * search: Disable content search for some special folders. - * nemo-view.c: Update context menu item visibility from preferences after updating the menu items from any extensions. - * nemo-view.c: Clear extension menu items during real_update_menus. - * nemo-view.c: Move call added to last commit to nemo_view_stop_loading. +M eel/eel-art-extensions.c +M eel/eel-art-extensions.h +M eel/eel-self-checks.c +M eel/eel-self-checks.h - -- Clement Lefebvre Fri, 25 Jun 2021 16:58:08 +0100 +commit 8e43d841355b6cd82af730bc2357f9ac1ed7c638 +Author: Cosimo Cecchi +Date: 2012-03-16 -nemo (5.0.1) uma; urgency=medium + icon-container: avoid using EelDPoint - [ Michael Webster ] - * nemo-search-engine-advanced.c: Convert input data to utf8, and manipulate match snippets as utf8 to ensure they display correctly in the tooltip. - * nemo-list-view.c: Fix a memory leak. + It's going away. - [ Eli Schwartz ] - * make ps2txt search helper work on non-debianlike distros +M libnemo-private/nemo-icon-canvas-item.c +M libnemo-private/nemo-icon-canvas-item.h +M libnemo-private/nemo-icon-container.c - [ Michael Webster ] - * toolbar: Fix updating the state of the "Up" button. +commit 0832acdb4371fc7de957303e220e899c8fdcdf5c +Author: Cosimo Cecchi +Date: 2012-03-16 - [ Clement Lefebvre ] - * l10n: Fix msgid - * l10n: Remove msgids - * l10n: Update POT + icon-view: fix wheel scrolling for compact view - [ Michael Webster ] - * search: Add a readme for search helpers, move third-party helpers into the search-helpers directory, clean up search logging a bit. - * search helpers: Change the group name, follow my own rules for mimetype list termination, improve readme. - * nemo-window-menus.c: Update extension and action entries in the File menu when it is shown. - * nemo-tree-sidebar.c: Fix states for pin/unpin and create-folder menu items. - * toolbar: Disable the 'create-folder' button in non-writable locations. - - -- Clement Lefebvre Thu, 10 Jun 2021 14:01:43 +0100 - -nemo (5.0.0) uma; urgency=medium - - [ icarter09 ] - * Issue 1881. Adds keyboard shortcut for Same Location as other pane. Adds shortcut to shorcut UI. - * Issue 1263. Enables F6 to immediately toggle between panes. - - [ Michael Webster ] - * nemo-shortcuts.ui: Add a new section for dual-pane and put related shortcuts there. - - [ Eric ] - * Added option to toggle sorting favorites before other files - * Fixed whitespace - - [ Michael Webster ] - * nemo-main-application.c: Remove 30s inactivity timeout. - * nemo-menu-provider.c: Don't request menu items for selections if there is no selection - not all extensions guard against this. - * nemo-view.c: Partially revert b4d0318b318f4f4f20cbd8e89c7859f69aeb6214 - - [ John Lindgren ] - * Fix segfault when g_file_info_get_symlink_target() returns "". - - [ Steven Xu ] - * feat: added the `--existing-window` flag to open URLs in an existing window, cf https://github.com/linuxmint/nemo/issues/2674 - * feat: use `gtk_window_present_with_time()` instead of `gtk_window_present()`, otherwise the window manager will ignore this window's focus request and try to just mark it urgent instead (flashing in the window list for example) + If the smooth scroll event we get is an emulated scroll wheel, we have + to emulate a right/left scroll, like we do for regular UP/DOWN events. - [ icarter09 ] - * Fixes 2696. Detects if Trash is supported. + https://bugzilla.gnome.org/show_bug.cgi?id=672185 - [ Michael Webster ] - * nemo-places-sidebar.c: Fix bookmark separator positioning to account for conditionally hidden immovable elements. - * nemo-desktop-application.c: Remove root check. - * nemo-view.c: Hide trash menu item when trash is not supported. - * Add option to treat root as normal. - * actions: Implement passing the active window xid to exec strings. - * nemo-window-menus.c: hide gvfs locations based on their actual availability, not strictly on the process uid. - * nemo actions: Implement reverse dependencies. - * nemo-view.c: Only update the context menu when it's about to be shown. +M src/nemo-icon-view.c - [ Steven Xu ] - * docs: added docs for the `--existing-window` flag +commit 8dcf1625bb5e38c865ebe01f53275b579093663c +Author: Reinout van Schouwen +Date: 2012-03-16 - [ Cerulean ] - * Allow images to be viewed in supported image viewers in the same order as they are shown in the current nemo view (directory or search). - * Remove g_list_insert_before_link call for compatibility with older glib versions. - - [ Michael Webster ] - * Revert "nemo-view.c: Only update the context menu when it's about to be" - * nemo-view.c: Delay actions and extension menu providers from updating until the menu is requested. - - [ Joshua Peisach ] - * bookmark-list: Clean up and close memory leak General cleanup. Use NemoBookmarkList instead of casting itself every line. - - [ kysrpex ] - * Prevent the menu bar from disappearing when some of its elements is currently selected. - * Remove the menu bar inmediately after selecting an item (if configured to auto-hide). - - [ Michael Webster ] - * nemo-directory.c: Fix memory leak. - * nemo-directory.c: Fix previous commit which altered potential behavior more than necessary. + 2012-03-16 Reinout van Schouwen - [ icarter09 ] - * Issue 541. Removes spaces from Samba drive paths in location bar. + - nl.po: Fixed typo - [ Michael Webster ] - * nemo-list-view.c: Implement 'double-click blank area to go up one (#2646) +M po/nl.po - [ icarter09 ] - * Fixes #2244. Adds logic to strip leading whitespace and checks for absolute path when copy/pasting value. +commit 136a20daeef2568776a1c239bac9cb66a1f66efc +Author: Reinout van Schouwen +Date: 2012-03-16 - [ Isaac Carter ] - * Fixes Issue #2415. Removes nemo self checks (#2439) + 2012-03-16 Reinout van Schouwen - [ Michael Webster ] - * nemo-places-sidebar.c: Sort all devices in the sidebar. - * nemo-location-entry.c: Don't modify a string we don't own. - * Implement Content search. - * Add a search helper for Open XML (MS Office). + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - -- Clement Lefebvre Mon, 31 May 2021 12:21:41 +0100 + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen -nemo (4.8.5) ulyssa; urgency=medium + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Michael Webster ] - * nemo-file-operations.c: re-add favorite removal during a delete operation. - * nemo-view.c: Hide favorites and pinning menu items when in the trash folder. - * nemo-view.c: Don't allow trash/delete to work inside the favorites view. - * nemo-view.c: Don't show favorite/pinning items in menubar->edit when there is no selection. - * nemo-file-operations.c: When trashing (not deleting) a folder, check favorites and remove any descendents of the toplevel. - * nemo-file-operations.c: Update favorites when moving files from their real location. - * nemo-file.c: Don't try to set metadata on a null file when adding or removing favorites. + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Leigh Scott ] - * Fix desktop bold fonts + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Michael Webster ] - * nemo-icon-canvas-item.c: restore the style context after drawing any caption text. - * nemo-list-view.c: Fix NemoFile leaks. - * nemo-properties-window.c: Fix leak. nemo-directory-async.c: remove extra g_object_unref. - * nemo-file: Add a convenience macro to print file uris. - * nemo-view.c: Fix leak when generating extension menu items, nemo- menu.c: Free list of menu items during finalize, not just the list itself. - * nemo-places-sidebar.c: Use a safer function to check for favorite and recent support. + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Lars Mueller ] - * nemo-file-operations.c: Fix #2075 + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Michael Webster ] - * nemo-list-view.c: Only allow double-clicks with the primary and middle buttons. + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ icarter09 ] - * Fixes #2239. The value for customizing the desktop layout for Sort items was not being saved. + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Michael Webster ] - * nemo-directory-async.c: Fix favorite check callback arguments, remove unnecessary g_free(). + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ icarter09 ] - * Issue 1908: Sets correct values for x and y for file->details->cached_position. - * Issue 2666. Blocks emoji chooser from breaking Nemo - * Issue 591. Increases emit time of change for progress update. + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - -- Clement Lefebvre Fri, 26 Feb 2021 11:37:53 +0000 + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen -nemo (4.8.4) ulyssa; urgency=medium + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Michael Webster ] - * nemo-tree-sidebar.c: Use correct icon for favorites. + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - -- Clement Lefebvre Sun, 03 Jan 2021 11:32:36 +0000 + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen -nemo (4.8.3) ulyssa; urgency=medium + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Leigh Scott ] - * file-operation: Prevent recursion to speed up emptying trash - * file-operations: auto-escape filenames on native ntfs mounts - * file-operations: auto-escape filenames on fuseblk mounts - * file-operations: don't auto-escape semicolon - * Clean up + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Michael Webster ] - * nemo-file-operations: Remove a toplevel folder from favorites during a delete operation. - * nemo-file.c: Check if a favorite:///file is a symbolic link before trying to look up its target uri. - * nemo-file.c: nemo_file_set_is_favorite - always set metadata, not just when a file is a symlink. - * nemo-file.c: nemo_file_is_local - Use the target file uri to decide if a file in the favorites:/// view should be considered local. - * nemo-view.c: Hide the 'move to trash' menu items for recent and favorites, and hide the 'delete' item in favorites. - * nemo-view.c: Fix visibility check for the trash menu item. - * favorites: Accept dnd to places-sidebar item to add favorites, refactor existing dnd in list and icon views. - * nemo-file.c: Check for a broken symbolic link before trying to get a favorite's target uri. - * nemo-file-conflict-dialog.c: Fix hidpi scaling of the file icons. - * nemo-file.c: Allow the favorites folder to better respect the various thumbnailing settings. + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Bill Doyle ] - * Add escaping for percent sign in action Exec + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Érico Rolim ] - * build: fix typelibdir in libnemo-extension/meson.build. + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Michael Webster ] - * nemo-desktop-manager.c: Recreate the desktop when the primary monitor's scale factor changes. + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - -- Clement Lefebvre Sat, 02 Jan 2021 18:29:32 +0000 + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen -nemo (4.8.2) ulyssa; urgency=medium + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Michael Webster ] - * Fix some leaks revealed by valgrind. - * nemo-directory-async.c: Fix an issue with the idle favorite check. - * nemo-places-sidebar.c: Remove favorites signal listener when the sidebar is destroyed. + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - -- Clement Lefebvre Tue, 08 Dec 2020 12:57:48 +0000 + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen -nemo (4.8.1) ulyssa; urgency=medium + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ icarter09 ] - * Removed unused variable - * nemo-window.c: Blocks operations while renaming. Fixes #1854 + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Michael Webster ] - * build: Update some dependencies. + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ NikoKrause ] - * change favorites icon + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ icarter09 ] - * Fixes 276. Remove type-ahead search on mouse click + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Isaac Carter ] - * Remove Send by Email action (#2574) - * Hide some menu items when running as root (#2582) + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - -- Clement Lefebvre Tue, 08 Dec 2020 10:30:16 +0000 + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen -nemo (4.8.0) ulyssa; urgency=medium + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Soapux ] - * Misc cleanup + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Oliver Smith ] - * data/nemo.desktop.in: fix icon + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ romovs ] - * Add option to preview files up to 64GB + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Fabio Fantoni ] - * Drop Debian menu file + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ btryba ] - * Fixed small copy-paste bug. + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Fabio Fantoni ] - * debian: Bump debhelper compat level to 12 - * small improves to debian/copyright and debian/not-installed - * debian/rules: Drop no longer neede installmime call - * debian/rules: Drop dh_makeshlibs override, no longer needed - * debian/rules: Enable hardening bindnow - * debian: readd dh-python - * fix lmde4 build + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Michael Webster ] - * debian/control: Remove unused build dependencies. + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ btryba ] - * Removed unused variables in pathbar function (#2549) + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ okaestne ] - * Remove uft8 colon-like char in datetime strings + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Michael Webster ] - * Add XAppFavorites support. - * .gitignore: Change the build directory name. + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ icarter09 ] - * Fix for #2513. Avoid single quote escape by checkng for QUOTE_TYPE_SINGLE and QUOTE_TYPE_DOUBLE. + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Michael Webster ] - * nemo-action.c: Fix build from previous commit typo. + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Fabio Fantoni ] - * make sure pango development files are installed + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ icarter09 ] - * Fixes #942. Uses g_content_type_get_description for when mime type is NULL. + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ btryba ] - * Fixing small memory leak. Freeing volume_monitor per GIO documentation. + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ icarter09 ] - * Fixes #2499. Changes the option from -x to -- when using gnome-terminal + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Isaac Carter ] - * nemo-connect-dialog: Remove Help button (#2562) - * nemo-mime-actions.c: Don't show mime button if the activation URI is null (#2559) + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Clement Lefebvre ] - * l10n: Update POT - * l10n: Generate files + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - -- Clement Lefebvre Thu, 26 Nov 2020 13:54:02 +0000 + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen -nemo (4.6.5) ulyana; urgency=medium + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Michael Webster ] - * nemo-window-pane.c: Only show the active window-pane's toolbar when toggling toolbar visiblity. - * nemo-view.c: Don't cache the selection, this has been broken by deferred attribute loading. - * debian/rules: Set buildtype to 'debug'. - * nemo-bookmark-list.c: Don't get bookmark icon property notifications. + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - -- Clement Lefebvre Tue, 11 Aug 2020 12:32:30 +0100 + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen -nemo (4.6.4) ulyana; urgency=medium + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Ԝеѕ ] - * display last modified date property on directories + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Michael Webster ] - * nemo-places-sidebar.c: Fix regression with using the icon-name property in GtkCellRendererPixbuf. - * nemo-directory: Improve visual performance in smaller folders. + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - -- Clement Lefebvre Sun, 21 Jun 2020 13:39:41 +0100 + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen -nemo (4.6.3) ulyana; urgency=medium + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Michael Webster ] - * icon view: Fix additional line calculation for labels, and tweak spacing between icons. - * nemo-icon-canvas-item.c: Only show full label text when an item is hovered over, but not if it is merely selected. - * nemo-file-management-properties.glade: Add the modal flag to the window and increase vertical size slightly. + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Soapux ] - * meson: Remove a workaround for old meson versions + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Fabio Fantoni ] - * use debhelper 11 for integrated meson support + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Clement Lefebvre ] - * CI: Use explicit tags + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - -- Clement Lefebvre Sat, 06 Jun 2020 14:52:58 +0100 + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen -nemo (4.6.2) ulyana; urgency=medium + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Michael Webster ] - * nemo-bookmarks-window.c: Refactor to improve reliability. - * Defer extension-provided file attributes until the file is made visible in a view. - * nemo-progress-ui-handler.c: Use XAppStatusIcon. - * nemo-list-view.c: Cancel the visible files callback when the view is cleared or destroyed. - * nemo-file.c: Only show the 'icon loading' icon when an icon is actually loading. + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - -- Clement Lefebvre Wed, 27 May 2020 12:34:09 +0100 + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen -nemo (4.6.1) ulyana; urgency=medium + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Michael Webster ] - * nemo-file.c: Fix refresh removing existing thumbnails. - * Fix new build warnings. - * i18n: Localize the mimetype definitions. - * debian/control: Add itstool build dependency. - * nemo-icon-container.c: Set a transient parent on the interactive search popup. + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Clement Lefebvre ] - * l10n: Update POT + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Michael Webster ] - * all: Fix some memory leaks - * icon view: Use a fixed vertical spacing in the normal icon view. - * nemo-thumbnails.c: Use the default idle priority for starting the thumbnail thread. - * thumbnails: generate/load thumbnails on visible items only, and drop background loading. + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Clement Lefebvre ] - * CI: Target Mint 20 and LMDE 4 + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - -- Clement Lefebvre Thu, 21 May 2020 11:19:42 +0100 + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen -nemo (4.6.0) ulyana; urgency=medium + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Michael Webster ] - * nemo-window.c: Monitor and react to scale-factor changes. - * nemo-icon-container.c: clear any existing drag info when the icon view's location changes. + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Leigh Scott ] - * nemo-file-operations.c: Copy file and keep timestamps of original file including remotes + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Michael Webster ] - * control: Remove python2 dependencies + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ leigh123linux ] - * nemo-global-preferences: use 'extern' properly + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Michael Webster ] - * meson.build: Don't be confusing when pango 1.44.0 isn't found. + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ worldofpeace ] - * build: use define_variable for typelib directory + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Michael Webster ] - * Fix mistake in --help output. + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Daniel Clarke ] - * Fallback to uri when path is null in title + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Luke Scott ] - * Sort nemo actions menu alphabetically + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ J. Luke Scott [thinkpad] ] - * linter fix for previous + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ sidorsett ] - * Update nemo-view.c + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ JosephMcc ] - * nemo-notebook: Add a minimum width for the tab labels + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Kamil Chojnowski ] - * Add %e action token + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Michael Webster ] - * nemo-global-preferences.c: Fix base-2-full size format display. + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Timothy Arceri ] - * Remove .hidden file code now that gio does if for us + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ NikoKrause ] - * nemo action: use different icons for pin/unpin + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Michael Webster ] - * nemo-tree-sidebar.c: Allow using separate icons for pin and unpin, and use the new xapp icons from the previous commit. + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ JosephMcc ] - * settings: Set the default width of the sidebar to 170 + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Ján Jančár ] - * Add tracker support (#2334) + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Clement Lefebvre ] - * l10n: Update POT - * l10n: Generate files + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - -- Clement Lefebvre Wed, 13 May 2020 14:00:42 +0100 + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen -nemo (4.4.2) tricia; urgency=medium + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ leigh123linux ] - * meson.build: Disable GLib deprecation warnings + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Leigh Scott ] - * file-operations: fix copying from the trash + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Michael Webster ] - * list view: Don't remove the dummy (Loading) entry except during post-loading updates. - * nemo-tree-sidebar.c: Don't free the NemoFile after setting up the context menu for showing, it is owned by the tree model. + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ leigh123linux ] - * Remove tracker + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Leigh Scott ] - * nemo-icon-canvas-item.c: Don't hyphenate long filenames - * eel-editable-label.c: Don't hyphenate long filenames + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Michael Webster ] - * nemo-program-choosing.c: Remove unused variable that was causing a warning during the build. + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Leigh Scott ] - * Use meson for pango-1.44 check + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - -- Clement Lefebvre Thu, 12 Dec 2019 11:43:40 +0000 + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen -nemo (4.4.1) tricia; urgency=medium + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Michael Webster ] - * nemo-desktop-metadata.c: Remove a key when the metadata string is null instead of attempting to set the key to null (which doesn't work for GKeyfiles). - * nemo-window.c: Disconnect thumbnail settings handlers when the window is destroyed. + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - -- Clement Lefebvre Thu, 28 Nov 2019 20:00:39 +0000 + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen -nemo (4.4.0) tricia; urgency=medium + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Michael Webster ] - * nemo-query-editor.c: Don't allow activation when there is no valid search string. - * nemo-window-slot.c: Don't try to set anything on query if it's NULL. - * nemo-main-application.c: when parsing options, don't try to use part of an array that has already been freed, make a copy instead. - * nemo-main-application.c: Fix variable name for consistency and spelling. - * nemo-program-choosing.c: Update how desktop files are launched - launch_uris_as_manager does a better job, and this also replaces a previous patch for a pkexec issue in desktop files, and is a more complete fix. - * preferences: Reveal the default sort direction setting. + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ AO-LocLab ] - * Correction to the French translations (#2228) + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Michael Webster ] - * context menu: Make individual menu item visibility configurable in preferences, and eliminate the simple/complex menu option. - * gsettings: re-add old context menu entry to prevent crashes with old nemo-fileroller verions. + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Clement Lefebvre ] - * l10n: Fix some msgids - * l10n: Update POT - * l10n: Generate files + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - -- Clement Lefebvre Sat, 16 Nov 2019 15:34:24 +0100 + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen -nemo (4.2.2) tina; urgency=medium + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Clement Lefebvre ] - * l10n: Update POT + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Michael Webster ] - * nemo-desktop-link.c: Don't allow an attempt to rename mounts. + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - -- Clement Lefebvre Thu, 25 Jul 2019 10:28:21 +0200 + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen -nemo (4.2.1) tina; urgency=medium + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Clement Lefebvre ] - * l10n: Fix msgid - * l10n: Fix msgids + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ gm10 ] - * Fix nemo_global_preferences_get_size_prefix_preference getting set to the wrong value (#2165) + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Michael Webster ] - * nemo-file-operations.c: Add comment for unused singular translation, make the string obviously unused. - * nemo-view.c: Always show the pin/unpin actions. - * various: Fix a couple leaks - * nemo-list-model.c: When the last child of a node is removed, Handle re-adding a dummy row (or not) in the file removed handler, instead of always adding one, then removing it on parent's subsequent changed call. - * nemo-list-view.c: When triggering a rename using the 'slow double click' trigger, check whether the file is a folder to determine whether to select all or only non-extension text. - * nemo-view.c: Use the stack for running the action visiblity cycle. - * nemo-*-view.c: Update the selection info when a view has finished loading. + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Clement Lefebvre ] - * Toolbar: Don't show thumbnail button by default + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - -- Clement Lefebvre Wed, 10 Jul 2019 12:10:27 +0200 + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen -nemo (4.2.0) tina; urgency=medium + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Michael Webster ] - * nemo-view.c: Don't ignore non-symbolic extension menu icons. - * nemo-icon-view.c: Don't apply the 'ignore metadata' mode to the desktop, this prevents the icon size from loading or saving properly when that setting is active. - * nemo-icon-info: Use different text widths for the desktop than for windowed mode. + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Leigh Scott ] - * Update URL (#2045) + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Michael Webster ] - * nemo-query-editor.c: Ignore leading and trailing whitespace in search query text. - * misc: Fix some memory leaks revealed by valgrind. - * Add keyboard shortcuts page - * nemo-bookmarks-window.c: Fix support for Computer/Bookmarks section separator. - * nemo-bookmarks-window: Remove help button, fix some breakpoint accounting during dnd. - * nemo-view.c: Never have more than one connection to an action's 'activate' signal. - * actions: Monitor gsettings condition changes and trigger menu updates when these or any dbus conditions change. - * application: Add debug flag to command line options, remove environment variable-based verbose mode for actions. - * nemo-action: Cleanup - * nemo-blank-desktop-window.c: Fix initial popup menu failure due to a not-fully-initialized action manager. - * nemo-action.c: Allow discovery of tokens in any order in an action line. - * nemo-action.c: Queue gsettings condition updates (same as dbus updates). This should have been done in 92c58403f12436c65a1c. + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ JosephMcc ] - * Update nemo-style-fallback-mandatory.css + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ devlearner ] - * Add Move to Trash confirmation option + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Michael Webster ] - * nemo-file-operations.c: Remove unused translatable string. + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Max Sistemich ] - * nemo-window-manage-views.c: ignore cache when thumbnails are disabled + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Michael Webster ] - * nemo-window-manage-views.c: add a weak pointer to the window slot's bad cache bar when spawned. - * preferences: Finalize our settings instances using the eel_call_at_shutdown function. This occurs at a point closer to exit, and allows handlers to disconnect cleanly. + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Lars Mueller ] - * Reimplement thumbnailing-per-folder and add inheritance for view type - * A couple of bugfixes + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Michael Webster ] - * nemo-main-application.c: Make sure any command-line geometry option takes precedence over the saved window geometry. + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Clement Lefebvre ] - * nemo-window-slot: Remove trailing spaces - * Navigation: Fix go to parent action for Samba + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Michael Webster ] - * nemo-window-slot.c: Use GString for manipulating samba uris, it makes what's being done to the uri a bit more explicit. - * nemo-window-slot.c: (samba) When navigating up from a host, load network:/// instead of smb:///. - * nemo-icon-container.c: Wait to un-freeze canvas updates until the renaming operation has completed. - * nemo-file.c: Check for NULL when converting the raw file timestamp to a GDateTime. + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ JosephMcc ] - * desktop-prefs: Change to match the new cinnamon settings style + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Michael Webster ] - * nemo-desktop-overlay.glade: Update to match new settings format. (mostly) + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ steve ] - * Nemo desktop entry - ensure caret-color matches text color + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ okaestne ] - * nemo-mime-application-chooser.c: escape file names in Open With tab + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Tcc100 ] - * nemo-view.c: Open Terminal in parent if a file is selected + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Clement Lefebvre ] - * Start implementing exec support - * Optimize nemo_action_get_visibility() + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Michael Webster ] - * nemo-action.c: Support multiple selection and action path for exec condition checks. - * nemo-action.c: Support tokens in exec condition calls. - * sample action: Update to include exec conditions, new correct method to enable debugging. - * Revert "nemo-file-operations.c: Remove unused translatable string." - * Remove some unused code, optimize some frequently-used settings. - * nemo-view.c: Clear a source id at the end of the rename delay callback. - * Remove the context menu toggle (the +/- button) for displaying additional menu items. - * Add a mechanism for pinning a file to the top of a view. - * Improve pin icon. - * pinned emblem: try to improve (again) - * icon view: Use bold text instead of an emblem for pinned files. - * nemo-places-sidebar.c: Workaround incorrectly-sized popup menus when right- clicking on a currently-unselected item. + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Simon Brown ] - * move code after early return statements where possible (#2149) + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Clement Lefebvre ] - * l10n: Update POT - * l10n: Generate additional files + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Clement Masci ] - * Option to open uri in tabs at startup - - [ Clement Lefebvre ] - * l10n: Update POT - - -- Clement Lefebvre Sun, 23 Jun 2019 17:20:47 +0200 - -nemo (4.0.6) tessa; urgency=medium - - [ Clement Lefebvre ] - * Packaging: Depend on cinnamon-l10n - - [ Michael Webster ] - * nemo-program-choosing.c: add a wrapper for simple .desktop files that invoke pkexec. - * nemo-desktop-overlay.c: Don't respond to slider value-changed signals when syncing *from* the view. - * nemo-list-view.c: Always display at the default list view zoom level during a search. - * nemo-icon-view.c: Don't rely on the default icon zoom level for the grid desktop, hardcode to normal instead. - - -- Clement Lefebvre Sat, 15 Dec 2018 14:00:23 +0000 - -nemo (4.0.5) tessa; urgency=medium - - [ Michael Webster ] - * nemo-icon-view.c: Correctly initialize to the default view zoom level when ignore-metadata mode is active. - * per-folder thumbnails: Remove toolbar thumbnail button preference, instead base visibility on the show-image-thumbnails preference. - - -- Clement Lefebvre Tue, 11 Dec 2018 11:26:20 +0000 - -nemo (4.0.4) tessa; urgency=medium - - [ Michael Webster ] - * nemo-window.c: Fix hidden menu alt-key activation. - * nemo-places-sidebar.c: Keep the selected bookmark scrolled into view when a selection is made on a bookmark. - * nemo-list-view.c: Ignore triple-clicks and reset the double-click last_click_time when the current double-click succeeds. - * nemo-extension-config-widget.c: Allow description to be multi-line instead of reverting to a horizontal scroll bar. - * nemo-list-view.c: Don't use fixed-height mode, it does not work well with zoom changes. - - -- Clement Lefebvre Thu, 06 Dec 2018 13:18:32 +0000 - -nemo (4.0.3) tessa; urgency=medium - - [ Michael Webster ] - * nemo-action.c: Don't include previously inserted characters/text in subsequent token matching - skip ahead based on the inserted text length, so we avoid potentially parsing escape codes that are part of a file's uri. - * places and tree sidebars: Listen for action manager reloads, rebuild popup menus when needed. - * places sidebar: Enable actions to work properly even when the item being right-clicked/context-menu'd is not the currently loaded view. - * nemo-tree-sidebar.c: Fix memory leak. - - -- Clement Lefebvre Tue, 27 Nov 2018 17:20:40 +0000 - -nemo (4.0.2) tessa; urgency=medium - - [ Michael Webster ] - * nemo-file-management-properties.c: Don't drop builder object ref until the window is closed, as callbacks to setting changes refer to it still. - - [ itzexor ] - * desktop/extension config: remove incorrect tooltips - - [ Michael Webster ] - * nemo-desktop-overlay.c: Don't use g_clear_pointer to destroy a widget, this causes build warnings in newer glib. - * nemo-properties-window.c: If the icon picker is spawned on a file that has an existing custom icon name or path, display it initially in the picker. - * nemo-window-manage-views.c: When clearing thumbnails for a view refresh, drop the NemoIconInfo cache as well. - - -- Clement Lefebvre Mon, 19 Nov 2018 09:51:30 +0000 - -nemo (4.0.1) tessa; urgency=medium - - [ Michael Webster ] - * nemo-application.c: Check for "nemo" in the current theme, instead of "nemo-window". Remove unintentional additions to nemo-style- application.css which were made in 21a960712bf4d7688. - * nemo-desktop: Simplify view layout preferences, other changes. - * desktop overlay: Use normal window hints instead of hidden. Allow resizing, assign an icon (and use XAppGtkWindow so the icon isn't blurry). Make sure all the action names are not marked as translate. Show the monitor plug name and dimensions when displaying view settings. - - [ Clement Lefebvre ] - * l10n: Update POT - - -- Clement Lefebvre Mon, 12 Nov 2018 15:10:50 +0000 - -nemo (4.0.0) tessa; urgency=medium - - [ Michael Webster ] - * Version bump for dev. - * libnemo-extension: Refactor a bit, replace a lot of boilerplate with macros, simplify doc generation. Documentation needs more work at some point. - * nemo-file.c: Do a better job of figuring out the mimetype for empty files. - * Add creation time (btime) support. - * preferences window: Add toggle for creation date in tooltips. - * nemo-file-info.h: Don't use G_DECLARE_INTERFACE - it doesn't allow us to properly use NemoFile for its vtable - it works but throws a ton of build warnings and isn't safe. - * misc: Clean up build warnings - * icon view: remove some deprecated paths (gtk doesn't return anything useful anymore.) - * nemo-icon-canvas-item.c: Insert some space between the icon and label bounds in compact view. - * nemo-statusbar.c: Remove custom scroll handler. The gtk one works correctly now. - * menus: Respect the gtk-menu-images preference for the primary 'open/ open-with' menu item. - * meson.build: Add option to disable omit-frame-pointers from build (useful for perf profiling.) - * icon container: Generate tooltips for icon items on-demand, instead of when the view loads. - * meson.build: show profiling flag status in config summary. - * nemo-icon-info: Optimize icon lookups by GIcon. - * search: Respect the current state of the 'show hidden files' setting when calculating results. - * nemo-query-editor.c: don't intercept keys when hidden. - * nemo-view.c: Decrease minimum update interval. - * nemo-view: Optimize *_get_selection(), don't create deep copies when not necessary. - * nemo-file: Remove pixbuf cached in NemoFile. - * nemo-list-model.c: Improve accounting for dummy expander row, so it more reliably removes the expander for empty folders. - * nemo-file.c: Cache some heavily used values from date construction, particularly caching of the GTimeZone object for use in GDateTime construction. - * icon view: Remove "tighter layout" option. - * nemo-icon-info: don't implement as a gobject. - * nemo-mime-actions.c: Don't offer the 'Make executable and run' option by default. - * nemo-mime-application-chooser.c: Remove hacks for file-picker button. - * nemo-icon-canvas-item: Remove some unused code for embedded text - * Icon containers: Improve spacing, increase icon sizes. - * nemo-icon-view-container.c: Connect the tooltip signal per container instance, rather than once overall. - * nemo-icon-info.h: Tweak text width a bit for the zoom levels. - * nemo-icon-container.c: Turn on hover prelight by default. This helps label text overlapping adjacent items (during hover) to have a clean background for better legibility. - * emblems: Use cached parent pointers when checking for can't-write emblem condition, instead of looking it up for each file. - * nemo-file.c: Load file-roller mimetype cache upon first demand, instead of at startup. This has a noticeable impact on startup time. - * nemo-list-model.c: Reduce number of icon info lookups when creating icon surfaces for the model. - * preferences: Use the new XApp sidebar switcher, and use an ordinary GtkWindow instead of a GtkDialog to clean up the look. This includes removing the close button as well (we already don't use one in the plugins window.) - * preferences: Add the plugin manager as a preferences page. Refactor to remove unnecessary code and allow the prefs window to open on a particular page. - * preferences: Use togglebuttons instead of checkbuttons for toolbar button switches, and show the action's icon in the button. - * nemo-icon-container: Remove some unused code. - * eel-graphic-effects.c: Lessen the effect eel_create_spotlight_pixbuf. - - [ JosephMcc ] - * prefs: Restyle the visible buttons page a bit - * prefs: Move the custom icons to xapps - - [ Michael Webster ] - * meson_update_icon_cache.py: Print the icon cache folder when running. - * nemo-widget-menu-item.c: Fix allocation warnings. - * nemo-extension-config-widget.c: Improve look of extension list. - * nemo-places-sidebar.c: Fix a few issues with mounting/ejecting - some incorrect _finish functions and some assumptions of error always being set. - * nemo-thumbnails.c: Generate large thumnails to accomodate the larger icon sizes we have now. - * nemo-list-view.c: use the subclass selection changed callback instead of NemoView's directly - this makes sure the cached selection list is up-to-date before triggering view/menu updates. - - [ Germán Franco ] - * Add some keywords to the desktop entry (#1939) - - [ Michael Webster ] - * nemo-window-menus.c: Block split pane view in desktop windows. - * nemo-action.c: g_file_test here should be checking the *dependency* path, not the path to the action file. - - [ Clement Lefebvre ] - * Preferences: Remove separators - - [ Michael Webster ] - * nemo-thumbnails.c: Use GTask. - * nemo-list-view.c: Start using GtkTreeView's fixed height mode. - * meson.build: Remove gthread dependency (no longer used). - * nemo-list-model.c: Check for unreadable folders and remove the expander when one is discovered during the async count job. - * nemo-icon-container.c: Don't recalculate the layout while renaming a file. - * nemo-application.c: Add minimally necessary theme elements to the current theme if they appear to be missing. - - [ Leigh Scott ] - * Fix meson warnings (#1920) - - [ Tom Schuster ] - * Prefer XDS Protocol Type over _NETSCAPE_URL to make DnD work in Firefox. - - [ Lars Mueller ] - * Add option for thumbnails per folder - - [ Soapux ] - * Fix some issues with pkgconfig file - - [ Michael Webster ] - * desktop: Add overlay window for configuring individual monitor views as well as global desktop preferences. - * nemo-icon-dnd.c: Fix warning when initiating a drag from a normal windowed icon view. - * Remove desktop settings action (replaced by 'Customize' fixed entry). - * nemo-desktop-window.c: Fix build warning (unused variable). - * nemo-desktop: Add smaller and larger icon sizes. The smaller is useful for low res monitors and the larger one will be useful for those using physically large 4k monitors (that do not qualify as hidpi). - * nemo-properties-window.c: Use XAppIconChooserDialog to select custom icons. - * Update libxapp dependency for icon chooser. - - [ Clement Lefebvre ] - * l10n: Update POT and additional files - - -- Clement Lefebvre Thu, 01 Nov 2018 13:29:54 +0000 - -nemo (3.8.5) tara; urgency=medium - - [ Michael Webster ] - * eel-gtk-extensions.c: Fix menu popups when a valid event is not provided. - - -- Clement Lefebvre Tue, 17 Jul 2018 09:43:41 +0200 - -nemo (3.8.4) tara; urgency=medium - - [ Michael Webster ] - * nemo-progress-info.c: Emit signals in proper order to prevent an unmatched g_application_hold/release in nemo-progress-ui-handler.c. - * eel-gtk-extensions.c: use gtk_menu_popup_at_pointer instead of plain gtk_menu_popup, which is deprecated (and causes a lot of warnings under wayland. Functionality under x11 is unchanged. - * nemo-file.c: fix a couple pixbuf leaks, invalidate thumbnails internally when a force refresh is commanded. - * various: fix some memory leaks discovered by valgrind. - - -- Clement Lefebvre Thu, 05 Jul 2018 11:39:39 +0200 - -nemo (3.8.3) tara; urgency=medium - - [ Michael Webster ] - * trash: Show the correct icon in the pathbar, and fix activation uri for folders located in the trash. - * icons: Fix pathbar display of recent and network locations. - * Run merge_action_strings (updated icons names) - * nemo-query-editor.c: Ignore modifiers (such as numlock) during the favorites menu popup event. - * nemo-query-editor.c: use get_default_mod_mask for button state check instead of hardcoded mask. - * mounts: Force reload when navigating to a new mount from the sidebar. - * thumbnails: Make debug spam a runtime choice, not buildtime. - - [ NikoKrause ] - * Change polkit policy message to "Files" (#1875) - - -- Clement Lefebvre Fri, 08 Jun 2018 11:54:40 +0100 + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen -nemo (3.8.2) tara; urgency=medium + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Michael Webster ] - * nemo-places-sidebar.c: Fix potential divide by 0 (found in virtualbox, guest additions CD returns a GFileInfo, but the size fields we use for calculating disk full % come back all 0's.) - * nemo-places-sidebar.c: Fix some leaks - GFiles must be unreffed. - * nemo-list-view.c: Fix list view column ordering for LMDE (fixes segfault in Gtk 3.22.11) - * nemo-icon-container.c: chain the button release event up when ending a rubberband selection. This allows the canvas to 'pick' the icon the release is over, and not cause the background context menu to be used (and all items get deselected) if the very next event is a right-click. + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Soapux ] - * Make exempi and libexif dependencies optional (#1849) - * Update style of meson build options (#1850) + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Michael Webster ] - * Disallow bookmarking of search result views. + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ NikoKrause ] - * add symbolic for usb and replace bookmark-not-found (#1852) + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Germán Franco ] - * Fix some compiler warnings (#1851) + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - -- Clement Lefebvre Sun, 06 May 2018 15:31:26 +0100 + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen -nemo (3.8.1) tara; urgency=medium + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Fabio Fantoni ] - * update debian/copyright (#1831) - - [ Eli Schwartz ] - * meson: don't install libnemo-private.a - - [ Clement Lefebvre ] - * l10n: Fix typo - - [ Michael Webster ] - * symbolic control icons: Use icon names rather than gicons. The gicon api does not support inherited icon themes. - - [ NikoKrause ] - * Use symbolic icons in nemo-desktop actions - * add mount archive symbolic, fix bookmark icon - - [ Michael Webster ] - * mime actions: Fix use of gvfs admin backend. - * nemo-view.c: Disallow creation of folders or files in admin:// - it does not properly set file permissions (the same reason copy/paste is not allowed either.) - * nemo-file-utilities.c: Improve symbolic icon logic for mounts, drives and volumes. For mounts and volumes, check for too-generic icons and use the backing GDrive's icon instead. - * nemo-places-sidebar.c: Handle missing file info more gracefully. Some mounted devices (for example, phones,) don't support GFileInfo. - - [ NikoKrause ] - * fix symbolic for desktop action (#1842) - - [ Maximiliano Curia ] - * Revert license tweak done by db6414a (#1843) - - [ Salamandar ] - * Fix build with old meson (#1844) - - -- Clement Lefebvre Mon, 30 Apr 2018 15:23:58 +0100 - -nemo (3.8.0) tara; urgency=medium - - [ Tobias Göbel ] - * also use exec-arg from org.cinnamon.desktop.default-applications.terminal when using "open in terminal" - - [ Michael Webster ] - * nemo-icon-view-grid-container.c: add missing position shift prior snapping a semi-positioned icon. This was causing the free position check to potentially check the wrong grid spot, causing shifting positions. - * nemo-icon-dnd.c: when calculating drop position, use the overall canvas item's y center, rather than just the icon's center. This is makes the final aligned position more closely match the drag actor's apparent position. - * nemo-desktop-manager: scale the window x and y positions, as well as size when retrieving geometry from cinnamon. - * nemo-icon-dnd.c: fix missing semicolon - * nemo-icon-view-grid-container.c: Don't allow the vertical adjustment to calculate out to more than half of the grid snap height, this will cause grid checks to evaluate incorrectly. - * nemo-icon-container: only mark (pseudo)-desktop icons as transient if keep_align is active. This restores reasonable behavior for non-keep-aligned desktops, and prevents icon movement when refreshing and during startup. - - [ Jason Hicks ] - * Fix left pane in dual pane mode reverting to minimum width - * Add g_return_val_if_fail to the beginning of reposition_paned - - [ Bilal Elmoussaoui ] - * Rename Nemo icon from places to nemo (#1687) - - [ Michael Webster ] - * debian/control: remove python3-polib from build deps, no longer needed. - * nemo-window.c: listen for a position change on the split-view paned widget when adding a new pane. When GtkPaned's position property hasn't been explicitly set, it auto-adjusts to keep panes equal-sized. - * nemo-places-sidebar-.c: Get rid of old hack for the sidebar. It was intended originally to make sure enough vertical height was given to the scrolled container children in their various states (collapsed categories.) It does not appear to be necessary any more, and now causes gtk theme issues. - - [ Clement Lefebvre ] - * Add CI configuration - - [ Simon Brown ] - * nemo-directory-async: correct some signed/unsigned warnings (#1698) - * eel-editable-label: remove indentation warning (#1695) - * nemo-list-view: remove indentation warnings (#1697) - * nemo-list-model: silence indentation warning (#1696) - * nemo-bookmarks-window: rename some shadowed variables (#1694) - * nemo-file-operations: rename some shadowed variables causing warnings (#1693) - * nemo-query-editor: resolve shadow variable and signed/unsigned warnings (#1700) - * nemo-script-config-widget: correct some signed/unsigned warnings (#1701) - * nemo-action-manager: remove redundant redeclarations (#1702) - * nemo-cell-renderer-disk: remove redundant redeclaration (#1703) - * nemo-file: fix a couple of signed/unsigned warnings (#1704) - - [ Naman Kanakiya ] - * Add options to preview thumbnails for up to 16GB and 32GB (#1707) - - [ Simon Brown ] - * nemo-icon-info: correct various compiler warnings (#1716) - * nemo-navigation-action: stop compile warnings from switch statements (#1715) - * nemo-window-pane: correct some indentation causing a warning message (#1709) - * remove some redundant redeclarations causing warnings (#1708) - * nemo-view: remove some compile warnings (#1710) - * correct some signed/unsigned compiler warnings (#1711) - * nemo-icon-dnd: add default cases to remove compile warnings (#1712) - * nemo-file-management-properties: rename shadow variable (#1717) - * change some old style function definitions to avoid warnings (#1718) - * nemo-bookmark: remove compile warnings (#1719) - - [ Michael Webster ] - * nemo-places-sidebar.c, nemo-action.c: Replace g_drive_is_media_removable with g_drive_is_removable. - - [ Simon Brown ] - * remove some signed/unsigned compiler warnings (#1720) - * nemo-desktop-metadata correct wrong type of variable passed as parameter (#1721) - * nemo-search-engine-simple: resolve a couple of compile warnings (#1722) - * nemo-job-queue: resolve some compiler warnings (#1741) - * nemo-undo-signal-handlers: resolve a couple of compiler errors (#1740) - * eel-gtk-extensions: resolve signed/unsigned compile warnings (#1739) - * nemo-file-utilities: remove a couple of const compile warnings (#1736) - * nemo-icon-canvas-item: treat switch compiler warnings (#1735) - * nemo-tree-view-drag-dest: Fix some compile warnings (#1734) - * nemo-pathbar: resolve various compile warnings (#1733) - * nemo-query-editor: resolve some const compile warnings (#1732) - * nemo-list-model.c: resolve various compiler warnings (#1731) - * nemo-list-view: resolve some compiler warnings (#1729) - * nemo-file: resolve a number of compiler warnings (#1738) - * nemo-connect-server-dialog resolve various compiler warnings (#1724) - * nemo-window-menus resolve a signed/unsigned warning (#1725) - * nemo-desktop-icon-grip-view Treat switch and const warnings (#1726) - * nemo-extension-config-widget: resolve some signed/unsigned warnings (#1727) - * nemo-icon-view: resolve various compiler warnings (#1728) - * nemo-icon-container -remove some switch warnings (#1723) - * resolve some const compiler warnings (#1742) - * nemo-view: resolve some const warning messages (#1743) - * remove a couple of unused variables causing warnings (#1744) - * nemo-properties-window: resolve a couple of compile warnings (#1745) - * nemo-vfs-file: add default to switch to avoid warning (#1746) - - [ Michael Webster ] - * nemo-window-slot.c: remove padding from extra_location_widgets box. - - [ Simon Brown ] - * nemo-desktop-icon-view: resolve some const warnings (#1757) - * nemo-file-changes-queue: resolve a switch warning (#1756) - * nemo-desktop-link-monitor: resolve a switch warning (#1753) - * nemo-places-sidebar: resolve various compile warnings (#1754) - * nemo-mime-application-chooser: resolve misleading indentation warning (#1749) - * nemo-file-operations: resolve some switch warnings (#1747) - * nemo-tree-sidebar: correct an int to an unsigned (#1752) - * nemo-monitor: resolve some switch compiler warnings (#1751) - * nemo-icon-view-container: resolve a couple of compile warnings (#1758) - * nemo-icon-view-grid-container: resolve a couple of compiler warnings (#1759) - * add some default switch statements to avoid warnings (#1760) - * resolve some signed/unsigned warnings (#1761) - - [ JosephMcc ] - * [gtk3.22] Pathbar style (#1765) - - [ Germán Franco ] - * Use symbolic icons (#1764) - - [ Simon Brown ] - * nemo-window-slow-dnd: resolve a couple of const warnings (#1763) - * nemo-interesting-folder: add additional case to switch to avoid warning (#1762) - * nemo-window: check for an active slot when updating cursor (#1767) - * nemo-properties-window: use utility functions if available (#1768) - * nemo-properties-window: use gdk_pixbuf_scale_simple () (#1766) - * eel-vfs-extensions: update filename extensions (#1769) - - [ JosephMcc ] - * nemo-places-sidebar: Cleanup spacing (#1664) - - [ Félix Piédallu ] - * Add Meson Build System support * Modify Autotools build for icons - * New debian/rules meson-enabled - * Fix sources: use other version macro, fix fn call - - [ Michael Webster ] - * meson: some cleanup, fixes, organizing. - * actions: fully support all system data paths, but respect the install prefix for looking up fixed resources. - * Fix lmde3 build, don't build empty view by default. - - [ Leigh Scott ] - * Make the libExecPath usable - * Fix libexec path - * Fix path - * Remove hardcoded path - - [ Michael Webster ] - * Fix libdir location to match autotools build (usr/lib), but make sure typelib still goes where it belongs. - - [ Clement Lefebvre ] - * Revert "also use exec-arg from org.cinnamon.desktop.default-applications.terminal when using "open in terminal"" - * Fix thumbmails generation - - [ Simon Brown ] - * nemo-file-operations: revert a change that might be backfiring (#1774) - - [ Michael Webster ] - * nemo-view.c: Don't try to update undo menu items in a non-active slot. - - [ Mochamad Arifin ] - * fix open as root error - - [ Michael Webster ] - * debian: Move build dir to debian/build - * nemo-list-view.c: Don't clear the editable on focus-out, this will get done properly when we chain up. We need to propagate the focus-out-event signal, which the callback wasn't doing. - * Don't build/install gtkdocs by default - * oops - gtk_doc option should only affect the reference folder.. - * nemo-icon-dnd.c: Fix segfault when dragging from nemo to nemo-desktop - * search: Use newer GtkEntry method for focusing search box, remove custom code. - * nemo-window-menus.c: Ignore 'go home' shortcut on the desktop. - * nemo-view.c: Allow view display of files to commence even while loading is ongoing, instead of waiting until files are entirely finished loading. - * eel-editable-label.c: Don't queue a redraw on unrealized labels. - * nemo-icon-container.c: Don't perform relayouts on an unrealized container. - * nemo-list-view.c: Remove and re-add columns rather than moving them. This prevents negative allocation warnings during the move calls. - * eel-canvas.c: Don't update the scroll region when clearing the canvas to destroy it. - * query editor: Simplify, remove additional filters, just a simple filename search. - * nemo-window.c: Go back to explicitly setting half the width for the split-pane's position property, rather than counting on it to fall that way naturally. The natural position can be affected by sizing demands of the panes' children. - * search: Add a more convenient way for saving searches. - * nemo-file.c: Avoid recursion when updating symbolic links that point to each other. See inline notes. - * nemo-file.c: Small fix and optimization for 40dc6ae1ed9d24b0c - return the full link_file list as before if the target file is not a link, and only check if the file is a link one time. - * libnemo-extension: Remove custom enum code for NemoOperationResult - it's not necessary in modern builds due to introspection. - * info provider extensions: Improvements to info provider extension operations. - * nemo-query-editor.c: Add mnemonic to popup search keys for quick selection. - * nemo-query-editor.c: Inhibit faves popup if the list is empty, filter out typical keyboard modifiers during clicks on the favorite icon. - * nemo-desktop-application.c: Allow nemo-desktop to provide coverage for the org.freedesktop.FileManager1 dbus interface. - * nemo-icon-view.c: Be more selective when updating the scroll region. - * refresh/reload: When reacting to a user-initiated view refresh, regenerate any thumbnails as well. - - [ JosephMcc ] - * nemo-properties-window: Stop using stock buttons (#1800) - * prefs-window: Don't use stock buttons (#1801) - * menus: Convert most icons to symbolic versions (#1798) - - [ Michael Webster ] - * nemo-list-view.c: Re-apply right-click column handler when reloading column settings (see inline notes, this only affects certain Gtk versions.) - * nemo-view.c: Add label to directory menu Cut and Copy (needed now that we are no longer using GTK_STOCK_* - * nemo-view.c: make mnemonics for Cut, Copy, Paste match Gtk's. - - [ Mike Tzou ] - * Fix function argument order (#1791) - - [ Michael Webster ] - * Check for realized instead of mapped/visible to prevent needless resize calculations (and associated warnings.) - * nemo-file-management-properties: Fix 2px border width surrounding content (see comments.) - * Use symbolic icons for the places sidebar - * places-sidebar.c: Use symbolic for eject button - * More symbolic conversion - * nemo-trash-monitor.c: Add a new path for the symbolic icon. Our file views need a non-symbolic icon. - * More symbolic fixes, cleanup in pathbar. - * Missed a few trash icons... - * extensions: Show symbolic icons properly, hide the icon if it's not a symbolic name. - * Add rubber-band selection to the list view. - * nemo-places-sidebar.c: remove vertical padding for headers. This is unnecessary, and looks bad when a theme has increased spacing between all rows. - * go menu, bookmarks menu: respect the menu-images setting. - * nemo-trash-monitor.c: Fix copy-paste typo. - * nemo-icon-info.c: Stop using gtk_icon_theme_has_icon() - it returns false negative when attempting to check for icons that have been added using gtk_icon_theme_append_search_path(). This entire branch of functionality is considered 'legacy' and not recommended, but for dropbox emblems, where more than one package may attempt to provide them, putting them in the (recommended) hicolor icon folder won't work. - - [ NikoKrause ] - * Use media-mount icon for right-click action (#1813) - * Eject/unmount icon & new folder icon (#1811) - - [ Fabio Fantoni ] - * debian: wrap-and-sort -bst - * update debian/copyright - * improve debian/control - * Bump debhelper build-dep and compat to 10 - * debian: try to restore multiarch with meson without debhelper 11 - * add debian/not-installed - * Force UTF8 to workaround build error - * debian: add missed part of multiarch restore - * debian: add a nemo lintian override - * debian/rules: list missed files in dh_install - * circleci: remove mint18 job - * debian/control: remove very old breaks - - [ Clement Lefebvre ] - * l10n: Update POT file and generate files - - -- Clement Lefebvre Fri, 20 Apr 2018 12:17:46 +0100 - -nemo (3.6.5) sylvia; urgency=medium - - [ Michael Webster ] - * nemo-desktop-manager.c: Add null checks for GErrors - it seems as though g_dbus calls are not guaranteed to fill the error slot (which seems like a Gio bug to me, but there's no reason to crash here regardless because of a null error.) - * nemo-window - Restore inadvertantly removed menu actions for view type selection (and their corresponding shortcuts,) using methods and practices more consistent with currently maintained code. - * nemo-window-menus.c: Add a couple guards for the previous commit's view actions for when the window is a NemoDesktopWindow - - -- Clement Lefebvre Mon, 18 Dec 2017 12:37:52 +0000 - -nemo (3.6.4) sylvia; urgency=medium - - [ Michael Webster ] - * nemo-window: Restore initial syncing of view buttons. This was inadvertantly removed in d23762640b48d8 while getting rid of some actual unused code related to an old way view types used to be selected. - - -- Clement Lefebvre Mon, 20 Nov 2017 10:10:17 +0000 - -nemo (3.6.3) sylvia; urgency=medium - - [ Michael Webster ] - * nemo-desktop-manager.c: Account for scale factor when using cinnamon- supplied monitor info. Cinnamon runs at a scale factor of 1 always, and things are scaled internally. - * dnd: Make sure to clear any source_fs pointers after dnd operations. - - -- Clement Lefebvre Fri, 27 Oct 2017 11:03:15 +0100 - -nemo (3.6.2) sylvia; urgency=medium - - [ Leigh Scott ] - * add xapps version to configure.ac (#1626) - - -- Clement Lefebvre Tue, 24 Oct 2017 12:25:45 +0100 - -nemo (3.6.1) sylvia; urgency=medium - - [ Ingo Lafrenz ] - * send by mail nemo action (#1625) - - [ Clement Lefebvre ] - * Fix permissions on files/usr/share/nemo/actions/send-by-mail.py - - -- Clement Lefebvre Tue, 24 Oct 2017 10:58:34 +0100 - -nemo (3.6.0) sylvia; urgency=medium - - [ brownsr ] - * eel_g_list_str_copy: replace contents with g_list_copy_deep May improve performance somewhat for very high volume file copies though I have no way to test with the volumes reported here https://bugs.launchpad.net/linuxmint/+bug/1663186 - - [ Michael Webster ] - * nemo-main-application.c: try to start as a service first, then a client. This allows nemo to be started via dbus (which requires it be run with the G_APPLICATION_IS_SERVICE flag) as well as being able to connect to an already-running instance as we can now. - * nemo-main-application.c: Re-add "no-desktop" command line option. We don't use it anymore, but some programs apparently hardcode nemo with this flag rather than use xdg-open or mimetype activation. This allows them to continue working as before. - * nemo-view.c: Fix "follow link to original file" action when the link is on the desktop. In these cases, we need to launch a folder handler and pass it the full file name (which for most file managers should open the folder and select the file.) - * nemo-query-editor.c: Use a copy of the query text to check if the query is empty (or all spaces.) The function g_strstrip modifies the string in-place, and passing the modified query text causes issues when typing multiple words (separated by spaces) in the query. + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ leigh123linux ] - * Configure: disable tracker for default + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Michael Webster ] - * actions: Escape single and double quotes that are part of a file path. Add "Terminal" key in the nemo_action file, to execute the Exec line in a terminal window. - * actions: Update sample action for Terminal keyword, update nemo_action sourceview files. - * actions: Only use nemo_launch_application_from_command_array() when Terminal=true. This ensures compatibility with existing actions, which will continue to use g_spawn_async(). - * nemo-desktop-icon-grid-view.c: Store layout timestamps any time the layout is changed by a user action. - * Desktop: Remove metadata for pseudo-files on the desktop such as Computer and Home when they're removed via preferences. This simulates their deletion with respect to how metadata timestamps are tracked and validated. - * nemo-icon-view-grid-container.c: mark the sort as dirty any time a file is added or removed (this determines whether and when the sort direction indicator is shown in the context menu when auto-arrange is not active. - * nemo-icon-info.h: Use standard icon sizes for the desktop. + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ brownsr ] - * nemo-action.c: fixup a few compiler warnings - * nemo-icon-private.h: avoid memory padding save a little memory use by rearranging the fields to avoid memory padding in structures - * eel-editable-label.h: Avoid memory padding move fields in a structure to avoid memory padding made padding explicit to avoid warning messages if the padding compiler warnings are on + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Michael Webster ] - * nemo-file-undo-operations.c: Use GQueue instead of GList for our undo file pair lists. - * nemo-file-operations.c: use g_remove for native (path-reachable) files. Allowing the normal g_file_delete involves gvfs whether the file is native or not. - * nemo.desktop: Remove DBusActivatable line - we don't actually support it yet, it was an unnecessary change in ad5fcfc747466715d. This ends up just causing issues with getting nemo to launch in more up-to-date distributions. - * nemo-icon-container.c: Always treat desktop pseudo-files as semi-placed icons - that is, they can have their positions stored, then restored later, but their position can be adjusted upon placement if their previously stored position is now occupied. - * nemo-progress-ui-handler.c: Use XAppGtkWindow for the progress window, so we can pass progress info to Cinnamon. + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Jeremy Bicha ] - * Add translatable files to POTFILES.in (#1584) + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Michael Webster ] - * nemo-desktop-manager: Refactor and expand to integrate better with cinnamon. - * plugin manager: allow launching of an extension's config program from the plugin window, rather than having it in the main menu. - * desktop: Handle blank desktop windows properly during monitor change events. - * nemo-desktop-manager.c: Don't just try to resize existing desktops if the number of monitors has changed. In this case, do a full re-layout. - * nemo-progress-ui-handler.c: Don't update the status icon if it's not being shown. - * nemo-file-operations.c: Reduce progress ui update frequency during file operations. + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Leigh Scott ] - * update man page for nemo (#1600) + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Alexei Sorokin ] - * Fix some warnings in libnemo-private (#1482) + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Michael Webster ] - * nemo-desktop-manager.c: Don't run on_run_state_changed() during the init phase when it's a fallback session as it can cause a nasty recursion problem resulting in a crash. - * nemo-directory-async.c: hold the directory alive for the duration of an extension provider job, to ensure clean termination to the job when async info providers are used. - * dbus services: normalize file names. - * Remove some dead code. - * desktop: Don't show the "Show hidden files" menu item. We never show hidden files on the desktop, so having this is misleading. + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ alexnch ] - * Add .rar and .7z to archive mounting action (#1621) + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ John Callerame ] - * When activating files on the desktop (only), deselect them after activating them (#1608) + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Ján Jančár ] - * nemo-toolbar.c: Add option to hide elevated privileges warning. (#1610) + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Clement Lefebvre ] - * Rename show-superuser-toolbar into show-root-warning - - [ Björn Esser ] - * file: Let renames work on Google Drive Renaming an item on Google Drive does not change the actual GVfs path because the path is made up of document-ids, which do not change. A rename operation only affects the title of the entry. In GIO terms, only the standard::display-name changes, but the standard::name remains the same. - * file, file-undo-operations: Let renames on Google Drive be undone We really should be using standard::display-name when renaming files - g_file_get_basename is simply not the right thing to use. Moreover, in case of Google Drive, the URI might not change with the display name and we can not get the old display name from the old GFile. - * debian: Set version for min. needed libglib2 - - [ Fabio Fantoni ] - * update debian/copyright - * debian: remove unneeded postrm - - [ Clement Lefebvre ] - * l10n: Generate additional files - * l10n: Update POT file - - -- Clement Lefebvre Tue, 24 Oct 2017 10:44:41 +0100 - -nemo (3.4.6) sonya; urgency=medium - - [ Michael Webster ] - * nemo-icon-view-grid-container.c: Reset lazy flag when the icon position is stored in auto-layout mode. - * nemo-file.c: Don't check for valid thumbnails if thumbnailing is disabled. - * nemo-action.c: Use non-blocking checks for a directory. - * css: Treat NemoBlankDesktopWindow the same as NemoDesktopWindow with regards to themes, add a couple fixes to our app css to prevent background issues with certain themes (Blackmate, Ambiance) - * Add github issue template - * move-to/copy-to dialogs - allow remote locations in the sidebar. - - -- Clement Lefebvre Thu, 06 Jul 2017 11:21:28 +0200 - -nemo (3.4.5) sonya; urgency=medium - - [ Michael Webster ] - * search (ctrl-f): Don't search for an empty string. If the user wants to search for every file, they can use the wildcard (*). - * nemo-application: Only check/create the config dir at startup for nemo, and have nemo-desktop check both config and Desktop directories. - * nemo-window-menus.c: Fix control-n (new window) action callback when used from the desktop process - it should launch the preferred file manager instead of attempting to spawn a window itself. - * configure.ac: suppress deprecated warnings - * Add --enable-silent-rules to debian/rules, quiet C90 warnings. - - [ Clement Lefebvre ] - * l10n: Generate desktop files - - -- Clement Lefebvre Mon, 26 Jun 2017 12:14:28 +0200 - -nemo (3.4.4) sonya; urgency=medium - - [ Michael Webster ] - * nemo-icon-view-grid-container.c: skip default placement if we're in auto-layout mode. We get false lazy flags on new icons since the original desktop did not use auto-layout. We need to handle this because we both store layout timestamps and provide auto-layout. - * nemo-window-slot.c: Initialize cache_bar to NULL, this is checked for in nemo-window-manage-views (nemo_window_slot_check_bad_cache_bar) - - -- Clement Lefebvre Thu, 22 Jun 2017 15:00:12 +0200 - -nemo (3.4.3) sonya; urgency=medium + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ leigh123linux ] - * Remove decoration from desktop window (shows in weston) + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Michael Webster ] - * Desktop: Relax control of positioning for placed icons. At startup, they are loaded and set to their stored position, but not force-aligned, allowing the layout to ignore fluctuations in the work area during system startup. Fix some logic around 'orphan' icons as well to prevent issues with icons not being shown due to being falsely classified as orphans. - * icon container: Be more specific about when to flag icons coming from a different monitor due to a desktop configuration change. (see previous commit) - * metadata: Add back cached position values in NemoFile. Be sure to clear the timestamp metadata on files being moved/copied to or from the desktop. This ensures the lazy flag operates correctly. With the desktop becoming a separate process, transfers that include position info need to be handled slightly differently, as the old way of just setting metadata and reacting to it from a new container won't work - the file gets debuted in the other process sooner than (or not reliably after, at least) the metadata is written, resulting in inconsistent positioning. - * Add gvfs-info action for inspecting file metadata (for purposes of debugging) - right-click a file and it will send gvfs-info output on that file to stdout. - * nemo-icon-view-grid-container.c: improve updates after thumbnail generation. + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - -- Clement Lefebvre Tue, 20 Jun 2017 15:43:53 +0200 + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen -nemo (3.4.2) sonya; urgency=medium + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Michael Webster ] - * nemo-icon-container.c: don't force a native window for the desktop - fixes prelight hover sticking on the desktop when leaving an icon to pass into another window. - * nemo-icon-view-grid-container: don't show bracketed empty spots, it's tacky. - * nemo-main.c: remove backend requirement (only needed for the desktop) - * icon view/desktop: Fix hidpi scaling on the desktop. This also fixes compact view mode in hidpi, which was semi-broken since hidpi was implemented, and very broken since the desktop grid was added. - * nemo-icon-dnd.c: depopulate the dnd grid of the selected icons so insertion marks aren't drawn in the icon's source position. - * nemo-window-manager-views.c: simple close the window if the current view has no backward history, instead of jumping home or to the parent folder. The most common time for this to occur is a folder opened from the desktop - if you delete that folder, the window showing it then shows the desktop in a folder, which doesn't make much sense. - * nemo-window-manage-views.c: invalidate file info before reloading the view, not after. This fixes mount permissions being incorrect. - * dnd: Restore capability of 'moving' files from and to the desktop via drag and drop. - * Fetch file-roller mimetype info from a GDesktopAppInfo at startup, instead of a static (and woefully out of date) list. - * nemo-file.c: followup to previous commit, retain the old mimetype list for fileroller in the event that, for some reason, there is no .desktop file installed for file-roller. Also added application/x-xz-compressed-tar to the static list. - * nemo-file.c: add EFAULT as a valid exception to the access_ok function. This can throw when the file has just been moved or is in the midst of being moved and the internal async updates have not completed yet (usually during a fairly large transfer.) As a result, the icon cache problem bar appears needlessly. - * desktop: size thumbnails more appropriately - scale them to our icon size in height only, and allow the width to increase as much as our max text width while maintaining the image aspect ratio. - * desktop thumbnails: Pad the thumbnail height when it ends up smaller than the desired height due to aspect ratio and width restrictions. This ensures a nice alignment when keep-aligned is active. - * nemo-icon-view-grid-container.c: highlight the current dnd rectangle in debug mode. - * desktop grid: use the layout size for determining constraint to the canvas bounds instead of max size - this prevents files with very long names from being pushed out of the grid alignment. - * misc: Clean up minor leaks, other issues. - * desktop grid: include additional text (Icon Captions) in calculations for the ellipsis limit, and update the desktop when these change - instead of forcing the user to reload or restart to see changes. - * cleanup some warnings from recent commits. - * nemo-style-application: Remove drop shadow from the selection and pre-light states of desktop icons. The shadows are drawn outside the calculated bounds of these items, and are problematic to account for without doing frequent full screen repaints (something I want to avoid) - * DnD: Draw the highlight box around the entire text when an item is prelit and highlighted as a drop target. The highlight box was only drawing as if to surround only the normal, ellipsized text, rather than the full, unellipsized height. - * Set a default font for the desktop - this is overridden by distros in most cases, but having something is better than leaving it blank - you could set it to "Unicorn poo 15" and it would still show the labels, even though you lack that actual font. - * Add a default to our theme - using the default font was always supposed to be a fallback option, however the check in various places for whether the gsettings key is empty or not is incorrect - g_settings_get_string will always return a string, never NULL, so we need to check if the string is not empty instead. (I left the null check also as a safety - it's possible during startup that this may be null prior to the setting being first fetched. - * desktop: Fix missing icons when 'show orphans' is disabled (we were incorrectly interpreting a monitor number of -1 (which means, no previous location) and a missing monitor. - * Fix visual sort function - sort function was incorrect for the new grid, and the new order was never set after a sort when running the alignment routine. + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ JosephMcc ] - * nemo-places-sidebar: Use folder-recents for the recent icon (#1502) + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Michael Webster ] - * grid view: Don't re-enable auto-arrange when changing zoom levels. - * desktop dnd - Use more sensible behavior when keep-aligned is active. - * Fix dnd for netscape url drops. - * nemo-file-operations: limit metadata setting to desktop location only (In a previous commit it was re-enabled, but has the potential to cause traffic jams in dbus during a long copy/move operation. - * nemo-mime-actions.c: Don't fail for non-local links (like dragged website links) - the check here is for the foreign url, not the local desktop file (link), so it will never succeed, and is not necessary. - * DnD: Fix some positioning issues with auto-align local moves, and non-local icon moves (like nemo->nemo-desktop transfers) - * nemo-icon-view-grid-container.c: keep the icon list synced with the visual order of the desktop. - * dnd: split out some container-specific code that had bled over a bit - * Fix application css - font was breaking Gtk 3.22 and is not needed. Change prelight to hover to fix deprecation warnings. + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ DaveBlack ] - * Modify desktop icon order (#1501) + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Michael Webster ] - * nemo-file-operations.c: store the desktop location during a duplicate job, to fix DnD duplicate positioning on the desktop. + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - -- Clement Lefebvre Tue, 23 May 2017 15:54:04 +0100 + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen -nemo (3.4.1) sonya; urgency=medium - - * Revert "split executables into separate packages." - - -- Clement Lefebvre Fri, 05 May 2017 17:24:21 +0100 - -nemo (3.4.0) sonya; urgency=medium - - [ Daniel Schürmann ] - * Nemo-Icon-View: Fix missing cast warning - * restore prototype lost in c5a513468ee8c3497f0673e3ca019ccd3f409f8b - * Add missing include - - [ Timothy Sharitt ] - * Fix quirks with tabs and search widgets - - [ leigh123linux ] - * Don't reload while a reload is ongoing - - [ Stefan-Olt ] - * wildcard search for search-engine-simple - - [ Daniel Schürmann ] - * Remove double definition - - [ JosephMcc ] - * Fix a crash when attempting to delete an empty selection on the desktop - - [ dg1727 ] - * Updated pkexec support - - [ JosephMcc ] - * Fix search never resolving - - [ Ulrik Sverdrup ] - * nemo-dbus-manager.c: Add MoveURIs method - - [ William Jon McCann ] - * Improve date display - * Use 24 hour date format when requested - - [ Frédéric Péters ] - * Translate date formats - - [ Carlos Soriano ] - * nautilus-file: implement smarter dates - * nautilus-list-view: add a modified column with time - * nautilus-file: Clarify translators comments - * nautilus-file: fix memory leak - * nautilus-file: fix code style - * nautilus-file: use const for the date format - - [ Khaled Hosny ] - * Mark time format with xgettext:no-c-format - - [ Carlos Soriano ] - * file: fix wrong date calculation - * file: fix previous commit - * file: use _() directly for date formatting - - [ Ernestas Kulik ] - * file: fix date string day difference calculation - - [ Daniel Schürmann ] - * Use long day and month names if space allows + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ leigh123linux ] - * Make libselinux dependency controllable by configure switch - * raise tracker version - * autogen.sh: don't run aclocal + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Daniel Schürmann ] - * location-bar: use a GFile in location-changed signal + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Clement Lefebvre ] - * l10n: Generate desktop file via generate_aditional_file - * Add Cinnamon panel shortcuts (trash, computer, etc.) to the launcher + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ leigh123linux ] - * Disable selinux for Debian rules + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Daniel Schürmann ] - * Fix compiler warnings in eel folder - * nemo-desktop-window: cleanup delete-event handling - * nemo-blank-desktop-window: cleanup delete-event handling - * window: make NemoWindow a GtkApplicationWindow + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ itzexor ] - * nemo-file-operations.c: use only template filename for new files + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Denis Golubev ] - * nemo-navigation-action.c: Add new_tab_action + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Michael Webster ] - * Fix merge fail in previous commit. - * configure.ac: Remove CFLAGS line - the optimization is dangerous, and the fatal warnings for unused stuff was just annoying when trying to refactor - warnings are enough. - * Use GTimer for tracking startup speed, and also use one to track view loads. - * nemo-view.c: Add idle timer for benchmarking. - * Split off desktop handling into new process - * Update .gitignore - * Split off old icon container into the existing subclass NemoIconViewContainer and set up a new subclass - NemoIconViewGridContainer to match with a new NemoDesktopIconGridView class. The old style is accessible via the org.nemo.desktop 'use-desktop-grid' setting. - * fix autostart file name so cinnamon session doesn't fail. - * split executables into separate packages. - * Remove a bunch of comments, fix auto-layout not sticking. - * nemo-icon-container: Move debug drawing to the grid container subclass. Trigger it using NEMO_DEBUG=Desktop when running nemo-desktop. - * Implement horizontal layout. - * General fixes, icons, metadata issues between monitors. Provide per-monitor metadata for desktop containers. - * Improve DND during keep-aligned, allow for insertion of items. Implement zoom scaling and allow adjustment. - * Improve highlighting of hovered items - * Fix desktop folder launching - xdg-open was never intended to be the final answer. - * Fix ellipses change listening - the is_desktop flag was being set too late in the view construction process to connect to the correct gsettings key. - * Fix regression causing metadata to be inconsistent in nemo client window when navigating to and away from the Desktop folder - * Add some gsettings listeners for grid stuff - * Fix dnd between monitors - clamp grid values, and ensure we have a grid on the target monitor. - * Fix zoom switching, dnd placement, snapping - * nemo-desktop-utils.c: Improve how we store the monitor number for a desktop window. - * Use black instead of theme color for pre-light label highlighting - * nemo-icon-canvas-item.c: extend redraw area slightly for canvas items. This ensures any small shadow we have is cleaned up after an item is de-selected. - * nemo-desktop-icon-grid-view.c: Don't trigger a real update while updating menus. - * Disable zoom for the desktop window (allow it only via context menu) - * nemo-desktop-application: cleanup some commented lines + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ leigh123linux ] - * fix desktop file error (#1477) + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Denis Golubev ] - * nemo-navigation-action.c: Extend, Fix Middle-Click (#1478) + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Clement Lefebvre ] - * l10n: Update POT file - * l10n: Generate additional files + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - -- Clement Lefebvre Thu, 04 May 2017 13:39:55 +0100 + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen -nemo (3.2.2) serena; urgency=medium + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - * l10n: Generate additional files + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - -- Clement Lefebvre Mon, 12 Dec 2016 14:25:13 +0000 + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen -nemo (3.2.1) serena; urgency=medium + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Tomasz Sterna ] - * Add missing "Desktop" DEBUG flag + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ leigh123linux ] - * Add space to Name[en_GB] - * file-operations: don't recurse for trash operations + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Clement Lefebvre ] - * l10n: Update POT file + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ leigh123linux ] - * Force X11 backend + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Michael Webster ] - * remove screen metadata (we only ever have one screen) - * nemo-file-operations.c: Don't update position metadata on most file operations - it's costly, and can cause lockups. + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - -- Clement Lefebvre Sat, 10 Dec 2016 12:19:48 +0000 + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen -nemo (3.2.0) serena; urgency=medium + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ leigh123linux ] - * fix GCC pointer signedness warnings + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ raveit65 ] - * add .view style class on icon view scrolled window + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ itzexor ] - * window: remove custom get_preferred_width/height implementation We already take care of the default size when we create the window, and these only break assumptions of the default GtkWindow's handlers. - * pathbar: avoid gtk+ warnings - * pathbar: remove hardcoded width for sliders + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Maximiliano Curia ] - * Close open_as_root child on child exit + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Michael Webster ] - * nemo-context-menu-menu-item.c: use correct grammar in the context menu toggle. + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ leigh123linux ] - * Fix GTK 3.21.3 desktop redraw issue (#1231) + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Maximiliano Curia ] - * Migrate away from gnome-common deprecated vars and macros + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ brownsr ] - * replace deprecated gtk_icon_info_free with g_object_unref - * remove deprecated and no longer necessary g_type_init + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ itzexor ] - * file-operations: reduce the time for reliable transfer rate - * remove "Show text in icon" preference + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Michael Webster ] - * nemo-view.c: unescape uris being passed to file-roller during drag-and-drop (replaces %20 with spaces). + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Chris Allan ] - * Expand grid width to canvas - * Minimum of one column + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ xenopeek ] - * Update nemo-file.c + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ leigh123linux ] - * trash-monitor: change trash monitoring process + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ lukefromdc ] - * Fix --geometry option when Nemo is already running + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Maximiliano Curia ] - * Keep warnings as warnings when building the packages + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Clement Lefebvre ] - * Clean up previous PR + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ JosephMcc ] - * nemo-file-management-properties: Fix an accidental removal + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ leigh123linux ] - * Add missing build dep + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Clement Lefebvre ] - * Fixed build + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Maximiliano Curia ] - * Make AX_ macros optional + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ itzexor ] - * nemo-window.c: save sidebar width 100ms after last change - * nemo-application.c: fix maximized window state preservation + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Daniel Schürmann ] - * Remove conditional ellipsis code for GTK < 3.12.0 builds. + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ darealshinji ] - * Add link to Launchpad translations to README + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ claudetete ] - * bind double left click on blank to go to parent folder - * add option to manage double cick in blank area (off by default) because it changes previous behavior + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Clement Lefebvre ] - * Rephrased feature introduced in previous commit and regenerated pot file + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Michael Webster ] - * nemo-file.c: Only append .desktop to desktop files when they actually need it. Trusted desktop files (ones that typically get made and placed on the desktop) don't show their extension, so when you try to rename them, the new name needs .desktop appended to it. - * nemo-file-management-properties.glade: improve the description of the click-to-rename feature. - * nemo-thumbnails.c: Don't set a stack size - see: - * nemo-application.c: Look for already-existing desktop windows before attempting to manage the desktop. - * desktop: Don't rebuild the desktop any time _NET_WORKAREA changes - this can happen fairly frequently in some situations, causing crashes due to the asynchronous nature of nemo's directory loading back-end. - * eel-gnome-extensions.c: Use preferred terminal emulator when using "Run in terminal" to execute something. This more or less reverts a75c26d50bba3fec1dc242b9efc03f37a06e7093 but simplifies it somewhat, adapting the function that is used in GDesktopAppInfo and adding a check for our user setting. - * nemo-desktop-manager.c: run layout_changed when the widget scale factor changes. This (hopefully) handles regressions with hidpi support due to https://github.com/linuxmint/nemo/commit/c5a513468ee8c3497f0673e3ca019ccd3f409f8b. + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ leigh123linux ] - * file-undo-operations: change trashed files matching condition + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Michael Webster ] - * icon view: Use the correct container size for applying margins to the icon container. Also, make sure icon data is fully loaded before positioning items - desktop pseudo-items don't necessarily have the correct bounding boxes defined by the time layout occurs. Load this data just before trying to position the icon, rather than just after. - * nemo-desktop-utils: Adjustments for Gtk 3.22 changes in monitor management. gdk_screen_get_monitor_workarea() no longer returns a valid workarea, it simply returns the geometry - see commit: - * nemo-desktop-manager.c: reload the desktop in an idle callback - * nemo-application.c: Add a whitelist for ignoring existing desktop handlers by WM_CLASS match. By default 'conky' is in the list + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Clement Lefebvre ] - * Generate additional files + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - -- Clement Lefebvre Mon, 07 Nov 2016 13:19:34 +0000 + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen -nemo (3.0.6) sarah; urgency=medium + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Clement Lefebvre ] - * Generate action files manually (as opposed to during the build) + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Michael Webster ] - * nemo-desktop-utils.c: return 0 for monitor index if a widget isn't realized (this can happen during configuration changes and during session startup). - * nemo-desktop-icon-view.c: disconnect from the same gsettings instance we connected to. - * nemo-desktop-manager, nemo-application: Fix some cleanup issues - disconnect from the correct objects when disposing of the desktop manager, and destroy the desktop manager earlier in nemo's destruction so there are no issues freeing the DesktopInfos. + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ leigh123linux ] - * notebook: removed unused ifdef code + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Michael Webster ] - * nemo-list-view.c: detach the column header menu from metadata when setting it up. Use the actual view's layout instead. When reacting to visible columns being changed, simplify things by iterating through the treeview column to build a new metadata list. - * nemo-list-view.c: Don't show trash-specific columns in the header menu. - * list view: Make changes to the search results view persistent. gvfs can't save metadata for the search 'folder' so we store it ourselves. - * eel-canvas.c: Fix touchscreen selection in icon views. + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - -- Clement Lefebvre Thu, 23 Jun 2016 13:32:32 +0100 + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen -nemo (3.0.5) sarah; urgency=medium + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ leigh123linux ] - * use g_hash_table_remove_all and get rid of some callbacks + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ JosephMcc ] - * Partially revert c082595 by limiting it to only affecting desktop items + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - -- Clement Lefebvre Tue, 31 May 2016 13:20:18 +0100 + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen -nemo (3.0.4) sarah; urgency=medium + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ raveit65 ] - * add standard settings for EelEditableLabel + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Clement Lefebvre ] - * Build-depend on cinnamon-l10n + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - -- Clement Lefebvre Tue, 31 May 2016 11:31:11 +0100 + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen -nemo (3.0.3) sarah; urgency=medium + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Clement Lefebvre ] - * Updated pot file + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Michael Webster ] - * nemo-places-sidebar.c: When gtk overlay scrolling is in effect, add some padding right of the sidebar eject icons, otherwise they are covered by the scrollbar when it pops up. + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - -- Clement Lefebvre Mon, 23 May 2016 12:52:58 +0100 + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen -nemo (3.0.2) sarah; urgency=medium + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Clement Lefebvre ] - * Fixed build + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Michael Webster ] - * debian/control: depend on python3-gi - * fix action i18n scripts to write utf-8 + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ itzexor ] - * nemo-icon-view: include nemo-application.h needed in nemo_icon_view_add_file for: nemo_application_set_cache_flag nemo_application_get_singleton - * nemo-pathbar: use gint for slider_width instead of gint16 silences an incorrect pointer type warning. + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Michael Webster ] - * nemo-list-view.c: don't explicitly unref columns anymore - they'll get handled when the tree view is destroyed. - * nemo-icon-container.c: Re-enable desktop type-to-select feature. Also make a couple fixes on the positioning logic for this little popup. Where possible, it will avoid overlapping panels. - * desktop windows: maximize instead of relying on gdk for monitor workarea - it's inaccurate for anything but the primary monitor. - * nemo-icon-container.c: special case desktop windows for search popup - now that we can rely on the window being the correct size to account for panels, we can reliably position this popup off of those panels. + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ JosephMcc ] - * prefs: Don't try to hardcode a minimum size for the preferences dialog + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Michael Webster ] - * Use g_themed_icon_new instead of g_themed_icon_new_with_default_fallbacks. - * nemo-window.c: As of 9cb9c48f59baa we maximize the desktop containers to make sure they use the correct work area as set by muffin. This started causing the window state 'maximized' key to be set to true when opening a new nemo window. This corrects that issue, using disable_chrome as an indicator to ignore the window - only the desktop windows set this true. - * nemo-window.c: fix formatting + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - -- Clement Lefebvre Fri, 20 May 2016 12:26:51 +0100 + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen -nemo (3.0.1) sarah; urgency=medium + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ JosephMcc ] - * pathbar: Always show the pathbar up and down arrows. Dynamically adding and removing these buttons was causing the visual style of buttons in the pathbar to break + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Igor ] - * Fix segfault on changing the number of colums when in list view - * Fix uninitialized is_desktop flag + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Michal Cyprian ] - * Port python scripts to Python 3 - /data/extract_action_strings - /data/merge_action_strings - /files/usr/share/nemo/actions/myaction.py - all Python 2-3 compatible + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Michael Webster ] - * nemo-list-view.c: Fix initial column sizing - expand the filename column only to fill available space. Other columns will start with their natural size. - * update m4 files + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ itzexor ] - * nemo-view: switch to nemo_get_file_by_uri so we don't get a NULL pointer if the file isn't already loaded internally. + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Michael Webster ] - * Add desktop settings action - * nemo-places-sidebar.c: ensure a minimum useable sidebar width when resizing windows or panes. + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Igor ] - * Set minimum size for File Management Preferences window - * Increase default width of File Management Preferences window + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Michael Webster ] - * nemo-list-view.c: Clean up column changes - only add columns and connect to them once, remove some unnecessary checks. - * nemo-list-view.c: give the name column a default width that the column-double-click autosize action can use. Otherwise it makes the name column as small as possible (the opposite what it's supposed to do, or what the other columns do) + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Igor ] - * Update suggested.gitignore + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - -- Clement Lefebvre Tue, 10 May 2016 16:36:23 +0100 + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen -nemo (3.0.0) sarah; urgency=medium + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ lukefromdc ] - * GTK 3.20-fix wrong desktop size + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Daniel Schürmann ] - * Added missing includes - * Fix pointer types, to avoid warning - * Respect dbus_satisfied flag for menu enties on blank desktops - * Fix printf format specifier - * Don't draw the desktop on a cloned monitor - * Fix some missing cast warnings + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Balló György ] - * Fix fallback style for GTK 3.20 + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ raveit65 ] - * add style class nemo-window-pane - * add style class nemo-properties-dialog to glade file + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Dustin Falgout ] - * add style class in nemo_desktop_window_init (same as nautilus) - * add style class to places sidebar - * add style class to nemo-window - * use more specific class name for places sidebar + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Michael Webster ] - * nemo-icon-info.c: remove invalid GTK_ICON_LOOKUP_GENERIC_FALLBACK flag (triggers warnings in gtk 3.20.x). (credit to @itzexor) + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ itzexor ] - * nemo-window: add new flag NEMO_WINDOW_OPEN_FLAG_SEARCH and use the same slot if this flag is passed to nemo_window_slot_open_location_full to avoid opening a new window (and a crash) when starting a search with the open in new window preference enabled - * fix typo + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Clement Lefebvre ] - * Updated makepot and pot file + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - -- Clement Lefebvre Sun, 24 Apr 2016 12:41:50 +0100 + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen -nemo (2.8.7) rosa; urgency=medium + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Michael Webster ] - * improve context menu toggle: - shows separate distinct regions of the menu item now - tooltip manifests as right-justified text next to the toggle icon + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ monsta ] - * use g_strcmp0 instead of unsafe strcmp + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ itzexor ] - * file: don't crash when the original file path has reserved characters https://git.gnome.org/browse/nautilus/commit/?id=d69885bd67edc1fae76c790f6162807817d63b2f - * file-operations: Make sure to use correct filename when restoring from Trash https://git.gnome.org/browse/nautilus/commit/libnautilus-private/nautilus-file-operations.c?id=ecee8be850b8342c804de2ecc3e613b99a20a010 - * file-utils: ensure directories exist before restoring from trash https://git.gnome.org/browse/nautilus/commit/?id=f1cb32831df32009f7e8bd5fcc35c5ccdf64eee4 + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - -- Clement Lefebvre Mon, 07 Mar 2016 17:19:06 +0000 + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen -nemo (2.8.6) rosa; urgency=medium + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Michael Webster ] - * nemo-view.c: Fix Open context menu entry not updating its label when a new selection is made. Also, fix tracking the context toggle when the menu has scroll bars. - * nemo-view: fix invalid View reference when view types change, and the tooltip is updated for the context menu toggle. + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - -- Clement Lefebvre Fri, 27 Nov 2015 09:59:44 +0000 + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen -nemo (2.8.5) rosa; urgency=medium + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Michael Webster ] - * list view, icon view: Don't trigger click-on-rename until button release, in order to preserve the possibility of dragging an already-selected single item. - * icon-view/container: fix click-to-rename issue where selection count was not up-to-date, requiring an extra click to trigger a rename after selecting a single icon from having no selection previously. - * bookmarks: Fix crashing and inconsistent behavior when working with remote bookmarks. - * nemo-icon-container: prevent interactive search on the desktop. + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - -- Clement Lefebvre Fri, 20 Nov 2015 17:27:57 +0000 + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen -nemo (2.8.4) rosa; urgency=medium + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Michael Webster ] - * nemo-file-operations.c: Handle NULL NemoFiles when deciding queue - this happens in both directions when dragging/copying files to and from a Virtualbox guest or host. + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Clement Lefebvre ] - * Removed context menu option from preferences + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - -- Clement Lefebvre Thu, 12 Nov 2015 09:38:15 +0000 + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen -nemo (2.8.3) rosa; urgency=medium + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Michael Webster ] - * Add control to context menu to toggle simple/complex menu - * nemo-list-view: Implement click-to-rename - * remove nemo-directory-view-ui-light.xml (no longer needed) + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Clement Lefebvre ] - * Updated pot file + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - -- Clement Lefebvre Wed, 11 Nov 2015 18:55:34 +0000 + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen -nemo (2.8.2) rosa; urgency=medium + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Michael Webster ] - * file operations queue: refactor slightly to make it easier to manage what gets queued and what gets started immediately. - * nemo-window-pane.c: prevent search from appearing on desktop - * preferences: move context menu toggle to the top of the Display page - * file operations window: raise the window when another operation is added, if the window is visible (not status-iconed). - * click-to-rename: move logic to earlier in the click event, in a way similar to how double-clicks are handled. Also, handle the preference change in nemo-view - this way it can be re-used later to handle list views as well. Also, this keeps us from interacting with GSettings so much. - * icon view: fetch click-to-rename preference when the view is loaded, don't allow click-to-rename on read-only files. - * thumbnails: detect and throttle back thumbnail generation for files that are being actively updated on disk. - * file queue: Add some additional checks for determining whether or not to start a file operation immediately. - * Add option to disable queueing - * job queue: Refactor to reduce duplication, add debugging info, add filesystem comparison to detect false "local" paths (local paths to non-local or non-native filesystems and mounts). - * nemo-query-editor: fix some casts to prevent build warnings. - * click-to-rename: Fix accidental rename triggering with multiple selection in icon view - * click-to-rename: Fix previous commit (broke double-click upon initial selection.) - * list view: Don't clear the rename widget twice + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Clement Lefebvre ] - * Fixed nemo crashing when quickly clicking on two unmounted volumes in the sidebar + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - -- Clement Lefebvre Mon, 09 Nov 2015 09:55:12 +0000 + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen -nemo (2.8.1) rosa; urgency=medium + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Michael Webster ] - * nemo-list-view.c: Fix editable not being destroyed after a canceled rename in certain instances. This would cause the action bindings for cut/copy not to be released from the text entry box, breaking cut/copy/paste until nemo was restarted. - * src/nemo-extension-config-widget.c: Make "No extensions found" un-clickable like the other two lists. (Would crash nemo when clicked) + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - -- Clement Lefebvre Mon, 26 Oct 2015 11:44:59 +0000 + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen -nemo (2.8.0) rosa; urgency=medium + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Daniel Schürmann ] - * pathbar: use a private struct and use use nemo_is_[home/root/desktop]_directory() - * Fix compile errors - * Don't use hardcoded script and action paths, remove unused sys script path - * Used definitions from nemo-global-preferences - * Moved action key definition to nemo-action.h to be external usable - * Show comment as tooltips for actions in action config, and improve comments for some actions. - * all: remove nemo_window_slot_go_to() - * Combine the search bar and query editor - * Added search_is_not_empty, to fixe a segfault in treelist + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Jonathan DePrizio ] - * Only include the domain if the method is SMB + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Monsta ] - * bumped some deps and build-deps + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ AlirezaNaghizadeh ] - * quick rename - * quick rename + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ pyecs ] - * Fix default sort order bug in list view + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Michael Webster ] - * nemo-places-sidebar.c: Fix a couple of drag-and-drop issues when there are no bookmarks, or when the xdg-bookmark area is empty. - * nemo-places-sidebar.c: Fix a memory leak. - * connect-to-server: remember the last connection type. - * nemo-list-view.c: Fix column sorting when default sort type is "Detailed type" - * nemo-connect-server-dialog.c: Fix previous commit. - * fix build warning, missing prototype. - * Fix some build warnings - * nemo-window-pane.c: Fix crash during location entry. - * fix indentation + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Clement Lefebvre ] - * Don't assign the position of the last closed window to the first opened window (it would be really confusing if it worked.. and it didn't really work since gtk_application_get_windows() seemed to also count the desktop window) - * Prefs: Rephrase quickrename option - * nemo-action-config-widget.c: Localize non-localized comment string - * Updated pot file + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Corbin ] - * Re-add revealer animation on search bar - * Fix Query Editor Row not displaying + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - -- Clement Lefebvre Tue, 20 Oct 2015 10:32:51 +0100 + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen -nemo (2.6.7) rafaela; urgency=medium + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Michael Webster ] - * progress window: simplify slightly, have info widgets manage themselves more, to prevent having a race condition at certain stages of the file operation. + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - -- Clement Lefebvre Mon, 22 Jun 2015 23:35:49 +0200 + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen -nemo (2.6.6) rafaela; urgency=medium + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Michael Webster ] - * Switch from .svg to .png format for the file operation tray icon. Scalable/symbolic isn't supported in gtk 3.12(+?) - * open-with dialog: Fix focus and user interaction issues - - Focus defaults to the custom entry box - Enter key (or double-clicking in the list) will now 'OK' the dialog, and open the file with either the selected program, or the custom command. - The ok button now greys out if there is an invalid custom entry - Removed misleading program-picker button label and image. - * preferences: tweak style a bit to match c-s - * nemo-extensions-list: Don't hardcode lib path - * nemo-view, nemo-sidebar: quiet warnings when looking for network locations + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - -- Clement Lefebvre Sun, 14 Jun 2015 12:42:06 +0200 + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen -nemo (2.6.5) rafaela; urgency=medium + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ leigh123linux ] - * add runtime requirement for libcinnamon-desktop4 + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ mtwebster ] - * Fix a couple build warnings - * nemo-application: register with org.gnome.SessionManager - this should fix the race condition where c-s-d dies before nemo does, causing all of our icons to revert to fallbacks briefly. + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - -- Clement Lefebvre Wed, 27 May 2015 10:25:57 +0200 + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen -nemo (2.6.4) rafaela; urgency=medium + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Michael Webster ] - * menus: Always show icons in Open With and Templates submenus. - * nemo-bookmark-list: make sure to keep the bookmarks file writable by the user (and not just root) when running nemo as root. - * fix build warning, fix prototype name. + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ leigh123linux ] - * Update version for cinnamon-desktop build dep + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - -- Clement Lefebvre Mon, 25 May 2015 10:40:14 +0200 + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen -nemo (2.6.3) rafaela; urgency=medium + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ leigh123linux ] - * update cinnamon-desktop min version - * bump it again + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - -- Clement Lefebvre Thu, 21 May 2015 12:44:03 +0200 + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen -nemo (2.6.2) rafaela; urgency=medium + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Clement Lefebvre ] - * Gettext fix: Due to genre/plural, in many languages, adjectives are not translatable on their own. They need to relate to a noun. - * Gettext: Simplified msgids in file operation queue to make them easier to translate - * Updated pot + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - [ Michael Webster ] - * Adapt Nemo to deal with problem situations with the user thumbnail cache: - Added --fix-cache command line option (must be run as root) - Added quick check at startup to detect major problems and disable thumbnailing until fixed. - Individual thumbnailed files are checked on the fly for permission issues. - When a problem is detected, an infobar appears, offering to fix the problem, or ignore it. - * Have 'dismiss' last for Nemo's lifespan. - * thumbnails: Remove an orphan comment from previous commits, fix wording of the --fix-cache command-line option. + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - -- Clement Lefebvre Thu, 21 May 2015 11:06:16 +0200 + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen -nemo (2.6.1) rafaela; urgency=medium + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - * Packaging: Fixed hardcoded gir typelib path + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - -- Clement Lefebvre Wed, 20 May 2015 09:26:24 +0200 + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen -nemo (2.6.0) rafaela; urgency=medium + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - * 2.6.0 + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - -- Clement Lefebvre Tue, 19 May 2015 17:34:50 +0200 + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen -nemo (2.5.1) unstable; urgency=medium + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - * 2.5.x + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - -- Clement Lefebvre Mon, 19 Jan 2015 16:55:00 +0100 + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen -nemo (2.4.4) rebecca; urgency=medium + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - * list-view: Don't reset zoom level when syncing statusbar zoom widget state. + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - -- Clement Lefebvre Mon, 24 Nov 2014 09:11:57 +0100 + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen -nemo (2.4.3) rebecca; urgency=medium + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - * Never allow root nemo to manage the desktop. + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - -- Clement Lefebvre Sat, 22 Nov 2014 17:17:30 +0100 + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen -nemo (2.4.2) rebecca; urgency=medium + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - * icon-container: Fix regression when renaming files in certain views - - * Revert "places sidebar: set cells to a fixed height, seems to prevent residual" + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - -- Clement Lefebvre Tue, 11 Nov 2014 22:35:46 +0100 + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen -nemo (2.4.1) rebecca; urgency=medium + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - * Show UP button by default in the toolbar - * Re-enabled the right click context menu on nemo toolbar navigation buttons - * Recent files: show same open-with entries as normal folders - * Sidebar: Fix expander state - * Sidebar: workaround for icon render issue. Don't allow the tree view to be unrestrained vertically. - * Places sidebar: set cells to a fixed height, seems to prevent residual render issues + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - -- Clement Lefebvre Tue, 11 Nov 2014 11:07:57 +0100 + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen -nemo (2.4.0) rebecca; urgency=medium + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - * 2.4.0 + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - -- Clement Lefebvre Fri, 31 Oct 2014 16:23:56 +0100 + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen -nemo (2.3.0) unstable; urgency=medium + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - * 2.3.0 + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - -- Clement Lefebvre Fri, 27 Jun 2014 14:44:35 +0100 + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen -nemo (2.2.3) qiana; urgency=medium + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - * Merging debian/patches - * Show unmount progress notifications when ejecting a drive - * Fix #627 - crash when unmounting archives. This is a temporary fix - pull request coming for permanent fix. - * places-sidebar: render eject icon correctly in hidpi - * Open-with dialog: Bugfix (Fixes #631) and a few improvements - * nemo-links: add desktop file hack for desktop session names. - * Fix sample nemo action to work with filenames with spaces. - * Really fix the sample action - * Clean up orphaned gtk bookmarks at startup. - * Revert "Clean up orphaned gtk bookmarks at startup." - * nemo-actions: Add flag to escape spaces in file paths. - * Use GtkRevealer for search bar. - * nemo-file: compare_by_display_name - handle null strings gracefully. + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - -- Clement Lefebvre Fri, 27 Jun 2014 14:43:10 +0100 + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen -nemo (2.2.2) qiana; urgency=medium + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - * 2.2.2 + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - -- Clement Lefebvre Wed, 21 May 2014 12:36:20 +0100 + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen -nemo (2.2.1) qiana; urgency=medium + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - * 2.2.1 + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - -- Clement Lefebvre Thu, 01 May 2014 14:35:34 +0100 + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen -nemo (2.2.0) qiana; urgency=medium + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - * 2.2.0 + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - -- Clement Lefebvre Sat, 12 Apr 2014 15:50:14 +0100 + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen -nemo (2.0.8) petra; urgency=low + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - * 2.0.8 + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - -- Clement Lefebvre Mon, 25 Nov 2013 18:37:31 +0000 + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen -nemo (2.0.7) petra; urgency=low + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - * 2.0.7 + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - -- Clement Lefebvre Sat, 23 Nov 2013 13:39:58 +0000 + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen -nemo (2.0.6) petra; urgency=low + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - * 2.0.6 + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - -- Clement Lefebvre Mon, 11 Nov 2013 13:42:09 +0000 + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen -nemo (2.0.5) petra; urgency=low + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - * 2.0.5 + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - -- Clement Lefebvre Sun, 03 Nov 2013 15:53:05 +0000 + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen -nemo (2.0.4) petra; urgency=low + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - * 2.0.4 + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - -- Clement Lefebvre Thu, 31 Oct 2013 13:32:20 +0000 + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen -nemo (2.0.3) petra; urgency=low + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - * 2.0.3 + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - -- Clement Lefebvre Tue, 29 Oct 2013 10:40:51 +0000 + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen -nemo (2.0.2) petra; urgency=low + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - * 2.0.2 + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - -- Clement Lefebvre Tue, 22 Oct 2013 14:20:41 +0100 + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen -nemo (2.0.1) petra; urgency=low + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - * 2.0.1 + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - -- Clement Lefebvre Fri, 18 Oct 2013 15:57:39 +0100 + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen -nemo (2.0.0) petra; urgency=low + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - * 2.0.0 + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - -- Clement Lefebvre Wed, 02 Oct 2013 16:36:43 +0100 + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen -nemo (1.9.1) petra; urgency=low + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - * 1.9.1 + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - -- Clement Lefebvre Mon, 30 Sep 2013 14:21:12 +0100 + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen -nemo (1.8.5) olivia; urgency=low + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - * 1.8.5 + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - -- Clement Lefebvre Tue, 20 Aug 2013 14:07:52 +0100 + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen -nemo (1.8.4) olivia; urgency=low + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - * 1.8.4 + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - -- Clement Lefebvre Tue, 09 Jul 2013 17:12:40 +0200 + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen -nemo (1.8.3) olivia; urgency=low + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - * 1.8.3 + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - -- Clement Lefebvre Sat, 01 Jun 2013 12:55:17 +0100 + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen -nemo (1.8.2) olivia; urgency=low + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - * 1.8.2 + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - -- Clement Lefebvre Sun, 19 May 2013 21:08:35 +0100 + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen -nemo (1.8.1) olivia; urgency=low + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - * 1.8.1 + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - -- Clement Lefebvre Thu, 09 May 2013 13:29:40 +0100 + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen -nemo (1.8.0) olivia; urgency=low + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - * 1.8.0 + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - -- Clement Lefebvre Sun, 05 May 2013 13:21:54 +0100 + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen -nemo (1.7.6) olivia; urgency=low + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - * 1.7.6 + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - -- Clement Lefebvre Fri, 03 May 2013 17:07:54 +0100 + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen -nemo (1.7.5) olivia; urgency=low + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - * 1.7.5 + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - -- Clement Lefebvre Tue, 30 Apr 2013 16:45:52 +0100 + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen -nemo (1.7.4) olivia; urgency=low + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - * 1.7.4 + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - -- Clement Lefebvre Sat, 27 Apr 2013 20:03:25 +0100 + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen -nemo (1.7.3) olivia; urgency=low + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - * 1.7.3 + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - -- Clement Lefebvre Mon, 15 Apr 2013 14:56:37 +0100 + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen -nemo (1.7.2) olivia; urgency=low + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - * 1.7.2 + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - -- Clement Lefebvre Fri, 22 Mar 2013 14:07:10 +0000 + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen -nemo (1.7.1) olivia; urgency=low + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - * 1.7.1 + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - -- Clement Lefebvre Tue, 19 Feb 2013 16:29:56 +0000 + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen -nemo (1.1.2) nadia; urgency=low + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - * 1.1.2 + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - -- Clement Lefebvre Wed, 14 Nov 2012 12:02:03 +0000 + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen -nemo (1.1.1) nadia; urgency=low + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - * 1.1.1 + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - -- Clement Lefebvre Tue, 06 Nov 2012 16:37:43 +0000 + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen -nemo (1.1.0) nadia; urgency=low + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - * 1.1.0 + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - -- Clement Lefebvre Mon, 05 Nov 2012 18:47:31 +0000 + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen -nemo (1.0.9) nadia; urgency=low + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - * 1.0.9 + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - -- Clement Lefebvre Fri, 02 Nov 2012 20:50:56 +0000 + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen -nemo (1.0.8) nadia; urgency=low + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - * 1.0.8 + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - -- Clement Lefebvre Thu, 01 Nov 2012 12:55:13 +0000 + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen -nemo (1.0.7) nadia; urgency=low + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - * 1.0.7 + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - -- Clement Lefebvre Sun, 28 Oct 2012 16:25:12 +0000 + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen -nemo (1.0.6) nadia; urgency=low + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - * 1.0.6 + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - -- Clement Lefebvre Tue, 23 Oct 2012 15:33:14 +0100 + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen -nemo (1.0.5) nadia; urgency=low + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - * nadia + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - -- Clement Lefebvre Sat, 20 Oct 2012 12:23:47 +0100 + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen -nemo (1.0.4) nadia; urgency=low + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - * 1.0.4 + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - -- Clement Lefebvre Thu, 18 Oct 2012 13:43:14 +0100 + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen -nemo (1.0.3) maya; urgency=low + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - * 1.0.3 + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - -- Clement Lefebvre Mon, 01 Oct 2012 15:22:23 +0100 + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen -nemo (1.0.2) maya; urgency=low + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - * 1.0.2 + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - -- Clement Lefebvre Thu, 27 Sep 2012 14:27:20 +0100 + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen -nemo (1.0.1) maya; urgency=low + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - * 1.0.1 + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - -- Clement Lefebvre Wed, 19 Sep 2012 10:32:29 +0100 + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen -nemo (1.0.0) maya; urgency=low + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - * Initial version, based on nautilus 3.4.2-0ubuntu3 + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen - -- Clement Lefebvre Wed, 18 Jul 2012 18:43:00 +0000 + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + 2012-03-16 Reinout van Schouwen + + - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard + gebruiken’ + +M po/nl.po + +commit 9f6d1414dac34fef51616d7642fe52a2353d3c2b +Author: Krishnababu Krothapalli +Date: 2012-03-16 + + Translations Updated with FUEL + +M po/te.po + +commit 4273aa66a8e73e11cf3ad388bb53350c12b30e83 +Author: Krishnababu Krothapalli +Date: 2012-03-16 + + Translations Updated with FUEL + +M po/te.po + +commit 258628dbf02a540179488c94d0a6c1100ad12eab +Author: Anita Reitere +Date: 2012-03-14 + + Updated Latvian translation. + +M po/lv.po + +commit 3d275a971132a41809a3b1e5b8ac683d264d6c35 +Author: Stefano Facchini +Date: 2012-03-13 + + view: improve scroll-zooming for smooth scrolling devices + + Try to emulate a normal scroll event by adding deltas until the total + delta reaches +1 or -1. + +M src/nemo-view.c + +commit d865bc50459fb1349a761c3c7029bad7f13fc67c +Author: Cosimo Cecchi +Date: 2012-03-13 + + pathbar: make dragging from toolbar work again + + This was a regression from the recent refactorings in NemoPathbar. + Since we now have an event window, if we want button events to + reach the + parent toolbar, we have to select for such events when we realize the + event window. + +M src/nemo-pathbar.c + +commit f7b54cdba55a0856b201e62818059ac5007fac35 +Author: Cosimo Cecchi +Date: 2012-03-13 + + view: threshold the delta information when scroll-zooming + + We don't want to zoom for every single event, since in case the device + supports smooth scrolling, we will get a lot of small events. + Pointed out by Stefano Facchini. + +M src/nemo-view.c + +commit 45cb82857c9cef34952da4c0488780fd8b19a61b +Author: Jonh Wendell +Date: 2012-03-13 + + Updated Brazilian Portuguese translation + +M po/pt_BR.po + +commit df6a0a0a1e721142b1be5338fcad2cc0248fdf1e +Author: Cosimo Cecchi +Date: 2012-03-12 + + build: remove unused --enable-profiler build option + + It's unused. + + https://bugzilla.gnome.org/show_bug.cgi?id=661632 + +M configure.in + +commit d9c23d83fdb5e1178f2c2f97a57b937cdab1b251 +Author: Cosimo Cecchi +Date: 2012-03-12 + + properties-window: ellipsize the Type field + + Or the properties window won't shrink when the file type string + is long + (e.g. with Archive types). + + https://bugzilla.gnome.org/show_bug.cgi?id=671809 + +M src/nemo-properties-window.c + +commit 73588247787b408ec43dba4156cadac97fe2d6d6 +Author: Cosimo Cecchi +Date: 2012-03-12 + + pathbar: refresh label size request every time it changes + + Or we might end up with buttons having the wrong size if a folder + on the + pathbar changes name. + + https://bugzilla.gnome.org/show_bug.cgi?id=671865 + +M src/nemo-pathbar.c + +commit 389845f1f6e175212554aba7645ce728f0a8f7ec +Author: Cosimo Cecchi +Date: 2012-03-12 + + pathbar: don't set use-markup before resetting the label + + If the label contains markup text, setting use_markup before resetting + the text can spawn a warning (and we're resetting the label text right + afterwards anyway). + +M src/nemo-pathbar.c + +commit 799514c57003d174b466c1fbf262f1229cf9d9df +Author: Nilamdyuti Goswami +Date: 2012-03-12 + + Assamese translation completed + +M po/as.po + +commit e6a47735728f2e9e40b7c036d94b8c7e7c996ef6 +Author: Timo Jyrinki +Date: 2012-03-12 + + Finnish translation update from + http://l10n.laxstrom.name/wiki/Gnome_3.4 translation sprint + +M po/fi.po + +commit 269abde49580fe4ffa3ec0f31a4efa494860a1d5 +Author: Piotr Drąg +Date: 2012-03-10 + + Updated Polish translation + +M po/pl.po + +commit 6449cbff18611f8583f98a6ce4e97b66c9667d52 +Author: Seong-ho Cho +Date: 2012-03-10 + + Updated Korean translation + +M po/ko.po + +commit 376678e92a107703ba19dd34fc4012ef4f04cf8c +Author: Kristjan SCHMIDT +Date: 2012-03-10 + + Updated Esperanto translation + +M po/eo.po + +commit 878e2a4f7ada26bb7c106e5bbdbd8434acf86c77 +Author: Cosimo Cecchi +Date: 2012-03-08 + + view: fix zoom direction for smooth scrolling case + +M src/nemo-view.c + +commit 1a76e044a2c9b834d00c4ea30f1e3af3321d8cdd +Author: Cosimo Cecchi +Date: 2012-03-08 + + view: handle smooth scroll events for zooming + + Instead of reaching the g_assert_not_reached() and crash. + + https://bugzilla.gnome.org/show_bug.cgi?id=671650 + +M src/nemo-view.c + +commit 0d46b0620b3b120cde310cb2319c309d8f3e3b82 +Author: Cosimo Cecchi +Date: 2012-03-07 + + all: remove eel_g_hash_table_new_free_at_exit() + + Especially when references can be owned by non-resident modules, + this is + just too dangerous. + + https://bugzilla.gnome.org/show_bug.cgi?id=670989 + +M eel/eel-glib-extensions.c +M eel/eel-glib-extensions.h +M eel/eel-stock-dialogs.c +M eel/eel-string.c +M libnemo-private/nemo-directory-async.c +M libnemo-private/nemo-directory.c +M libnemo-private/nemo-file.c +M libnemo-private/nemo-signaller.c +M libnemo-private/nemo-thumbnails.c +M src/nemo-properties-window.c + +commit b9c51fd4eb84a9f52ee4be1bf183fc516984130b +Author: Cosimo Cecchi +Date: 2012-03-07 + + view: show applications for non launcher desktop files + + https://bugzilla.gnome.org/show_bug.cgi?id=319981 + +M src/nemo-mime-actions.c +M src/nemo-view.c + +commit 5a47a484e45218e83202c508b421b1a2707af270 +Author: Cosimo Cecchi +Date: 2012-03-07 + + link: fix code to parse additional description for links + + For some reason, this was ifdeffed out. + +M libnemo-private/nemo-link.c +M src/nemo-icon-view-container.c + +commit 9ff4e9194215cd955b952b1a82bd6a9d80e666cd +Author: Cosimo Cecchi +Date: 2012-03-07 + + link: remove obsolete check for application/x-gnome-app-info + + We stopped supporting this everywhere else ages ago. + +M libnemo-private/nemo-link.c + +commit 0ffe4ea4e0df9e5a186b3096bf1712011230a75b +Author: Cosimo Cecchi +Date: 2012-03-07 + + file-dnd: only accept launchers as DnD targets + + Not random desktop files. + +M libnemo-private/nemo-file-dnd.c + +commit b241fd28913e87fe01419e4922259949a11c973f +Author: Cosimo Cecchi +Date: 2012-03-07 + + file: don't consider all desktop files nemo links + + Only those which match application/x-desktop directly. + +M libnemo-private/nemo-file.c + +commit 1ef720295bc14630522f2496d194c7c43ccc016a +Author: Cosimo Cecchi +Date: 2012-03-07 + + directory-async: remove code that was never executed + + The ifdef is never defined, so we should just remove this code. + +M libnemo-private/nemo-directory-async.c + +commit b4877e5bb19d99936987dc9507fba273a55c3a5a +Author: Cosimo Cecchi +Date: 2012-03-07 + + properties-window: fix packing for desktop file properties box + + Fallout from GtkTable->GtkGrid migration. + +M src/nemo-properties-window.c + +commit cc05cdd37fa4e34164081222740c266ae5761508 +Author: Bruce Cowan +Date: 2012-03-07 + + Updated British English translation + +M po/en_GB.po + +commit aed94bad3ea8eaa6c603f8d85cbfb8cd1fd824fd +Author: Arash Mousavi +Date: 2012-03-06 + + Updated Persian Translation + +M po/fa.po + +commit 36b1557baf6ecc923e821d417531895640195c4f +Author: Bruno Brouard +Date: 2012-03-06 + + Updated French translation + +M po/fr.po + +commit 34e74c768d5f39a65056716429a84306c3901992 +Author: Matej Urbančič +Date: 2012-03-06 + + Updated Slovenian translation + +M po/sl.po + +commit b1c3776dd91c29e4e9c1f020c24bb039ef730962 +Author: Inaki Larranaga Murgoitio +Date: 2012-03-06 + + Updated Basque language + +M po/eu.po + +commit 7fdd100f259046f86500da3eb64cf10bceaba2bd +Author: Cosimo Cecchi +Date: 2012-03-05 + + build: bump required GTK version to 3.3.17 + + I.e. the current git master. + +M configure.in + +commit df2cf158aa93e2d395b57ce2a1bf4b89bac20709 +Author: Cosimo Cecchi +Date: 2012-03-05 + + release: prepare for 3.3.91 + +M NEWS +M configure.in + +commit ab5077e0bce77af4cad87a20fec8099e3db0bcc0 +Author: Michael Terry +Date: 2012-03-05 + + slot: don't ref the NemoWindowSlot when setting floating bar + timeout + + We cancel the timeout on destruction already, and if a destroy event + happens in between the timeout, this would break the assumption in + NemoWindowPane that all its slots were removed during its + destruction. + + https://bugzilla.gnome.org/show_bug.cgi?id=670591 + +M src/nemo-window-slot.c + +commit 819a5d14a33d95ba5ef25a3becec4ebccb93807b +Author: Michael Terry +Date: 2012-03-05 + + file-operations: use the right prototype for empty trash callback + + When unmounting, we might first prompt whether the trash should be + emptied or not on the target volume. If we do so, make sure the + callback + from the empty trash job has the right prototype, to avoid crashing + later trying to interpret a gboolean as a pointer to a data structure. + + https://bugzilla.gnome.org/show_bug.cgi?id=670595 + +M libnemo-private/nemo-file-operations.c + +commit 503443418709c9fb42af52c90c035b3957b0686e +Author: Cosimo Cecchi +Date: 2012-03-05 + + pathbar: copy implementation of an event window from the GTK copy + + In order to listen for scroll events on the whole pathbar area, + we need + to create an event window in realize(), created with GDK_SCROLL_MASK. + Copy the code from GtkPathBar that implements this. + +M src/nemo-pathbar.c +M src/nemo-pathbar.h + +commit 04116ab2876412445c788091be07d7f7321a4a94 +Author: Cosimo Cecchi +Date: 2012-03-05 + + pathbar: sync with GTK master to make scrolling work again + +M src/nemo-pathbar.c + +commit 4c83328a0ba2d511fea8cefe1464269fbaa1b35f +Author: Cosimo Cecchi +Date: 2012-03-05 + + Revert "Revert "Fix up accidental error in last commit"" + + Having people randomly commit unapproved controversial changes to + the UI + during UI freeze is so awesome... + + This reverts commit 50a174cfbf288f07d2f9bf44f31af41dc1535df8. + +M src/nemo-view.c + +commit 29a050d986bd5fd86ef522617966768c8c40beb7 +Author: Cosimo Cecchi +Date: 2012-03-05 + + Revert "Revert "Use ctrl-delete as the keyboard shortcut to trash + files"" + + Having people randomly commit unapproved controversial changes to + the UI + during UI freeze is so awesome... + + This reverts commit 6c21b39cd9d22de4c92ab214e647e65fbfdfe9ac. + +M src/nemo-view.c + +commit 6c66de56871a7201c6b0c13d216a237a2e4a4af3 +Author: Hannie Dumoleyn +Date: 2012-03-04 + + Updated Dutch translation + +M po/nl.po + +commit 24bbb0d39a285546538961d917a070f1ead27bed +Author: Arash Mousavi +Date: 2012-03-04 + + Updated Persian Translations + +M po/fa.po + +commit 4a0dcfa280ebf9ade975fbefc470f9d3334b1175 +Author: Nguyễn Thái Ngọc Duy +Date: 2012-03-04 + + Updated Vietnamese translation + +M po/vi.po + +commit 46ba80571e73335fa2fde48529e73b6f2b3f0453 +Author: Nguyễn Thái Ngọc Duy +Date: 2012-03-03 + + po/vi: import from Damned Lies + +M po/vi.po + +commit 55660df03074e3759a88fd5cf4a45d0a0ce8830a +Author: Gabor Kelemen +Date: 2012-03-04 + + Updated Hungarian translation + +M po/hu.po + +commit 2c289a073bd0ff4b779f70885566b0783534a1da +Author: Daniel Korostil +Date: 2012-03-02 + + Uploaded Ukranian + +M po/uk.po + +commit 202b772a7b6fcd7ac758011935cc0eb4eca8454e +Author: Mario Blättermann +Date: 2012-02-29 + + [l10n] Updated German translation + +M po/de.po + +commit 6c21b39cd9d22de4c92ab214e647e65fbfdfe9ac +Author: Xavier Claessens +Date: 2012-02-27 + + Revert "Use ctrl-delete as the keyboard shortcut to trash files" + + This reverts commit cce40272e35b20b4aaf5f93109a05b7bb89704d5. + +M src/nemo-view.c + +commit 50a174cfbf288f07d2f9bf44f31af41dc1535df8 +Author: Xavier Claessens +Date: 2012-02-27 + + Revert "Fix up accidental error in last commit" + + This reverts commit c6279ac229545d7f64b64212383df2753482e233. + +M src/nemo-view.c + +commit f8f2aa2c1caa6c3eb2ad801f9b1644b505ec1e3f +Author: Dr.T.Vasudevan +Date: 2012-02-26 + + updated Tamil translation + +M po/ta.po + +commit b1de3f789a3271d459815ec6d04ece342ebf8d1c +Author: Dr.T.Vasudevan +Date: 2012-02-26 + + updated Tamil translation + +M po/ta.po + +commit b4272502dbdb48656502679e364c25ea945e1945 +Author: Dr.T.Vasudevan +Date: 2012-02-26 + + updated Tamil translation + +M po/ta.po + +commit 9c0bf9befaa286a96b4300d462954de003708340 +Author: A S Alam +Date: 2012-02-26 + + update Punjabi Translation + +M po/pa.po + +commit 94463615ff55a9217470054084f4af8e819ee9c8 +Author: Abderrahim Kitouni +Date: 2012-02-23 + + Updated Arabic translation by Ibrahim Saed and Abderrahim Kitouni + +M po/ar.po + +commit 73929f70316bd2b120a67725fdd43bc5a996149b +Author: Mattias Põldaru +Date: 2012-02-22 + + [l10n] Updated Estonian translation + +M po/et.po + +commit ab0af563ecfd50632cbb8491e634282a0f15ea07 +Author: Mattias Põldaru +Date: 2012-02-22 + + [l10n] Updated Estonian translation + +M po/et.po + +commit fa8997416110581ed48979fdf873f8fe28fcf87b +Author: Ask H. Larsen +Date: 2012-02-20 + + Updated Danish translation + +M po/da.po + +commit b05d9fd27463054916f84626f4d1a8daf9543d18 +Author: Мирослав Николић +Date: 2012-02-20 + + Updated Serbian translation + +M po/sr.po +M po/sr@latin.po + +commit 30f1d93169661d1493ffca3baace20577bed4a3a +Author: Cosimo Cecchi +Date: 2012-02-20 + + release: prepare for 3.3.90 + +M NEWS +M configure.in + +commit 3da42acd7a4da971294708e683394a2292c54c12 +Author: Cosimo Cecchi +Date: 2012-02-20 + + build: link eel and libnemo-private to libm + +M eel/Makefile.am +M libnemo-private/Makefile.am + +commit 6fecf4844d5ae749c83a943af950ee594fc2e73d +Author: Cosimo Cecchi +Date: 2012-02-20 + + file: add a default empty implementation of set_metadata methods + + Otherwise we will segfault for subclasses of NemoFile that don't + override the method. + + https://bugzilla.gnome.org/show_bug.cgi?id=669735 + https://bugzilla.gnome.org/show_bug.cgi?id=669711 + +M libnemo-private/nemo-file.c + +commit 9fda64f91fdbd470e8a84991427dd1e9cb0b8ebf +Author: Ihar Hrachyshka +Date: 2012-02-20 + + Updated Belarusian translation. + +M po/be.po + +commit 67c5ba88c073c0a6620f22d7223d2bd3b450f499 +Author: Ihar Hrachyshka +Date: 2012-02-20 + + Updated Belarusian translation. + +M po/be.po + +commit f6f651bff8f5961ea4577c7aaa81ada8263a74da +Author: Kjartan Maraas +Date: 2012-02-20 + + Updated Norwegian bokmål translation + +M po/nb.po + +commit 448c7991f3c2fb7c2434cd7a2dab8dfae399f609 +Author: Adam Matoušek +Date: 2012-02-20 + + Updated Czech translation + +M po/cs.po + +commit c3f5c2afdd1f740576029544d21e732759e54ba0 +Author: Daniel Nylander +Date: 2012-02-19 + + Updated Swedish translation + +M po/sv.po + +commit 720b994d93d62f346e0cde181bdfc1817916f13c +Author: Yaron Shahrabani +Date: 2012-02-18 + + Updated Hebrew translation. + +M po/he.po + +commit 0d4de6246689ab67b40dad1d206114915589d18f +Author: Chao-Hsiung Liao +Date: 2012-02-18 + + Updated Traditional Chinese translation(Hong Kong and Taiwan) + +M po/zh_HK.po +M po/zh_TW.po + +commit ea10e1a45f11ea3771b92f411a0817fd9049fc88 +Author: Jiro Matsuzawa +Date: 2012-02-17 + + [l10n] Update Japanese translation + +M po/ja.po + +commit d5cc4631ee4366bcf7f33c78bf193eb0e1cbb8b0 +Author: Luca Ferretti +Date: 2012-02-16 + + l10n: Updated Italian translation + +M po/it.po + +commit 41106223c6124fb8b427810a3e9a5b9d270777fa +Author: Fábio Nogueira +Date: 2012-02-16 + + Updated Translator Credits in Brazilian Portuguese Translation + +M po/pt_BR.po + +commit 8b21dc1de851f4e49a791cb2d878570e26985975 +Author: Alexander Shopov +Date: 2012-02-16 + + Updated Bulgarian translation + +M po/bg.po + +commit 570266ce8c0ccd0e2382cd6cf5fdd59339b9a7c1 +Author: Yuri Myasoedov +Date: 2012-02-15 + + Updated Russian translation + +M po/ru.po + +commit a7843cb0d1bff3deafed93d9c9e2c7d8d6ebf458 +Author: Daniel Mustieles +Date: 2012-02-15 + + Updated Spanish translation + +M po/es.po + +commit 4421b79de801efd5fbd7d6ef6666e2b0e3b813f9 +Author: Fran Diéguez +Date: 2012-02-14 + + Updated Galician translations + +M po/gl.po + +commit 2c7b82f2d3712f08dc940828b7a4b4de55164621 +Author: Cosimo Cecchi +Date: 2012-02-14 + + undo: add ngettext plural forms for undo operation strings + + Even if we don't use those strings for singular cases, this is still + needed, since some languages might need to use the singular form for + e.g. the x1st item. + See: https://live.gnome.org/TranslationProject/DevGuidelines/Plurals + + https://bugzilla.gnome.org/show_bug.cgi?id=669889 + +M libnemo-private/nemo-file-undo-operations.c + +commit 01382c267728e2dd00cc8b48cd6024dbae183345 +Author: Cosimo Cecchi +Date: 2012-02-13 + + pane: don't make the toolbar for inactive pane insensitive + + At the same time, we have to listen for events on the toolbar items to + set the active pane. + +M src/nemo-search-bar.c +M src/nemo-search-bar.h +M src/nemo-window-menus.c +M src/nemo-window-pane.c + +commit 3787143f2bcf576a9b75600b40a324454b25beca +Author: Cosimo Cecchi +Date: 2012-02-13 + + pane: set a style class on the inactive window pane to style it + + Set a "nemo-inactive-pane" style class on the inactive + NemoWindowPane; this allows us to theme the inactive pane + state way + more easily and removes a bunch of setup code. + +M libnemo-private/nemo-icon-container.c +M libnemo-private/nemo-icon-container.h +M libnemo-private/nemo-icon-private.h +M src/nemo-icon-view.c +M src/nemo-list-view.c +M src/nemo-view.c +M src/nemo-view.h +M src/nemo-window-pane.c +M src/nemo-window-pane.h +M src/nemo-window.c + +commit 31dad6f9fa05dc64fc1ead54bdad9bbae4bfa713 +Author: Cosimo Cecchi +Date: 2012-02-13 + + icon-canvas-item: don't override parent container style flags + + When drawing the canvas item elements, don't override the parent + container style flags, so we don't lose e.g. backdrop information. + +M libnemo-private/nemo-icon-canvas-item.c + +commit 457c9ccaf17e34366ea4bacb7d3a1a72094fb8d7 +Author: Baurzhan Muftakhidinov +Date: 2012-02-12 + + [l10n] Updated Kazakh translation + +M po/kk.po + +commit 47778be25cf65fbcd0151093fc7e2b3aa14b229c +Author: Cosimo Cecchi +Date: 2012-02-11 + + floating-bar: add "floating-bar" style class + +M src/nemo-floating-bar.c + +commit ef34e92b4c685c25e36d67b8b266ac6bff1489f0 +Author: Yuri Myasoedov +Date: 2012-02-11 + + Updated Russian translation + +M po/ru.po + +commit 8d064c5e5782e98bb63836b92847ff1260f4b77f +Author: Tiffany Antopolski +Date: 2012-02-10 + + po: updated en_CA.po + +M po/en_CA.po + +commit cd497dd43fabc6b9aa679fd326bb0f16334dbd59 +Author: Cosimo Cecchi +Date: 2012-02-08 + + undo: fix a double free in the Create operation strings func + + https://bugzilla.gnome.org/show_bug.cgi?id=669691 + +M libnemo-private/nemo-file-undo-operations.c + +commit 071f40683bda36eb47df8a2c536da282b9fb04e6 +Author: Cosimo Cecchi +Date: 2012-02-06 + + release: prepare for 3.3.5 + +M NEWS +M configure.in + +commit b7a3fddf60aaeac95f85259b2d83fc3cde81959f +Author: Cosimo Cecchi +Date: 2012-02-06 + + places-sidebar: change the way we restore selection on update + + Instead of checking whether the URI of every item we add is a + candidate + for selection, cycle through all the added items after inserting. + This also fixes a bug where the GtkTreeIter we used for keeping + track of + the last added item was not up-to-date with the actual cell, since the + sort function we apply to the items will modify the position of + the item + in the tree itself, making the iter invalid. + + https://bugzilla.gnome.org/show_bug.cgi?id=668212 + +M src/nemo-places-sidebar.c + +commit 7e7a21daf15055aab8639ba684ce34a6683073fa +Author: Cosimo Cecchi +Date: 2012-02-06 + + places-sidebar: don't use an additional GtkTreeModelFilter + + We were using it just for GtkTreeDragSourceIface, which we can + implement + ourselves. + +M src/nemo-places-sidebar.c + +commit 7c5ebdbbd3c7778af230fc830b5bc6bd706f1d61 +Author: Cosimo Cecchi +Date: 2012-02-06 + + window-manage-views: fix a crash when middle-clicking desktop icons + + We were hitting an assertion when middle clicking a desktop icon, + since + we were trying to open it in a tab (same window), and we don't really + want to do that on the desktop. + + https://bugzilla.gnome.org/show_bug.cgi?id=655576 + +M src/nemo-window-manage-views.c + +commit 4abf11d07e8d8bc86523e105db9c6c76f29e9643 +Author: Cosimo Cecchi +Date: 2012-02-06 + + window: simplify code a bit + + Don't export nemo_window_update_split_view_actions_sensitivity(), + but alwauys call it from + nemo_window_update_show_hide_menu_items(), + since that's what the code always does. + + https://bugzilla.gnome.org/show_bug.cgi?id=669189 + +M src/nemo-window-menus.c +M src/nemo-window-private.h +M src/nemo-window.c + +commit 2626eacbd9883161d7d3b14f4e1c56a02e3eb7ce +Author: Cosimo Cecchi +Date: 2012-02-06 + + pane: don't forget to update the split view actions when closing + a slot + + In case a slot close is requested, we should still update the + split view + actions sensitivity/state. + + https://bugzilla.gnome.org/show_bug.cgi?id=669189 + +M src/nemo-window-pane.c + +commit e8c4685f033b11034fa24007c558b8fc347024d3 +Author: Cosimo Cecchi +Date: 2012-02-06 + + desktop-background: stop any pending crossfades on widget destruction + + Internally, GnomeBGCrossfade depends on the GdkWindow we pass on to + gnome_bg_crossfade_start() to be available during the whole crossfade. + If our widget is destroyed, we have to immediately stop the crossfade, + without waiting our finalization step, which happens after the widget + is already gone. + +M libnemo-private/nemo-desktop-background.c + +commit 91fc1674ae71d356b06b8b549e91782a2b06758a +Author: Cosimo Cecchi +Date: 2012-02-06 + + desktop-background: unref the GnomeBG on finalize + + This also prevents signals being emitted from it after our + destruction, + as in https://bugzilla.gnome.org/show_bug.cgi?id=665796 + +M libnemo-private/nemo-desktop-background.c + +commit 9d0f892656282519059d65f10db7504ad4910b22 +Author: Cosimo Cecchi +Date: 2012-02-06 + + pane: don't access invalid memory + + slot->pane is already cleared in nemo_window_slot_dispose(), which + will get called while the slot is destroyed; setting it here can cause + an invalid memory access. + +M src/nemo-window-pane.c + +commit 1bfe1dd449bdfb80e58f6f149d87c153f13962f2 +Author: Piotr Drąg +Date: 2012-02-04 + + Updated Polish translation + +M po/pl.po + +commit 6b2e19cb9957f0685eb561a6e22c1be6730e6fee +Author: Cosimo Cecchi +Date: 2012-01-31 + + undo: fix logic in the file operation callback + + This caused some actions not to be scheduled for redo. + +M libnemo-private/nemo-file-undo-operations.c + +commit c4099c1a20c0502dd7a12e0d1ffbfe70d4bf527a +Author: Cosimo Cecchi +Date: 2012-01-30 + + application: fix an unfortunate typo + + We were allocating the wrong size for the NemoApplication private + structure. + +M src/nemo-application.c + +commit d60b724d5ee183b1074a137d9cc24c22b3a2259d +Author: Cosimo Cecchi +Date: 2012-01-30 + + undo: fix Redo Trash not updating the trashed mtime + + When we redo a trash operation, we should make sure our trashed files + hash table stores the updated timestamp when we trashed the file + again, + or we won't be able to trash them again. + +M libnemo-private/nemo-file-undo-operations.c + +commit 2a02b02328e20ac66b8cb71140681fdd0ac384ff +Author: Cosimo Cecchi +Date: 2012-01-30 + + undo: make sure to correctly clear the undo state on operation finish + + Don't stack allocate the struct for the file operations return value, + and make sure we don't return success for a failed operation. + +M libnemo-private/nemo-file-undo-operations.c + +commit 2944be953ef54717bb24968b0eebe468c9705db4 +Author: Chao-Hsiung Liao +Date: 2012-01-29 + + Updated Traditional Chinese translation(Hong Kong and Taiwan) + +M po/zh_HK.po +M po/zh_TW.po + +commit 56a0b14e55239bf5076f1c73b30f534af1dd1a86 +Author: Matej Urbančič +Date: 2012-01-28 + + Updated Slovenian translation + +M po/sl.po + +commit f34c331ca81e4bafd6db4c6c36c7b3625c674278 +Author: Matej Urbančič +Date: 2012-01-28 + + Updated Slovenian translation + +M po/sl.po + +commit 3738ee50a11a2d3997c470cb19a23521c60c256e +Author: Yaron Shahrabani +Date: 2012-01-28 + + Updated Hebrew translation. + +M po/he.po + +commit 247a27a94b28304dbb0b4aaf2ff783d0d909a73c +Author: Timo Jyrinki +Date: 2012-01-24 + + Updated Finnish translation. + +M po/fi.po + +commit 9736b263c7830dad6c9de6b42f131395201b993b +Author: Cosimo Cecchi +Date: 2012-01-23 + + undo: remove some URI->GFile roundtrips in the trash undo operations + + We can just store GFiles directly in the hash table and use + g_file_hash() and g_file_equal() instead of parsing the URIs + ourselves. + +M libnemo-private/nemo-file-undo-operations.c + +commit 211d4429171e6d3e307cb175513077f61c86b640 +Author: Cosimo Cecchi +Date: 2012-01-23 + + undo: don't provide any free function for trashed hashtable values + + No need to call g_free() anymore. + +M libnemo-private/nemo-file-undo-operations.c + +commit 3c3096371bb8fda0766c59c9467eb8ed24ed67cf +Author: Arthur Taylor +Date: 2012-01-22 + + Make rubberband fade obey gtk animation setting. + + The rubberband fade-out effect should observe the gtk animation + setting, intened to make life easier for people running + resource contrained setups (like X11 over a network.) + + Signed-off-by: Arthur Taylor + +M libnemo-private/nemo-icon-container.c + +commit 125cc4026585b760071db630ffd6edcce1ad8c93 +Author: Kjartan Maraas +Date: 2012-01-23 + + Updated Norwegian bokmål translation + +M po/nb.po + +commit 7b74cfc6fd6279599753f777620e2537d1f23e61 +Author: Daniel Mustieles +Date: 2012-01-23 + + Updated Spanish translation + +M po/es.po + +commit 45a2f47e35002b316cb8ccb94073deaa6bb75850 +Author: Fran Diéguez +Date: 2012-01-22 + + Updated Galician translations + +M po/gl.po + +commit 362fb6464b62d6fed896d1bc53f6fc763f8fa6fb +Author: Cosimo Cecchi +Date: 2012-01-21 + + undo: rework undo for the trash operation to be asynchronous + + Also, make the mtime checks actually useful; we need to check the + trash::deletion-date attribute and match it with the time we + trashed the + file (which we can easily know using g_get_current_time()). + +M libnemo-private/nemo-file-operations.c +M libnemo-private/nemo-file-undo-operations.c +M libnemo-private/nemo-file-undo-operations.h + +commit c063418e66ed0fdc40b4fd48bc5bd29c0cbefa09 +Author: Cosimo Cecchi +Date: 2012-01-21 + + undo: fix undo move to trash + + We were querying the mtime of the trashed file after it was already + trashed, and we were also overflowing the guint64 assigning -1 to it. + +M libnemo-private/nemo-file-operations.c + +commit bf38d260d1011c08f5e36f3d7d78e10244627e16 +Author: Cosimo Cecchi +Date: 2012-01-21 + + undo: always complete the apply action in idle + + The action might be synchronous. + +M libnemo-private/nemo-file-undo-operations.c + +commit 89cc154cee3e64a771499d21f410854ecc5cd8ad +Author: Piotr Drąg +Date: 2012-01-21 + + Updated POTFILES.in + +M po/POTFILES.in + +commit f8e8507dcfa98e21a1454cb5290b071abec680e4 +Author: Daniel Mustieles +Date: 2012-01-21 + + Updated Spanish translation + +M po/es.po + +commit 5f338fc07e288dcc2ff6e141edc42aade01da284 +Author: Cosimo Cecchi +Date: 2012-01-20 + + undo: remove NemoFileUndoTypes + +M libnemo-private/Makefile.am +D libnemo-private/nemo-file-undo-types.h + +commit 3f45de05a6a87c8d432e94375f714c3da1f8fc34 +Author: Cosimo Cecchi +Date: 2012-01-20 + + view: use NemoFileUndoInfo directly + + Get the info object from the manager and use that to build menus. + +M src/nemo-view.c + +commit aac633c6d66d7dd9753b645e88657a7f6257e8eb +Author: Cosimo Cecchi +Date: 2012-01-20 + + file/file-operations: adapt to changes in file undo manager + + And fix some typos. + +M libnemo-private/nemo-file-operations.c +M libnemo-private/nemo-file-private.h +M libnemo-private/nemo-file.c + +commit 1f758301ee89b5f96bcb650f039696a7049fac44 +Author: Cosimo Cecchi +Date: 2012-01-20 + + file-undo-manager: use NemoFileUndoInfo + + Rework NemoFileUndoManager to use the new NemoFileUndoInfo + objects. + At the same time, make it use a single item instead of a queue, + turning + it into a state machine. This has various reasons; from a code + perspective, if we keep a stack of operations, we should also + keep track + and invalidate items in there when something changes on the + filesystem, + but this can be very expensive. + On the other hand in the UI we probably don't want to expose more than + one item anyway. + +M libnemo-private/nemo-file-undo-manager.c +M libnemo-private/nemo-file-undo-manager.h + +commit 69e79e2f9d3c8c2bbae4a0a32e58f42385c662b4 +Author: Cosimo Cecchi +Date: 2012-01-20 + + undo: turn NemoFileUndoData into NemoFileUndoInfo + + Make it a GObject with subclasses for each type of operations. + This allows for easy sharing of the base class object with the view as + well, for menu information, and provides an async API to the undo + manager for the file operation. + +M libnemo-private/nemo-file-operations.c +M libnemo-private/nemo-file-private.h +M libnemo-private/nemo-file-undo-operations.c +M libnemo-private/nemo-file-undo-operations.h +M libnemo-private/nemo-file-undo-types.h +M libnemo-private/nemo-file.c + +commit 44b695b9af6a26fbf2979a19fd638cc3682c89bb +Author: Cosimo Cecchi +Date: 2012-01-18 + + file-operations: first pass at passing on success information + + We want to know if a file operation failed for some reason, so that we + don't add it in the redo queue. + +M libnemo-private/nemo-file-operations.c +M libnemo-private/nemo-file-operations.h +M libnemo-private/nemo-file-undo-manager.c +M libnemo-private/nemo-file-undo-manager.h +M libnemo-private/nemo-file-undo-operations.c +M libnemo-private/nemo-file-undo-operations.h +M libnemo-private/nemo-file-undo-types.h +M src/nemo-places-sidebar.c +M src/nemo-properties-window.c +M src/nemo-tree-sidebar.c +M src/nemo-view.c +M test/test-copy.c + +commit f76844a3208033a97532222ce531bd9a04205871 +Author: Cosimo Cecchi +Date: 2012-01-16 + + undo: pass in a GtkWindow for undo operations + + So that dialogs triggered by the file operations can correctly be + parented. + +M libnemo-private/nemo-file-undo-manager.c +M libnemo-private/nemo-file-undo-manager.h +M libnemo-private/nemo-file-undo-operations.c +M libnemo-private/nemo-file-undo-types.h +M src/nemo-view.c + +commit dcf5d6796b5adc13a4b03d36f30d9f15025e9df9 +Author: Amos Brocco +Date: 2012-01-16 + + undo: introduce undo support + +M libnemo-private/Makefile.am +M libnemo-private/nemo-debug.c +M libnemo-private/nemo-debug.h +M libnemo-private/nemo-file-operations.c +M libnemo-private/nemo-file-private.h +A libnemo-private/nemo-file-undo-manager.c +A libnemo-private/nemo-file-undo-manager.h +A libnemo-private/nemo-file-undo-operations.c +A libnemo-private/nemo-file-undo-operations.h +A libnemo-private/nemo-file-undo-types.h +M libnemo-private/nemo-file.c +M src/nemo-directory-view-ui.xml +M src/nemo-shell-ui.xml +M src/nemo-view.c +M src/nemo-window-menus.c + +commit 88f18618ba15b952a739e410b910508f244b1fc3 +Author: Vincent Untz +Date: 2012-01-19 + + build: Support build against tracker 0.13/0.14 + + https://bugzilla.gnome.org/show_bug.cgi?id=667853 + +M configure.in + +commit b65b13f59e0bb20497751a5c13ea85ccb7ebb2ba +Author: Daniel Mustieles +Date: 2012-01-17 + + Updated Spanish translation + +M po/es.po + +commit 01a2c0affada3157cf5b7b8147e27d6a0a0151dc +Author: Fran Diéguez +Date: 2012-01-17 + + Updated Galician translations + +M po/gl.po + +commit 3795ec8883676e367be1d7f9d6314a1a7e781fd7 +Author: Cosimo Cecchi +Date: 2012-01-16 + + notebook: use a symbolic icon for the tab close image + +M src/nemo-notebook.c + +commit 1a5cc61ae329d3776e8d75fd46b0e9326f0e7654 +Author: Kjartan Maraas +Date: 2012-01-16 + + Updated Norwegian bokmål translation + +M po/nb.po + +commit 8ff0ae7d645b4c076977ab889b46a20392d3da25 +Author: Cosimo Cecchi +Date: 2012-01-16 + + release: prepare for 3.3.4 + +M NEWS +M configure.in + +commit 8c778211e5c826998890d2034b828928c693e4d9 +Author: Carlos Garnacho +Date: 2012-01-12 + + eel: Queue resizes on the canvas as elements change visibility + + Not queueing resizes may play oddly with the size request caches in + GTK+, resulting in gtk_widget_get_preferred_width/height returning + 0 even after the canvas was populated. + + https://bugzilla.gnome.org/show_bug.cgi?id=667831 + +M eel/eel-canvas.c + +commit f1bb90717ba78533905d3f532940a390371a979c +Author: Cosimo Cecchi +Date: 2012-01-16 + + build: add nemo.gresource.xml to EXTRA_DIST + + Fix distcheck. + +M src/Makefile.am + +commit 132bf6802d9e36354e89469f3ef0b5daa1082299 +Author: Cosimo Cecchi +Date: 2012-01-16 + + extension: doc cleanups + +M docs/reference/libnemo-extension/Makefile.am +M +docs/reference/libnemo-extension/libnemo-extension-docs.xml +M +docs/reference/libnemo-extension/libnemo-extension-sections.txt + +commit e79c28b48008ed5e94763417b4a68b86ffcfd919 +Author: Cosimo Cecchi +Date: 2012-01-16 + + extension: add some more missing gir annotations + +M libnemo-extension/nemo-column-provider.c +M libnemo-extension/nemo-menu-provider.c +M libnemo-extension/nemo-menu.c +M libnemo-extension/nemo-property-page-provider.c + +commit f04f79a424a03127c4d3ab44bd1363ff00ade212 +Author: Cosimo Cecchi +Date: 2012-01-16 + + build: update gitignore + +M data/.gitignore +M src/.gitignore + +commit 607c8a11f41d7f1a49f67421d4b98a6edbcbcee5 +Author: Cosimo Cecchi +Date: 2012-01-16 + + module: don't access the GModule if none was returned + + Before checking if the GModule pulls in ORBit, we should make sure + g_module_open() returned a non-NULL GModule. + +M libnemo-private/nemo-module.c + +commit 024381aac07aeb7ed161913e601fcefbf4e3f990 +Author: Marcus Carlson +Date: 2012-01-16 + + file-operations: show current file counter and total files + + Change the file operation strings so that both the current file + counter + and the total number of files are shown in the UI. + + https://bugzilla.gnome.org/show_bug.cgi?id=606955 + +M libnemo-private/nemo-file-operations.c + +commit e0b3e63b6fedb8bd056c80647c43f4f388c3b1ed +Author: Cosimo Cecchi +Date: 2012-01-16 + + build: require latest GLib and GTK+ + + This is needed for the new resources API. + +M configure.in + +commit 733c890a5d7e4615b754accc0c7906545b9a0b59 +Author: Alexander Larsson +Date: 2012-01-12 + + Move all ui files and icons into resources + +M icons/Makefile.am +M libnemo-private/nemo-file-utilities.c +M libnemo-private/nemo-file-utilities.h +M libnemo-private/nemo-icon-canvas-item.c +M libnemo-private/nemo-thumbnails.c +M libnemo-private/nemo-ui-utilities.c +M libnemo-private/nemo-ui-utilities.h +M src/Makefile.am +M src/nemo-bookmarks-window.c +M src/nemo-desktop-icon-view.c +M src/nemo-file-management-properties.c +M src/nemo-icon-view.c +M src/nemo-list-view.c +M src/nemo-toolbar.c +M src/nemo-view.c +M src/nemo-window-menus.c +A src/nemo.gresource.xml + +commit d6291d9ae62de65deaafd72cf9f5a5e22e627cf3 +Author: Yaron Shahrabani +Date: 2012-01-14 + + Updated Hebrew translation. + +M po/he.po + +commit 1df7de8a1ab643ebefe3d8df7ab0343f36687299 +Author: Martin Pitt +Date: 2012-01-05 + + Lazily initialize notification service + + Avoid spawning the notification daemon at startup through querying + server caps. + Instead, cache the result in server_has_persistence() and initialize + it lazily. + + https://bugzilla.gnome.org/show_bug.cgi?id=667342 + +M src/nemo-progress-ui-handler.c + +commit 6010f04793f926d2cc3c3533ce2f8de3f24eccc6 +Author: Og B. Maciel +Date: 2012-01-12 + + Fixes wrong translation on warning about long filename. BGO #667495. + +M po/pt_BR.po + +commit 69cb7b536c0df4331b7c36aca9f71e67c8b19009 +Author: Timo Jyrinki +Date: 2012-01-12 + + Updated Finnish translation. + +M po/fi.po + +commit 6003b063ee2af39644d4138e52ae93bd5b513ac1 +Author: Cosimo Cecchi +Date: 2012-01-09 + + extension: add some annotations + +M libnemo-extension/nemo-file-info.c +M libnemo-extension/nemo-location-widget-provider.c + +commit 0d0eb9b50e5fd24a09bc2b9c141950fb75d86db3 +Author: Cosimo Cecchi +Date: 2012-01-09 + + window: make nemo_window_prompt_for_location() private + +M src/nemo-window-menus.c +M src/nemo-window.c +M src/nemo-window.h + +commit d01abc43d6bf016b573cbd0d6b6d0dc1bd127873 +Author: Cosimo Cecchi +Date: 2012-01-09 + + window: remove unused view-as-changed signal + +M src/nemo-window.c + +commit 006e8207d13da318aa912a860930dd79f04fb085 +Author: Cosimo Cecchi +Date: 2012-01-09 + + window: remove unused zoom-changed signal + +M src/nemo-window.c + +commit d48669776205bf7732601d73d2fddec5b44a53ef +Author: Cosimo Cecchi +Date: 2012-01-09 + + pane: remove useless assertion + + Now that the slots are direct pages of the GtkNotebook, there's + no need + to ensure the slot is in the pane's list, since we already assert on + gtk_notebook_page_num(slot) >= 0. + +M src/nemo-window-pane.c + +commit ec391bf3de51ab4ee7f510ab6570fc240a7754c0 +Author: Cosimo Cecchi +Date: 2012-01-09 + + slot: make NemoWindowSlot a GtkBox + + Simplifies management of the slot quite a bit. + +M src/nemo-notebook.c +M src/nemo-window-manage-views.c +M src/nemo-window-manage-views.h +M src/nemo-window-pane.c +M src/nemo-window-pane.h +M src/nemo-window-slot.c +M src/nemo-window-slot.h + +commit 283c4903139dc08b7b69afa117870e143cc64137 +Author: Cosimo Cecchi +Date: 2012-01-09 + + notebook: remove unused defines + +M src/nemo-notebook.c + +commit 115c960e939a1c1fa6db97a105fe92d0b70ecde8 +Author: Cosimo Cecchi +Date: 2012-01-09 + + slot: remove unused cases for NemoLocationChangeType + +M src/nemo-window-manage-views.c +M src/nemo-window-slot.h + +commit 1cb66dfb4c3750a142dfd3130613b52b1d386eff +Author: Cosimo Cecchi +Date: 2012-01-07 + + search-bar: remove unused focus-in signal + +M src/nemo-search-bar.c +M src/nemo-search-bar.h + +commit f49a5b864058cc5bb4b1534ab03e89d1e9fdbc34 +Author: Cosimo Cecchi +Date: 2012-01-07 + + window: move nemo_window_update_up_button() to NemoWindow + +M src/nemo-window-manage-views.c +M src/nemo-window-manage-views.h +M src/nemo-window-pane.c +M src/nemo-window-private.h +M src/nemo-window.c + +commit 2705e8019c6f6b3714b679788827c5c297798cf9 +Author: Cosimo Cecchi +Date: 2012-01-07 + + pane: cleanup + +M src/nemo-properties-window.c +M src/nemo-window-manage-views.c +M src/nemo-window-menus.c +M src/nemo-window-pane.c +M src/nemo-window-types.h +M src/nemo-window.c +M src/nemo-window.h + +commit 1af49b5dd84e9127785f2c507940574d6f62ecbf +Author: Cosimo Cecchi +Date: 2012-01-07 + + window: use g_clear_object + +M src/nemo-window-manage-views.c +M src/nemo-window-menus.c + +commit 4d22ba9b6100556bf6f81f827b38dc9ad0626ac3 +Author: Cosimo Cecchi +Date: 2012-01-06 + + window: nuke unused functions + +M src/nemo-window-manage-views.c +M src/nemo-window-manage-views.h + +commit ed97a6ec6db1a618bc65705618e5b73748e4cd7e +Author: Cosimo Cecchi +Date: 2012-01-06 + + all: use nemo_window_slot_get_window() + +M src/nemo-window-manage-views.c +M src/nemo-window-pane.c +M src/nemo-window-slot.c +M src/nemo-window.c + +commit f1f7bf476b3c932d13927e55292e8bd8b77b29d8 +Author: Cosimo Cecchi +Date: 2012-01-06 + + application: remove useless assignment + +M src/nemo-application.c + +commit e83f6e0990971ea22275bd9cf877541b7824ab14 +Author: Cosimo Cecchi +Date: 2012-01-06 + + pane: refactor to make NemoWindow a GObject property + +M src/nemo-window-pane.c + +commit 93923f66225434e42ef6bb8588e7d3fbdb3409a4 +Author: Cosimo Cecchi +Date: 2012-01-06 + + window: fold nemo_window_allow_up() into its only caller + +M src/nemo-window-manage-views.c +M src/nemo-window.c +M src/nemo-window.h + +commit f5db1b3062a42a649fbc11e4272399cfa70dc772 +Author: Cosimo Cecchi +Date: 2012-01-06 + + window: remove unused nemo_window_allow_back/forward + +M src/nemo-window.c +M src/nemo-window.h + +commit f784b5b57503e58c49a1d55b0c664096951c9018 +Author: Cosimo Cecchi +Date: 2012-01-06 + + pane: use nemo_navigation_state_set_boolean() + +M src/nemo-window-pane.c + +commit f3eff82082f4ebd88e01d3efbe2631a15989cfa9 +Author: Cosimo Cecchi +Date: 2012-01-06 + + navigation-state: add API to sync a boolean value on a tracked action + +M src/nemo-navigation-state.c +M src/nemo-navigation-state.h + +commit 9384542c1821420c01962237d23e9716bc5a8404 +Author: Cosimo Cecchi +Date: 2012-01-06 + + window: add nemo_window_get_navigation_state() + +M src/nemo-window-menus.c +M src/nemo-window-pane.c +M src/nemo-window.c +M src/nemo-window.h + +commit f876211d2e318580d1f28c57e7f0182f7c5bfb3a +Author: Cosimo Cecchi +Date: 2012-01-06 + + window: add nemo_window_get_main_action_group() + +M src/nemo-desktop-window.c +M src/nemo-window-menus.c +M src/nemo-window.c +M src/nemo-window.h + +commit 419d49de7dd714095fbd63dd7093fec5c07a52fb +Author: Cosimo Cecchi +Date: 2012-01-06 + + slot: fold function into the only caller + + Also simplify its code a bit. + +M src/nemo-window-slot.c + +commit 7289cc044cfaa3eee69396805d4e6dd8644a9483 +Author: Cosimo Cecchi +Date: 2012-01-06 + + slot: cleanup NemoWindowSlot creation + +M src/nemo-window-pane.c +M src/nemo-window-slot.c +M src/nemo-window-slot.h + +commit b09427273f525753b4b792bfdfb333e28c2e0ea9 +Author: Cosimo Cecchi +Date: 2012-01-06 + + window: misc cleanups + +M src/nemo-window-bookmarks.c +M src/nemo-window-private.h +M src/nemo-window.c + +commit 33a79d4ca73be9b45b19ff28cd702103a40333c5 +Author: Cosimo Cecchi +Date: 2012-01-06 + + window: move nemo_window_open_slot to NemoWindowPane + + Where it should really belong. + +M src/nemo-window-manage-views.c +M src/nemo-window-pane.c +M src/nemo-window-pane.h +M src/nemo-window-private.h +M src/nemo-window.c + +commit 0d83fdffed7b3c8987e19f6e5ef6f304f5efdb9d +Author: Cosimo Cecchi +Date: 2012-01-06 + + slot: don't include gi18n.h in the header + +M src/nemo-bookmarks-window.c +M src/nemo-progress-ui-handler.c +M src/nemo-view-dnd.c +M src/nemo-window-pane.c +M src/nemo-window-slot.c +M src/nemo-window-slot.h + +commit ac606bd25e13914c28702a5099905ead4e1c1510 +Author: Cosimo Cecchi +Date: 2012-01-06 + + all: use nemo_window_get_active_pane() + +M src/nemo-window-manage-views.c +M src/nemo-window-menus.c +M src/nemo-window-pane.c +M src/nemo-window.c + +commit 455c8da5981db559d7d47d9f9fcb8dac8297d4ac +Author: Cosimo Cecchi +Date: 2012-01-06 + + all: use nemo_window_get_active_slot() + +M src/nemo-location-bar.c +M src/nemo-window-bookmarks.c +M src/nemo-window-manage-views.c +M src/nemo-window-menus.c +M src/nemo-window-pane.c +M src/nemo-window-private.h +M src/nemo-window-slot.c +M src/nemo-window.c + +commit cc151a40cebda4ba7d4adc40c702f0210614105f +Author: Cosimo Cecchi +Date: 2012-01-02 + + window: remove bookmark menu placeholder path from NemoWindowClass + + It's not used by the only subclass we have now. + +M src/nemo-window-bookmarks.c +M src/nemo-window.c +M src/nemo-window.h + +commit 6c8896cfc1a52b0eec31bec3090ee5661af1931e +Author: Cosimo Cecchi +Date: 2012-01-02 + + window: remove nemo_window_get_window_type() + + It's unused now. + +M src/nemo-desktop-window.c +M src/nemo-window.c +M src/nemo-window.h + +commit f167ba4f3f3d571169c07584528e748391c5a833 +Author: Cosimo Cecchi +Date: 2012-01-02 + + view: don't use nemo_window_get_window_type() + + Just check if the view is a NemoDesktopIconView instead. + +M src/nemo-view.c + +commit 6561bf66c37ffcff450c7880300661ee260ec5c7 +Author: Cosimo Cecchi +Date: 2012-01-02 + + window: remove unused code + +M src/nemo-window-private.h +M src/nemo-window.c +M src/nemo-window.h + +commit b5316226924feb948de5f372962c7174ff8fa10d +Author: Cosimo Cecchi +Date: 2012-01-02 + + window: remove nemo_window_show_window() + + Fold it into the only caller, and simplify its code. + +M src/nemo-window.c +M src/nemo-window.h + +commit 1d06cfcff92afc46bcaf5b313a604b93d76cbdd9 +Author: Cosimo Cecchi +Date: 2012-01-02 + + window: remove useless assignment + +M src/nemo-window.c + +commit d84023681be2f192ccbd4fe5c3b07631c683911f +Author: Cosimo Cecchi +Date: 2012-01-02 + + window: simplify code + + Fold function into the only caller. + +M src/nemo-window.c + +commit 00ad5bc605488e15a6877ce94cbd0e4b1f42cdb1 +Author: Ihar Hrachyshka +Date: 2012-01-10 + + Updated Belarusian translation. + +M po/be.po + +commit 7aff7fb6b0e5b7717e06944c09de734270d85ed8 +Author: Diego Escalante Urrelo +Date: 2011-12-29 + + floating-bar: misc indentation fixes + +M src/nemo-floating-bar.c + +commit 2cd406307863c268d045487daeedeb36e22a19bf +Author: Alexander Shopov +Date: 2012-01-08 + + Updated Bulgarian translation + +M po/bg.po + +commit 669ab8445bb33f00dfeb6584fdc431ea942fda79 +Author: Nguyễn Thái Ngọc Duy +Date: 2012-01-06 + + Updated Vietnamese translation + +M po/vi.po + +commit f4d439875b3a101fa195012fb8a6607542e69b9a +Author: Nguyễn Thái Ngọc Duy +Date: 2012-01-06 + + po/vi: import from Damned Lies + +M po/vi.po + +commit 02c0d8b671ee9cd61374b28d1627ab8edff7fe41 +Author: Mattias Põldaru +Date: 2012-01-02 + + [l10n] Updated Estonian translation + +M po/et.po + +commit a9627858a6b49e505b97c210e95f0bafa91e0a90 +Author: Jovan Naumovski +Date: 2012-01-01 + + Updated Macedonian translation. + +M po/mk.po + +commit 54dd59e149edcc6d744bba5cd7576526e9b52075 +Author: Wylmer Wang +Date: 2011-12-27 + + Update Simplified Chinese translation + +M po/zh_CN.po + +commit aacde57c44b1259ed476507b6288416d999832f9 +Author: Andreas N +Date: 2011-12-26 + + Updated Norwegian Nynorsk translation + +M po/nn.po + +commit 1a050ded4c3625c56022a1d50b856cf298d1f2c2 +Author: Xandru Armesto +Date: 2011-12-22 + + Updated asturian translation + +M po/ast.po + +commit c6510f6b07caeeffacbfa062660e4fca0219d958 +Author: Jürg Billeter +Date: 2011-12-20 + + build: Add gmodule as dependency + + With GLib 2.31.4 and later, linking against GIO no longer drags in + gmodule. + +M configure.in + +commit 54ae064f753582a8b0745110b45724b99eb913a4 +Author: Cosimo Cecchi +Date: 2011-12-19 + + release: prepare for 3.3.3 + +M NEWS +M configure.in + +commit 2de1c3a4a0294006bbcf950f7473ff962848dc1c +Author: Cosimo Cecchi +Date: 2011-12-19 + + fdo-dbus: dist the DBus interface XML file + + Fixes distcheck + +M data/Makefile.am + +commit 642835db7ab148e44733206a09bf55cd14660e5a +Author: Cosimo Cecchi +Date: 2011-12-19 + + fdo-dbus: don't dist generated dbus sources + + Use nodist_nemo_SOURCES, like the generated object manager for + org.Nemo.FileOperations + +M src/Makefile.am + +commit f35e710d3c31fc2af5ddce9c31a52d408e215276 +Author: Cosimo Cecchi +Date: 2011-12-19 + + fdo-dbus: use the right include for nemo-debug.h + + Fixes distcheck + +M src/nemo-freedesktop-dbus.c + +commit 85af4ef2e58b45dcd40f6ba692b12e73c6cf6ffd +Author: Pierre Wieser +Date: 2011-12-19 + + Set icons from extensions on the context menu GtkActions + + This way, if icons are set to display in e.g. menus, extensions + one will + be properly shown. + + https://bugzilla.gnome.org/show_bug.cgi?id=665822 + +M libnemo-private/nemo-ui-utilities.c +M libnemo-private/nemo-ui-utilities.h +M src/nemo-view.c + +commit 773fdc3e2ba7fef4bf824c865a0f3aba14fc785a +Author: Stefano Teso +Date: 2011-12-04 + + places-sidebar: make Desktop dir bookmarkable if not shown by default + + See: https://bugzilla.gnome.org/show_bug.cgi?id=663956 + +M src/nemo-places-sidebar.c + +commit 2ee1b4060b1d99c67e528d626514968384277af5 +Author: Nelson Benitez Leon +Date: 2011-12-13 + + Show background menu when clicking on blank space + + Fixes bug 94618 + +M src/nemo-list-view.c + +commit 73b2f5e9de469f7997c8ab4d12f1aa542a4e7e54 +Author: Nelson Benitez Leon +Date: 2011-12-14 + + Fix race condition when right-clicking after rubberbanding + + Fixes bug 662979 + +M libnemo-private/nemo-icon-container.c + +commit 1fbc4002d38f42a5e9536dc3f1b59438d362d94e +Author: Petr Kovar +Date: 2011-12-15 + + Fix Czech translation + +M po/cs.po + +commit 6ed0cae9df696b816309b6c6d8fdb2660c66b922 +Merge: 11fa184 f01e2e9 +Author: Federico Mena Quintero +Date: 2011-12-14 + + Merge branch 'freedesktop-dbus' - bgo#636269 + + This adds an implementation for the DBus interface + org.freedesktop.NemoFileManager1. + + This lets applications call the file manager to show a file within + a folder, + to show a folder's contents, or to show a file's properties. + + The main work behind this is by Akshay Gupta , + done during the Google Summer of Code 2011. + +commit f01e2e9b5fa6dcd0514bdf5efe5f76b4312f1fd3 +Author: Federico Mena Quintero +Date: 2011-12-14 + + Add an org.freedesktop.NemoFileManager1.service file for DBus + + Even though this registers a service for a freedesktop name with + a Gnome-specific + program (Nemo), we'll just do this for now. + + Later we can discuss in the DBus list how to launch services with + generic + interfaces, but specific implementations for each desktop environment. + + Signed-off-by: Federico Mena Quintero + +M data/Makefile.am +A data/org.freedesktop.NemoFileManager1.service.in + +commit 73e5a35efcd7607d6a3ee5e8bd5e8278a86d6705 +Author: Federico Mena Quintero +Date: 2011-12-14 + + Remove superfluous helper function + + Signed-off-by: Federico Mena Quintero + +M src/nemo-properties-window.c + +commit 371e178550587cad04941493c6129e8e454223ab +Author: Cosimo Cecchi +Date: 2011-12-14 + + Use a single method to create properties windows + + Make startup_id a param of nemo_properties_window_present(). + +M src/nemo-freedesktop-dbus.c +M src/nemo-places-sidebar.c +M src/nemo-properties-window.c +M src/nemo-properties-window.h +M src/nemo-tree-sidebar.c +M src/nemo-view.c + +commit 6e02005986b78879f4d3e23342c90accfa241745 +Author: Cosimo Cecchi +Date: 2011-12-14 + + properties-window: parent_widget and startup_id are not mutual + + Even though we don't (yet) use the same code path when building a + properties window for a parent widget and for a startup_id + (i.e. there's + no call that sets both), there's no reason to make them mutually + exclusive in code when creating the window. + +M src/nemo-properties-window.c + +commit 326f5d86a5650d201c48acacaf77752d544668da +Author: Cosimo Cecchi +Date: 2011-12-14 + + fdo-dbus: coding style cleanups + +M src/nemo-freedesktop-dbus.c + +commit c0752563fe6f2a0454069b93c9a29dae11a2e833 +Author: Cosimo Cecchi +Date: 2011-12-14 + + fdo-dbus: handle g_file_get_parent() failing + + g_file_get_parent() can return NULL if the file is a root element. + Handle that case gracefully in the code. + +M src/nemo-freedesktop-dbus.c + +commit 8aa21c333115cec5eab0cd3965684b9b09dc7fa3 +Author: Cosimo Cecchi +Date: 2011-12-14 + + application: streamline code for creating selection list + +M src/nemo-application.c + +commit 14f7dd8cdbbe04b84c2b8f75134cefd45aaf9c4b +Author: Federico Mena Quintero +Date: 2011-12-13 + + Pass the startup_id when creating the properties window + + This completes the implementation of the DBus interface. + + Signed-off-by: Federico Mena Quintero + +M src/nemo-freedesktop-dbus.c + +commit 625dac4492e7daf7fef46c8dc4990da5d786efad +Author: Federico Mena Quintero +Date: 2011-12-13 + + Add nemo_properties_window_present_with_startup_id() + + This lets us pass a startup_id string instead of a parent_widget; + this will + be used from the Freedesktop DBus interface. + + Signed-off-by: Federico Mena Quintero + +M src/nemo-properties-window.c +M src/nemo-properties-window.h + +commit 9868b796ec9d4761512d0a948bf0d6438be6702c +Author: Federico Mena Quintero +Date: 2011-12-13 + + Don't use nested if()s when a single one will do + +M src/nemo-properties-window.c + +commit ebc2d0728553cded8dcb5f65d0075e2e7c9d277e +Author: Federico Mena Quintero +Date: 2011-12-13 + + Use g_clear_object() instead of verbose code + +M src/nemo-freedesktop-dbus.c + +commit 08c2044e7056a9d6113dbf3613ea6303b6f0180d +Author: Federico Mena Quintero +Date: 2011-12-13 + + Implement ShowItems() vs. ShowFolders() from the DBus interface + + We use the new nemo_application_open_location() to do this; + now we can distinguish 'open a location and select something + inside it', + vs. 'show a location'. + + Signed-off-by: Federico Mena Quintero + +M src/nemo-freedesktop-dbus.c + +commit 29ecfd7fb83c57289fc5e46a05cbead958f4b1ef +Author: Federico Mena Quintero +Date: 2011-12-13 + + Add nemo_application_open_location() + + This is a convenience function so that NemoFreedesktopDBus + can cause + the application to open a location and optionally select an item + within that location. + + Signed-off-by: Federico Mena Quintero + +M src/nemo-application.c +M src/nemo-application.h + +commit 3a899726ac482ae90f1b8fb52657ee80fef3a7fe +Author: Federico Mena Quintero +Date: 2011-12-13 + + Turn NemoFreeDesktopDBus into a GObject internally + + This is to match NemoDBusManager. + + Signed-off-by: Federico Mena Quintero + +M src/nemo-freedesktop-dbus.c + +commit 11fa1848dca3af78cd0f984f7c84f2214140f023 +Author: Rudolfs Mazurs +Date: 2011-12-13 + + Updated Latvian translation + +M po/lv.po + +commit 5294105677f371998043dde98a94847a1246c421 +Author: Ryan Lortie +Date: 2011-12-13 + + nemo application: use GActionMap + + g_application_set_action_group() is deprecated for favour of + GActionMap, + so use that instead. + + Bump the glib version dependency for GActionMap. + +M configure.in +M src/nemo-application.c + +commit 33ca9cd5b0be3dcf092b7174591ede34edf2346d +Author: Cosimo Cecchi +Date: 2011-12-08 + + eel: remove unused eel_accessibility_set_name/description + +M eel/eel-accessibility.c +M eel/eel-accessibility.h + +commit f78dee9affd9c88ce410c42cbf9c1118839d33d7 +Author: Cosimo Cecchi +Date: 2011-12-08 + + view: use ATK API directly to set accessible name/description + +M src/nemo-view.c +M src/nemo-window-manage-views.c + +commit c76dc41521c9327a7aa121f35e68e10b6783f740 +Author: Cosimo Cecchi +Date: 2011-12-07 + + application: add a compatibility dummy --browser cmdline option + + External scripts or desktop files from previous might still call + nemo with the --browser option, and it's bad to just fail in that + case. Add a dummy (and hidden) cmdline option that does nothing for + --browser. + + https://bugzilla.gnome.org/show_bug.cgi?id=665700 + +M src/nemo-application.c + +commit 4b497142b1c2361cf38c0804a283b8b419c3b623 +Author: Cosimo Cecchi +Date: 2011-12-07 + + man: remove reference to --browser option from the manual + + The option is not supported anymore since 3.0. + + https://bugzilla.gnome.org/show_bug.cgi?id=665700 + +M docs/nemo.1 + +commit ecf70ad6a66cc1450935e54ebffd95660ebc05a4 +Author: Akshay Gupta +Date: 2011-12-06 + + Implement ShowItemProperties() + +M src/nemo-freedesktop-dbus.c + +commit f65bd26d6f3691006c291f88e6c3b1add349d985 +Author: Federico Mena Quintero +Date: 2011-12-06 + + Allow creating a properties window with a NULL parent widget + + When the ShowItemProperties() DBus call comes in, it doesn't come from + a parent widget. Instead, it has a startup ID. So, we need + to be able to pass a NULL parent_widget to the properties window. + + Signed-off-by: Federico Mena Quintero + +M src/nemo-properties-window.c + +commit 5f3b0071d11cc864d135f35b7b85b07a5395f97a +Author: Akshay Gupta +Date: 2011-12-06 + + Implement ShowFolders() + + NemoApplication doesn't make a distinction between showing files + and showing folders, so for now we'll use the same implementation. + +M src/nemo-freedesktop-dbus.c + +commit 08b590a4c6014d6a91a525b3183d3266788703a4 +Author: Akshay Gupta +Date: 2011-12-06 + + Implement ShowItems() + + Unfortunately g_application_open() and NemoApplication don't + actually + use the startup_id. We will have to pass this in another fashion + later. + +M src/nemo-freedesktop-dbus.c + +commit e7dc7a27001dcadb8f7a2cafb26bbb3be724d801 +Author: Federico Mena Quintero +Date: 2011-12-06 + + Initialize the freedesktop DBus manager from NemoApplication + + Signed-off-by: Federico Mena Quintero + +M src/nemo-application.c + +commit e1a2bcecf4d4dea845194c943f82c60f8c6c6d36 +Author: Federico Mena Quintero +Date: 2011-12-06 + + Pass the NemoApplication to the freedesktop DBus manager + + Signed-off-by: Federico Mena Quintero + +M src/nemo-freedesktop-dbus.c +M src/nemo-freedesktop-dbus.h + +commit 456afcbb6042c8f1ab73f240e5be5eabd681e090 +Author: Federico Mena Quintero +Date: 2011-12-06 + + DBus boilerplate for handling the org.freedesktop.NemoFileManager1 service + + Signed-off-by: Federico Mena Quintero + +M src/Makefile.am +A src/nemo-freedesktop-dbus.c +A src/nemo-freedesktop-dbus.h + +commit aa01e30c0d3d585bd808ed1ab53c5ca396371cd1 +Author: Federico Mena Quintero +Date: 2011-12-06 + + Generate the org.freedesktop DBus code + + Signed-off-by: Federico Mena Quintero + +M src/.gitignore +M src/Makefile.am + +commit a3c387089e3bb9eaafe8b033bd334d151ccebe06 +Author: Akshay Gupta +Date: 2011-12-06 + + Add declaration for the org.freedesktop.NemoFileManager1 DBus interface + + This is not in dbus-interfaces.xml as that one has a different + namespace (org.gnome.Nemo), and that makes the generated + code from gdbus-codegen really ugly. By keeping a separate + file for this interface, we can get pretty generated code. + +A data/freedesktop-dbus-interfaces.xml + +commit 40be4b85f51fc7b192ef7421b2ede27954997cc8 +Author: Nelson Benitez Leon +Date: 2011-12-02 + + Make 'next row' behaviour work again by making it general According + to feedback on a11y list this should not hurt a11y. Fixes bug 660881 + +M libnemo-private/nemo-icon-container.c + +commit 2721796f86efd1e7e118c9531657e815bd1e0c60 +Author: Cosimo Cecchi +Date: 2011-12-05 + + idle-queue: remove unused NemoIdleQueue + +M libnemo-private/Makefile.am +M libnemo-private/nemo-directory-private.h +D libnemo-private/nemo-idle-queue.c +D libnemo-private/nemo-idle-queue.h + +commit 896a9cf4bbadfc19c6d69fa53bd9ea46cb81989c +Author: Rui Matos +Date: 2011-12-02 + + icon-container: use a threshold to start scrolling while rubberbanding + + This allows us to scroll while rubberbanding when the window is + maximized and + thus the pointer can't possibly leave the widget area. + + https://bugzilla.gnome.org/show_bug.cgi?id=665383 + +M libnemo-private/nemo-icon-container.c + +commit cdf858fbfccdbca7bd8fc27f0f85e815177ee8c6 +Author: Stefano Teso +Date: 2011-11-30 + + Avoid deprecate gtk_widget_get_pointer(). + +M libnemo-private/nemo-icon-container.c + +commit 0a5838004030f64d9f27c55a3f2f49275b82b79f +Author: Cosimo Cecchi +Date: 2011-12-02 + + properties-window: initiate a new row when no sibling is provided + + This was the original intent of this code. + +M src/nemo-properties-window.c + +commit 098aa9334123334d500c166f13dc47f5f110cd8a +Author: Cosimo Cecchi +Date: 2011-12-02 + + window: explicitly destroy the sidebar in _destroy() + + When the nemo window is destroyed, make sure to explicitly destroy + the sidebar before the panes. + Destroying all the panes can trigger a callback back into the sidebar, + which would then try to access the window pane list from the callback. + The pane list was already destroyed and cleared at that point though, + and we would segfault. + + https://bugzilla.gnome.org/show_bug.cgi?id=652320 + +M src/nemo-window.c + +commit 7e351fd5ead64be1343eea6d357a2edb25f9a721 +Author: Dmitry Shachnev +Date: 2011-12-01 + + Don't allow "New tab" (Ctrl+T) shortcut in desktop window + + Disable the New Tab action on the desktop. + + https://bugzilla.gnome.org/show_bug.cgi?id=655256 + +M src/nemo-desktop-window.c + +commit f1d9644efe457d84b9a18f250e85b5d70cb46620 +Author: Praveen Illa +Date: 2011-11-30 + + Updated Telugu Translation + +M po/te.po + +commit 780f8e4abf482628677e4f75ed502e1f18cf2411 +Author: Daniel Nylander +Date: 2011-11-25 + + Updated Swedish translation + +M po/sv.po + +commit cd99b28b903e0c3c69f142dd5c7977bb791d9cf1 +Author: Cosimo Cecchi +Date: 2011-11-23 + + places-sidebar: sort the XDG dirs section for the current locale + + The XDG dirs section should not hardcode an english ordering, + but follow + the current locale. + + https://bugzilla.gnome.org/show_bug.cgi?id=664464 + +M src/nemo-places-sidebar.c + +commit 786b34ff9abfae433956077a5feb2978d126ecfb +Author: Stas Solovey +Date: 2011-11-16 + + Updated Russian translation + +M po/ru.po + +commit a76dce8845b9bca8e01e67ad547ae158cff18456 +Author: Thura Hlaing +Date: 2011-11-14 + + [l10n]Added Burmese translation + +M po/LINGUAS +A po/my.po + +commit 3aeff5a3d2114b77126686bd642716b21f4aa014 +Author: Fran Diéguez +Date: 2011-11-13 + + Updated Galician translations + +M po/gl.po + +commit b81330c62d232af66c5be7186f2badabecd52673 +Author: Daniel Mustieles +Date: 2011-11-09 + + Updated Spanish translation + +M po/es.po + +commit 12bc05de21fed18ac985470fa55174629de6470f +Author: Kristjan SCHMIDT +Date: 2011-11-04 + + Updated Esperanto translation + +M po/eo.po + +commit aff2f078ef222f28a8a32408260efdfc7d8be8d9 +Author: Gabor Kelemen +Date: 2011-10-29 + + Fix a small mistranslation in the Hungarian po + +M po/hu.po + +commit 9208a93c2d3f85bcb10c05c1cfc55b33b545ca46 +Author: Yaron Shahrabani +Date: 2011-10-27 + + Updated Hebrew translation. + +M po/he.po + +commit f01c138bc3567cfedb476bcc4e2a66da8b3b38ee +Author: Kristjan SCHMIDT +Date: 2011-10-26 + + Updated Esperanto translation + +M po/eo.po + +commit b3dde943b7628bf32076b3e375256a775786d05b +Author: Cosimo Cecchi +Date: 2011-10-25 + + release: bump to 3.3.1.1 + + 3.3.1 was accidentally released with a wrong tarball, bump version and + roll a tarball again. + +M configure.in + +commit f18eb3a0b04ab8b094012bb5d0d2abb0bf7b7799 +Author: Cosimo Cecchi +Date: 2011-10-25 + + build: switch to XZ + +M configure.in + +commit 628c0566f7317c25f30991652a6192d7d8f4fbd8 +Author: Cosimo Cecchi +Date: 2011-10-25 + + release: prepare for 3.3.1 + +M NEWS +M configure.in + +commit 45ee835907056a95c4ae9dad5f7913620ed219d7 +Author: Cosimo Cecchi +Date: 2011-10-25 + + eel-string: don't segfault in eel_str_replace_substring for NULL + strings + + Just check if the strings are != NULL before calling strlen() on them. + +M eel/eel-string.c + +commit 79525a6502316974bd9e28144b82290b1840dac4 +Author: Matej Urbančič +Date: 2011-10-23 + + Updated Slovenian translation + +M po/sl.po + +commit 26a1e55ab5b8ebb8d441569bb790b0c4976c7bf8 +Author: Yaron Shahrabani +Date: 2011-10-22 + + Updated Hebrew translation. + +M po/he.po + +commit 2ce3696a73d5eda0b6213311f2bfee7a600d9256 +Author: Cosimo Cecchi +Date: 2011-10-19 + + places-sidebar: trivial cleanups + +M src/nemo-places-sidebar.c + +commit 4764a856c7a6e5a84d4067e7b105c09a93ffdbe4 +Author: Cosimo Cecchi +Date: 2011-10-19 + + places-sidebar: return if we fail to compute a drop position + + Instead of using an invalid GtkTreePath, which could cause a segfault + later. + + https://bugzilla.gnome.org/show_bug.cgi?id=660876 + +M src/nemo-places-sidebar.c + +commit cda2c75df4b95a481e8b774081ec1240d47fa45f +Author: Cosimo Cecchi +Date: 2011-10-19 + + places-sidebar: don't assert we have a valid selected iter + + When reordering bookmarks, don't assert we have a selected iter, since + it might not always be the case. + + https://bugzilla.gnome.org/show_bug.cgi?id=660876 + +M src/nemo-places-sidebar.c + +commit 7826dfbdc4cb9a5381b6d9845e0ba7459fcd2fe4 +Author: Cosimo Cecchi +Date: 2011-10-19 + + places-sidebar: don't call gtk_tree_model_get() with an invalid path + + If we click on an empty area of the sidebar, we shouldn't pop up any + menu at all anyway, which is what this commit changes. + Previously, we would have tried to get a GtkTreePath for the currently + selected point and an iter for that (invalid) path, which would + lead to + gtk_tree_model_get() segfaulting on an invalid iter. + + https://bugzilla.gnome.org/show_bug.cgi?id=662218 + +M src/nemo-places-sidebar.c + +commit 67aaaf9f9a95de0beb8a45f97b378144b93ab9d4 +Author: Daniel Mustieles +Date: 2011-10-19 + + Updated Spanish translation + +M po/es.po + +commit 11da44db624aadcf8b71950acf05b929caa565b6 +Author: Muhammet Kara +Date: 2011-10-18 + + Updated Turkish translation + +M po/tr.po + +commit 5208c1c1a2da66ece2562c22dde8ed51d550c1cf +Author: György Balló +Date: 2011-10-18 + + Autostart only in GNOME and Unity + + Don't show desktop icons in other DEs, e.g Xfce and KDE uses it's own + desktop implementation. + + https://bugzilla.gnome.org/show_bug.cgi?id=661942 + +M data/nemo-autostart.desktop.in + +commit a90444b3651272119d1d4ab65d70b41b95a87616 +Author: Stefano Teso +Date: 2011-10-18 + + places-sidebar: show a Properties item for mounts + + https://bugzilla.gnome.org/show_bug.cgi?id=546189 + +M src/nemo-places-sidebar.c + +commit a598148fde3f08ad69115b96c5a9a821ac16983c +Author: Timothy Arceri +Date: 2011-10-18 + + file-operations: show needed space as a secondary message + + When there's not enough space on the disk, show how much additional + space is needed for the operation to complete, instead of a more + obscure + error message. + + https://bugzilla.gnome.org/show_bug.cgi?id=542960 + +M libnemo-private/nemo-file-operations.c + +commit c590280477db495a362339c512d73daade862329 +Author: Cosimo Cecchi +Date: 2011-10-18 + + test: don't use deprecated gtk_vbox_new() + +M test/test-eel-editable-label.c + +commit a816e00ef769a3be12a053a29e41f3da1b91c492 +Author: Cosimo Cecchi +Date: 2011-10-18 + + all: don't use deprecated GDK pointer methods + + Use the new GdkDevice methods instead. + +M eel/eel-editable-label.c +M libnemo-private/nemo-dnd.c +M libnemo-private/nemo-tree-view-drag-dest.c +M src/nemo-notebook.c + +commit 0594aa1636ef960361cf60d00c58ab94c81ee5d4 +Author: Cosimo Cecchi +Date: 2011-10-18 + + all: don't use deprecated GMutex/GThread API + + Also, threads area always enabled, so we can remove the + G_THREADS_ENABLED conditionals. + Require GLib 2.31 for this. + +M libnemo-private/nemo-file-changes-queue.c +M libnemo-private/nemo-file-operations.c +M libnemo-private/nemo-icon-info.c +M libnemo-private/nemo-search-engine-simple.c + +commit 04975e6cbc8f82238e3611a26b474b56c46ec1d3 +Author: Cosimo Cecchi +Date: 2011-10-18 + + all: don't call g_thread_init() + + GLib does that for us now. + +M configure.in +M src/nemo-main.c +M test/test-copy.c +M test/test-nemo-search-engine.c + +commit e54ace0a550b47c251634ee833884f5bc6ea4be6 +Author: Cosimo Cecchi +Date: 2011-10-17 + + editable-label: use GTK_STYLE_CLASS_ENTRY + + Because that's what it is actually... + +M eel/eel-editable-label.c + +commit b143b95f20755fc8425464aa11df3fa2ac2df2ea +Author: Cosimo Cecchi +Date: 2011-10-17 + + editable-label: use gtk_render_frame() instead of hardcoding a stroke + + This allows the stroke to use rounded corners and border images, among + other things. + +M eel/eel-editable-label.c + +commit f9383acb378762a80a373f124e059aff5e571f21 +Author: Cosimo Cecchi +Date: 2011-10-17 + + editable-label: don't hardcode black for the insertion cursor + + Use the theme foreground/text color instead. + +M eel/eel-editable-label.c + +commit 3f95c46dff1c4f71f67d2733f0487350139775cf +Author: Cosimo Cecchi +Date: 2011-10-17 + + editable-label: remove useless code + + No need to call _set_background() on the editable label widget. + +M eel/eel-editable-label.c + +commit 8b87a3e86eb228d4414c3d64cc81b7bb56d27076 +Author: Cosimo Cecchi +Date: 2011-10-17 + + editable-label: make sure to size_request the padding set on the label + + And not the alignment, which is an offset inside the allocated size. + +M eel/eel-editable-label.c + +commit 4c74f176542935b8ea8f61f9bb9ae6cdb35466ea +Author: Cosimo Cecchi +Date: 2011-10-17 + + icon-container: use gdk_window_move() to position the typeahead popup + + For some reason, gtk_window_move() doesn't always work reliably, while + gdk_window_move() seems to always position the window in the requested + coordinates. + + https://bugzilla.gnome.org/show_bug.cgi?id=660807 + https://bugs.launchpad.net/ubuntu/+source/nemo/+bug/857710 + +M libnemo-private/nemo-icon-container.c + +commit 9a703cea5067f68ef21b90a42856b229d5edc69d +Author: Cosimo Cecchi +Date: 2011-10-17 + + icon-container: don't associate Ctrl+F to typeahead search + + It won't get triggered anyway, as we bind Ctrl+F to show the + search bar + in NemoWindow. + +M libnemo-private/nemo-icon-container.c + +commit fea4112c35c84bdb124a567c2d84a2f2a8bd172d +Author: Cosimo Cecchi +Date: 2011-10-17 + + places-sidebar: don't crash when middle clicking on empty space + + gtk_tree_view_get_path_at_pos() can fail; handle that case instead of + passing an invalid GtkTreePath. + + https://bugzilla.gnome.org/show_bug.cgi?id=657366 + https://bugs.launchpad.net/ubuntu/+source/nemo/+bug/830185 + +M src/nemo-places-sidebar.c + +commit 03888c1dde59cb2dd3b243e3c72f35757a4c2e5f +Author: Cosimo Cecchi +Date: 2011-10-17 + + tree-sidebar: don't call g_free on a GObject list + + https://bugzilla.gnome.org/show_bug.cgi?id=660906 + https://bugs.launchpad.net/ubuntu/+source/nemo/+bug/845408 + +M src/nemo-tree-sidebar.c + +commit 0a5aa2a28d82554afb684d815e8180f307ac1897 +Author: Ivan Masár +Date: 2011-10-16 + + Updated Slovak translation + +M po/sk.po + +commit 9bdca2a00b3c3f6a5e908964b4f3a2e39eec0145 +Author: Jiro Matsuzawa +Date: 2011-10-17 + + Updated Japanese translation + +M po/ja.po + +commit 4b470c16d7b7190e973b712d9f29d6bccd7f9e83 +Author: Andrej Žnidaršič +Date: 2011-10-14 + + Updated Slovenian translation + +M po/sl.po + +commit 1f23acbe5f526370db2ffec1dec09fea7e6de219 +Author: Yuri Myasoedov +Date: 2011-10-14 + + Fixed Russian translation + +M po/ru.po + +commit 04ff2cd9e6500b3f9f1052199e1321e33538225b +Author: Michael Biebl +Date: 2011-10-11 + + Fix build failure if tracker FTS is enabled + +M libnemo-private/nemo-search-engine-tracker.c + +commit 048115fa9c5c1ffa45a8df5fcb52e75f6c3d2641 +Author: krishnababu k +Date: 2011-10-10 + + Updated Telugu Translations + +M po/te.po + +commit 0dc5b59e637db6bdcc92a5b2bfce4a6a58c9a6e1 +Author: Muhammet Kara +Date: 2011-10-10 + + Updated Turkish translation + +M po/tr.po + +commit 428b468e8e6e66270cb434f14e4b1f8d7f5354c9 +Author: Cosimo Cecchi +Date: 2011-10-05 + + all: remove offset_x/offset_y parameters from + eel_pop_up_context_menu() + + They're unused now. + +M eel/eel-gtk-extensions.c +M eel/eel-gtk-extensions.h +M src/nemo-places-sidebar.c +M src/nemo-view.c + +commit 7b290a2b2fee7028e50c0ecf15d5417a7a7dc59d +Author: Federico Mena Quintero +Date: 2011-10-05 + + Remove stale 'offset' in eel_pop_up_context_menu() + + Also, fix the fallback timestamp for the menu popup. + + Signed-off-by: Federico Mena Quintero + +M eel/eel-gtk-extensions.c + +commit 61699ef56eb3091341c5f5a38189e12a11280e3e +Author: Cosimo Cecchi +Date: 2011-10-05 + + eel: remove unused eel_gdk_rgba_is_dark() + +M eel/eel-gdk-extensions.c +M eel/eel-gdk-extensions.h + +commit bcc62bec90aec23fb1ede56f0ce0181218fdc81a +Author: Cosimo Cecchi +Date: 2011-10-05 + + eel-string: remove unused code + +M eel/eel-string.c +M eel/eel-string.h + +commit 3a02c89ec0329ee6a1b0eab411eb0f95308626aa +Author: Cosimo Cecchi +Date: 2011-10-05 + + all: don't use eel_strlen() + +M src/nemo-location-bar.c +M src/nemo-window-slot.c + +commit fc1479fc3a614b00d0ff69bd1da62d4dee0a9af9 +Author: Cosimo Cecchi +Date: 2011-10-05 + + view: use g_str_has_prefix() instead of eel_str_has_prefix() + +M src/nemo-view.c + +commit 3daaaf4a9efa2913bbfbadf1492e670b3e83c4a0 +Author: Cosimo Cecchi +Date: 2011-10-05 + + all: don't use eel_strcmp() + +M eel/eel-glib-extensions.c +M libnemo-private/nemo-bookmark.c +M libnemo-private/nemo-directory.c +M libnemo-private/nemo-file.c +M libnemo-private/nemo-icon-canvas-item.c +M libnemo-private/nemo-progress-info.c +M src/nemo-properties-window.c +M src/nemo-window-slot.c + +commit 96254fec43923e7ef5a3e78604cb3b6935117f91 +Author: Cosimo Cecchi +Date: 2011-10-05 + + eel: remove unused eel-gtk-macros.h file + +M eel/Makefile.am +D eel/eel-gtk-macros.h +M eel/eel.h +M libnemo-private/nemo-bookmark.c +M libnemo-private/nemo-clipboard-monitor.c +M libnemo-private/nemo-desktop-directory.c +M libnemo-private/nemo-desktop-link-monitor.c +M libnemo-private/nemo-directory.c +M libnemo-private/nemo-entry.c +M libnemo-private/nemo-file.c +M libnemo-private/nemo-icon-canvas-item.c +M libnemo-private/nemo-icon-dnd.c +M libnemo-private/nemo-merged-directory.c +M libnemo-private/nemo-module.c +M libnemo-private/nemo-query.c +M libnemo-private/nemo-search-engine-simple.c +M libnemo-private/nemo-tree-view-drag-dest.c +M libnemo-private/nemo-undo-manager.c +M libnemo-private/nemo-undo-signal-handlers.c +M src/nemo-application.c +M src/nemo-icon-view.c +M src/nemo-list-view.c +M src/nemo-location-bar.c +M src/nemo-view.c +M src/nemo-window-manage-views.c +M src/nemo-window-slot.c + +commit 68732195bada37da771bab924352ca3864e2bdde +Author: Cosimo Cecchi +Date: 2011-10-05 + + view: don't use EEL_ASSIGN/EEL_IMPLEMENT macros for class signals + + Not that useful since we have full control over all the views. + +M src/nemo-view.c + +commit ce34c8c033d09578f7cb17b8531f6afc95555728 +Author: Cosimo Cecchi +Date: 2011-10-05 + + view: don't use EEL_INVOKE_METHOD macro + +M src/nemo-view.c + +commit 2797c72a906ed6395afd45b9fa7c516d6ef3299f +Author: Cosimo Cecchi +Date: 2011-10-05 + + all: don't use EEL_CALL_METHOD* macros + +M libnemo-private/nemo-directory.c +M libnemo-private/nemo-directory.h +M libnemo-private/nemo-file.c +M src/nemo-view.c +M src/nemo-window-slot.c + +commit 45e3ad0979d79ba017e84a9f99f605ec562c8ae8 +Author: Cosimo Cecchi +Date: 2011-10-05 + + icon-view: simplify code by removing pointless method overrides + +M src/nemo-icon-view.c +M src/nemo-icon-view.h + +commit deb560128734593d9941f4a414e165b3943d61bf +Author: Cosimo Cecchi +Date: 2011-10-05 + + all: don't use EEL_CLASS_BOILERPLATE macro + +M libnemo-private/nemo-vfs-directory.c +M libnemo-private/nemo-vfs-file.c + +commit f0dc94fed68eb5a52d705391053bd642a88ab1d3 +Author: Cosimo Cecchi +Date: 2011-10-05 + + all: don't use EEL_CALL_PARENT* macros + + Replace them with regular calls to the parent class method pointer. + +M libnemo-private/nemo-desktop-directory.c +M libnemo-private/nemo-desktop-link-monitor.c +M libnemo-private/nemo-directory.c +M libnemo-private/nemo-merged-directory.c +M libnemo-private/nemo-module.c +M libnemo-private/nemo-query.c +M libnemo-private/nemo-search-engine-simple.c +M libnemo-private/nemo-search-engine.c +M libnemo-private/nemo-tree-view-drag-dest.c +M src/nemo-empty-view.c +M src/nemo-list-view.c +M src/nemo-location-entry.c +M src/nemo-view.c + +commit 785ee926b36165b4849903e5f4828a17aabe534c +Author: Cosimo Cecchi +Date: 2011-10-04 + + properties-window: paint the pie backgorund with the notebook color + + We have to reset the GtkDrawingArea background to the notebook + color, in + case the theme specifies them to be different. + +M src/nemo-properties-window.c + +commit 8b99f1fae29b333c9beeee3dad848099a66e731d +Author: Cosimo Cecchi +Date: 2011-10-04 + + properties-window: port the pie chart GtkTable to GtkGrid + +M src/nemo-properties-window.c + +commit 0026899cd9f5cd636b4a44ec838e2ec228b210bb +Author: Cosimo Cecchi +Date: 2011-10-04 + + properties-window: port GtkTable to GtkGrid + + Except for the pie chart, which will be ported in a separate commit + +M src/nemo-properties-window.c + +commit ac6797687cc3dc77e1fc6752090a7ef037252ade +Author: Cosimo Cecchi +Date: 2011-10-04 + + window: port GtkTable to GtkGrid + +M src/nemo-window-private.h +M src/nemo-window.c + +commit c6903f412d204ce4ab83fa328fe7df3c81781b68 +Author: Cosimo Cecchi +Date: 2011-10-04 + + view: port GtkTable to GtkGrid + +M src/nemo-view.c + +commit 29dea2e40f6631935a9479c2cf96534308215183 +Author: Cosimo Cecchi +Date: 2011-10-04 + + desktop-item-properties: port GtkTable to GtkGrid + +M src/nemo-desktop-item-properties.c + +commit 7f3e5ce7786bfdf728169d222ef7584306f2b445 +Author: Cosimo Cecchi +Date: 2011-10-04 + + connect-server-dialog: port GtkTable to GtkGrid + +M src/nemo-connect-server-dialog.c + +commit 24658f2ba3c9a9dd12416933942370cd6ff6271c +Author: Federico Mena Quintero +Date: 2011-10-04 + + Fix confusion in the fallback size for icons + + Just caught this when reading the code... + + https://bugzilla.gnome.org/show_bug.cgi?id=660894 + +M libnemo-private/nemo-icon-info.c + +commit d8cfe1080a15fd05a306ee3a6adb5767df4fe58f +Author: Kristjan SCHMIDT +Date: 2011-10-03 + + Updated Esperanto translation + +M po/eo.po + +commit f1aae7bd99efac46a4f7b67beb53205b6cb89f47 +Author: Tiffany Antopolski +Date: 2011-10-03 + + Updated Esperanto translation + +M po/eo.po + +commit 0c80c23a771da619bfd6858397d10b2446966fa2 +Author: Nguyễn Thái Ngọc Duy +Date: 2011-10-02 + + po/vi: better translation of "Go" + +M po/vi.po + +commit 530bbec3b5d663ca7e3244446d9bc73f1cf323b0 +Author: Cosimo Cecchi +Date: 2011-09-29 + + all: remove initiated_unmount logic from NemoWindow + + We don't really need this, and it makes the behavior way less + convoluted. + Now we always try to close the current slot on mount remove, + except when + it would be the last window at all to be closed. + +M src/nemo-application.c +M src/nemo-places-sidebar.c +M src/nemo-view.c +M src/nemo-window-slot.c + +commit 269c6b23cf2b97f74a8c7c2654221be491b60cf4 +Author: Cosimo Cecchi +Date: 2011-09-29 + + window: add debug messages for pane closing + +M src/nemo-window-pane.c +M src/nemo-window.c + +commit 379e0883d06f782fb43d32a1b5031f52c5cfc9b4 +Author: Cosimo Cecchi +Date: 2011-09-29 + + window: cleanup nemo_window_close_pane() + +M src/nemo-window-private.h +M src/nemo-window.c + +commit 3ac3935e9d4a9e40b2e889cb16409cadc30bb8dd +Author: Cosimo Cecchi +Date: 2011-09-29 + + window-pane: fix switching to the other pane when closing the + last slot + + We're closing a window slot; when it's the last slot to be closed, we + used to call nemo_window_split_view_off() on the wrong pane. + Even if we called it on the right pane, it wouldn't have worked + anyway, + because we could have removed the active pane, and that function + always + assumes going back to it. + Also, we need to ensure that active_slot is set on the new pane, or + nemo_window_set_active_slot() won't be called to restore the right + window state. + + https://bugzilla.gnome.org/show_bug.cgi?id=652320 + +M src/nemo-window-pane.c + +commit f6bbf0f111f344276472aaa54072bf99ae7be9b2 +Author: Cosimo Cecchi +Date: 2011-09-29 + + view: don't assert on window slot signal callback ordering + + There's no reason to assert on the fact that inactive and active + signals + will be always emitted in alternate state. If this doesn't happen, + just + return. + + https://bugzilla.gnome.org/show_bug.cgi?id=652320 + +M src/nemo-view.c + +commit 1c06d97c9663ec5b77f21326490146c9a9d8f9d9 +Author: Cosimo Cecchi +Date: 2011-09-29 + + places-sidebar: disconnect volume monitor signals on dispose + + The GIO volume monitor can survive the sidebar, so we need to + disconnect + its signals handlers on dispose. + + https://bugzilla.gnome.org/show_bug.cgi?id=652320 + +M src/nemo-places-sidebar.c + +commit 1f61da02d767b2a767d1dc2fd8c6714c6f6a60d0 +Author: Cosimo Cecchi +Date: 2011-09-28 + + window-slot: don't go through the back list when checking a mount + + There's no reason the slot shouldn't be closed if one of the locations + in the back history belongs to the mount (what we should do is + cleaning + up that location from the history, which we don't yet). + +M src/nemo-window-slot.c + +commit df47a7e142357ff404dceaf43bf3c7ae492fddcc +Author: Cosimo Cecchi +Date: 2011-09-28 + + application: avoid useless checks when removing a mount + + nemo_window_slot_should_close_with_mount() has the same checks and + more. + +M src/nemo-application.c + +commit d49f23ae211cb24cc43efa68d46f7867dbe26364 +Author: Cosimo Cecchi +Date: 2011-09-28 + + window-pane: turn into a GtkBox, simplify code + +M src/nemo-window-pane.c +M src/nemo-window-pane.h +M src/nemo-window.c + +commit eaa98a76fbc144ff1f14f2df8fb3d6873541465b +Author: Cosimo Cecchi +Date: 2011-09-28 + + desktop-link-monitor: plug a memory leak + +M libnemo-private/nemo-desktop-link-monitor.c + +commit 0d191f445da18d0bed1c8ca6d3e05dc4ffae4293 +Author: Cosimo Cecchi +Date: 2011-09-28 + + window-manage-views: plug a memory leak + + We have to free the new selection list when we build it ourselves. + +M src/nemo-window-manage-views.c + +commit 37386fab28267cdbedd979fff13fe1a9da81014d +Author: Cosimo Cecchi +Date: 2011-09-28 + + list-view: don't activate the previewer when there's no selection + + Or we'll segfault when trying to access the first item of the + selection. + + https://bugzilla.gnome.org/show_bug.cgi?id=654857 + +M src/nemo-list-view.c + +commit 3429a6ff153c85a6a65ccb994b4cb4434e4fffcf +Author: Cosimo Cecchi +Date: 2011-09-28 + + icon-container: consolidate typeahead entry timeout handling + + We have crash reports coming from the search entry typeahead code. I + can't really reproduce the bug, but there seems to be at least + a problem + with the typeahead flush timeout returning TRUE and being rescheduled. + Refactor the code to better handle the flush timeout, which hopefully + solves those crashes as well. + + https://bugzilla.gnome.org/show_bug.cgi?id=653800 + +M libnemo-private/nemo-icon-container.c +M libnemo-private/nemo-icon-private.h + +commit 718b8641935b5a8de67e83ec12f9026aecd41e8c +Author: Cosimo Cecchi +Date: 2011-09-28 + + window: small code cleanups + +M src/nemo-window-private.h +M src/nemo-window.c + +commit d3c158d6c9a6ee40fae660ab56b7d8a40074108c +Author: Cosimo Cecchi +Date: 2011-09-28 + + window: make sure to disconnect GSettings signals when finalizing + + The GSettings object survive the window, so handlers connected to its + signals should be disconnected when the window is finalized. + + https://bugzilla.gnome.org/show_bug.cgi?id=655070 + +M src/nemo-window-menus.c +M src/nemo-window-private.h +M src/nemo-window.c + +commit 82a39de7a3c1265ba1a46d1140a084a12b310e32 +Author: Cosimo Cecchi +Date: 2011-09-28 + + places-sidebar: don't crash when not finding the eject symbolic icon + + If a theme doesn't have media-eject-symbolic, icon_info can be + NULL, and + we would crash trying to load a pixbuf from it anyway. + Fix this and show the stock 'missing image' pixbuf when the theme + doesn't have the specified icons. + + https://bugzilla.gnome.org/show_bug.cgi?id=660277 + +M src/nemo-places-sidebar.c + +commit 35059bec98b8ede682e582395b889dc149fc7cba +Author: Мирослав Николић +Date: 2011-09-28 + + Updated Serbian translation + +M po/sr.po +M po/sr@latin.po + +commit f51bad348ab71e3203a7b76c45d307b0fafc5128 +Author: Cosimo Cecchi +Date: 2011-09-26 + + release: prepare for 3.2.0 + +M NEWS +M configure.in + +commit c6299e775ae7770b5b98ede0b70e90ecd04bc742 +Author: Cosimo Cecchi +Date: 2011-09-26 + + trivial: fix a critical when opening preferences + + Just a trivial cleanup for a critical accidentally introduced + in commit + db72d73b3cd58493b1b8878a52ff8a9f5d350602 + +M src/nemo-file-management-properties.c +M src/nemo-file-management-properties.ui + +commit 278a92edf777eb3dc623a4284ef4d81af3f77d27 +Author: Andrej Žnidaršič +Date: 2011-09-26 + + Updated Slovenian translation + +M po/sl.po + +commit 34b5833b704e174c82d943b28e59d91e9531fdbc +Author: Carles Ferrando +Date: 2011-09-26 + + [l10n]Updated Catalan (Valencian) translation + +M po/ca@valencia.po + +commit 2b296a9d0dfba07b62144e96a52368205c447561 +Author: Tommi Vainikainen +Date: 2011-09-26 + + Updated Finnish translation + +M po/fi.po + +commit 368d49124774c4bf640f617e4fcf86641dd886e7 +Author: Seán de Búrca +Date: 2011-09-25 + + Updated Irish translation + +M po/ga.po + +commit 544fcac94f70f3f35105bfad3f6dda21197d7378 +Author: Andika Triwidada +Date: 2011-09-25 + + Updated Indonesian translation + +M po/id.po + +commit dfb8d194bf9ff460b8d6a7a9e3629ab5b343bb46 +Author: Lucas Lommer +Date: 2011-09-24 + + Updated Czech translation + +M po/cs.po + +commit 5e83b5591ffccef5e9faa8bc384c7ffd59eab05e +Author: Lucas Lommer +Date: 2011-09-24 + + Updated Czech translation + +M po/cs.po + +commit 55210fff4df1ea8312b9e276f65dd3e22ec406f0 +Author: Inaki Larranaga Murgoitio +Date: 2011-09-24 + + Updated Basque language + +M po/eu.po + +commit adb9e12825aedee3b71a1bd9bb4589b22f724946 +Author: Jiro Matsuzawa +Date: 2011-09-23 + + Updated Japanese translation + +M po/ja.po + +commit a2045383fc726c4d11a1ab08837fd97d9d098a3b +Author: Claude Paroz +Date: 2011-09-22 + + Cleaned Assamese translation + +M po/as.po + +commit f07aa75bf010653bd9e1a5f5519fec8a029763de +Author: Cosimo Cecchi +Date: 2011-09-22 + + icon-canvas-item: don't draw pango layouts when renaming + + Fixes a regression introduced in commit + 95910c94fd46f368b66f02e1961dc5f273b38c82 that causes unwanted text + to be + drawn while renaming a file in icon view. + + https://bugzilla.gnome.org/show_bug.cgi?id=659831 + +M libnemo-private/nemo-icon-canvas-item.c + +commit 2b9b06cfa8bb431f21af74a5f630646df494eb00 +Author: Changwoo Ryu +Date: 2011-09-23 + + Updated Korean translation + +M po/ko.po + +commit 9023264e0660b50253a9bf7bffe977e0b3a6fd4c +Author: Joe Hansen +Date: 2011-09-22 + + Updated Danish translation + +M po/da.po + +commit f985fe035500e57bbede9f0dfb252fc0f2569377 +Author: Sweta Kothari +Date: 2011-09-22 + + Updated Gujarati Translations + +M po/gu.po + +commit b8238d4a89de55a2e93af7f2aee15cf4148625a6 +Author: Gabor Kelemen +Date: 2011-09-19 + + Updated Hungarian translation + +M po/hu.po + +commit 2cb91c05718dc5463a52eadf24e6036adfe6e10e +Author: Cosimo Cecchi +Date: 2011-09-19 + + icon-canvas-item: don't forget to clip the embedded text rectangle + + When drawing the embedded text, the pango layout should be clipped to + the computed rectangle. + + https://bugzilla.gnome.org/show_bug.cgi?id=659518 + +M libnemo-private/nemo-icon-canvas-item.c + +commit bf1f6bde79f5226388551780dcd7f148c8f55734 +Author: Cosimo Cecchi +Date: 2011-09-19 + + release: prepare for 3.1.92 + +M NEWS +M configure.in + +commit 0a32dd8da8b2a9d10189ef6c8865bb4ec2ca345f +Author: Cosimo Cecchi +Date: 2011-09-19 + + users-group-cache: nuke this, as it appears to be unused + +M libnemo-private/Makefile.am +M libnemo-private/nemo-file.c +D libnemo-private/nemo-users-groups-cache.c +D libnemo-private/nemo-users-groups-cache.h + +commit b11c8a69479b5307d946dbc5742baf5cca75ae06 +Author: Mike Gorse +Date: 2011-09-16 + + Fix accessibility for gtk 3.2, and send object:state-changed:selected + + The code to derive the EelCanvasAccessible class no longer works as of + gtk+ 3.1.9. Currently the recommended behavior is to derive from + GtkAccessible. + + Also, canvas items should send object:state-changed:selected + events when + selected and unselected; otherwise AT-SPI will not update its cache. + + https://bugzilla.gnome.org/show_bug.cgi?id=650897 + +M eel/eel-canvas.c +M eel/eel-canvas.h +M libnemo-private/nemo-icon-canvas-item.c + +commit f83324a05375ba1aa97d3e6ea91f4af323f2bd2c +Author: Aurimas Černius +Date: 2011-09-18 + + Updated Lithuanian translation + +M po/lt.po + +commit 5d549140c95ebb9e7c5cdf5d7d639cca36a22021 +Author: Lê Hoàng Phương +Date: 2011-09-18 + + po/vi.po: changed Bookmark translation from "Liên kết lưu" to + "Đánh dấu" + +M po/vi.po + +commit 0d1300c2c0790ea510a9253314e0c1f92e241843 +Author: Nguyễn Vũ Hưng +Date: 2011-09-18 + + Updated Vietnamese translation + +M po/vi.po + +commit 4016176dc43e4c502714d7544000dbed64c95dfe +Author: Theppitak Karoonboonyanan +Date: 2011-09-18 + + Updated Thai translation. + +M po/th.po + +commit 92e3aded0c213d33e6bbe39f4a9258f4a50a0f7c +Author: Ville-Pekka Vainio +Date: 2011-09-17 + + Updated reduced Finnish translation + +M po/fi.po + +commit c408390df407fa4b90d4d8bf49a26401ec908512 +Author: Ihar Hrachyshka +Date: 2011-09-17 + + Updated Belarusian translation (some fixes after manual testing). + +M po/be.po + +commit 8fc72b1b9122cd3dec7c40c2d8f3b24a5038ae46 +Author: Alexander Shopov +Date: 2011-09-17 + + Updated Bulgarian translation + +M po/bg.po + +commit c0f1c0988790e458351a3e6f6a9bdc494efc0797 +Author: Antonio Fernandes C. Neto +Date: 2011-09-17 + + Updated Brazilian Portuguese translation + +M po/pt_BR.po + +commit 4fde92db8333dfdb708f57e9b69d3fa74f511663 +Author: Joan Duran +Date: 2011-09-17 + + [l10n]Updated Catalan translation + +M po/ca.po + +commit 3956b5c163d1b6beda14ab3d47bf78653208c106 +Author: Jiro Matsuzawa +Date: 2011-09-17 + + Updated Japanese translation + +M po/ja.po + +commit d477edb640c0aa58550e43992fb788f54b2ec700 +Author: Mario Blättermann +Date: 2011-09-16 + + [l10n] Updated German translation + +M po/de.po + +commit c97c17c4970cb9ae9c38685005995abe2a880921 +Author: Daniel Korostil +Date: 2011-09-16 + + Uploaded Ukranian + +M po/uk.po + +commit a046d86cd13431eef4bae743c0ca505dffaecca0 +Author: dmustieles +Date: 2011-09-14 + + Updated Spanish translation + +M po/es.po + +commit cb9d902fccbc462253d60d9a39fa5ee2cce1af7d +Author: Yinghua Wang +Date: 2011-09-13 + + update Simplified Chinese (zh_CN) translation + +M po/zh_CN.po + +commit 67743ffbc62abeb2bb3511901c95fb57d4ee9d93 +Author: Yinghua Wang +Date: 2011-09-13 + + update Simplified Chinese (zh_CN) translation + +M po/zh_CN.po + +commit 78be87bc843f71670b41011b645f983bab6ba81d +Author: Cosimo Cecchi +Date: 2011-09-12 + + desktop: ensure the desktop metadata is up to date when setting + as ready + + As part of the I/O machinery cycle internal to call_when_ready + nemo_file_clear_info() can be called and clear the metadata we + previously set during _init. + Move the desktop metadata initialization before returning the file as + ready, so it's always up to date when the view reads the settings. + + https://bugzilla.gnome.org/show_bug.cgi?id=655561 + +M libnemo-private/nemo-desktop-directory-file.c + +commit 6775e582bcd332eaed925f41555fe4e5c0a3dd71 +Author: Cosimo Cecchi +Date: 2011-09-12 + + file: read the emblem icon names from metadata + + Support for the metadata::emblems got lost during the 3.0 development, + re-add support for it. + +M libnemo-private/nemo-file.c + +commit 97802bc3f6cfbd464eae6e4375cc8f7d71a218af +Author: Cosimo Cecchi +Date: 2011-09-12 + + window-manage-views: scroll to the selected location when opening + an URI + + When opening nemo with a preselected URI, scroll the window + to that + location in addition to selecting the view element. + + https://bugzilla.gnome.org/show_bug.cgi?id=658843 + +M src/nemo-window-manage-views.c + +commit 3add5865157f6eb66ddf5729ffdf3102c020cc10 +Author: Dr.T.Vasudevan +Date: 2011-09-12 + + updated Tamil translation + +M po/ta.po + +commit d82cd5965c246173c3f8e3ce39fdde740592259e +Author: Rudolfs Mazurs +Date: 2011-09-11 + + Updated Latvian translation. + +M po/lv.po + +commit e7c643cea5a4455d34954edfad24ca62dd585156 +Author: Jorge González +Date: 2011-09-11 + + Updated Spanish translation + +M po/es.po + +commit 7fe6d3d2a4fe48d58afba8c0ee8e40fe60c5d63b +Author: Cosimo Cecchi +Date: 2011-09-10 + + tree-sidebar: don't block the parent handler when popping up a menu + + Otherwise the treeview will not select the row where the event + happened. + + https://bugzilla.gnome.org/show_bug.cgi?id=601725 + +M src/nemo-tree-sidebar.c + +commit bc236c95df0b3362b4e51a404bd89e13062afa49 +Author: Arash Mousavi +Date: 2011-09-10 + + Updated Persian translation + +M po/fa.po + +commit 8873abff5de2fd8039ba52e60a835444527f7349 +Author: Duarte Loreto +Date: 2011-09-10 + + Updated Portuguese translation + +M po/pt.po + +commit a465c3b91dfadbfb590adc42fee18aaa1b61d9fc +Author: Jiro Matsuzawa +Date: 2011-09-10 + + Updated Japanese translation + +M po/ja.po + +commit 8d5e8502862f93a188a848ca79779db09e4abf85 +Author: A S Alam +Date: 2011-09-10 + + update PunjabiTranslation + +M po/pa.po + +commit d56fd8f591b3909ef58d7e191afb400de7a8f75f +Author: Kristjan SCHMIDT +Date: 2011-09-09 + + Updated Esperanto translation + +M po/eo.po + +commit 99ad534b7b2fae3fdfa15345cbeae01da5dda803 +Author: Javier Jardón +Date: 2011-09-09 + + Make maintiner mode enabled by default + + See + http://blogs.gnome.org/desrt/2011/09/08/am_maintainer_mode-is-not-cool/ + +M configure.in + +commit a64ac652e217cfd9809f669453da6577a198ae37 +Author: Yaron Shahrabani +Date: 2011-09-09 + + Updated Hebrew translation. + +M po/he.po + +commit 2f064e560cf949b1e1bc4448eaa277f8e05180d8 +Author: David Liang +Date: 2011-09-09 + + icon-container: invalidate the layout cache on style-updated + + This way label sizes will be recomputed if e.g. DPI settings change. + + https://bugzilla.gnome.org/show_bug.cgi?id=578468 + +M libnemo-private/nemo-icon-container.c + +commit c0e6ac365cd4d4d4add0db1edf6f7506bd85e57f +Author: Matthias Clasen +Date: 2011-09-09 + + file-operations: ignore ALREADY_MOUNTED errors when mounting + + Don't spawn an error dialog in this case. + + https://bugzilla.gnome.org/show_bug.cgi?id=579645 + +M libnemo-private/nemo-file-operations.c + +commit a78d885027d6a49d712b5589fd79c822edf4e17d +Author: Cosimo Cecchi +Date: 2011-09-08 + + search-directory: stop the engine when there are no active monitors + + My understanding of this code suggests the engine should be stopped as + soon as the active monitors reach zero. + This fixes the Stop button not working while searching anyway, and + doesn't seem to cause any collateral damage. + + https://bugzilla.gnome.org/show_bug.cgi?id=563163 + +M libnemo-private/nemo-search-directory.c + +commit fdf0036ca9fbb17b97aefabd95f994190cdc0bac +Author: Piotr Drąg +Date: 2011-09-08 + + Updated Polish translation + +M po/pl.po + +commit 226595c7ed30e21247d07a063dd7d1f9221306ed +Author: Luca Ferretti +Date: 2011-09-08 + + l10n: Updated Italian translation + +M po/it.po + +commit 920aa3d94be890f241d3be415540dbde6a81df0a +Author: Cosimo Cecchi +Date: 2011-09-08 + + tracker: always reset the cancellable when starting a query + + Otherwise we can start a query with a cancelled object already, making + it fail immediately. + +M libnemo-private/nemo-search-engine-tracker.c + +commit ee73c255d75165607c7f04defd5e8edfa3524914 +Author: Cosimo Cecchi +Date: 2011-09-08 + + window: make sure not to unref NULL GFiles + + The GFile pointed by parent here can be NULL after the cycle, so fold + the unref in the != NULL block. + +M src/nemo-window-manage-views.c + +commit 88b08d691c17b9686938a0b20a37a19ac99cacc3 +Author: Cosimo Cecchi +Date: 2011-09-08 + + all: remove is_indexed property on NemoSearchDirectory + + It doesn't really make sense to artificially change the query + target if + we're indexed. + +M libnemo-private/nemo-search-directory.c +M libnemo-private/nemo-search-directory.h +M libnemo-private/nemo-search-engine-simple.c +M libnemo-private/nemo-search-engine-tracker.c +M libnemo-private/nemo-search-engine.c +M libnemo-private/nemo-search-engine.h +M src/nemo-query-editor.c +M src/nemo-query-editor.h +M src/nemo-window-pane.c +M src/nemo-window-slot.c + +commit aef4bf26ed8b48f6519fec9531bb530783193447 +Author: Cosimo Cecchi +Date: 2011-09-08 + + tracker: respect the location URI when searching with tracker + +M libnemo-private/nemo-search-engine-tracker.c + +commit a65eb16241ea0e64e5bf2547ffdaebcaa4547574 +Author: Claude Paroz +Date: 2011-09-08 + + Updated French translation + +M po/fr.po + +commit 6f4d215dd9df1b3b0c7fb4714fda88bc2ef39590 +Author: Bruce Cowan +Date: 2011-09-08 + + Updated British English translation + +M po/en_GB.po + +commit 92e40dd094a812db6bcc3e60c0830d20b3f07b15 +Author: Cosimo Cecchi +Date: 2011-09-08 + + window: steal all accelerators/mnemonics keybindings when renaming + + If we're renaming, we really want to ignore all the accelerators + and mnemonics coming from NemoWindow and NemoView, as + they might + conflict with the regular bindings expected in an editable widget, + such + as an editable GtkCellRendererText or EelEditableLabel. + This should fix all the recent keybinding-related regressions, such as + + https://bugzilla.gnome.org/show_bug.cgi?id=658105 + https://bugzilla.gnome.org/show_bug.cgi?id=651574 + +M src/nemo-window.c + +commit a67212a39bbcd342f0a503d693ebd80fab48ac9c +Author: Cosimo Cecchi +Date: 2011-09-08 + + view: add an is_renaming property to NemoView + + And keep it in sync with the renaming widget. This will be useful to + forward events to the view if it's renaming. + +M libnemo-private/nemo-icon-container.c +M libnemo-private/nemo-icon-container.h +M src/nemo-icon-view.c +M src/nemo-list-view.c +M src/nemo-view.c +M src/nemo-view.h + +commit 88b535828ddacd7ec2313d52a21f164aee535fa3 +Author: Cosimo Cecchi +Date: 2011-09-08 + + Revert "window: reverse the order of key-press event processing" + + This reverts commit f76c50a0e46aa7786820f76b3f71b57b44b8d7fb. + +M libnemo-private/nemo-icon-container.c +M src/nemo-list-view.c +M src/nemo-window.c + +commit c55fa6b75ba623b327975fdaa37d5a8e6669e7ac +Author: Cosimo Cecchi +Date: 2011-09-08 + + build: fix optional dependency check on libtracker-sparql + + Commit ffc7c7f98901e8a319b91716d05e521a798dbe43 didn't really work in + the case where no tracker was found on the system, really forcing a + build dependency. Fix this. + + https://bugzilla.gnome.org/show_bug.cgi?id=658545 + +M configure.in + +commit 8d8979f53cea0e8e48faa9ffba82950013e18ad0 +Author: Cosimo Cecchi +Date: 2011-09-07 + + icon-dnd: remove hardcoded highlight frame + + The call to gtk_render_frame() should be enough; the problem is with + Adwaita which does not define a CSS style for the "dnd" class. + +M libnemo-private/nemo-icon-dnd.c + +commit 7732a6b35369c1cef56351cc491358c2f6623c5e +Author: Cosimo Cecchi +Date: 2011-09-07 + + icon-canvas-item: render the additional text with gtk_render_layout() + + And add a style class for it. + +M libnemo-private/nemo-icon-canvas-item.c + +commit ffc7c7f98901e8a319b91716d05e521a798dbe43 +Author: Cosimo Cecchi +Date: 2011-09-07 + + tracker: make the tracker-sparql dependency optional + + This way it's still possible to specify --enable-tracker=no from the + configure line if you want to avoid the tracker dependency. + +M configure.in +M libnemo-private/Makefile.am +M libnemo-private/nemo-search-engine.c + +commit b3da52fefdbf5dc6f8f95fe381181dc47e54d5c3 +Author: Stefano Teso +Date: 2011-09-07 + + file: make sure not to use a 0 width/height when scaling the image + + The problem is that for extreme height-to-width ratio images, + gdk_pixbuf_scale_simple () is called with either width or height = 0 + (printing a critical warning to the terminal). + + https://bugzilla.gnome.org/show_bug.cgi?id=329010 + +M libnemo-private/nemo-file.c + +commit f1dd42ec1c86e78fa894c07ee6b0c8df60d45acb +Author: Cosimo Cecchi +Date: 2011-09-07 + + tracker: use libtracker-sparql directly + + It's not a problem for nemo to depend on libtracker-sparql here + instead of using g_module_open() + +M configure.in +M libnemo-private/nemo-search-engine-tracker.c + +commit 402b281790c1bca3fc10010008cb1ac6fb997b59 +Author: Pavlos Touboulidis +Date: 2011-04-11 + + list-view: Fix default sort order. + + Removed the extra "uri" element from the sort order mapping array + because the settings enum values were being mapped to the wrong + strings. + + https://bugzilla.gnome.org/show_bug.cgi?id=647491 + +M src/nemo-list-view.c + +commit ad5b834df34d6a8f3919909b63ce97cc2bda53d4 +Author: mads@kiilerich.com +Date: 2011-09-07 + + nemo-autorun-software: handle mime type x-content/unix-software + only + + This is a consequence of the fix for + https://bugs.freedesktop.org/show_bug.cgi?id=20562 . + + This undoes the part of cffb9cf7025 that hardcodes that media with + x-content/win32-software are silently ignored, and thus improves + on the + fix for #524270. + + Wine or something could now provide a handler for win32-software. + + https://bugzilla.gnome.org/show_bug.cgi?id=632510 + +M data/nemo-autorun-software.desktop.in.in +M src/nemo-autorun-software.c + +commit 8978c6375bbe0cd26fffded25bc4606cab2c88e6 +Author: Phillip Berndt +Date: 2011-02-16 + + nemo-autorun-software: Use /bin/sh for autorun.sh execution + + If the autorun file is called autorun.sh it is clearly meant for + execution through a sh processor. The benefit of using /bin/sh as the + executable is that autorun will also work on FAT formatted media + (which + does not allow autorun.sh to have +x permission set) + + https://bugzilla.gnome.org/show_bug.cgi?id=642511 + +M src/nemo-autorun-software.c + +commit d1bc9311392e243aa5c9af4b80a373b6dd69d741 +Author: Sandro Mani +Date: 2011-09-07 + + mime-actions: don't spawn a warning if we have only one application + + Don't show a confirmation dialog when we're opening a number of files + with the same application. + + https://bugzilla.gnome.org/show_bug.cgi?id=649811 + +M src/nemo-mime-actions.c + +commit 571a6ef755a6190d442739589b686401d75ff40b +Author: Tomas Bzatek +Date: 2011-04-15 + + connect-server-dialog: Respect password save setting + + The "Remember this password" checkbox was not respected + when password was specified and connection succeeded + for the first time. + + https://bugzilla.gnome.org/show_bug.cgi?id=641376 + +M src/nemo-connect-server-dialog.c + +commit 0ae354ce50394d18be01ca670fdf190d63c1591e +Author: Cosimo Cecchi +Date: 2011-09-07 + + search-bar: use gtk_entry_set_icon_from_icon_name() + + Now that we have an image style class for entry icons, we can + style the + symbolic color from the theme instead of rendering this manually. + + This also has the side effect of fixing bugs like + https://bugzilla.gnome.org/show_bug.cgi?id=651209 + +M src/nemo-search-bar.c + +commit 37e379a5a484b604bd25f0b4cb3269f6e4c942ba +Author: Michael Terry +Date: 2011-06-29 + + Look at XDG_CURRENT_DESKTOP to decide if a link is foreign + + https://bugzilla.gnome.org/show_bug.cgi?id=653660 + +M libnemo-private/nemo-link.c + +commit 637289f74536ed2f31e05604401203a9360c439f +Author: Michael Terry +Date: 2011-06-29 + + Add Unity to OnlyShowIn + + https://bugzilla.gnome.org/show_bug.cgi?id=653657 + +M data/nemo.desktop.in.in + +commit cbadf49a82c70bb6ef90d63fdc4b43f4cb108598 +Author: Cosimo Cecchi +Date: 2011-09-07 + + css: remove custom CSS stylesheet + + Our custom CSS stylesheet is actually very tied to Adwaita. We don't + want to force this style to other GTK+ themes, so the theming + information has been moved to Adwaita itself. + +M data/Makefile.am +D data/nemo.css +M src/nemo-application.c + +commit ca7f81e2e9adf325effa11fc55aace4a087ab61b +Author: Cosimo Cecchi +Date: 2011-09-07 + + icon-container: use the "rubberband" style class for the selection + item + + Instead of using a custom style property. + +M data/nemo.css +M libnemo-private/nemo-icon-container.c + +commit 8b676a68b698b705a6008c89d53fded1cf635981 +Author: Cosimo Cecchi +Date: 2011-09-07 + + desktop: add a nemo-desktop style class to the desktop canvas + + So that themes can tweak the color/background of desktop canvas items + separately. + +M libnemo-private/nemo-icon-container.c + +commit 22707fdc469dfc7548adc8020e3aaf63b20ae1bf +Author: Cosimo Cecchi +Date: 2011-09-07 + + eel: remove unused eel_cairo_draw_layout_with_drop_shadows() + +M eel/eel-gdk-extensions.c +M eel/eel-gdk-extensions.h + +commit 77eecef417b91bb0c48588513de473f11a5c9896 +Author: Cosimo Cecchi +Date: 2011-09-07 + + icon-container: remove unused code caching canvas item colors + + Caching colors in NemoIconContainer to use them in the canvas item + is not needed anymore, as gtk_render_* fetches the right values + directly + from the style context. + +M libnemo-private/nemo-icon-container.c +M libnemo-private/nemo-icon-private.h + +commit 95910c94fd46f368b66f02e1961dc5f273b38c82 +Author: Cosimo Cecchi +Date: 2011-09-07 + + icon-canvas-item: use gtk_render_* methods instead of direct cairo + + Instead of hardcoding colors and using direct cairo calls to draw the + canvas items frame/background/labels, use gtk_render_* methods + directly. + This has the advantage of making them more friendly with GTK+ themes + (by + adding a nemo-canvas-item style class to the canvas context when + drawing) and removes a ton of convoluted cairo drawing code. + +M libnemo-private/nemo-icon-canvas-item.c + +commit 483f13c18f55e489bc15ad266d5612edf96ad95a +Author: Matej Urbančič +Date: 2011-09-07 + + Updated Slovenian translation + +M po/sl.po + +commit 5b09cedf434b53a975074b346d511335fc735cba +Author: Rui Matos +Date: 2011-08-08 + + list-view: explicitly set cursor on file name cell renderer on rename + + The file name column has two cell renderers, one for the icon and + another for + the name string. Thus, gtk_tree_view_set_cursor() isn't enough + to reliably + start editing the file name cell since it will try to edit whatever + is the + currently focused cell in the column. + + https://bugzilla.gnome.org/show_bug.cgi?id=656128 + +M src/nemo-list-view.c + +commit b20d9570c840f696eae5216652d93540bcfdc6db +Author: Cosimo Cecchi +Date: 2011-09-07 + + floating-bar: remove some unused code + +M src/nemo-floating-bar.c + +commit 00b108c687408db87ebb617186aa8fa62f35c7de +Author: Luke Symes +Date: 2011-07-16 + + Don't hide the floating-bar on hover if it is interactive + + If there are actions set on the floating bar, avoid escaping the + pointer. + + https://bugzilla.gnome.org/show_bug.cgi?id=654558 + +M src/nemo-floating-bar.c +M src/nemo-window-manage-views.c + +commit 3f892611ab497180fae677abd6520e4cd387877f +Author: Stas Solovey +Date: 2011-09-07 + + Updated Russian translation + +M po/ru.po + +commit a21d27b66fa307adaf87918f5feb2be44d52fdca +Author: Cosimo Cecchi +Date: 2011-09-07 + + places-sidebar: don't manually highlight the symbolic eject icon + + Set the right style class and state when rendering the icon, so the + theming engine can fetch the right color from the theme and color the + symbolic icon automatically. + +M src/nemo-places-sidebar.c + +commit 1eaae29320deb8dc6f218c13584aac5bbb66acd1 +Author: Ihar Hrachyshka +Date: 2011-09-07 + + Updated Belarusian translation. + +M po/be.po + +commit 407e426fcd2413a5a27e8bbc9f455da9e3fbbe59 +Author: Kjartan Maraas +Date: 2011-09-06 + + Updated Norwegian bokmål translation + +M po/nb.po + +commit 62bb5efc592a1241bfb0ca5c3773eb8ad899cbcc +Author: Chao-Hsiung Liao +Date: 2011-09-06 + + Updated Traditional Chinese translation(Hong Kong and Taiwan) + +M po/zh_HK.po +M po/zh_TW.po + +commit fa72a893c4e8558d94c22cb9ed3ed6c417eb265f +Author: Daniel Nylander +Date: 2011-09-05 + + Updated Swedish translation + +M po/sv.po + +commit 2d66b738054eb27a0f624be5a4a76d038c907b4d +Author: Jorge González +Date: 2011-09-05 + + Updated Spanish translation + +M po/es.po + +commit 8478047a09576891e30d87232d332da244c8a518 +Author: Fran Dieguez +Date: 2011-09-05 + + Updated galician translations + +M po/gl.po + +commit 4060b9ee98bb080383e4d973c7ae5be1a515f785 +Author: Shaun McCance +Date: 2011-09-02 + + Update help targets and add more useful entries to help menu + +M src/nemo-bookmarks-window.c +M src/nemo-connect-server-dialog.c +M src/nemo-file-management-properties.c +M src/nemo-properties-window.c +M src/nemo-shell-ui.xml +M src/nemo-view.c +M src/nemo-window-menus.c + +commit 156f61454a06dddadb82990bfd4d287729352ece +Author: Ihar Hrachyshka +Date: 2011-09-04 + + Updated Belarusian translation. + +M po/be.po + +commit 80d2046dd0df5719daa6ce9b702f0c0265eb7044 +Author: André Gondim +Date: 2011-09-03 + + Updated Brazilian Portuguese translation, reviewed by Antonio + Fernandes C. Neto . + +M po/pt_BR.po + +commit c687d66e473f7094c6af552a69d14d81ae4c3baf +Author: Aurimas Černius +Date: 2011-09-03 + + Updated Lithuanian translation + +M po/lt.po + +commit af0022fc388a587726f1186bbe131c666e4d50a3 +Author: Tomas Bzatek +Date: 2011-09-02 + + previewer: Fix leaked GError + +M src/nemo-previewer.c + +commit e75ff65bc233eaaff108329376ff04b007422668 +Author: Stas Solovey +Date: 2011-08-31 + + Updated Russian translation + +M po/ru.po + +commit db72d73b3cd58493b1b8878a52ff8a9f5d350602 +Author: Vincent Untz +Date: 2011-08-30 + + all: Remove preferences about sound previewing + + The code was removed, so no need to keep the preference. + + https://bugzilla.gnome.org/show_bug.cgi?id=657718 + +M libnemo-private/nemo-global-preferences.h +M libnemo-private/nemo.convert +M libnemo-private/org.gnome.nemo.gschema.xml.in +M src/nemo-file-management-properties.c +M src/nemo-file-management-properties.ui + +commit 3c5cc30d554e641d6013ef196b1a2d7c9424fa41 +Author: Cosimo Cecchi +Date: 2011-08-29 + + release: prepare for 3.1.90 + +M NEWS +M configure.in + +commit 3d44be7ced5267143b3eb2ffcf7118c4fec3a199 +Author: Andika Triwidada +Date: 2011-08-18 + + Updated Indonesian translation + +M po/id.po + +commit 2d3ba922514b5b5aa5db01214b0dd183a2fdb8e2 +Author: A S Alam +Date: 2011-08-18 + + update translation for Punjabi + +M po/pa.po + +commit cfb84e3f7e44b0d752541ece747cec0066f0cea9 +Author: Theppitak Karoonboonyanan +Date: 2011-08-14 + + Updated Thai translation. + +M po/th.po + +commit 945f5bfaf3abbeaf963675ffd5d476cbefde8d74 +Author: Piotr Drąg +Date: 2011-08-12 + + Updated Polish translation + +M po/pl.po + +commit 7f580504c1fc5904636b9314feab5d5f881a0ea5 +Author: Alexander Shopov +Date: 2011-08-10 + + Updated Bulgarian translation + +M po/bg.po + +commit a1830fad48e6f5769aab40917f44ebc8447501d4 +Author: Kjartan Maraas +Date: 2011-08-10 + + Updated Norwegian bokmål translation + +M po/nb.po + +commit 484117c8383a655e0c33e1206c6eb09a35692ead +Author: Hendrik Knackstedt +Date: 2011-08-05 + + [l10n] Updated German translation + +M po/de.po + +commit 99d7f0867eacde30502c5e7d4a074bed5d046dd6 +Author: Nguyễn Thái Ngọc Duy +Date: 2011-08-03 + + po/vi.po: fix "free space" translation + +M po/vi.po + +commit c997bbe8b8bfb423d03f3475088a983e59bd9168 +Author: Cosimo Cecchi +Date: 2011-07-31 + + all: remove the built-in hover audio previewer + + This is not really useful anymore now that we have Sushi, which is way + more powerful. + +M icons/Makefile.am +D icons/audio.svg +M libnemo-private/nemo-icon-canvas-item.c +M libnemo-private/nemo-icon-container.c +M libnemo-private/nemo-icon-private.h +M src/Makefile.am +D src/nemo-audio-mime-types.h +M src/nemo-icon-view.c + +commit 065cecec33baf0f8e181da25313cb8030db4da18 +Author: Cosimo Cecchi +Date: 2011-08-01 + + application: call Close() on the previewer when there are no windows + + When the last window is removed from the application object, close the + previewer too. + +M src/nemo-application.c + +commit f05eaaad2ef96338622c035696148be852c4aca0 +Author: Cosimo Cecchi +Date: 2011-08-01 + + previewer: add a wrapper for the Close() remote method + +M src/nemo-previewer.c +M src/nemo-previewer.h + +commit 60a31b50c2231f9e9f0d624f2ee9cff4800655db +Author: Cosimo Cecchi +Date: 2011-08-01 + + previewer: call methods directly on the GDBusConnection + + Initialize the DBus connection in the constructor and call methods + directly on it, instead of keeping the proxy around. + +M src/nemo-previewer.c + +commit d0573ec843e73b2832ccc64c08b21c6083526fd9 +Author: Lê Trường An +Date: 2011-07-24 + + Updated Vietnamese translation + +M po/vi.po + +commit 2b684e6ea35682ab6e636ca8723fb5d4f5104307 +Author: Bruno Brouard +Date: 2011-07-31 + + Updated French translation + +M po/fr.po + +commit a1949a8980d0d932ef8effebf44d10e4727cbeb2 +Author: Djavan Fagundes +Date: 2011-07-28 + + Fixed a string in Brazilian Portuguese translation + +M po/pt_BR.po + +commit f486646784ab6cf519fc9168629b40ca8259655a +Author: Henrique P. Machado +Date: 2011-07-27 + + Fixed a string in Brazilian Portuguese translation + +M po/pt_BR.po + +commit a000844b5a6039375b0e4176dd4c0f7083b46cb7 +Author: Cosimo Cecchi +Date: 2011-07-27 + + thumbnails: make sure to cache all mime types from gdk-pixbuf + + G_N_ELEMENTS() does not work for heap-allocated arrays, and always + returns 1, so we were not actually caching all the supported mime + types + for a specific pixbuf loader after the first. + This should also fix nemo not thumbnailing e.g. compressed SVG + images, as reported in [1]. + + [1] https://bugzilla.gnome.org/show_bug.cgi?id=655406 + +M libnemo-private/nemo-thumbnails.c + +commit 0ee113dc1c5affda3eabf73b4c70c77456509d20 +Author: Cosimo Cecchi +Date: 2011-07-25 + + release: prepare for 3.1.4 + +M NEWS +M configure.in + +commit 475ed89d6e6ac99f46700babd16671f88bd1386c +Author: Didier Roche +Date: 2011-07-25 + + Remove "Create Launcher" entry option + + "Create launcher" entry from nemo seems weird as nemo doesn't + draw the + desktop for GNOME Shell, and this rely on a gnome-panel binary. This + brings + inconsistency between the two sessions. + + https://bugzilla.gnome.org/show_bug.cgi?id=654848 + https://bugs.launchpad.net/bugs/723861 + +M src/nemo-actions.h +M src/nemo-desktop-icon-view-ui.xml +M src/nemo-desktop-icon-view.c +M src/nemo-directory-view-ui.xml +M src/nemo-view.c +M src/nemo-view.h + +commit 3caf41765453c3c4cf9a73aae87b185d099598f9 +Author: Antoine Jacoutot +Date: 2011-06-20 + + Turn nemo_window_close() into a virtual method. + + nemo_window_close() is now a virtual method that will behaves + according to NemoWindowClass: it won't do anything if the + window is + a NemoDesktopWindow (i.e. it won't close it) which would prevent + desktop icons from disappearing. + nemo_application_close_all_windows() will now skip hiding windows + but close them right away. + + https://bugzilla.gnome.org/show_bug.cgi?id=652724 + +M src/nemo-application.c +M src/nemo-desktop-window.c +M src/nemo-window.c +M src/nemo-window.h + +commit 2bbbc01dc6429e948aed0bbf077e1b77880352ee +Author: Antoine Jacoutot +Date: 2011-07-15 + + Move the 'File System' shortcut down the list in the sidebar. + + Users access more often the XDG dirs than the root filesystem, + so it makes + sense to move it below. + + https://bugzilla.gnome.org/show_bug.cgi?id=654681 + +M src/nemo-places-sidebar.c + +commit 8686479b2be23735caec35c401d24db499cb2f2c +Author: Cosimo Cecchi +Date: 2011-07-21 + + icon-names: use 'drive-harddisk-system' as File System icon + + Now that it has been added to gnome-icon-theme-extras. + + https://bugzilla.gnome.org/show_bug.cgi?id=620085 + +M libnemo-private/nemo-icon-names.h + +commit 3f42d04301d9a8fcf43f176d1e601356489eb84f +Author: Cosimo Cecchi +Date: 2011-07-21 + + window: remove 'Clear History' from the 'Go' menu + + This is a leftover from the past, when we used to have a global + history + list. Now that Nemo is not persistent and we don't have that + anymore, it doesn't really make sense to keep this menu item. + + https://bugzilla.gnome.org/show_bug.cgi?id=654422 + +M src/nemo-shell-ui.xml +M src/nemo-window-menus.c +M src/nemo-window.c +M src/nemo-window.h + +commit 75960497c6c8e657f010aef7d2bbbf1fda19c4ad +Author: Cosimo Cecchi +Date: 2011-07-21 + + location-bar: don't pack an useless box in the bar + + The bar is an horizontal box already, no need to pack another hbox in + it. This also fixes content not expanding in the available width, as + noted in https://bugzilla.gnome.org/show_bug.cgi?id=654389. + +M src/nemo-location-bar.c + +commit 283e9b32cae61b5501ece85d1dacb1e1c29c4b85 +Author: Cosimo Cecchi +Date: 2011-07-21 + + file: use g_format_size_full instead of printf-ing the long string + + Now that GLib has g_format_size_full(), we can easily format the long + string (e.g. 45MB (45,123,456 bytes)) using it, instead of our custom + printf function. + +M libnemo-private/nemo-file.c + +commit 3e69fb702393cf42486321c88cede4668329b4c8 +Author: Ryan Lortie +Date: 2011-07-20 + + all: switch to g_format_size() + + g_format_size_for_display() has been deprecated in GLib and replaced + with + g_format_size(). Follow that change. + + https://bugzilla.gnome.org/show_bug.cgi?id=654995 + +M configure.in +M libnemo-private/nemo-file-operations.c +M libnemo-private/nemo-file.c +M src/nemo-properties-window.c +M src/nemo-view.c + +commit 2160de69245ad15826f6aed1a5ef15455d7851d0 +Author: Cosimo Cecchi +Date: 2011-07-14 + + a11y: remove some unused code + +M eel/eel-accessibility.c +M eel/eel-accessibility.h + +commit a7bd0741e0772f3b143e5c1d77860cce8f3d9872 +Author: Ihar Hrachyshka +Date: 2011-07-14 + + Updated Belarusian translation. + +M po/be.po + +commit 227ccadc10af524ad1104d36c1343f26be55cf67 +Author: Rudolfs Mazurs +Date: 2011-07-13 + + Updated Latvian translation. + +M po/lv.po + +commit 613f7180ca741b201e5933d1ebf41fe811a722b4 +Author: Abduxukur Abdurixit +Date: 2011-07-07 + + Added UG translation + +M po/ug.po + +commit 4d68a3bbab0e6157f83c90288b58bdfebace63c2 +Author: Muhammet Kara +Date: 2011-07-06 + + Updated Turkish translation + +M po/tr.po + +commit fb45c737e0f7080bd0f51c532311b942a20e38a1 +Author: Muhammet Kara +Date: 2011-07-06 + + Fixed a few funny errors in Turkish translation + +M po/tr.po + +commit 614b7d3b2b7d09dc4bf19a51ae56a2a087212c99 +Author: Muhammet Kara +Date: 2011-07-03 + + Updated Turkish translation + +M po/tr.po + +commit 391d537f224204803ef8b50344892166cd9808fa +Author: Kjartan Maraas +Date: 2011-07-02 + + Updated Norwegian bokmål translation + +M po/nb.po + +commit 5817e7ad138f053c80d9257693dbacccb88eecbf +Author: Cosimo Cecchi +Date: 2011-07-01 + + release: prepare for 3.1.3 + +M NEWS +M configure.in + +commit 34bbbc57864e454bdddcc59f322bf06b56254ef6 +Author: Cosimo Cecchi +Date: 2011-07-01 + + all: remove some unneeded includes + +M eel/eel-gtk-extensions.c +M libnemo-private/.gitignore +M libnemo-private/nemo-directory-async.c +M libnemo-private/nemo-tree-view-drag-dest.c +M src/.gitignore + +commit 5c6950277332ca53fceb27d58fa3f06101737726 +Author: Cosimo Cecchi +Date: 2011-07-01 + + all: use g_cclosure_marshal_generic() instead of generating + marshallers + +M eel/Makefile.am +M eel/eel-canvas.c +M eel/eel-editable-label.c +M libnemo-private/Makefile.am +M libnemo-private/nemo-directory-async.c +M libnemo-private/nemo-icon-container.c +M libnemo-private/nemo-tree-view-drag-dest.c +M src/Makefile.am +M src/nemo-query-editor.c +M src/nemo-view.c +M src/nemo-window.c + +commit 922307d634a0401c8cc29bee70c6335b2eb9a17c +Author: Cosimo Cecchi +Date: 2011-06-28 + + build: bump GTK+ dep to 3.1.6 + + We need it for GtkOverlay. + +M configure.in + +commit eb8ba09e82cbf7045d75a638ef69318e65a8a75f +Author: Ihar Hrachyshka +Date: 2011-06-28 + + Updated Belarusian translation. + +M po/be.po + +commit 49db9b14ed4e08887e4dc3e5e4cd4c184f48d4ad +Author: Ihar Hrachyshka +Date: 2011-06-26 + + Updated Belarusian translation. + +M po/be.po + +commit ff6b4f64ab2499e149d2d75e812b2e6e40d68156 +Author: Мирослав Николић +Date: 2011-06-25 + + Updated Serbian translation + +M po/sr.po +M po/sr@latin.po + +commit 6ac24b5381c7a26f85b8c72662c9ac4a54269e26 +Author: Cosimo Cecchi +Date: 2011-06-21 + + application: make sure --no-default-window works when used with an URI + +M src/nemo-application.c + +commit ffd2125b13ac591428cf73ac3c0021849d36058a +Author: Daniel Nylander +Date: 2011-06-20 + + Updated Swedish translation + +M po/sv.po + +commit ea4609ff6123798edf93b0e54b8b03a2fda94fce +Author: Gabor Kelemen +Date: 2011-06-19 + + Fix an inconsistency and a too long button + +M po/hu.po + +commit 95d45f1994795942774b039ba0de6933d9ffa5c7 +Author: Paolo Borelli +Date: 2011-06-18 + + Fix gobject warning about nonexisting property + + NemoDesktopWindow does not have an "app" propety anymore. + +M src/nemo-application.c +M src/nemo-desktop-window.c +M src/nemo-desktop-window.h + +commit 4c37f5a1c1c7861b45359e36a5efd868cf3f3bb0 +Author: Cosimo Cecchi +Date: 2011-06-16 + + all: don't return a reference when getting the application singleton + + This simplifies the code a bit. Also, remove the useless "app" + property + on NemoWindow while we're at it. + +M src/nemo-application.c +M src/nemo-application.h +M src/nemo-bookmarks-window.c +M src/nemo-connect-server-dialog-nonmain.c +M src/nemo-location-bar.c +M src/nemo-main.c +M src/nemo-places-sidebar.c +M src/nemo-progress-ui-handler.c +M src/nemo-window-manage-views.c +M src/nemo-window-menus.c +M src/nemo-window-private.h +M src/nemo-window.c +M src/nemo-window.h + +commit 2b9ebd30e880733d3f40430d1d022ae2f8a4bf77 +Author: krishnababu k +Date: 2011-06-15 + + Corrections in Telugu file + +M po/te.po + +commit 296ef2be9726185ee08552d3e8bb17d2a98a40b7 +Author: Paolo Borelli +Date: 2011-06-05 + + Add "Add Bookmark" to the sidepane context menu + + https://bugzilla.gnome.org/show_bug.cgi?id=651931 + +M src/nemo-places-sidebar.c + +commit 67482b37c8b6581262da28798b6b4e36419b4852 +Author: krishnababu k +Date: 2011-06-15 + + Updated Telugu Translations + +M po/te.po + +commit aa3eff54fcab36a1fab561ec8527608e12a1496b +Author: Cosimo Cecchi +Date: 2011-06-13 + + overlay: remove unused gedit-overlay-child + +D src/gedit-overlay-child.c +D src/gedit-overlay-child.h + +commit 17b2ff9b002498b8e6ce28c7bf846b0daf3ce206 +Author: Cosimo Cecchi +Date: 2011-06-13 + + release: update for 3.1.2 + +M NEWS +M configure.in + +commit 63e37acc17900e81605b994e8d4e6dd59f1769da +Author: Cosimo Cecchi +Date: 2011-06-13 + + floating-bar: fix background/frame rendering + +M src/nemo-floating-bar.c + +commit 752ab2718ba4f7e968678facfd8dd0ea6b0e4b26 +Author: Cosimo Cecchi +Date: 2011-06-13 + + css: cleanup the CSS file a bit + +M data/nemo.css + +commit a28a89ab8112a5207d5413e5f767f191d1d13339 +Author: Cosimo Cecchi +Date: 2011-06-13 + + floating-bar: port to GtkOverlay + +M src/Makefile.am +D src/gedit-overlay.c +D src/gedit-overlay.h +M src/nemo-floating-bar.c +M src/nemo-floating-bar.h +M src/nemo-icon-view.c +M src/nemo-list-view.c +M src/nemo-window-slot.c +M src/nemo-window-slot.h + +commit 6260482af6804adda242d7a8582ccdd155beb9e0 +Author: Cosimo Cecchi +Date: 2011-06-13 + + all: don't use Gtk[H/V]Box in UI files + +M src/nemo-bookmarks-window.ui +M src/nemo-file-management-properties.ui + +commit d6de7f5f0ff90775445c3dc353328301c66f0de1 +Author: Cosimo Cecchi +Date: 2011-06-13 + + all: don't use deprecated Gtk[H/V]Box + +M libnemo-private/nemo-column-chooser.c +M libnemo-private/nemo-column-chooser.h +M libnemo-private/nemo-file-conflict-dialog.c +M libnemo-private/nemo-icon-container.c +M libnemo-private/nemo-mime-application-chooser.h +M src/nemo-connect-server-dialog.c +M src/nemo-desktop-item-properties.c +M src/nemo-image-properties-page.c +M src/nemo-image-properties-page.h +M src/nemo-location-bar.c +M src/nemo-location-bar.h +M src/nemo-notebook.c +M src/nemo-pathbar.c +M src/nemo-progress-info-widget.c +M src/nemo-progress-ui-handler.c +M src/nemo-properties-window.c +M src/nemo-query-editor.c +M src/nemo-view.c +M src/nemo-window-pane.c +M src/nemo-window-slot.c +M src/nemo-window.c + +commit 2c37855719d90413705bd102ef5a29aac33f598a +Author: Teliute +Date: 2011-06-12 + + Update Simplified Chinese translation. + +M po/zh_CN.po + +commit e46d446be937d0e43ffea1bbc41381388706cf42 +Author: Matej Urbančič +Date: 2011-06-10 + + Updated Slovenian translation + +M po/sl.po + +commit f657a12a9f1da481e7a580335b682749ac4b01cf +Author: Javier Jardón +Date: 2011-06-09 + + libnemo-private: Use 'const' instead G_CONST_RETURN + +M libnemo-private/nemo-icon-canvas-item.c +M libnemo-private/nemo-icon-info.c +M libnemo-private/nemo-icon-info.h + +commit a8443f64b6554b640f9bd39b3470284127b7bc3f +Author: Javier Jardón +Date: 2011-06-09 + + eel: Use 'const' instead G_CONST_RETURN + +M eel/eel-editable-label.c +M eel/eel-editable-label.h + +commit 253e72f88a85759fe0630aecfb9cea4011e74e5a +Author: Kjartan Maraas +Date: 2011-06-07 + + Updated Norwegian bokmål translation + +M po/nb.po + +commit 64d608f8cc2d6e266900e5a33402249b20dfec1e +Author: Fran Diéguez +Date: 2011-06-06 + + Updated Galician translations + +M po/gl.po + +commit 12541f6a1ab1fbf30b032dc628aca147d6de2ad0 +Author: Yaron Shahrabani +Date: 2011-06-04 + + Updated Hebrew translation. + +M po/he.po + +commit e36c6f5871f6f16833361ce57a4845d46e73f3f1 +Author: Yaron Shahrabani +Date: 2011-06-04 + + Updated Hebrew translation. + +M po/he.po + +commit 092ba8f674341769579bc515389e7bb67035824d +Author: Daniel Mustieles +Date: 2011-06-04 + + Updated Spanish translation + +M po/es.po + +commit f83bdf0081bfb5d6b8caad8848a267fecb95b85b +Author: Cosimo Cecchi +Date: 2011-06-03 + + connect-server: handle closing of the dialog while connecting + + If we start a connect operation, but close the dialog before providing + the credential details, cancel the operation and hide the dialog, + instead of segfaulting. + The dialog will eventually be destroyed when the the mount operation + terminates (with error). + +M src/nemo-connect-server-dialog.c +M src/nemo-connect-server-operation.c + +commit e3f055c886e9db0c105de59e80573a9715c41060 +Author: Cosimo Cecchi +Date: 2011-06-03 + + eel-string: don't use deprecated gatomic API + +M eel/eel-string.c + +commit a0d9614d204d0494d329e04c1d7652e451c2573f +Author: Cosimo Cecchi +Date: 2011-06-03 + + toolbar: disconnect the GSettings callback on dispose + +M src/nemo-toolbar.c + +commit b62ab1413cca6694b9b09fc9d241bbf3581a56e6 +Author: Djavan Fagundes +Date: 2011-06-03 + + Updated Brazilian Portuguese translation + +M po/pt_BR.po + +commit a5a4bddf12ff29205757858af81fd3665a68c3f2 +Author: Cosimo Cecchi +Date: 2011-05-31 + + application: pass in the array length while looping over it + +M src/nemo-application.c + +commit d0240a4319561551adc5e0cdb94bb5486d3f3308 +Author: Carles Ferrando +Date: 2011-05-29 + + [l10n]Updated Catalan (Valencian) translation + +M po/ca@valencia.po + +commit 1f01e04e135c77722cd3d06065f4ceed20d19219 +Author: Jorge González +Date: 2011-05-29 + + Updated Spanish translation + +M po/es.po + +commit ea223de6187778ce0a0a70356009f1c24c084c57 +Author: Jorge González +Date: 2011-05-29 + + Updated Spanish translation + +M po/es.po + +commit 178bae2b656b2cae7ad39f81076fca7c65adf429 +Author: Yuri Myasoedov +Date: 2011-05-28 + + Updated Russian translation + +M po/ru.po + +commit 362696f86bce90dcfa599bf6f4e17ffd0a679860 +Author: Cosimo Cecchi +Date: 2011-05-25 + + metadata: add a metadata::custom-icon-name metadata key + + It's similar to metadata::custom-icon, only that it works on icon + names + instead of URIs. + + https://bugzilla.gnome.org/show_bug.cgi?id=626338 + +M libnemo-private/nemo-file.c +M libnemo-private/nemo-metadata.c +M libnemo-private/nemo-metadata.h + +commit fc3d9af1dff85ef27ff44ea4e71b269a2b700e7d +Author: Cosimo Cecchi +Date: 2011-05-24 + + autostart: add an autostart desktop file + + It will autostart nemo automatically based on the GSettings key + org.gnome.desktop.background show-desktop-icons. + + https://bugzilla.gnome.org/show_bug.cgi?id=647267 + +M data/Makefile.am +A data/nemo-autostart.desktop.in + +commit 636c06bdc3397b1c6bad78afe2094c149c59f6fb +Author: Cosimo Cecchi +Date: 2011-05-24 + + css: update for new GtkCssParser + +M data/nemo.css + +commit e239f2a150f34b7f7b4730772fae5a372a7924d1 +Author: Cosimo Cecchi +Date: 2011-05-23 + + floating-bar: copy code from Epiphany to hide the floating bar + on hover + + This doesn't currently work perfectly if the overlay child is a + GtkTreeView - more investigation is needed. + In the meanwhile, it's still better than not hiding the bar ever, + so here it is. + + https://bugzilla.gnome.org/show_bug.cgi?id=648740 + +M src/nemo-floating-bar.c + +commit f0649b5bb808aa71fcab52c3e61f5e6419928432 +Author: Cosimo Cecchi +Date: 2011-05-23 + + gedit-overlay: update from upstream + +M src/gedit-overlay-child.c +M src/gedit-overlay.c + +commit 5c949fffcb0de62fd5375f546fa94dd50ec7f86f +Author: Cosimo Cecchi +Date: 2011-05-24 + + application: rewrite GApplication command line handling + + Do the command line parsing in local_command_line for the set + of options + we're interested in parsing there (e.g. directories to open, + self checks + and --quit); move the rest of initialization in + nemo_application_startup() and use g_application_open() and + a custom + "quit" action to forward the requests to the main application. + + This also fixes these two bugs. + + https://bugzilla.gnome.org/show_bug.cgi?id=649336 + https://bugzilla.gnome.org/show_bug.cgi?id=637157 + +M src/nemo-application.c +M src/nemo-application.h +M src/nemo-connect-server-dialog-nonmain.c +M src/nemo-location-bar.c +M src/nemo-places-sidebar.c +M src/nemo-window-manage-views.c +M src/nemo-window-menus.c + +commit b9272618934a4c177166e5f7771e6ab6cabcc31b +Author: Nguyễn Thái Ngọc Duy +Date: 2011-05-24 + + po/vi.po: updated UI to match nemo-preview.page + +M po/vi.po + +commit e738e686af858c38ca7c0b32426b3a1dfea0d9a2 +Author: Nguyễn Thái Ngọc Duy +Date: 2011-05-24 + + po/vi.po: fix up UI to match nemo-views.page + +M po/vi.po + +commit f76c50a0e46aa7786820f76b3f71b57b44b8d7fb +Author: Cosimo Cecchi +Date: 2011-05-23 + + window: reverse the order of key-press event processing + + Usually the default GtkWindow handler for key-press events processes + them in the following order: + - calls gtk_window_activate_key() to process mnemonics/accelerators + for + the toplevel window + - calls gtk_window_propagate_key_event() to propagate the events + to the + focus widget + - chains up to parent if both fail + + We want gtk_window_propagate_key_event() to be called before + gtk_window_activate_key(), as when we're focusing an editable widget + (e.g. renaming a file), we want all keybindings to apply to that, e.g. + Delete, Ctrl+Delete (or Ctrl+W if we're e.g. using an emacs-mode + GTK+ binding set). This interferes a bit with the type-ahead search + windows that NemoIconContainer and GtkTreeView pop up; we can + control the former, but not the latter, so we need a bit of a hack in + NemoListView to prevent the search window to steal the pasted URI, + and still not handle the event. + + https://bugzilla.gnome.org/show_bug.cgi?id=314431 + +M libnemo-private/nemo-icon-container.c +M src/nemo-list-view.c +M src/nemo-window.c + +commit fae5d9242e2edf0881a382ed8cb19599c27cdc49 +Author: Cosimo Cecchi +Date: 2011-05-23 + + query-editor: add a border around the query editor widgets + + https://bugzilla.gnome.org/show_bug.cgi?id=647737 + +M src/nemo-query-editor.c + +commit f5e967f964b88ad7e4cc81818e9c0092d842e0a8 +Author: Stefano Teso +Date: 2011-05-23 + + connect-server: strip the scheme if it matches the chosen method + + If e.g. ftp://ftp.example.com is specified as an address, and the FTP + method is chosen, we should strip "ftp://" automatically from the + address before connecting. + + https://bugzilla.gnome.org/show_bug.cgi?id=643608 + +M src/nemo-connect-server-dialog.c + +commit c17d7bec375b1a8838d6132ccced89da6b092316 +Author: Cosimo Cecchi +Date: 2011-05-23 + + location-entry: use symbolic icons for the secondary action hint + + https://bugzilla.gnome.org/show_bug.cgi?id=647685 + +M src/nemo-location-entry.c + +commit b30bda3e1f341b107fbe4f73f1d7b769504d23cd +Author: Cosimo Cecchi +Date: 2011-05-23 + + view: add the "view" style class to the icon container + + Not to the NemoView scrolled windows. + +M src/nemo-icon-view-container.c +M src/nemo-view.c + +commit c78c3022f07aa790a1f21c48e4ebf62712c6b70f +Author: Cosimo Cecchi +Date: 2011-05-09 + + dbus: don't generate the docbook file + +M libnemo-private/Makefile.am + +commit 2cf6e53496967b1e00cc026e33c7b63c587c78b4 +Author: Cosimo Cecchi +Date: 2011-05-09 + + release: prepare for 3.1.1 + +M NEWS +M configure.in + +commit ab6436cfa60a7f5088dd92f3d6dec74e0527b086 +Author: Cosimo Cecchi +Date: 2011-05-09 + + previewer: avoid creating the dbus proxy more than once + +M src/nemo-previewer.c + +commit 16b76b5f97dda14e2c3397345965a07ecc1cd377 +Author: Cosimo Cecchi +Date: 2011-05-09 + + previewer: don't warn out if the bus name is not owned by anybody + +M src/nemo-previewer.c + +commit a8f2c97e5f67fa1c309cf694f8ca00f5dc38abb9 +Author: Cosimo Cecchi +Date: 2011-05-01 + + previewer: don't return a new ref to the singleton + + It's easier to use this way, and we don't have to create a new DBus + proxy every time. + +M src/nemo-previewer.c +M src/nemo-previewer.h +M src/nemo-view.c + +commit 71b8a7a8d66f0c927be9b7c12199d1472043ed66 +Author: Alexander Larsson +Date: 2011-04-29 + + Add close_if_already_visible argument to + nemo_previewer_call_show_file + + As per the changes in sushi + +M src/nemo-previewer.c +M src/nemo-previewer.h +M src/nemo-view.c + +commit f087da3353074f7476a563ab62d5ac7cf0d65e41 +Author: Cosimo Cecchi +Date: 2011-04-27 + + previewer: drop the x/y coordinates arguments + +M src/nemo-previewer.c +M src/nemo-previewer.h +M src/nemo-view.c + +commit 703c5004a7b05959e3dd554974f28b46df3f0609 +Author: Cosimo Cecchi +Date: 2011-04-25 + + previewer: lazily create the DBus proxy + +M src/nemo-previewer.c +M src/nemo-view.c + +commit e5bf6ef0ec8ca50990aff4afd08a4139d4a75798 +Author: Cosimo Cecchi +Date: 2011-04-25 + + debug: add a debug flag for the previewer + +M libnemo-private/nemo-debug.c +M libnemo-private/nemo-debug.h + +commit 034eeb090458443b97fbe9b601a045defb5435f9 +Author: Cosimo Cecchi +Date: 2011-04-25 + + list-view: hook up the previewer in list view + + No support for icon locations yet, but it's not implemented in + the previewer + either. + +M src/nemo-list-view.c + +commit ccfd4e1c1d9166c78badac8d83958270cf7aef9e +Author: Cosimo Cecchi +Date: 2011-04-21 + + all: hook up the previewer with NemoIconView + +M libnemo-private/nemo-icon-container.c +M libnemo-private/nemo-icon-container.h +M src/nemo-icon-view.c +M src/nemo-view.c +M src/nemo-view.h + +commit 4241ccfd39b6013d2ddd7fbd58aabf5ef1a2302d +Author: Cosimo Cecchi +Date: 2011-04-21 + + previewer: add a NemoPreviewer DBus wrapper class + +M src/Makefile.am +A src/nemo-previewer.c +A src/nemo-previewer.h + +commit 9669b91d70ec1cf59933df53f9c22ed16670bb90 +Author: Alexander Larsson +Date: 2011-05-04 + + Update all .gitignore files + +M .gitignore +M data/.gitignore +M eel/.gitignore +M libnemo-private/.gitignore +M src/.gitignore + +commit 7c27c4ce158d09be188b529882ecd5c6b0c17db7 +Author: Alexander Larsson +Date: 2011-05-04 + + Convert the nemo dbus support to use gdbus-codegen + + This required latest glib code to work. + +M data/Makefile.am +A data/dbus-interfaces.xml +M libnemo-private/Makefile.am +M libnemo-private/nemo-dbus-manager.c + +commit fa6e44717818d7f9239558f81b90c32dceddf58a +Author: Alexander Larsson +Date: 2011-05-04 + + Add size_request to IconContainer to work around unncecessary + relayouting + + The GtkScrolledWindow uses the widget prefered size as a guess as to + whether scrollbars are needed or not in the automatic scrollbars case. + If we don't report anything for them we typically get it wrong + and cause + two size allocate calls on the child each time, with different sizes. + This (the two sizes speicifically) will cause unnecessary relayouts of + the window. + + So, we just report the current size of the layed out icons as the + prefered + size. This is somewhat wrong as its depending on previous + size_allocation + calls rather than the "ideal" size of the widget, but since the + ideal size + is ignored anyway and just used for this it works well. + +M libnemo-private/nemo-icon-container.c + +commit 0cad983521edd476ece360236b6e71e4048bfc70 +Author: Alexander Larsson +Date: 2011-05-04 + + Remove old special-cased "select source folder" + + We now do this generically, so no need to special case it in the + "go up" case. + +M src/nemo-window-slot.c + +commit b15f61369e3618f4dc2cd3cef5af3698c45706a0 +Author: Alexander Larsson +Date: 2011-05-04 + + Always select the folder you "came from" when navigating upwards + + We used to special case this for the up button, but that now + only exists as a keyboard shortcut. This more generic approach + gets the same feature also for pathbar navigation and back/forward + history navigation. + +M src/nemo-window-manage-views.c + +commit e9a7007284b9520855cdbb16fa4724ca0f1739d9 +Author: Alexander Larsson +Date: 2011-05-04 + + Really open in new window on the pathbar contect menu item + + Turns out that we didn't pass the NEW_WINDOW flag in the handler + for the LocationOpenAlternate action. This is used when right-clicking + on the location label or the pathbar. + +M src/nemo-view.c + +commit 41c7cb2ae8fb98fab2cd9b0cfb59cf6dee4d476c +Author: Alexander Larsson +Date: 2011-05-03 + + icon-view: Only resort during relayout if necessary + + We don't need to resort unless e.g. a file changed or was added. + + Additionally, for weird reason this makes the keyboard focus handling + work when deleting a file (file after deleted gets focus). This was + broken due to a relayout happening due to a size_allocate due to + a style set due to a focus change when going to/from the "are + you sure" + dialog. + +M libnemo-private/nemo-icon-container.c +M libnemo-private/nemo-icon-private.h + +commit 31546b509d351e89d8bc0ee23074e8e0ecddbca2 +Author: Cosimo Cecchi +Date: 2011-05-02 + + application: don't look at DESKTOP_AUTOSTART_ID anymore + + Now that we don't support being a session component anymore, + it doesn't + make sense to special case the session autostart. This also breaks + opening new windows when nemo is added to ~/.config/autostart, + which + is now the supported way of having desktop icons automatically, as we + end up reading the env variable every time when parsing the command + line + (as the original process will always have that set) and refuse to + show a + window. + + https://bugzilla.gnome.org/show_bug.cgi?id=649063 + +M src/nemo-application.c + +commit e251214df28bc7c0b749d1ba0be1ab2048ecd06c +Author: Abduxukur Abdurixit +Date: 2011-05-02 + + Added UG translation + +M po/ug.po + +commit a9ea2becdf91c417a64083ecdad5f80fb97e6e51 +Author: Daniel Korostil +Date: 2011-05-02 + + Uploaded Ukranian + +M po/uk.po + +commit 495cb46d54f0b551756c71fb6d5ba60e67f08d61 +Author: Cosimo Cecchi +Date: 2011-05-01 + + places-sidebar: disconnect from bookmark list changed signal on + dispose + + This should hopefully fix this crash + https://bugzilla.redhat.com/show_bug.cgi?id=699184 + +M src/nemo-places-sidebar.c + +commit ac70a95ecc44ba259b684f737bb108f1458fa9dc +Author: Cosimo Cecchi +Date: 2011-05-01 + + mime-actions: don't free the activation parameters early + + This fixes a segfault when clicking on the "Select Application" button + when opening a file with no default applications, like in + + https://bugzilla.redhat.com/show_bug.cgi?id=699850 + +M src/nemo-mime-actions.c + +commit 3676b08856c4d6cc0a827e9de8f708edefdf2e44 +Author: Cheng-Chia Tseng +Date: 2011-05-01 + + Updated Traditional Chinese translation(Hong Kong and Taiwan) + +M po/zh_HK.po +M po/zh_TW.po + +commit 61502a06524dd9dffac9d2ae97e9a57037343b28 +Author: Daniel Nylander +Date: 2011-05-01 + + Updated Swedish translation + +M po/sv.po + +commit 902b0cd4cc1848b44fb2445ebcc0f8157cdc092f +Author: Matej Urbančič +Date: 2011-04-28 + + Updated Slovenian translation + +M po/sl.po + +commit 254ad76a6f861b4846cb53907dd580fb81a96b05 +Author: Cosimo Cecchi +Date: 2011-04-28 + + progress-ui-handler: don't add progress infos to the window twice + + We were adding them twice in case there was already one operation + running. + + https://bugzilla.gnome.org/show_bug.cgi?id=648857 + +M src/nemo-progress-ui-handler.c + +commit 8e8f0ed6edd3c5d4f9cca0e07a5624a3d5e2ec29 +Author: Cosimo Cecchi +Date: 2011-04-28 + + places-sidebar: make sure to return if we click inside empty space + + https://bugzilla.gnome.org/show_bug.cgi?id=648872 + +M src/nemo-places-sidebar.c + +commit f850fcc0eee61014472e698e6bdd36093ff9dfe2 +Author: Andrej Žnidaršič +Date: 2011-04-27 + + Updated Slovenian translation + +M po/sl.po + +commit a21e3e21940b84f93e0e82320ccfbb6e9a9f2cc3 +Author: Cosimo Cecchi +Date: 2011-04-27 + + places-sidebar: use per-side border widths for the sidebar frames + + This adds a border to the sidebar. + +M data/nemo.css +M src/nemo-places-sidebar.c + +commit f6dc5f319fb79203bd7645e49420d2a4b57c0373 +Author: Cosimo Cecchi +Date: 2011-04-25 + + toolbar: set the icon size to SMALL_TOOLBAR + + So that the Search button icon is drawn with a smaller size. + +M src/nemo-toolbar.c + +commit 3cf09dc4e47ca0db181dd34af22977b8e91cf0f9 +Author: Ask H. Larsen +Date: 2011-04-25 + + Updated Danish translation + +M po/da.po + +commit 7a8f54b3bbff53b17d46dc6306636852636d1609 +Author: Stefano Teso +Date: 2011-04-25 + + places-sidebar: fix opening of selected items by pressing Enter + + Don't use get_cursor() to open the current item in the sidebar, + and use + the tree selection instead, as we modify the selection manually when + evaluating up/down keypresses. + + https://bugzilla.gnome.org/show_bug.cgi?id=648555 + +M src/nemo-places-sidebar.c + +commit 83a7d27b36120d1ae54a2f5aa4af30f04d470bf2 +Author: Cosimo Cecchi +Date: 2011-04-25 + + icon-container: don't chain up style-updated for the desktop container + + Chaining up resets the background to the default color, which is not + what we want for the desktop container. + + https://bugzilla.gnome.org/show_bug.cgi?id=648137 + +M libnemo-private/nemo-icon-container.c + +commit f0d52a7a29ca0b503ed160bd21e4f1a3354f6394 +Author: Abduxukur Abdurixit +Date: 2011-04-24 + + Added UG translation + +M po/ug.po + +commit e218bff9a4f790f0915f342d764559ee399fa8ee +Author: Jiro Matsuzawa +Date: 2011-04-25 + + Updated Japanese translation + +M po/ja.po + +commit 7288e91d77f63f4014fa5247bd8a59849f302871 +Author: Arash Mousavi +Date: 2011-04-23 + + Updated Persian translation + +M po/fa.po + +commit 2f070016690ec488b1ac46d6ab2faf860e0c59b6 +Author: Bruce Cowan +Date: 2011-04-20 + + Updated British English translation + +M po/en_GB.po + +commit 630fb578c1d86d4c14118025e9c33c8959d6ecf2 +Author: YunQiang Su +Date: 2011-04-17 + + fix a mistake of Chinese(Simplified) translation + +M po/zh_CN.po + +commit 4a69d60ecf5c6b48492e7dafda7a77e719f9f060 +Author: Nguyễn Thái Ngọc Duy +Date: 2011-04-14 + + Updated Vietnamese translation + +M po/vi.po + +commit 679486ff6db16138027aa85c2aadbb9d272bc984 +Author: Cosimo Cecchi +Date: 2011-04-12 + + places-sidebar: make sure the eject icon is rendered 16x16 + + https://bugzilla.gnome.org/show_bug.cgi?id=647570 + +M src/nemo-places-sidebar.c + +commit fde63a6c6f0484f7284fd57ff26abe9d41c93196 +Author: Daniel Mustieles +Date: 2011-04-11 + + Updated Spanish translation + +M po/es.po + +commit 902aac532bac0da871591bbe481673d2c2d83907 +Author: Åsmund Skjæveland +Date: 2011-04-11 + + Updated Norwegian Nynorsk translation + +M po/nn.po + +commit 6c7bd69033676d2e3f5c25b4308bd59e9d540bda +Author: Åsmund Skjæveland +Date: 2011-04-11 + + Updated Norwegian Nynorsk translation + +M po/nn.po + +commit fdbca53ae2e7c387d05136656fd9c75fd982c863 +Author: Alexander Shopov +Date: 2011-04-10 + + Updated Bulgarian translation + +M po/bg.po + +commit a96761350ad422ec084c12f649562f9a2a83963d +Author: Cosimo Cecchi +Date: 2011-04-08 + + window: treat regular files as selection when opening a location + + This allows to call `nemo uri:///path/to/file` from the command + line + to open uri:///path/to with file pre-selected. + + https://bugzilla.gnome.org/show_bug.cgi?id=632427 + +M src/nemo-window-manage-views.c + +commit 3751310f941ed5df4a2a027ab594df015b3f815c +Author: Yaron Shahrabani +Date: 2011-04-08 + + Updated Hebrew translation. + +M po/he.po + +commit 07a6fb24fda755288346f11afb670cb3c05028fe +Author: Cosimo Cecchi +Date: 2011-04-07 + + icon-container: clear the drag state before popping up context menu + + Otherwise, a fake drag state will leak into the next motion-notify + event + when the menu has been dismissed, causing a segfault. + + https://bugzilla.gnome.org/show_bug.cgi?id=550253 + +M libnemo-private/nemo-icon-container.c + +commit d8b632765ca1b70d909d4e206f40590ee379a305 +Author: Cosimo Cecchi +Date: 2011-04-07 + + search-bar: set redraw_on_allocate(), like GtkInfoBar does + + This fixes artifacts while resizing. A similar patch was committed to + GtkInfoBar in https://bugzilla.gnome.org/show_bug.cgi?id=587716. + + https://bugzilla.gnome.org/show_bug.cgi?id=647013 + +M src/nemo-search-bar.c + +commit e6dc21ba3b908ed93e08e39731733c871a91e171 +Author: Paul Seidler +Date: 2011-04-07 + + libnotify: need at least 0.7.0 + + https://bugzilla.gnome.org/show_bug.cgi?id=647088 + +M configure.in + +commit a8539a688bf83e1ab79167e257df308d1424a103 +Author: Cosimo Cecchi +Date: 2011-04-07 + + icon-container: reset the double click counter after a double click + + If we don't do this, we ignore any other double click event that + happen + during the next 'gtk-double-click-time' interval after the first + double + click. + + Thanks to Tanyel A. Nimeu for the initial patch. + + https://bugzilla.gnome.org/show_bug.cgi?id=647062 + +M libnemo-private/nemo-icon-container.c + +commit f200bfbe8332c0df74335f608f68350609e435d7 +Author: Cosimo Cecchi +Date: 2011-04-07 + + preferences: use g_settings_bind_with_mapping() for radiobuttons + + This also fixes radiobuttons preferences not being applied when + opening + the properties dialog. + + https://bugzilla.gnome.org/show_bug.cgi?id=644478 + +M src/nemo-file-management-properties.c + +commit 392359db6d6496b325044d809d96b034a2298514 +Author: Cosimo Cecchi +Date: 2011-04-07 + + conflict-dialog: make the rename entry expand the whole width + +M libnemo-private/nemo-file-conflict-dialog.c + +commit 1457f53c27f6d2f84d0c9eb76c1c8cffd1177e95 +Author: Cosimo Cecchi +Date: 2011-04-07 + + conflict-dialog: don't force a size request on the labels + + This is not required anymore in GTK+ 3 + +M libnemo-private/nemo-file-conflict-dialog.c + +commit b8077a7ad65f54e397dd3fa1b32f97b838ba590e +Author: Cosimo Cecchi +Date: 2011-04-07 + + conflict-dialog: don't forget to show the primary label + + Reported in https://bugzilla.redhat.com/show_bug.cgi?id=693922 + +M libnemo-private/nemo-file-conflict-dialog.c + +commit f100883058fac79a913d93d1d1157498c87d7912 +Author: Fran Diéguez +Date: 2011-04-07 + + Updated Galician translations + +M po/gl.po + +commit f49b62649a092a56e2cf6203db0fef08d2ed7618 +Author: Cosimo Cecchi +Date: 2011-04-06 + + pathbar: use a NemoFile instead of a GFile as a drag target + + The NemoFile tracks changes in the file name, so it solves the bug + reported in https://bugzilla.gnome.org/show_bug.cgi?id=581748 + +M src/nemo-pathbar.c +M src/nemo-window-slot-dnd.c +M src/nemo-window-slot-dnd.h + +commit 8905b1f91253cfe36fa2c42e179831097b3c9aec +Author: Wouter Bolsterlee +Date: 2011-04-06 + + Updated Dutch translation by Wouter Bolsterlee + +M po/nl.po + +commit 13793fdc3f5fd884ff5f92093244157b751bd185 +Author: Cosimo Cecchi +Date: 2011-04-06 + + window: don't avoid same-uri reloads for the desktop + + Otherwise it will not reload when toggling desktop-is-home-dir. + +M src/nemo-window-manage-views.c + +commit 90b2084cf3f6be689b250ddfd318e33f19f8420d +Author: Cosimo Cecchi +Date: 2011-04-06 + + desktop-window: always reset is_loaded when setting the real directory + +M src/nemo-desktop-window.c + +commit 25aa3e7f391c905236397a38cf052b0b12bc792a +Author: Cosimo Cecchi +Date: 2011-04-06 + + desktop-window: disconnect the gsettings handler on dispose + +M src/nemo-desktop-window.c + +commit 8ade659212745eb91631e00d8e878e919a13858a +Author: Cosimo Cecchi +Date: 2011-04-06 + + icon-container: don't setup the regular background on the desktop + +M libnemo-private/nemo-icon-container.c + +commit ec447586d5f7a5f60f21436a868cfe28d315f1f1 +Author: Cosimo Cecchi +Date: 2011-04-06 + + places-sidebar: always add Home as a built-in place + +M src/nemo-places-sidebar.c + +commit f9bd05d254555e70ee5295fe08919a8c9d94ca79 +Author: Cosimo Cecchi +Date: 2011-04-06 + + places-sidebar: fix a typo in the GSettings key we listen to + +M src/nemo-places-sidebar.c + +commit 19d420a28b47723d8e7deb7561cc714be336e655 +Author: Cosimo Cecchi +Date: 2011-04-06 + + window-menus: use U+2013 EN DASH in the author copyright string + + https://bugzilla.gnome.org/show_bug.cgi?id=646735 + +M src/nemo-window-menus.c + +commit 6dbb7d159cfc277815d990dd157e2020608698a5 +Author: Marvin Schmidt +Date: 2011-04-05 + + configure: Fix libexif check + + https://bugzilla.gnome.org/show_bug.cgi?id=646849 + +M configure.in + +commit 77ba57813e5eaa1fc8260f6e56ef7645093be690 +Author: Rodrigo Padula de Oliveira +Date: 2011-04-05 + + Updated Brazilian Portuguese translation + +M po/pt_BR.po + +commit 9db9888bea1f0084055bf653cfb46e7b000647c9 +Author: Bruno Brouard +Date: 2011-04-05 + + Updated French translation + +M po/fr.po + +commit 319ded082ce47f384db3bfc9d7cab2fbe80e1a85 +Author: Amitakhya Phukan +Date: 2011-04-05 + + Updated Assamese translations + +M po/as.po + +commit 5f190c65784ff9b2b72e36cd0018dfbfab524b98 +Author: Daniel Nylander +Date: 2011-04-05 + + Updated Swedish translation + +M po/sv.po + +commit aaaee6de758f70005ffdd343a4b7354e3664f471 +Author: Cosimo Cecchi +Date: 2011-04-04 + + icon-container: rework the colors used for additional text labels + + We now use the insensitive color for the normal state, and make them + follow the filename color for selected states. + + This also fixes https://bugzilla.gnome.org/show_bug.cgi?id=319982, + tested with the HighContrast theme. + +M data/nemo.css +M libnemo-private/nemo-icon-container.c + +commit ced6d22409c3a849b86b75bb867f267a3cdad800 +Author: Cosimo Cecchi +Date: 2011-04-04 + + window-menus: don't hardcode year values in the translatable string + + https://bugzilla.gnome.org/show_bug.cgi?id=646735 + +M src/nemo-window-menus.c + +commit bb6578da85fff3d28e6a71f9933b1bd34e7c27bc +Author: Chao-Hsiung Liao +Date: 2011-04-05 + + Updated Traditional Chinese translation(Hong Kong and Taiwan) + +M po/zh_HK.po +M po/zh_TW.po + +commit edd3c43beb5efbc13f55d73e8c9818966a031ad1 +Author: Cosimo Cecchi +Date: 2011-04-04 + + dnd: rework handling of _NETSCAPE_URL dnd links + + Previously we used to to the following: + * default to always "ask", unless the copy was explicit + * when dropped, we did not actually ask anything but we would + trigger an + async mimetype query_info and: + - trigger a file asking whether to download or to link for text + files + - silently link for HTML files + - silently download for every other mimetype + * if the query_info was not completed within one second, we would + download by default + + This is somewhat broken, as the DnD icon is not what you would expect; + also downloading is not usually done with DnD from the browser, + and it's + also expensive, so it should never be the default, but an explicit + choice. It also makes it impossible to create links for anything else + than text or HTML. + + Change the policy to always link by default, unless the user + explicitly + requests the copy. + +M libnemo-private/nemo-dnd.c +M src/nemo-view-dnd.c + +commit 2afe78a92cc402207e7f3a0189eca95311651076 +Author: Cosimo Cecchi +Date: 2011-04-04 + + file: use a GIcon to store the custom icon of desktop files + + Instead of a filename string. + This also has the side-effect of fixing + https://bugzilla.gnome.org/show_bug.cgi?id=615509 + +M libnemo-private/nemo-directory-async.c +M libnemo-private/nemo-file-private.h +M libnemo-private/nemo-file.c +M libnemo-private/nemo-link.c +M libnemo-private/nemo-link.h + +commit e68c6e071915fe680ed44e824ccafdb1470a39bb +Author: Jordi Serratosa +Date: 2011-04-04 + + [l10n]Fixes on Catalan translation + +M po/ca.po + +commit 3f17316c34335a9ea8a82d8940506759d88c6fcd +Author: Joan Duran +Date: 2011-04-04 + + [l10n]Updated Catalan translation + +M po/ca.po + +commit 07c70ab3a65f1d67293a467b742dda729b85156b +Author: Jamil Ahmed +Date: 2011-04-05 + + Updated Bengali translation + +M po/bn.po + +commit 35311e217ac8f11e97628316c35d6093589507b0 +Author: Cosimo Cecchi +Date: 2011-04-04 + + thumbnails: remove unused struct definition + +M libnemo-private/nemo-thumbnails.c + +commit 93a0d7fd735c1670c0787c3daa7f84003994da5d +Author: Cosimo Cecchi +Date: 2011-04-04 + + thumbnails: remove obsolete check for GLib < 2.14 compatibility + +M libnemo-private/nemo-thumbnails.c + +commit f9c6ca979f753339b91c125c363a927fceb64283 +Author: Cosimo Cecchi +Date: 2011-04-04 + + thumbnails: remove code unused for years + +M libnemo-private/nemo-thumbnails.c + +commit 088d0968f837364374bdea20eda0fa4534338202 +Author: Daniel Mustieles +Date: 2011-04-04 + + Updated Spanish translation + +M po/es.po + +commit 367572b907d1cd970135e546b3237522b9720c7d +Author: Cosimo Cecchi +Date: 2011-04-03 + + application: don't redirect windows on computer:// when unmounting + + It's confusing now that we don't have a desktop. Redirect to the user + home instead. + + This also has the side effect of fixing + https://bugzilla.gnome.org/show_bug.cgi?id=615963 + +M src/nemo-application.c + +commit b37f08ef618b6418711a7c70ff7485961bc9058d +Author: Cosimo Cecchi +Date: 2011-03-31 + + places-sidebar: don't return TRUE in button-release when we eject + + Otherwise the GtkTreeView default handler won't run cleaning up + what it set up in button-press-event and the next motion-event will + trigger the DnD to begin. + + https://bugzilla.gnome.org/show_bug.cgi?id=646302 + +M src/nemo-places-sidebar.c + +commit 2644c6ef4e7839e976d4861d6c86e16e34d46a13 +Author: Cosimo Cecchi +Date: 2011-03-31 + + icon-canvas-item: make sure to reset the default cursor ond + destruction + + We might be destroyed while hovering while in single-click mode, + so make + sure the default cursor is always cleared when finalizing, if + we didn't + get a leave event. + + https://bugzilla.gnome.org/show_bug.cgi?id=315023 + +M libnemo-private/nemo-icon-canvas-item.c + +commit a47b2efd9b265f92e306e855ede0af3f19881f0c +Author: Cosimo Cecchi +Date: 2011-04-04 + + build: bump version to 3.1.0 on master + +M configure.in + +commit 7c3ba0e86f5b6ba4859457c1fd57f6f443601cab +Author: Yuri Myasoedov +Date: 2011-04-04 + + Updated Russian translation + +M po/ru.po + +commit 60ecc80a6057ebb5605f1ef1eb51e6cf8785a1e1 +Author: Piotr Drąg +Date: 2011-04-04 + + Updated Polish translation + +M po/pl.po + +commit 2641de616d77df714d743a58a52228a6632a1df1 +Author: Wolfgang Stöggl +Date: 2011-04-04 + + [l10n] Updated German translation + +M po/de.po + +commit 635d472128e9687daa3b466f43765ee116921712 +Author: Lukas Lommer +Date: 2011-04-04 + + Updated Czech translation + +M po/cs.po + +commit 6efe6113d1a2ee61eaf2feed818689f25023e687 +Author: Cosimo Cecchi +Date: 2011-04-04 + + release: release 3.0.0 + + The future is now. + +M NEWS +M configure.in + +commit acce5e1c70e10ef550cfed888a852e5048dc4b3d +Author: Cosimo Cecchi +Date: 2011-04-04 + + release: update AUTHORS + +M AUTHORS +M src/nemo-window-menus.c + +commit 681e24ae18f5f4cf6275171154383fb0aeaf1d1a +Author: Cosimo Cecchi +Date: 2011-04-04 + + release: require the latest stable versions of our dependencies + +M configure.in + +commit 278425bbcd806571f7d5369e53a15d5f22e51551 +Author: Cosimo Cecchi +Date: 2011-04-03 + + window: make sure we always force opening in new windows on the + desktop + + https://bugzilla.gnome.org/show_bug.cgi?id=646548 + +M src/nemo-window-manage-views.c + +commit 68b57af6e476253b36d8652a681bade6facbd259 +Author: Cosimo Cecchi +Date: 2011-04-03 + + places-sidebar: disconnect the gsettings handler callback in + _dispose() + + The GSettings object is a global singleton, so it will always + survive the + sidebar; we should make sure to disconnect all the settings signal + when + destroying the sidebar. + + https://bugzilla.gnome.org/show_bug.cgi?id=646664 + +M src/nemo-places-sidebar.c + +commit d4cce11671471427f1b62fc658e05d4f6637b3e9 +Author: Chao-Hsiung Liao +Date: 2011-04-04 + + Updated Traditional Chinese translation(Hong Kong and Taiwan) + +M po/zh_HK.po +M po/zh_TW.po + +commit 42d58b3db4b639521c0346ec8d9afc3f60c30603 +Author: Inaki Larranaga Murgoitio +Date: 2011-04-04 + + Updated Basque language + +M po/eu.po + +commit 4611ba0cd09b1c63c67930f72c90edb2e4f3b83e +Author: Wolfgang Stöggl +Date: 2011-04-03 + + [l10n] Updated German translation, umlauts fixed + +M po/de.po + +commit b35740dd52162a87a19ef8ed6a56a6736e5736ec +Author: Nguyễn Thái Ngọc Duy +Date: 2011-04-03 + + Updated Vietnamese translation + +M po/vi.po + +commit b67ee41bc6601fc26bea2457dc8865e0df5e5f98 +Author: Piotr Drąg +Date: 2011-04-02 + + Updated Polish translation + +M po/pl.po + +commit ce1f95f6f8ee17cb7613564295566ffd99d8e930 +Author: Shankar Prasad +Date: 2011-04-02 + + Updated kn translations + +M po/kn.po + +commit c6fc0d81c87f6c3bdfb457a98fbb386dfa36683e +Author: Shankar Prasad +Date: 2011-04-02 + + Updated kn translations + +M po/kn.po + +commit 333ce240832b66f46d8b9bfdfa4b294c1bf26fbd +Author: Shankar Prasad +Date: 2011-04-02 + + Updated kn translations + +M po/kn.po + +commit 7ddc0b3bb207fe0b9243b90f1c73b0bcf76490d4 +Author: Nguyễn Thái Ngọc Duy +Date: 2011-04-02 + + Updated Vietnamese translation + +M po/vi.po + +commit 6fc1a0b5cedba6dc28dc995eb7a0688869239c71 +Author: Nguyễn Thái Ngọc Duy +Date: 2011-04-02 + + po/vi.po: import from Damned Lies + +M po/vi.po + +commit 0a10d4355e2e144d6731fa12a981841e1ea7b9b9 +Author: Gabor Kelemen +Date: 2011-04-01 + + Updated Hungarian translation + +M po/hu.po + +commit c6279ac229545d7f64b64212383df2753482e233 +Author: Giorgio F. Gilestro +Date: 2011-04-01 + + Fix up accidental error in last commit + + The accelerator ended up as stock id instead. + +M src/nemo-view.c + +commit cce40272e35b20b4aaf5f93109a05b7bb89704d5 +Author: Giorgio F. Gilestro +Date: 2011-04-01 + + Use ctrl-delete as the keyboard shortcut to trash files + + This change was made to make it harder to accidentally trigger a file + delete. We still support the trash that will let you get a trashed + file + back, and we will get undo support to make this even easier. However, + that only works if you know you deleted the wrong file, not if you + accidentally hit delete while the nemo window was focused. + +M src/nemo-view.c + +commit 803783c2479258aad8f2278dde95101b9e4b90ca +Author: Shankar Prasad +Date: 2011-04-01 + + Updated kn translations + +M po/kn.po + +commit e72093c2b0490b481a6b894bf84dd46075b7ef21 +Author: Jiro Matsuzawa +Date: 2011-03-31 + + Updated Japanese translation. + +M po/ja.po + +commit 952269914060f48f941053120e6035440c8cfc6f +Author: Милош Поповић +Date: 2011-03-31 + + Added Serbian translation + +M po/sr.po +M po/sr@latin.po + +commit 7421f629c9493344846890a46e475667b9aae0b1 +Author: Dr.T.Vasudevan +Date: 2011-03-31 + + Updated Tamil translation + +M po/ta.po + +commit d011084103db0ace13a7011d53f68cf9a3489464 +Author: Dr.T.Vasudevan +Date: 2010-12-03 + + Updated Tamil translation + +M po/ta.po + +commit 80fab3f7a7447efbd4323cf372f846d4d59141a5 +Author: Cosimo Cecchi +Date: 2011-03-30 + + release: update for 2.91.94 + +M NEWS +M configure.in + +commit f294a4e80626793624d76d6002b094d1c0809de4 +Author: Alexander Larsson +Date: 2011-03-30 + + Fix up eject button hover in places sidebar + + We were calling gtk_tree_view_column_cell_get_position() without + properly loading the cell attribute for the right row before. + We fix this by calling gtk_tree_view_column_cell_set_cell_data(). + + With this in place we can also use the x_offset for the position and + avoid the whole summing of widths. + + Due to a bug in Gtk which expands the eject icon cell renderer we + have to right align it so that it lines up properly. + + https://bugzilla.gnome.org/show_bug.cgi?id=640741 + +M src/nemo-places-sidebar.c + +commit b57c42f7fbe7fd90cdc6ff59b2f7c160dd3198af +Author: Chao-Hsiung Liao +Date: 2011-03-30 + + Updated Traditional Chinese translation(Hong Kong and Taiwan) + +M po/zh_HK.po +M po/zh_TW.po + +commit 3fd5eda0fc01f56ce9ae9b68b744651d73342259 +Author: Ask H. Larsen +Date: 2011-03-30 + + Updated Danish translation + +M po/da.po + +commit cf21e9aa47c67861422ada02c7fa327340d63140 +Author: Cosimo Cecchi +Date: 2011-03-29 + + pathbar: keep a ref to the GFile while updating the path + + When desktop-is-home-dir changes, we force a re-layout of all the + buttons, which in turn unrefs the passed-in GFile, as the ref would + belong to an old button. Fix this by assuming a ref while calling + nemo_path_bar_update_path(). + + https://bugzilla.gnome.org/show_bug.cgi?id=551543 + +M src/nemo-pathbar.c + +commit aed2cce6c36543457f5f1ad8f8c05f2fa147b1f2 +Author: Matej Urbančič +Date: 2011-03-29 + + Updated Slovenian translation + +M po/sl.po + +commit e7d80384ab00d52149452e77cd566ee381474b36 +Author: Gintautas Miliauskas +Date: 2011-03-29 + + Updated Lithuanian translation. + +M po/lt.po + +commit 85ae5ae7e3174c05199ff6557c1cc905ad1d1075 +Author: Sandeep Shedmake +Date: 2011-03-29 + + Updated Marathi Translations + +M po/mr.po + +commit 08665d5c7ae146c45f5f9855b3ea60c22b1372ad +Author: Lukas Lommer +Date: 2011-03-29 + + Updated Czech translation + +M po/cs.po + +commit d01f3377a2724bb6582f13c48f7cd1b97b1b869b +Author: Lukas Lommer +Date: 2011-03-29 + + Updated Czech translation + +M po/cs.po + +commit c7c860a264db211a0a68ee963ce29c7fcb2ad334 +Author: Alexander Larsson +Date: 2011-03-28 + + Make sure we free custom accessibility objects + + Custom accessibility objects, such as NemoIconContainerAccessible + need to be freed when their corresponding widget/object dies, right + now we're not unreferencing the accessible, so its always leaked. + +M eel/eel-accessibility.c + +commit 69a3e83971e2f0963d0c68f4b3e84612ff4032e8 +Author: Shaun McCance +Date: 2011-03-27 + + Fixing help buttons to go to new gnome-help pages + +M src/nemo-bookmarks-window.c +M src/nemo-connect-server-dialog.c +M src/nemo-file-management-properties.c +M src/nemo-properties-window.c +M src/nemo-view.c +M src/nemo-window-menus.c + +commit ac6ec79231cf3d0cbd076ea5a76b154c9930df68 +Author: Henrique P. Machado +Date: 2011-03-27 + + Updated Brazilian Portuguese translation. + +M po/pt_BR.po + +commit fed40498e77eb037826391eabdf5f359ad72ba78 +Author: Abduxukur Abdurixit +Date: 2011-03-27 + + Added UG translation + +M po/ug.po + +commit ca8392d39f57dcbc17d2de84c90fb4e4d473f074 +Author: Ivan Masár +Date: 2011-03-27 + + Updated Slovak translation + +M po/sk.po + +commit 0889c0e56d13329a835324cf20160a69591a6757 +Author: Yuri Myasoedov +Date: 2011-03-27 + + Updated Russian translation + +M po/ru.po + +commit 5c34337057c96621d2d43690b262eab98c287a1a +Author: Kjartan Maraas +Date: 2011-03-26 + + Updated Norwegian bokmål translation + +M po/nb.po + +commit 4e75a3b805b007c863ad2eb4b3be62a97249c33d +Author: Cosimo Cecchi +Date: 2011-03-25 + + icon-view: clear the icon view when destroying it + + This ensures all NemoFiles are properly unreffed when destroying + the + view, and fixes a leak. + +M src/nemo-icon-view.c + +commit 199e5adb8a51c9cd54a644de60b01d9c0cd2170d +Author: Cosimo Cecchi +Date: 2011-03-25 + + release: update for 2.91.93 + +M NEWS +M configure.in + +commit 7268e3f449a7ae762dcc5b72cb8a36d7ed3362e2 +Author: Alexander Larsson +Date: 2011-03-25 + + Don't leak sidebar widgets + + Sidebar widgets are normal widgets these days and should be standard + floating stuff owned by the container they end up with. So, we + should no longer ref_sink them. + +M src/nemo-places-sidebar.c +M src/nemo-tree-sidebar.c + +commit d781d414e40840422c201dd61637135358c75ab3 +Author: Alexander Larsson +Date: 2011-03-25 + + Don't leak NemoFile for bookmarks in places sidebar + +M src/nemo-places-sidebar.c + +commit 695efe7cb3f9a96e7c870c36d30e2759d800d2d5 +Author: Alexander Larsson +Date: 2011-03-25 + + Better debugging for NemoDirectory leaks + +M libnemo-private/nemo-directory.c + +commit 1d48f02ea1bf274d8fb0d70b61bed337bbda06c2 +Author: Alexander Larsson +Date: 2011-03-25 + + Add custom foreach to eel_g_hash_table_new_free_at_exit + + This can be used to get some sort of printout for leaks in non-string + hashtables. + +M eel/eel-glib-extensions.c +M eel/eel-glib-extensions.h +M eel/eel-stock-dialogs.c +M eel/eel-string.c +M libnemo-private/nemo-directory-async.c +M libnemo-private/nemo-directory.c +M libnemo-private/nemo-file.c +M src/nemo-properties-window.c + +commit 1a8aadd2d02554a308c33a2b88b95c6d7ef5be7f +Author: Lukas Lommer +Date: 2011-03-24 + + Updated Czech translation + +M po/cs.po + +commit 101796d8b02133f238a757e4d754915e1d276095 +Author: Kjartan Maraas +Date: 2011-03-22 + + Updated Norwegian bokmål translation + +M po/nb.po + +commit f45510bbb82d6ffa23bf8a54b8596fb5f34ae5e3 +Author: Mattias Põldaru +Date: 2011-03-22 + + [l10n] Updated Estonian translation + +M po/et.po + +commit 41fd10dafd7fe0240dc13bf33140e8aa22d87333 +Author: Cosimo Cecchi +Date: 2011-03-21 + + Update for 2.91.92 + +M NEWS +M configure.in + +commit 2cf698346aca25a48a11edeccc34530e15843a6a +Author: Cosimo Cecchi +Date: 2011-03-21 + + file-operations: update the test to the new duplicate string behavior + + The test was in some cases checking for what we don't actually want to + happen. Change it to match current behavior. + +M libnemo-private/nemo-file-operations.c + +commit 40947ed576b14777eb3106a3b0350b471455905d +Author: Cosimo Cecchi +Date: 2011-03-21 + + file-operations: make sure to handle correctly hidden files extensions + + This is a fixup of c250b5702329e71c61f6e7f4e26227925c5b1e90 + +M libnemo-private/nemo-file-operations.c + +commit 1f31ab18d932a778aa409dd3cadffb34d5f4ae54 +Author: Cosimo Cecchi +Date: 2011-03-21 + + css: apply a soft gradient to the floating bar. + +M data/nemo.css + +commit 9dc263518f71a2a06ec808be79c2bc0a9fe17129 +Author: Cosimo Cecchi +Date: 2011-03-21 + + window: make sure to never show the floating bar on the Desktop + + https://bugzilla.gnome.org/show_bug.cgi?id=644172 + +M src/nemo-desktop-icon-view.c +M src/nemo-window-manage-views.c +M src/nemo-window-slot.c +M src/nemo-window.c + +commit c250b5702329e71c61f6e7f4e26227925c5b1e90 +Author: Cosimo Cecchi +Date: 2011-03-21 + + Properly strip extensions when placing the duplication string + + We use a similar matching filter to the one we use when renaming. It's + not ideal (mimetypes are hardcoded, and probably some are missing), + but + at least we're consistent. + + https://bugzilla.gnome.org/show_bug.cgi?id=351290 + +M eel/eel-vfs-extensions.c +M eel/eel-vfs-extensions.h +M libnemo-private/nemo-file-operations.c + +commit e0726b71cbbe3ddd9548546991a30951ecc1f21e +Author: Cosimo Cecchi +Date: 2011-03-21 + + slot: don't ref the view returned by _get_current_view() + + https://bugzilla.gnome.org/show_bug.cgi?id=643968 + +M src/nemo-window-slot-dnd.c +M src/nemo-window-slot.c + +commit 2d71f734864647c23aa3e35374da9058beb0dc2e +Author: Kristjan SCHMIDT +Date: 2011-03-21 + + Updated Esperanto translation + +M po/eo.po + +commit ddc303bc2b23704911299ba28aab3f0e74fb88ee +Author: Kristjan SCHMIDT +Date: 2011-03-21 + + Updated Esperanto translation + +M po/eo.po + +commit 1ac3b5dd7100e75d8d579e7dc4c6fabb192a2dee +Author: Kristjan SCHMIDT +Date: 2011-03-21 + + Updated Esperanto translation + +M po/eo.po + +commit 76e10b322b5e0689c16881f10a3854e207a44c09 +Author: Cosimo Cecchi +Date: 2011-03-21 + + places: hide "Open in new Tab/Window" when using separate windows + +M src/nemo-places-sidebar.c + +commit 2cd9c4b84059f3e00ed6222ab43c34a974e2c550 +Author: Cosimo Cecchi +Date: 2011-03-21 + + view: cleanup "Open in new Tab/Window" items when using separate + windows + + We were displaying a lot of useless entries in the menus in such case. + +M src/nemo-actions.h +M src/nemo-directory-view-ui.xml +M src/nemo-view.c + +commit 572ded742f9146a6bca8f5000804f291338db9b8 +Author: Stefano Teso +Date: 2011-03-21 + + view: set the right open flags when opening in a new window + + https://bugzilla.gnome.org/show_bug.cgi?id=644675 + +M src/nemo-view.c + +commit 58e544c260349a01242f40769e61e9b7098069fd +Author: Cosimo Cecchi +Date: 2011-03-21 + + window-pane: toggle the search button when showing a saved search + + https://bugzilla.gnome.org/show_bug.cgi?id=645027 + +M src/nemo-window-pane.c +M src/nemo-window-slot.c + +commit 111be78c86bc824b291d9b402a2ff897b2fa2dc7 +Author: Cosimo Cecchi +Date: 2011-03-21 + + query-editor: make all the labels' appearance consistent + +M src/nemo-query-editor.c + +commit c863defffa222ec60eff29c5f31ab73131799912 +Author: Cosimo Cecchi +Date: 2011-03-21 + + query-editor: theme the query editor like the other cluebars + +M data/nemo.css +M src/nemo-query-editor.c +M src/nemo-query-editor.h + +commit 1469c27280be10a92aa92195023eb1bbf4a5d10c +Author: Cosimo Cecchi +Date: 2011-03-21 + + file-utilities: return "Home" as a title for the home directory + + Make it consistent with the rest of the UI. + https://bugzilla.gnome.org/show_bug.cgi?id=645136 + +M libnemo-private/nemo-file-utilities.c + +commit dac5908d505542362cc51c5c21e0b9220715395a +Author: Cosimo Cecchi +Date: 2011-03-21 + + pathbar: don't unconditionally iterate over buttons when scrolling + + This should fix https://bugzilla.gnome.org/show_bug.cgi?id=645198 + +M src/nemo-pathbar.c + +commit a2d928754e9b65ce9c7ac93127b61abdd7cbb2f4 +Author: Dirgita +Date: 2011-03-20 + + Updated Indonesian translation + +M po/id.po + +commit 8129f1c78ac57aa96588228489860c315ef265c2 +Author: Rudolfs Mazurs +Date: 2011-03-19 + + Updated Latvian translation. + +M po/lv.po + +commit 71548f90dfe368b2ce3396bef6d2099e3b800bdf +Author: Wouter Bolsterlee +Date: 2011-03-19 + + Updated Dutch translation by Wouter Bolsterlee + +M po/nl.po + +commit 83587589effec5b76a6dd7032f374db4135fae12 +Author: Gabor Kelemen +Date: 2011-03-19 + + Updated Hungarian translation + +M po/hu.po + +commit 8094cacbdf5914f2a50c1a17cb93701890aafec3 +Author: Lucian Adrian Grijincu +Date: 2011-03-17 + + Updated Romanian translation + +M po/ro.po + +commit 9d27856f2e62479eca0adae87f1cf6f1bf6cf92c +Author: Lucian Adrian Grijincu +Date: 2011-03-17 + + Updated Romanian translation + +M po/ro.po + +commit e2bfbbd6d8ae577bb16cd215a2d106dcc31f6d8a +Author: Cosimo Cecchi +Date: 2011-03-17 + + view: use GTK_STYLE_CLASS_VIEW for NemoView + + So that NemoIconContainer also inherits the proper style class. + +M src/nemo-view.c + +commit 9c65f3b6675fb927a96a7dd52d6fec4eb700adce +Author: Cosimo Cecchi +Date: 2011-03-17 + + window: use GTK_STYLE_CLASS_SIDEBAR for the nemo sidebar + +M configure.in +M data/nemo.css +M src/nemo-window.c + +commit 32fdd13a6e92f9e36dc8476043c4b93f61a6eca9 +Author: Gintautas Miliauskas +Date: 2011-03-17 + + Updated Lithuanian translation. + +M po/lt.po + +commit f70c2c981adb794bf996b077f2dcfa299d689e61 +Author: Mario Blättermann +Date: 2011-03-17 + + [l10n] Updated German translation + +M po/de.po + +commit 99d84db2ccc8b7cd998a6704cc34b83cbcac4760 +Author: Cosimo Cecchi +Date: 2011-03-15 + + window-pane: use _split_view_off() to close the active pane with + Ctrl+W + + This makes nemo' behavior consistent with what happens when F3 is + pressed. + +M src/nemo-window-pane.c + +commit 633929a88b8941a4b817bd34b27ce5d8fbe3a804 +Author: Cosimo Cecchi +Date: 2011-03-15 + + css: theme the search bar and the cluebar with the proper colors + +M data/nemo.css + +commit 515610602463758c08d4ce5514219a83c3e05bfe +Author: Cosimo Cecchi +Date: 2011-03-15 + + search-bar: rework to make it more similar to the 3.0 mockups + + This involves rendering a background over the box, using symbolic + icons + and other goodness. + +M src/nemo-search-bar.c +M src/nemo-toolbar.c + +commit 319cda6e9430b4aa74e052ee41086d82fc5bb530 +Author: Cosimo Cecchi +Date: 2011-03-15 + + window-slot: cleanup packing of extra widgets + + Don't pack them in a frame+eventbox, but just use the GtkBox. + +M src/nemo-window-slot.c +M src/nemo-window-slot.h + +commit d73ded51a677700ad76201851af255f5ba6192d3 +Author: Cosimo Cecchi +Date: 2011-03-15 + + x-content-bar: make NemoXContentBar a GtkInfoBar + +M src/nemo-x-content-bar.c +M src/nemo-x-content-bar.h + +commit 3b3fe092c77b685516495ae8239d6b5aa7c37072 +Author: Cosimo Cecchi +Date: 2011-03-15 + + trash-bar: make NemoTrashBar a GtkInfoBar + +M src/nemo-trash-bar.c +M src/nemo-trash-bar.h + +commit a2df8af91ed91934c16a0a959c1e178b2849c46e +Author: Fran Diéguez +Date: 2011-03-15 + + Updated Galician translations + +M po/gl.po + +commit 45945cd45776a020b1f8ce5e61c0db7faa1895f4 +Author: Cosimo Cecchi +Date: 2011-03-15 + + window: add back the resize grip + + At the same time, add a bit more padding to the floating bar label, so + that it won't be covered by the grip. + Remove some margin at the bottom of the window too. + +M data/nemo.css +M src/nemo-floating-bar.c +M src/nemo-window.c + +commit ad8dd8389670d85e8afacb58dc7971cc2b81b9eb +Author: Cosimo Cecchi +Date: 2011-03-15 + + window-slot: let the "Loading" floating bar appear only after + a timeout + + It will appear only if loading takes more than 500ms. + +M src/nemo-window-manage-views.c +M src/nemo-window-slot.c +M src/nemo-window-slot.h + +commit 275744644c95cc039efae7029a94814b47274ff7 +Author: Cosimo Cecchi +Date: 2011-03-15 + + floating-bar: don't use a yellow color for the floating bar + + Make it also a bit shorter. + +M data/nemo.css +M src/nemo-floating-bar.c + +commit 00a9b3ae50db1cd609ee3eb4a556c851fc046906 +Author: Duarte Loreto +Date: 2011-03-13 + + Updated Portuguese translation + +M po/pt.po + +commit df4e4aa5d62e2ef23fdbf0a3ca09107e89d89ff6 +Author: Åsmund Skjæveland +Date: 2011-03-13 + + Updated Norwegian Nynorsk translation. + +M po/nn.po + +commit 55585048b94c492fa32a60359a14472da8a4f7c4 +Author: Claude Paroz +Date: 2011-03-12 + + Updated French translation + + Contributed by Gérard Baylard, Bruno Brouard and Claude Paroz. + +M po/fr.po + +commit a3a69db247c58066fcd7ae9b3c6e596fa7f21060 +Author: Bruce Cowan +Date: 2011-03-12 + + Updated British English translation + +M po/en_GB.po + +commit 7536e18ed8fdf50274625837c022ce5ee843c340 +Author: Tomas Bzatek +Date: 2011-03-11 + + Bengali translation: Fix malformed format string + + Originally reported as + https://bugzilla.redhat.com/show_bug.cgi?id=578086 + + Related to commits a1a8f97c9dcd9fdbbbfdddcec7f7d8da85a68dfb and + 5b31e211ff20645c548949bd8d012b7bcaa39bf2 + +M po/bn.po + +commit b47b01d95f332f6a50157cb2d4940bd920455518 +Author: Piotr Drąg +Date: 2011-03-11 + + Updated Polish translation + +M po/pl.po + +commit 9cf0a0a1bde02fababd047cced3c36ffa6f9543e +Author: Khaled Hosny +Date: 2011-03-11 + + Updated Arabic translation + +M po/ar.po + +commit c25ae0f18ca87c561178bd57b191fd13ec3edc38 +Author: Manoj Kumar Giri +Date: 2011-03-10 + + Updated Oriya Translation + +M po/or.po + +commit 86bd3f63bcdf7cdfdc0ebb12104856f7d085510b +Author: Andrej Žnidaršič +Date: 2011-03-09 + + Updated Slovenian translation + +M po/sl.po + +commit 85e624e496ddcbea78826545308aac09541bbfde +Author: Andrej Žnidaršič +Date: 2011-03-09 + + Updated Slovenian translation + +M po/sl.po + +commit 3800f7c7957ac155d96b0b8605197fd7de8cd943 +Author: Cosimo Cecchi +Date: 2011-03-08 + + css: make the backgorund of the floating bar button transparent + +M data/nemo.css + +commit e021dd0f9c73c4cbf6e8e00f1ca6863c99a7056c +Author: Cosimo Cecchi +Date: 2011-03-08 + + toolbar: use a raised button for Search + +M src/nemo-toolbar.c + +commit eb340743b260def298ed64a45d2b6112f7c71589 +Author: Joan Duran +Date: 2011-03-08 + + Updated Catalan translation + +M po/ca.po + +commit 30fca4b7b9afad5edb884ef7e6b8370fc88951ec +Author: Kjartan Maraas +Date: 2011-03-08 + + Updated Norwegian bokmål translation + +M po/nb.po + +commit 5b6d156f57ad630646c2c3e779d094b98766d529 +Author: Cosimo Cecchi +Date: 2011-03-07 + + Release 2.91.91 + +M NEWS +M configure.in + +commit 9465370aad15fe7b20923ad1009a5d3314edc621 +Author: Cosimo Cecchi +Date: 2011-03-07 + + places: use iters to cycle items in the sidebar + +M src/nemo-places-sidebar.c + +commit ede178516796568e5d0b596cc720a3cb56dfaaf5 +Author: Cosimo Cecchi +Date: 2011-03-07 + + toolbar: set the primary-toolbar style class on the toolbar + +M src/nemo-toolbar.c + +commit 896138b17cf6bb8be87bfac3394af641972a364b +Author: Luca Ferretti +Date: 2011-03-07 + + Fixed a typo + +M po/it.po + +commit 894fe97a070004ad3317fa59fa8cb20851c9ab81 +Author: Changwoo Ryu +Date: 2011-03-06 + + Updated Korean translation + +M po/ko.po + +commit 96e53868862fb43b54b8e3f5cf9258615bc26fad +Author: Andrej Žnidaršič +Date: 2011-03-05 + + Updated Slovenian translation + +M po/sl.po + +commit 7af7225fce4ede640cf9eca3a2e11115bf542ff7 +Author: Nguyễn Thái Ngọc Duy +Date: 2011-03-05 + + Updated Vietnamese translation + +M po/vi.po + +commit 0e20049361db4a0d8926e98702501392e98efdcd +Author: Nguyễn Thái Ngọc Duy +Date: 2011-03-05 + + po/vi.po: import from Damned Lies + +M po/vi.po + +commit 4359343f94d255929621fb4fa1f08b67ded4bf96 +Author: Cosimo Cecchi +Date: 2011-03-03 + + list-view: fix expand/fill visibility of the column editor dialog + +M src/nemo-list-view.c + +commit ab4fb0cdee781120d35f041a2198f203da2678cd +Author: Daniel Korostil +Date: 2011-03-02 + + Uploaded Ukranian + +M po/uk.po + +commit 7035f1c2d444b066e079abc50a8664bccf69fe05 +Author: Daniel Nylander +Date: 2011-03-01 + + Updated Swedish translation + +M po/sv.po + +commit 2ed8c3b4c3ac88996b6bbd961f9bc3fee6c14789 +Author: Daniel Korostil +Date: 2011-03-01 + + Uploaded Ukranian + +M po/uk.po + +commit 9b4ce4d88d5bc8374d218534f5ee616fdd64ef79 +Author: Daniel Korostil +Date: 2011-02-28 + + Uploaded Ukranian + +M po/uk.po + +commit f84f6578c5068fe3216387240420f41b2d00db41 +Author: Cosimo Cecchi +Date: 2011-02-28 + + css: don't put toolbar style here + + It's in gnome-themes-standard until we found a more generic way of + expressing it. + +M data/nemo.css + +commit ba262758489a726afbfcbfe60f1f0c79f20d179a +Author: Rudolfs Mazurs +Date: 2011-02-27 + + Updated Latvian translation. + +M po/lv.po + +commit d12544d94d11cfe403f0a4f2f82b0ff569a623d6 +Author: Gabor Kelemen +Date: 2011-02-27 + + Updated Hungarian translation + +M po/hu.po + +commit 789d71e7edbc3f60668c305adb4da9bbdd94b4d6 +Author: Stefano Teso +Date: 2011-02-26 + + places-sidebar: skip section headers on keynav + + https://bugzilla.gnome.org/show_bug.cgi?id=643137 + +M src/nemo-places-sidebar.c + +commit 089315b56f78113bd26d18bb40d0132b84954ebe +Author: Stefano Teso +Date: 2011-02-26 + + typeahead-find: make sure the search widget is on-screen when + maximized + + https://bugzilla.gnome.org/show_bug.cgi?id=642953 + +M libnemo-private/nemo-icon-container.c + +commit a5d4e41129e00461426312cdffa392b59ac30118 +Author: Stefano Teso +Date: 2011-02-26 + + bookmarks: bookmarked saved searches should use the saved-search icon + + https://bugzilla.gnome.org/show_bug.cgi?id=643057 + +M libnemo-private/nemo-bookmark.c +M libnemo-private/nemo-icon-names.h + +commit 02446f2cdb990fabebdefaed339227d6f52a495e +Author: Cosimo Cecchi +Date: 2011-02-25 + + icon-view: doesn't make sense to use g_timeout_add_seconds for preview + + https://bugzilla.gnome.org/show_bug.cgi?id=574033 + +M src/nemo-icon-view.c + +commit 5e2edee2e8dc6b4eababdff993176d591cc2a6e6 +Author: Cosimo Cecchi +Date: 2011-02-25 + + list-view: make sure not to select the extension on rename + + Delay calling gtk_editable_select_region() until after + gtk_tree_view_set_cursor() + + https://bugzilla.gnome.org/show_bug.cgi?id=627110 + +M src/nemo-list-view.c + +commit a9515134c3bce4df1d1563340394b796ae40d183 +Author: Stefano Teso +Date: 2011-02-25 + + list-view: create folders in subdirectories when possible + + Don't always choose the tree root as parent when creating a new + folder, + but look at the current selection's directory. + + https://bugzilla.gnome.org/show_bug.cgi?id=330644 + +M src/nemo-list-view.c +M src/nemo-view.c +M src/nemo-view.h + +commit 97b1ff2fa3b4d706969ab40d4bf17adad281e42f +Author: Cosimo Cecchi +Date: 2011-02-25 + + list-view: unfreeze updates on focus out + + It's not really right, as GtkTreeView should always emit + editing-canceled on the right renderer for us, but if you click away + from the entry, it doesn't, so this is just a workaround until + the GTK+ + bug is fixed. + +M src/nemo-list-view.c + +commit 3645b11f392c649455472bc1b3a8c8f581c37c74 +Author: Cosimo Cecchi +Date: 2011-02-25 + + file: make sure not to pass g_utf8_collate() NULL strings + +M libnemo-private/nemo-file.c + +commit e939b36481815dbdf4053dba070f17d02a1efc38 +Author: Cosimo Cecchi +Date: 2011-02-25 + + desktop-file: remove obsolete x-directory/* mimetypes + + They got deprecated. + + https://bugzilla.gnome.org/show_bug.cgi?id=612694 + +M data/nemo.desktop.in.in + +commit 50ee32a1b46f0e0dea68b57c72070247bad9b7f7 +Author: Cosimo Cecchi +Date: 2011-02-25 + + window-slot: use the actual view as relative-widget + + Instead of special-casing the scrolled window in the overlay code, we + directly set the actual view as relative-widget from the slot. + +M src/nemo-window-slot.c + +commit 23aa30fec0da95b58a9336da58115a3a04a21eb4 +Author: Cosimo Cecchi +Date: 2011-02-25 + + overlay: sync with gedit upstream + + As one of my patches got rejected. + +M src/gedit-overlay.c + +commit a2093ba1340334fa2733aa3ba2c00e7d1cfb683e +Author: Cosimo Cecchi +Date: 2011-02-25 + + view: remove nemo_view_get_widget() + + Having a function just to call a cast seems a bit weird... + +M src/nemo-view.c +M src/nemo-view.h +M src/nemo-window-manage-views.c +M src/nemo-window-slot.c + +commit 2632e266fbc794de5e912ac1f37dfaa8f4ed0904 +Author: Rodrigo Moya +Date: 2011-02-25 + + Plug memory leak + +M libnemo-private/nemo-icon-info.c + +commit f45d398de73c1eee924e55aadba96254d8091932 +Author: Rodrigo Moya +Date: 2011-02-24 + + Guard against filename being NULL on nemo_icon_info_lookup + +M libnemo-private/nemo-icon-info.c + +commit 6c9cfec6cca8fc51049eac6c7677516b5d241677 +Author: Cosimo Cecchi +Date: 2011-02-24 + + places-sidebar: use the widget type directly instead of defining + a class + +M data/nemo.css +M src/nemo-places-sidebar.c + +commit 5df17020848a51d1211451274ae6816562d53503 +Author: Cosimo Cecchi +Date: 2011-02-24 + + all: remove shadows from scrolled windows and add a bottom margin + + To better match the mockups + +M src/nemo-places-sidebar.c +M src/nemo-view.c +M src/nemo-window.c + +commit c024477bd59761cfa683117dafe47cd08fda3f52 +Author: Cosimo Cecchi +Date: 2011-02-24 + + window-slot: adapt to overlay API changes + +M src/nemo-window-slot.c + +commit 2aa5c4844b3f4fe6b26c72d74ccfc9352a11f3f4 +Author: Cosimo Cecchi +Date: 2011-02-24 + + overlay: sync with upstream, and add a case for scrolled windows + +M src/gedit-overlay-child.c +M src/gedit-overlay.c +M src/gedit-overlay.h + +commit b220d722a0748763ebe1370a49831c24d734f7f8 +Author: Cosimo Cecchi +Date: 2011-02-24 + + all: move the floating bar to NemoWindowSlot + +M src/nemo-floating-bar.h +M src/nemo-icon-view.c +M src/nemo-list-view.c +M src/nemo-view.c +M src/nemo-view.h +M src/nemo-window-manage-views.c +M src/nemo-window-slot.c +M src/nemo-window-slot.h + +commit d0706a08eefb73aa515cb445e57c0360637cce12 +Author: Cosimo Cecchi +Date: 2011-02-24 + + places-sidebar: don't activate 'Rename' shortcut for non-bookmarks + +M src/nemo-places-sidebar.c + +commit d2c34101172415c63fe3c89e62ea1bf8bca15d9d +Author: Cosimo Cecchi +Date: 2011-02-24 + + editable-label: only clear the selection if we change to insensitive + + This is borrowed from GtkEntry, and should properly fix + https://bugzilla.gnome.org/show_bug.cgi?id=642766 + +M eel/eel-editable-label.c + +commit 8d9cb34aec31955874b59d7d90ca4a57c6ddbcf4 +Author: Kjartan Maraas +Date: 2011-02-24 + + Updated Norwegian bokmål translation. + +M po/nb.po + +commit d6f2b28ea999a2d36d023c80dfd9fb4d7ffd83d6 +Author: Aron Xu +Date: 2011-02-24 + + Update Simplified Chinese translation. + +M po/zh_CN.po + +commit 18b496bc28a59987d161b5272244a808f5c06e2c +Author: Cosimo Cecchi +Date: 2011-02-23 + + places-sidebar: discard special dirs if they are assigned to the home + + https://bugzilla.gnome.org/show_bug.cgi?id=643121 + +M src/nemo-places-sidebar.c + +commit 24e447ed71d986f8806dfcc75a7d2c32cb47dbd0 +Author: Cosimo Cecchi +Date: 2011-02-23 + + tree-sidebar: cope with being shown in separate windows + + Use the same strategy as in NemoPlacesSidebar to decide where new + window should be opened. + +M src/nemo-tree-sidebar.c + +commit 187604bc871c9b09be29794713c5db211d075d48 +Author: Cosimo Cecchi +Date: 2011-02-23 + + window: make sure to disconnect the sidebar changed id signal + + When the window is finalized. + +M src/nemo-window.c + +commit 5ae01f04d69f9e1d24cda75e9046aea4b4e96cd1 +Author: Cosimo Cecchi +Date: 2011-02-23 + + places-sidebar: respect middle-click for separate windows mode + + Make it consistent with the rest, i.e. close behind. + This also fixes a crasher. + +M src/nemo-places-sidebar.c + +commit 0e6d9d7da5e2deac33d14261fbe9a22bbc7de192 +Author: Cosimo Cecchi +Date: 2011-02-23 + + window-pane: don't open another window when toggling off the search + + When 'Open new windows in separate folders' is toggled. + This is not yet complete, but fixes at least one case. + +M src/nemo-window-pane.c + +commit 29e8f4564400640cc19e0fd7753ea8b2bac9d555 +Author: Cosimo Cecchi +Date: 2011-02-23 + + properties-window: add a border around the notebook + + This makes it visually consistent with other nemo notebooks, and + with e.g. the GNOME3 control-center. + +M src/nemo-properties-window.c + +commit 4b6ba5bbccb934b9c595003ea1218913dd33d0c9 +Author: Cosimo Cecchi +Date: 2011-02-23 + + view: disconnect the statusbar visibility signal handler on finalize + +M src/nemo-view.c + +commit b6c86952f816dc698fed3ebb91231cc9e1ea5745 +Author: Matej Urbančič +Date: 2011-02-23 + + Updated Slovenian translation + +M po/sl.po + +commit 75b7885bcd6e77bf16f7fa9d6bee44ac0c53ce94 +Author: Matej Urbančič +Date: 2011-02-23 + + Updated Slovenian translation + +M po/sl.po + +commit 20be3147adefe2a8e2f7d03ccebe791f09fd5060 +Author: Matej Urbančič +Date: 2011-02-23 + + Updated Slovenian translation + +M po/sl.po + +commit 3f9cc6132af4fb06b7b1467e9544c8853843183c +Author: Alexander Shopov +Date: 2011-02-23 + + Updated Bulgarian translation + +M po/bg.po + +commit 415aef2af3e8a7491ee0605f5082a696640680f8 +Author: Cosimo Cecchi +Date: 2011-02-22 + + dbus-manager: install a DBus service file + +M data/Makefile.am +A data/org.gnome.Nemo.service.in + +commit b76e3c666d1da08cc70bd09a293c2ed319861bcd +Author: Cosimo Cecchi +Date: 2011-02-22 + + dbus-manager: hold the GApplication for 5 seconds upon startup + + This is needed so that nemo can be started as a DBus service with + --no-default-window and be able to handle incoming method calls + without + quitting before receiving them. + +M libnemo-private/nemo-dbus-manager.c +M libnemo-private/nemo-dbus-manager.h +M src/nemo-application.c + +commit 25e74f522cd49af07b2be6b92cc3a7421a57f5fc +Author: Cosimo Cecchi +Date: 2011-02-22 + + Fix distcheck + +M po/POTFILES.in + +commit 32f4f370a37eced91270202ed7ff02cd4db46d8d +Author: Cosimo Cecchi +Date: 2011-02-22 + + Release 2.91.90.1 + +M NEWS +M configure.in + +commit a0569367b029140ca15cdd5d0d78a3577c3d6d83 +Author: Cosimo Cecchi +Date: 2011-02-22 + + module: make modules for extension that pull in ORBit resident + + ORBit installs atexit() handlers, which would get unloaded together + with the + module now that the main process doesn't depend on GConf anymore, + causing + nemo to sefgault at exit. + If we detect that an extension would pull in ORBit, we make the module + resident to prevent that. + +M libnemo-private/nemo-module.c + +commit 8ff66dc5aeb7c573ef3deb6100fa151e9f9349e9 +Author: Ivar Smolin +Date: 2011-02-22 + + [l10n] Updated Estonian translation + +M po/et.po + +commit c40521ffbc4e990e4633be41e730b28eec26f1f5 +Author: Cosimo Cecchi +Date: 2011-02-21 + + icon-info: remove unused code + +M libnemo-private/nemo-icon-info.c +M libnemo-private/nemo-icon-info.h + +commit 150b95ca0c668568e0e5d04701048d6f1fc1636b +Author: Cosimo Cecchi +Date: 2011-02-21 + + zoom-control: remove unused NemoZoomControl + +M src/Makefile.am +M src/nemo-window.c +D src/nemo-zoom-control.c +D src/nemo-zoom-control.h + +commit ee701773633e2b5f2a70988ca16ace47d002e382 +Author: Luca Ferretti +Date: 2011-02-21 + + Updated Italian translation + +M po/it.po + +commit 50647b100ddb52f61c50f973d89f883d346442bb +Author: Cosimo Cecchi +Date: 2011-02-21 + + Release 2.91.90 + +M NEWS +M configure.in + +commit aea7f1f49601c34398f8b62b3650f7c3db8d1171 +Author: Cosimo Cecchi +Date: 2011-02-21 + + all: fix some includes + +M src/nemo-toolbar.c +M src/nemo-window-pane.c + +commit b89a352e0d37193d00de7085ad4ef18f6f2d36a2 +Author: Cosimo Cecchi +Date: 2011-02-21 + + configure: depend on stable GTK+/GLib versions + +M configure.in + +commit ead6bf5b5d80a0d4937d7b8f84dd2cdc53db73e4 +Author: Luca Ferretti +Date: 2011-02-21 + + Updated Italian translation + +M po/it.po + +commit 1cfe6c78c610c616873314e2fa76cb085116cf96 +Author: Cosimo Cecchi +Date: 2011-02-21 + + tracker-engine: update to 0.10, using libtracker-sparql + + https://bugzilla.gnome.org/show_bug.cgi?id=642770 + +M libnemo-private/nemo-search-engine-tracker.c + +commit a8a5b8d8eae041e7ae10a553d0990fc7ee5dc3cd +Author: Stefano Teso +Date: 2011-02-21 + + icon-container: fix setting the selection when renaming + + Closes: bgo #642766 + +M libnemo-private/nemo-icon-container.c + +commit 6dd4e0aed74bb7da6fc471ff6f032884f93643b5 +Author: Cosimo Cecchi +Date: 2011-02-21 + + application: remove the ConsoleKit listener + + I just moved it to the gnome-settings-daemon plugin where it should + belong. + +M src/nemo-application.c + +commit a3f2a8814453860b1fb8d4c1aa9637011b46f7fb +Author: Stefano Teso +Date: 2011-02-21 + + nemo-view: Ignore scripts directory if it's a broken symlink + + Closes: bgo#633683 + +M src/nemo-view.c + +commit 585e46b63b691ccc4a618ddc01b686954da287a3 +Author: Yaron Shahrabani +Date: 2011-02-21 + + Updated Hebrew translation. + +M po/he.po + +commit 527aa458d57036cb74c3f855cd1eb724da1e3ad6 +Author: Cosimo Cecchi +Date: 2011-02-21 + + window: remove another couple of unused defines + +M src/nemo-window-private.h + +commit 8ec1999f09ff40b6a1a8b511efbf36b692144503 +Author: Cosimo Cecchi +Date: 2011-02-21 + + window: remove useless defines + +M src/nemo-window-private.h + +commit 9531e7cb106f161d8a43da7ca161fac8becd3de6 +Author: Cosimo Cecchi +Date: 2011-02-21 + + window: plug a leak + + Don't leak the GtkSizeGroup after we add widgets to it. Also, move + it to + the pane, where it should belong now. + +M src/nemo-window-pane.c +M src/nemo-window-private.h +M src/nemo-window.c + +commit 243a3f883f7b2969c11ddac8c6d46521ffa5ef4d +Author: A S Alam +Date: 2011-02-21 + + update Punjabi Translation by A S Alam + +M po/pa.po + +commit 945ff33b72928e13b2206ccb869f63420cd9de94 +Author: Cosimo Cecchi +Date: 2011-02-20 + + window-menus: fix indentation + +M src/nemo-window-menus.c + +commit 322a3d0094082a32d357d0358174025c296a46dd +Author: Cosimo Cecchi +Date: 2011-02-20 + + window: fix behavior of the Search action + + Make the toolbar button active state consistent with the menu, and + simplify the code handling it a bunch. + +M src/nemo-shell-ui.xml +M src/nemo-window-menus.c +M src/nemo-window-pane.c +M src/nemo-window-pane.h +M src/nemo-window.c +M src/nemo-window.h + +commit eb9a291ad09d77cd01131209f68beaa04ef45626 +Author: Cosimo Cecchi +Date: 2011-02-20 + + navigation-state: bind "active" for toggle actions + + So that we can use this objet for "Search" + +M src/nemo-navigation-state.c + +commit 808332169bb8000c57d55e267d4abf4dcad3a481 +Author: Jorge González +Date: 2011-02-20 + + Added Spanish translation + +M po/es.po + +commit 7a3360c812ac30858ca7281c3d34fd132c454f63 +Author: Matej Urbančič +Date: 2011-02-20 + + Updated Slovenian translation + +M po/sl.po + +commit 763109bb17cd326195ff44951977243a6e6712d1 +Author: Cosimo Cecchi +Date: 2011-02-19 + + file-operations: make sure not to show the dialog before calling + _run() + + This had no noticeable effect before, but with gnome-shell's modal + dialog animation, it causes the dialog flickering before being + picked by + the WM. + +M libnemo-private/nemo-file-operations.c + +commit 01c61be847dbb30f7392794ad0fec6228e82904d +Author: Cosimo Cecchi +Date: 2011-02-19 + + all: plug some memory leaks + +M src/gedit-overlay.c +M src/nemo-floating-bar.c + +commit bdb71b79540e5a7265ff08bf4353dd580c32411a +Author: Cosimo Cecchi +Date: 2011-02-19 + + overlay-child: make sure to intialize required fields + +M src/gedit-overlay-child.c + +commit 89b84688b36a769478bd4593cceace6e2636c86c +Author: Kjartan Maraas +Date: 2011-02-19 + + Fix this after the window and spatial cleanups + +M po/POTFILES.in + +commit e68968479783e0ff3e4f7c8b7391471d06597306 +Author: Kjartan Maraas +Date: 2011-02-19 + + Updated Norwegian bokmål translation. + +M po/nb.po + +commit ddd59a578e403e815f76006477bf5eaea5b20c1e +Author: Cosimo Cecchi +Date: 2011-02-18 + + window: accumulate saving the sidebar width in GSettings + + We don't want to hammer DConf with writes. + +M src/nemo-window-private.h +M src/nemo-window.c + +commit 56b249cc804bcea81d0308afe45ac2e5084dc6d7 +Author: Cosimo Cecchi +Date: 2011-02-18 + + floating-bar: ellipsize the description label + + Until we have a better way to truncate it at the right point when + there's not enough space. + +M src/nemo-floating-bar.c + +commit 695d067571292c6475761e1ae4c453615f611a00 +Author: Cosimo Cecchi +Date: 2011-02-18 + + overlay: fixup allocation in the overlay + + Give the children the right size they request, and make sure they + don't + get more space allocated than the width of their parent. + +M src/gedit-overlay-child.c +M src/gedit-overlay.c + +commit 1fd64c8188a513ec0321e2ff70225f9a7c52b3ad +Author: Cosimo Cecchi +Date: 2011-02-18 + + pathbar: cleanups + +M src/nemo-pathbar.c + +commit 7545af6c31ff45998167d008f3320a69d5531f7c +Author: Cosimo Cecchi +Date: 2011-02-18 + + pathbar: clean up forward declarations and unused properties + + No real code change here. + +M src/nemo-pathbar.c + +commit 369eaac5796263e49dd0502aedc6d9137d160132 +Author: Cosimo Cecchi +Date: 2011-02-18 + + pathbar: remove unused code + +M src/nemo-pathbar.c +M src/nemo-pathbar.h + +commit 36a47b4a7ea52c860818e0e8a4f795a365ba2e2c +Author: Daniel Korostil +Date: 2011-02-18 + + Uploaded Ukranian + +M po/uk.po + +commit 2fde89de52f465051dbc85e3d00f57941275e4a7 +Author: Daniel Korostil +Date: 2011-02-18 + + Uploaded Ukranian + +M po/uk.po + +commit 6a11ecdde028a4972559491a3c0ec7799cc8c882 +Author: Cosimo Cecchi +Date: 2011-02-18 + + icon-canvas-item: make the icon frame transparent when not prelit + + This fixes icons on the desktop appearing weird. + +M libnemo-private/nemo-icon-canvas-item.c + +commit 1d3d4a1e954fcc15f2a9c7d933e7bc65c5330cc3 +Author: Cosimo Cecchi +Date: 2011-02-18 + + all: remove 'Tighter Layout' option + + It's just broken, and we already have icon view if we want something + tighter. + +M libnemo-private/nemo-global-preferences.h +M libnemo-private/nemo-icon-canvas-item.c +M libnemo-private/nemo-icon-container.c +M libnemo-private/nemo-icon-container.h +M libnemo-private/nemo-metadata.c +M libnemo-private/nemo-metadata.h +M libnemo-private/nemo.convert +M libnemo-private/org.gnome.nemo.gschema.xml.in +M src/nemo-actions.h +M src/nemo-convert-metadata.c +M src/nemo-file-management-properties.c +M src/nemo-file-management-properties.ui +M src/nemo-icon-view-ui.xml +M src/nemo-icon-view.c +M src/nemo-icon-view.h + +commit 822b99ee1de297fbe78548a1a7fa96d1be737f72 +Author: Cosimo Cecchi +Date: 2011-02-18 + + list-view: make sure not to activate items while chaining up + + The event activation is done entirely in our signal handler, and + row-activated should only be used for the typeahead search box. + +M src/nemo-list-view.c + +commit 1988c7bc5feff1a2630b2603d558d1c376b12c9f +Author: Cosimo Cecchi +Date: 2011-02-18 + + views: fix alternate locaiton opening somewhat + + It was broken after the last changes. + Also, add some comments to clarify how things work. + +M src/nemo-icon-view.c +M src/nemo-list-view.c +M src/nemo-window-manage-views.c + +commit 491948284e453440798f14e29ba65737f44c5d46 +Author: Cosimo Cecchi +Date: 2011-02-18 + + debug: add a debug flag for the icon view + +M libnemo-private/nemo-debug.c +M libnemo-private/nemo-debug.h + +commit 765d81d0b68e3b2d430b9ca0716a3f67607440df +Author: Alexander Larsson +Date: 2011-02-18 + + Change compact-view all-columns-have-same-width default to false + + This particular option is what makes the lables-on-the side part + of compact view useful (and compact) over the normal icon view. + Having it off by default is just weird. + +M libnemo-private/org.gnome.nemo.gschema.xml.in + +commit 2d904c778ce5b30649c4789f35fcd3ea44e7fa59 +Author: Alexander Larsson +Date: 2011-02-18 + + Remove debug spew from previous commit + +M src/nemo-window-manage-views.c + +commit e5f4a1f0fe63b324cc62e94a46599b2e187b1121 +Author: Cosimo Cecchi +Date: 2011-02-17 + + window-manage-views: initialize a variable + +M src/nemo-window-manage-views.c + +commit bdc7f2172f9e8b1c58d3f8a8d90ae157702dde3e +Author: Cosimo Cecchi +Date: 2011-02-17 + + window-manage-views: fix an oversight in previous commit + +M src/nemo-window-manage-views.c + +commit a58eb87e294c02ec61668ef6d02d701626ef8b98 +Author: Cosimo Cecchi +Date: 2011-02-17 + + window-manage-views: don't create two windows when opening in new win + + We were creating two windows at startup if the 'Open in different + windows' option was toggled on. + +M src/nemo-window-manage-views.c + +commit 936a1749bb79217decc47ec2e12c7f3c40823f97 +Author: Cosimo Cecchi +Date: 2011-02-17 + + window: fix some missing signal handlers/overrides + +M src/nemo-window.c + +commit cff594aeba0cb62f3316eb8a14114091ca4c6d11 +Author: Cosimo Cecchi +Date: 2011-02-17 + + window: cleanup header + +M src/nemo-window-private.h +M src/nemo-window.c +M src/nemo-window.h + +commit f57a958039400b38897bf7ad5cc2f2e686921624 +Author: Cosimo Cecchi +Date: 2011-02-17 + + location-dialog: remove NemoLocationDialog + + The only user was NemoSpatialWindow + +M src/Makefile.am +D src/nemo-location-dialog.c +D src/nemo-location-dialog.h + +commit b1589b8c22baa2d9508aabe96fc8bafd99bcdb71 +Author: Cosimo Cecchi +Date: 2011-02-17 + + all: fix the desktop window without spatial mode + + Basically disable all the window chrome for the desktop window. + +M src/nemo-desktop-window.c +M src/nemo-window-pane.c +M src/nemo-window-private.h +M src/nemo-window.c +M src/nemo-window.h + +commit 4bf81e0d4883b9b6a6dfab120b096bea26a46a0a +Author: Cosimo Cecchi +Date: 2011-02-17 + + window: merge the navigation window XML into the shell XML + + There's no such distinction anymore. + +M src/Makefile.am +D src/nemo-navigation-window-ui.xml +M src/nemo-shell-ui.xml +M src/nemo-window-menus.c + +commit df516e1f09ded17bea6a4fc4fd8b974f61e799b4 +Author: Cosimo Cecchi +Date: 2011-02-17 + + all: merge NemoNavigationWindow into NemoWindow + +M src/Makefile.am +M src/nemo-application.c +M src/nemo-application.h +M src/nemo-bookmarks-window.c +M src/nemo-connect-server-dialog-nonmain.c +M src/nemo-desktop-window.c +M src/nemo-desktop-window.h +M src/nemo-icon-view.c +M src/nemo-location-bar.c +M src/nemo-location-bar.h +M src/nemo-mime-actions.c +M src/nemo-navigation-action.c +D src/nemo-navigation-window-menus.c +D src/nemo-navigation-window.c +D src/nemo-navigation-window.h +M src/nemo-notebook.c +M src/nemo-places-sidebar.c +M src/nemo-view.c +M src/nemo-window-manage-views.c +M src/nemo-window-manage-views.h +M src/nemo-window-menus.c +M src/nemo-window-pane.c +M src/nemo-window-private.h +M src/nemo-window.c +M src/nemo-window.h + +commit 4cf05a8c91bda94aac6d403947cbb402a68019d2 +Author: Cosimo Cecchi +Date: 2011-02-17 + + window: fix class casting madness + +M src/nemo-window.c + +commit 9af483dbbea8fc6fc41f4bc726522d7583ccf677 +Author: Cosimo Cecchi +Date: 2011-02-17 + + all: merge NemoNavigationWindowSlot into NemoWindowSlot + +M src/Makefile.am +M src/nemo-application.c +M src/nemo-navigation-action.c +D src/nemo-navigation-window-slot.c +D src/nemo-navigation-window-slot.h +M src/nemo-navigation-window.c +M src/nemo-window-manage-views.c +M src/nemo-window-pane.c +M src/nemo-window-slot.c +M src/nemo-window-slot.h +M src/nemo-window.c + +commit 238bc1452138e1aae44dcc95121b749ab4d805d0 +Author: Cosimo Cecchi +Date: 2011-02-17 + + window-pane: remove useless class vfuncs + +M src/nemo-window-pane.h + +commit 67384aa0d21e90816d5ee084b56bb43b1e94af60 +Author: Cosimo Cecchi +Date: 2011-02-17 + + all: merge NemoNavigationWindowPane into NemoWindowPane + +M src/Makefile.am +M src/nemo-location-bar.c +M src/nemo-location-bar.h +M src/nemo-navigation-window-menus.c +D src/nemo-navigation-window-pane.c +D src/nemo-navigation-window-pane.h +M src/nemo-navigation-window-slot.c +M src/nemo-navigation-window.c +M src/nemo-notebook.c +M src/nemo-toolbar.h +M src/nemo-window-manage-views.c +M src/nemo-window-pane.c +M src/nemo-window-pane.h +M src/nemo-window.c + +commit 0e73140437c97c23b480f137ce8c88113900a336 +Author: Cosimo Cecchi +Date: 2011-02-17 + + all: assume all windows are navigation windows + +M src/nemo-application.c +M src/nemo-bookmarks-window.c +M src/nemo-window-manage-views.c +M src/nemo-window-pane.c +M src/nemo-window.c + +commit b6b63e35792fd50cbe71bf87e44d5233cd879b3d +Author: Cosimo Cecchi +Date: 2011-02-17 + + all: remove NemoSpatialWindow + +M src/Makefile.am +M src/nemo-bookmarks-window.c +M src/nemo-desktop-window.h +M src/nemo-location-dialog.c +D src/nemo-spatial-window-ui.xml +D src/nemo-spatial-window.c +D src/nemo-spatial-window.h +M src/nemo-window-manage-views.c +M src/nemo-window-pane.c +M src/nemo-window-private.h +M src/nemo-window.c + +commit 9d70e3e2a0b8af6eef1a10749a985896ba449e37 +Author: Cosimo Cecchi +Date: 2011-02-17 + + desktop-window: make NemoDesktopWindow a navigation window + + We still have to fix sidebar/toolbar visibility though. + +M src/nemo-desktop-window.c +M src/nemo-desktop-window.h + +commit 073e1f9454d52523837a3a2073d710206c90a808 +Author: Cosimo Cecchi +Date: 2011-02-17 + + all: remove spatial windows methods from NemoApplication + +M src/nemo-application.c +M src/nemo-application.h +M src/nemo-bookmarks-window.c +M src/nemo-connect-server-dialog-nonmain.c +M src/nemo-navigation-window-menus.c +M src/nemo-navigation-window-ui.xml +M src/nemo-navigation-window.c +M src/nemo-spatial-window.c + +commit edc5310062e8617727423e7508951de1abe0b1b9 +Author: Cosimo Cecchi +Date: 2011-02-17 + + all: remove NemoWindowOpenMode enumeration + + The mode is now always decided by the GSettings preference. + +M src/nemo-icon-view.c +M src/nemo-list-view.c +M src/nemo-mime-actions.c +M src/nemo-mime-actions.h +M src/nemo-navigation-window-pane.c +M src/nemo-places-sidebar.c +M src/nemo-spatial-window.c +M src/nemo-tree-sidebar.c +M src/nemo-view.c +M src/nemo-view.h +M src/nemo-window-manage-views.c +M src/nemo-window-slot.c +M src/nemo-window-slot.h +M src/nemo-window-types.h + +commit e94fe49ef856a4658fd3fcbb228b78bb0d7b0657 +Author: Alexander Larsson +Date: 2011-02-17 + + Don't show a desktop target in copy/move to if desktop is not shown + +M src/nemo-view.c + +commit e74376ee27a232e559a3ef98918f0742d6fa376a +Author: Alexander Larsson +Date: 2011-02-17 + + Don't show desktop in sidebar if desktop is not visible or if home + is desktop + + By default there is no more desktop anymore, so its kinda weird to + have it + highly visible in the ui, as there should be nothing there. + +M src/nemo-places-sidebar.c + +commit 4298e522e25ea5075090822a5497164051373a4b +Author: Alexander Larsson +Date: 2011-02-17 + + Disable the status bar by default in new windows + +M libnemo-private/org.gnome.nemo.gschema.xml.in + +commit 055b16f45c4d3c7b5b543df5b8457702f2d3164e +Author: Cosimo Cecchi +Date: 2011-02-17 + + window-bookmarks: make sure we get an icon for bookmarks in the menu + +M src/nemo-window-bookmarks.c + +commit e978429c15a5a6d99c0dfeecb2ce889d1a6d0529 +Author: Cosimo Cecchi +Date: 2011-02-17 + + search-bar: make the search bar a regular GtkBox + +M src/nemo-search-bar.c +M src/nemo-search-bar.h + +commit c4060407ef76d2566d02cd6dacf06381585ace17 +Author: Cosimo Cecchi +Date: 2011-02-16 + + all: set some junctions to better fit the mockup + +M src/nemo-places-sidebar.c +M src/nemo-view.c + +commit d9640b96ef746cbfe5de6ddd21ae06052aa33fa8 +Author: Cosimo Cecchi +Date: 2011-02-16 + + navigation-window: fix text setting/unsetting on Search button + +M src/nemo-navigation-window.c + +commit 46b297a523d7f679891299d2a6a4ccac03927ed1 +Author: Cosimo Cecchi +Date: 2011-02-16 + + eel: remove unused method + +M eel/eel-gtk-extensions.c +M eel/eel-gtk-extensions.h + +commit 6acaf5d7ede7054a258f555331358054e1835813 +Author: Cosimo Cecchi +Date: 2011-02-16 + + window-menus: remove sneaky code for middle-click toolbar actions + + We support it directly where we already care now. + +M src/nemo-window-menus.c + +commit 6fa4065d55ffa792105576fd2b99ead5913b36f0 +Author: Cosimo Cecchi +Date: 2011-02-16 + + navigation-window: don't create custom actions for the menu items + + We can use normal actions for those, and use the custom actions in the + toolbar, as we already do. + +M src/nemo-navigation-window-menus.c + +commit b644be6ed4f7da02a700a2f74401c4f5273dca46 +Author: Cosimo Cecchi +Date: 2011-02-16 + + navigation-window: remvoe useless Search action from the nav group + +M src/nemo-navigation-window-menus.c + +commit 0e168f61a0012127ee0c40ef642b0818471212b7 +Author: Cosimo Cecchi +Date: 2011-02-16 + + all: remove NemoViewAsAction + + The rationale being the same as for NemoZoomAction + +M src/Makefile.am +M src/nemo-navigation-window-menus.c +D src/nemo-view-as-action.c +D src/nemo-view-as-action.h + +commit 38dea32b3da5610990348be37c3f9454cec54773 +Author: Cosimo Cecchi +Date: 2011-02-16 + + all: remove NemoZoomAction + + Now that we don't use it on the toolbar anymore, it's useless to keep + around. + +M src/Makefile.am +M src/nemo-navigation-window-menus.c +M src/nemo-window-manage-views.c +M src/nemo-window-menus.c +M src/nemo-window-private.h +M src/nemo-window.c +D src/nemo-zoom-action.c +D src/nemo-zoom-action.h + +commit d83173021f5adc99b5eec468e0c4d5ddfeed4218 +Author: Cosimo Cecchi +Date: 2011-02-16 + + window: just use nemo_view_set_is_active() + + Don't roundtrip through NemoWindowSlot, as that's what it would do + anyway. + +M src/nemo-window-pane.c +M src/nemo-window-slot.c +M src/nemo-window-slot.h +M src/nemo-window.c + +commit a08625badd19790faca002f1fd6c7049f2d680ba +Author: Cosimo Cecchi +Date: 2011-02-16 + + window: active_pane might be NULL if we're destroying the window + +M src/nemo-window.c + +commit a74eac5f4446928cfa00ead53f972f7de678b914 +Author: Cosimo Cecchi +Date: 2011-02-16 + + navigation-window-pane: don't bother always setting the active pane + + The toolbar is insensitive when not active anyway, so this is useless. + +M src/nemo-navigation-window-pane.c + +commit 40bfe945c48bc368c11be4341a6c3f27b5543960 +Author: Cosimo Cecchi +Date: 2011-02-16 + + navigation-window-pane: cleanup the class a bit + +M src/nemo-navigation-window-pane.c +M src/nemo-navigation-window.c + +commit de4b00057e06fdc675d640c65c9a459f9fdb2725 +Author: Cosimo Cecchi +Date: 2011-02-16 + + navigation-window: integrate the back/forward actions with the state + + So that the current back.forward state propagates to menus. + +M src/nemo-navigation-window-menus.c +M src/nemo-navigation-window-pane.c +M src/nemo-navigation-window-pane.h +M src/nemo-navigation-window.c +M src/nemo-window-private.h + +commit d6df8a9d7bc4b902de76c22504f2fa63557d7985 +Author: Cosimo Cecchi +Date: 2011-02-16 + + navigation-state: add NemoNavigationState + +M src/Makefile.am +A src/nemo-navigation-state.c +A src/nemo-navigation-state.h + +commit 0c60fd28a1852a101caef1e4cd783b26012cd7fc +Author: Cosimo Cecchi +Date: 2011-02-16 + + toolbar: make sure to hold a ref to the action group + +M src/nemo-toolbar.c + +commit 698f109a70c063d47b4ff4adeec78724f674fe6d +Author: Cosimo Cecchi +Date: 2011-02-16 + + navigation-window: little cleanup + +M src/nemo-navigation-window-menus.c +M src/nemo-navigation-window-pane.h + +commit e18dddb0f6ff0a91e25929b667687b87c8d20ee5 +Author: Cosimo Cecchi +Date: 2011-02-16 + + window-pane: make sure we set another pane as active when closing + +M src/nemo-window-pane.c + +commit 3634db080bcf57534b47860908370da5d5cdfad9 +Author: Cosimo Cecchi +Date: 2011-02-16 + + window-slot: move window_slot_close() to nemo-window-slot.c + + Why on earth should it be somewhere else? + +M src/nemo-application.c +M src/nemo-navigation-window-pane.c +M src/nemo-window-manage-views.c +M src/nemo-window-menus.c +M src/nemo-window-slot.h +M src/nemo-window.c + +commit 610b14e6c85d16d519a0c9665ada09b289d21de7 +Author: Cosimo Cecchi +Date: 2011-02-16 + + window-pane: move code around + + Makes things more readable. + +M src/nemo-window-pane.c +M src/nemo-window-pane.h + +commit a0e572e833c0e27c147d99094dc5655297a38be5 +Author: Cosimo Cecchi +Date: 2011-02-16 + + location-bar: remove manual API for setting insensitive widgets + + It's not needed anymore + +M src/nemo-location-bar.c +M src/nemo-location-bar.h + +commit dd6b7f734252fb9a3813be9856e6c8a44c9bc01a +Author: Cosimo Cecchi +Date: 2011-02-16 + + pathbar: remove hackish API + +M src/nemo-pathbar.c +M src/nemo-pathbar.h + +commit 79c27eb5fbe998a0ed2f79541b4487db5f575958 +Author: Cosimo Cecchi +Date: 2011-02-16 + + navigation-window-pane: make the whole toolbar insensitive when + inactive + +M src/nemo-navigation-window-pane.c + +commit d2c02297befb39526408d938b46cd8269d9d8549 +Author: Cosimo Cecchi +Date: 2011-02-15 + + window: remove some other useless code + +M src/nemo-spatial-window.c +M src/nemo-window-private.h +M src/nemo-window.c + +commit 63d5316f6bf85e41bc5be76d551a19c55ab07957 +Author: Cosimo Cecchi +Date: 2011-02-15 + + window: remove unused code + +M src/nemo-window.c +M src/nemo-window.h + +commit 476d462bce0bce5fdc367daea3e14be8603f5c3d +Author: Cosimo Cecchi +Date: 2011-02-15 + + all: remove the concept of global history list + + It's not that useful now that nemo is not a long running + application + anymore. + +M src/nemo-navigation-window-menus.c +M src/nemo-navigation-window.c +M src/nemo-window-manage-views.c +M src/nemo-window-private.h +M src/nemo-window-slot.c +M src/nemo-window-slot.h +M src/nemo-window.c + +commit 8974c917ecb202a0dad4871c79dc8d7306e28feb +Author: Cosimo Cecchi +Date: 2011-02-15 + + window-menus: move bookmark-related menu code where it belongs + +M src/nemo-window-bookmarks.c +M src/nemo-window-menus.c + +commit 7309d5576f28de33e9a5e5653037264110893490 +Author: Cosimo Cecchi +Date: 2011-02-15 + + ui-utilities: centralize a helper function + +M libnemo-private/nemo-ui-utilities.c +M libnemo-private/nemo-ui-utilities.h +M src/nemo-navigation-window-menus.c +M src/nemo-window-menus.c + +commit 1755d56bdfefabf0b764aa3531e93f8fb18d73b0 +Author: Cosimo Cecchi +Date: 2011-02-15 + + window-pane: remove active_slots madness + + We can't have more than one active slot at the same time anyway. + +M src/nemo-window-pane.c +M src/nemo-window-pane.h +M src/nemo-window.c + +commit 3a27963142a0ef942631f88f2576f8bc29076898 +Author: Cosimo Cecchi +Date: 2011-02-15 + + navigation-window-pane: cleanup header + +M src/nemo-navigation-window-pane.c +M src/nemo-navigation-window-pane.h + +commit c4d48d522dccb915041c9521789a47d2bea0e1e4 +Author: Cosimo Cecchi +Date: 2011-02-15 + + window: cleanup window_pane_zoom madness + +M src/nemo-window-pane.c +M src/nemo-window-pane.h +M src/nemo-window.c + +commit 75f4f95bed048d955cabd7e521b6cc78182a0903 +Author: Cosimo Cecchi +Date: 2011-02-15 + + search-bar: simplify boilerplate code + +M src/nemo-search-bar.c + +commit 28afe6fde1d12083b915f0040c84157ebd461df7 +Author: Cosimo Cecchi +Date: 2011-02-15 + + navigation-window: set/unset text on 'Search' according to split mode + +M src/nemo-navigation-window.c + +commit 3e0fa2ef6166160131f4d0051e3ac0c065be52e0 +Author: Cosimo Cecchi +Date: 2011-02-15 + + view: use the right label if we're searching + +M src/nemo-view.c + +commit 600352c410a57214cc8fbb9789cf6b43dde55388 +Author: Cosimo Cecchi +Date: 2011-02-15 + + navigation-window: use g_settings_bind() a little more + +M src/nemo-navigation-window-menus.c +M src/nemo-navigation-window.c +M src/nemo-navigation-window.h + +commit d05c85a0808c48b987dbc438538530f8506d9dfd +Author: Cosimo Cecchi +Date: 2011-02-15 + + style: add some junction properties + +M src/nemo-toolbar.c +M src/nemo-view.c + +commit 193f850cd11d909a0af9e95ec0dea7ad91c62160 +Author: Cosimo Cecchi +Date: 2011-02-15 + + ui-utlities: remove unused function + +M libnemo-private/nemo-ui-utilities.c +M libnemo-private/nemo-ui-utilities.h + +commit 6ebdfd9b5477178c9ab28c19e270b9dc4a53d6df +Author: Cosimo Cecchi +Date: 2011-02-15 + + window: don't care looking for toolbar extension items + + As we removed them. + +M src/Makefile.am +M src/nemo-navigation-window-slot.c +M src/nemo-window-manage-views.c +D src/nemo-window-toolbars.c + +commit d3cee086e7be525046c8a16a08b15bfa996871fa +Author: Cosimo Cecchi +Date: 2011-02-15 + + libnemo-extension: remove the ability to add toolbar items + + We want to fully control our toolbar now. + +M configure.in +M libnemo-extension/nemo-menu-provider.c +M libnemo-extension/nemo-menu-provider.h + +commit 417bb5c31758a3b321fbac0d53402bed1034c6db +Author: Cosimo Cecchi +Date: 2011-02-15 + + navigation-window: use g_settings_bind() for statusbar visibility + +M src/nemo-navigation-window-menus.c +M src/nemo-navigation-window.c +M src/nemo-navigation-window.h + +commit 1373f01db2180f080e1d7b02e1655fecb33c21f2 +Author: Cosimo Cecchi +Date: 2011-02-15 + + toolbar: fix toolbar with split pane + + The way we used to instantiate the toolbar, from the navigation window + UIManager, did not work fine in the new UI design, as we have + a toolbar + for each pane now; so we must instantiate a new UIManager for + each pane, + and add to it the navigation action group to fetch actions from. + +M src/Makefile.am +M src/nemo-location-bar.c +M src/nemo-location-bar.h +M src/nemo-navigation-window-pane.c +M src/nemo-navigation-window-ui.xml +A src/nemo-toolbar-ui.xml +M src/nemo-toolbar.c +M src/nemo-toolbar.h + +commit 7131487c8bebbbad075b238ec03934a78cf233d9 +Author: Cosimo Cecchi +Date: 2011-02-15 + + places-sidebar: use a symbolic icon for eject + +M src/nemo-places-sidebar.c + +commit a572b7355b12a99083b7489bf991a8f929b1a80a +Author: Cosimo Cecchi +Date: 2011-02-15 + + view: accumulate floating bar status setting in a timeout + + We use half of the double-click-time as a good heuristic. + +M src/nemo-view.c + +commit 5a21e22cb0603a77d0a8bf89f6197c799df7ba4d +Author: Cosimo Cecchi +Date: 2011-02-14 + + css: theme things a bit more + +M data/nemo.css + +commit caf3233bfc9e7a6e4cd4ed41245ca5d02fdd46e0 +Author: Cosimo Cecchi +Date: 2011-02-14 + + window: hide resize grip + +M src/nemo-window.c + +commit acd688037d2a8ccf675526a46ee1d8180301cedd +Author: Cosimo Cecchi +Date: 2011-02-14 + + view: use the floating bar as a temporary statusbar if it's off + + We use a slightly different status message in this case, where + we don't + care about free space on the volume. + +M src/nemo-view.c + +commit dc80c71c1a742e0134401e765652672a71e46809 +Author: Cosimo Cecchi +Date: 2011-02-14 + + view: always create the floating bar in _init() + + And show/hide it and its components according to what we're currently + doing. + +M src/nemo-view.c + +commit b30c9ad791961a6cbf5622c1e3c34b8a088c0439 +Author: Cosimo Cecchi +Date: 2011-02-14 + + floating-bar: add _cleanup_actions() + +M src/nemo-floating-bar.c +M src/nemo-floating-bar.h + +commit b75521b56f24bffa320ad7bb5bc61be6fa12cb96 +Author: Cosimo Cecchi +Date: 2011-02-14 + + floating-bar: add a bit more whitespace around the label + +M src/nemo-floating-bar.c + +commit b86054a34b9933180d9e847048a26d712505b04a +Author: Cosimo Cecchi +Date: 2011-02-14 + + sq iintegrate with view + +M src/nemo-view.c + +commit da3905c073456129874867df1572c8586a9a1f00 +Author: Cosimo Cecchi +Date: 2011-02-14 + + sq look like + +M data/nemo.css +M src/nemo-floating-bar.c + +commit d44378ee0adf944bb13a987e4aa79abf1b15693e +Author: Cosimo Cecchi +Date: 2011-02-14 + + icon-view: cleanup of supports_* properties + +M src/nemo-desktop-icon-view.c +M src/nemo-icon-view.c +M src/nemo-icon-view.h + +commit 621106fd68a9e2d86f5e62876fd3e2844c2d85ac +Author: Cosimo Cecchi +Date: 2011-02-14 + + view: refactor supports_zooming into a property + +M src/nemo-desktop-icon-view.c +M src/nemo-view.c +M src/nemo-view.h + +commit 8544bdb09511cff7edc0382009e6ca0d1f607cd6 +Author: Cosimo Cecchi +Date: 2011-02-14 + + desktop-icon-view: adapt the desktop icon view to recent changes + +M src/nemo-desktop-icon-view.c +M src/nemo-icon-view.c +M src/nemo-icon-view.h + +commit 246d7177acf8fa2ddec512e96310f5e31889cfd5 +Author: Cosimo Cecchi +Date: 2011-02-14 + + view: add a 'show-floating-bar' property for classes to override + + So we can disable it on the Desktop. + Also, cleanup the _class_init() code a bit while we're here. + +M src/nemo-view.c + +commit fec9449efc444e1dc25eeebf474a59f3aa16b75d +Author: Cosimo Cecchi +Date: 2011-02-14 + + view: hook up the overlay in the view + +M src/nemo-icon-view.c +M src/nemo-list-view.c +M src/nemo-view.c +M src/nemo-view.h + +commit db0c274ffaa2d4d95329716cad8b5af319fa9936 +Author: Cosimo Cecchi +Date: 2011-02-14 + + floating-bar: make it more similar to the mockups + +M data/nemo.css +M src/nemo-floating-bar.c + +commit 8728a440f1fb9e661d5553b30e60f57f5460007d +Author: Cosimo Cecchi +Date: 2011-02-14 + + floating-bar: make the class more flexible + + - add dialog-like actions + - add show/hide spinner + +M src/nemo-floating-bar.c +M src/nemo-floating-bar.h + +commit bcec4c4ecf1b77d7e803f4e84689c6e3b1413fcf +Author: Cosimo Cecchi +Date: 2011-02-14 + + floating-bar: add NemoFloatingBar + +M src/Makefile.am +A src/nemo-floating-bar.c +A src/nemo-floating-bar.h + +commit 43f310d0c2ffa2c99c21b332650a9a86b9adc0ab +Author: Cosimo Cecchi +Date: 2011-02-14 + + squash overlay + +M src/gedit-overlay.c + +commit 5ca133a198326a5aac65c3ef3ddca9af2424bdf5 +Author: Cosimo Cecchi +Date: 2011-02-14 + + overlay: update GeditOverlay from upstream + +M src/gedit-overlay.c + +commit c16127a438ff9654cbd63dbbc3859dc9916d0160 +Author: Cosimo Cecchi +Date: 2011-02-11 + + overlay: borrow GeditOverlay implementation from gedit + +M src/Makefile.am +A src/gedit-overlay-child.c +A src/gedit-overlay-child.h +A src/gedit-overlay.c +A src/gedit-overlay.h + +commit f5e17ca2b9e27437963155c459f0584eccc45deb +Author: Cosimo Cecchi +Date: 2011-02-11 + + icon-view-container: remove useless dispose impl + +M src/nemo-icon-view-container.c + +commit f718677e60eafcb4214ef8d4a9831fd2e597e5d0 +Author: Cosimo Cecchi +Date: 2011-02-11 + + view: don't emit the clear signal + +M src/nemo-view.c + +commit 24f1f12a7092312af689c49b9f57d888ce9b6b8c +Author: Cosimo Cecchi +Date: 2011-02-11 + + selection-canvas-item: add getter for 'width-pixels' + +M libnemo-private/nemo-selection-canvas-item.c + +commit 79c9f9e854284c35fc8485efed4850787799a1cf +Author: Cosimo Cecchi +Date: 2011-02-11 + + css: style the floating bar according to the mockups + +M data/nemo.css + +commit c27b221329aedbe9b18c6bf02a49193475390a2d +Author: Cosimo Cecchi +Date: 2011-02-11 + + navigation-window: use a symbolic icon for the search button + +M src/nemo-navigation-window-menus.c + +commit b4f5d1a9eb4d1389a1c198bb16a28ca35bdf5f60 +Author: Cosimo Cecchi +Date: 2011-02-11 + + navigation-window: remove spinner code + +M src/nemo-navigation-window.c +M src/nemo-window-toolbars.c + +commit 42f53017794f288a7c8709b297f0f6de1c368e94 +Author: Cosimo Cecchi +Date: 2011-02-11 + + selection-canvas-item: make fade-out time configurable + +M libnemo-private/nemo-icon-container.c +M libnemo-private/nemo-selection-canvas-item.c +M libnemo-private/nemo-selection-canvas-item.h + +commit 5b3208302e2bb5a3d8f2f68ac785a4aa64e8b8a6 +Author: Cosimo Cecchi +Date: 2011-02-11 + + selection-canvas-item: make sure the item is destroyed after + fading out + +M libnemo-private/nemo-selection-canvas-item.c + +commit e16f5d44fa67e2222f3a3ba30842e5697d76078f +Author: Cosimo Cecchi +Date: 2011-02-11 + + icon-container: only use icon elements to calculate layout bounds + + Canvas items like e.g. a NemoFloatingBarItem do not add up to the + layout bounds calculation. + +M libnemo-private/nemo-icon-container.c + +commit 3c749cf9da882043cc5a5cb938f8831831dec768 +Author: Cosimo Cecchi +Date: 2011-02-11 + + selection-canvas-item: remove useless Xrandr code which does nothing + + This code doesn't seem to actually do anything + +M configure.in +M libnemo-private/nemo-selection-canvas-item.c + +commit 854d310d34de8c45a43d7b94755fde45de2540fa +Author: Cosimo Cecchi +Date: 2011-02-10 + + navigation-window: cleanup cast madness + +M src/nemo-navigation-window.c + +commit f84f5bb0379b0eea4a9e4e1df72f3038587269eb +Author: Cosimo Cecchi +Date: 2011-02-10 + + navigation-window: ensure toolbar search button toggles as expected + +M src/nemo-navigation-window-pane.c +M src/nemo-navigation-window.c + +commit d02d193409f53d11bb68ea97683ddc2dc83a088a +Author: Cosimo Cecchi +Date: 2011-02-10 + + window-menus: set is-important to 'Search' + +M src/nemo-navigation-window-menus.c + +commit ec87bd5216871dc2cc8c539b51f45be4096bcd2f +Author: Cosimo Cecchi +Date: 2011-02-10 + + navigation-window: remove commented out code + +M src/nemo-navigation-window.c + +commit f269eb0f1ff68c1f2ede2c8533a3764cafa11cf8 +Author: Cosimo Cecchi +Date: 2011-02-10 + + window-menus: remove is-important from back/forward nav actions + +M src/nemo-navigation-window-menus.c + +commit 67946b38ce482201e0da7dbf6e955e06038fa2c9 +Author: Cosimo Cecchi +Date: 2011-02-10 + + toolbar: build the toolbar and the location bar with a GtkUIManager + +M src/nemo-location-bar.c +M src/nemo-location-bar.h +M src/nemo-navigation-window-pane.c +M src/nemo-navigation-window-ui.xml +M src/nemo-toolbar.c +M src/nemo-toolbar.h + +commit ba531b1184310455127fa06691f3722052a2eb6c +Author: Cosimo Cecchi +Date: 2011-02-10 + + window-menus: merge the UI from XML while initializing actions + + Because we need it to be ready when setting up the window pane + +M src/nemo-navigation-window-menus.c + +commit 80ea58e844365d0bb097436ed8c0359e07cfd793 +Author: Cosimo Cecchi +Date: 2011-02-10 + + navigation-window: initialize actions before setting up the pane + + This is needed so that the pane can use those actions to build the + toolbar. We also have to remove the code that updates split view + actions from _initialize_actions(), as it requires the pane is + realized. + It should not be much of an issue, as that code is called when loading + an URI anyway (and so it is called afterwards when loading the + window). + +M src/nemo-navigation-window-menus.c +M src/nemo-navigation-window.c + +commit 5756ac82bab3a63708544aeef47ee5b0e9b508da +Author: Cosimo Cecchi +Date: 2011-02-10 + + navigation-action: do not use a GtkMenuToolButton + + As it always has dropdown arrows, which we don't want to see. + Make it a Firefox-like button instead, where you can either right + click + or keep the mouse button pressed for an amount of time to activate the + context menu. + +M src/nemo-navigation-action.c + +commit 7363013201ec2950958db529ea96c0f2442b3c53 +Author: Cosimo Cecchi +Date: 2011-02-09 + + all: remove unused GSettings keys + +M libnemo-private/nemo-global-preferences.h +M src/nemo-file-management-properties.c + +commit 66c46dd6d2cdbaeae38e9b42b083c17ebf3ed65d +Author: Cosimo Cecchi +Date: 2011-02-09 + + location-bar: use dash and not underscore in signal name + +M src/nemo-location-bar.c + +commit 0ea4ca0709c361a4e2adf5e061108abf5c7017e3 +Author: Cosimo Cecchi +Date: 2011-02-09 + + navigation-window-menus: use g_settings_bind() for toolbar visibility + + This also reduces the code complexity by a fair bit + +M src/nemo-navigation-window-menus.c + +commit 47958798846c8bbf85f2e28abc9b66d8266e890f +Author: Cosimo Cecchi +Date: 2011-02-09 + + navigation-window: comment out old toolbar code for now + +M src/nemo-navigation-window-ui.xml +M src/nemo-navigation-window.c + +commit 211dda1ded746708019b11dd497dde21adfb8c4d +Author: Cosimo Cecchi +Date: 2011-02-09 + + navigation-window: cope with NemoNavigationWindowPane changes + +M src/nemo-navigation-window.c + +commit 1a95b0117e095885fc6ec4c3903c909c4f48f377 +Author: Cosimo Cecchi +Date: 2011-02-09 + + slot: remove NemoBarMode + +M src/nemo-navigation-window-slot.h + +commit ff264ed954842d933c9fa5dcd6d8b48366ce60c6 +Author: Cosimo Cecchi +Date: 2011-02-09 + + navigation-window-pane: rework to make use of NemoToolbar + +M src/nemo-navigation-window-pane.c +M src/nemo-navigation-window-pane.h + +commit 36e9be912735ce02929aaace8fb618e31bb91b59 +Author: Cosimo Cecchi +Date: 2011-02-09 + + navigation-window: don't use search_bar_is_showing() + + NemoToolbar is smart enough to take care of visibility alone. + +M src/nemo-navigation-window.c + +commit 865556e2e2073c41f687a4752571bfdf593deeb3 +Author: Cosimo Cecchi +Date: 2011-02-09 + + navigation-window: don't tirgger toolbar visibility with GSettings + + It's done internally by NemoToolbar + +M src/nemo-navigation-window.c + +commit b34fb9648fcd58f17e09590e2dc9e0dae8af3757 +Author: Cosimo Cecchi +Date: 2011-02-09 + + navigation-window: remove methods to toggle toolbar visibility + + This will be done automatically by NemoToolbar and inside the + methods to + trigger temporary visibility. + +M src/nemo-navigation-window.c +M src/nemo-navigation-window.h + +commit a56b468038964ba6ceea5efae74b1520d8e2429a +Author: Cosimo Cecchi +Date: 2011-02-09 + + window-toolbars: clean up includes + +M src/nemo-window-toolbars.c + +commit bd36e2d04baeeeeafc2fcf2f00383fbc367de735 +Author: Cosimo Cecchi +Date: 2011-02-09 + + toolbar: add NemoToolbar + +M src/Makefile.am +A src/nemo-toolbar.c +A src/nemo-toolbar.h + +commit ca1fa0c2b05edd8e76bb6314a7cb7c1adc4f3319 +Author: Cosimo Cecchi +Date: 2011-02-08 + + navigation-bar: remove useless abstract class + + Merge the useful pieces into NemoLocationBar itself, which is the + only implementor anyway. + +M src/Makefile.am +M src/nemo-location-bar.c +M src/nemo-location-bar.h +D src/nemo-navigation-bar.c +D src/nemo-navigation-bar.h +M src/nemo-navigation-window-pane.c +M src/nemo-navigation-window.c + +commit 6f0a2036197cf03095b0a775c35983bc42885fb1 +Author: Kjartan Maraas +Date: 2011-02-17 + + Updated Norwegian bokmål translation. + +M po/nb.po + +commit dde08b0914b1ec42ecfbbbee47673e8fe3975319 +Author: Sweta Kothari +Date: 2011-02-17 + + Updated Gujarati Translations + +M po/gu.po + +commit f8bea223f63eb0ed62ddf22062c94d1c76fea234 +Author: Alexander Shopov +Date: 2011-02-17 + + Updated Bulgarian translation + +M po/bg.po + +commit 8f9dda634d5143dda92a8bf987ca083225ab174c +Author: Mario Blättermann +Date: 2011-02-13 + + [l10n] Updated German translation + +M po/de.po + +commit ae6122fb8212e56f2c5a3afad5b84d532ed3ffc1 +Author: Changwoo Ryu +Date: 2011-02-13 + + Updated Korean translation + +M po/ko.po + +commit 17323012e2ebc3b65be673a7524e021f84434810 +Author: Yaron Shahrabani +Date: 2011-02-12 + + Updated Hebrew translation. + +M po/he.po + +commit b0760d0c50aea36ab95a81794f35b739c3ab08f5 +Author: Chao-Hsiung Liao +Date: 2011-02-11 + + Updated Traditional Chinese translation(Hong Kong and Taiwan) + +M po/zh_HK.po +M po/zh_TW.po + +commit 06e1c2822bc543566eb71ea6f6208a3c82da67fe +Author: Mahyar Moghimi +Date: 2011-02-10 + + Updating Persian Translation + +M po/fa.po + +commit a425e4ed04d0323e1770ca4889affc4564c66a05 +Author: Mahyar Moghimi +Date: 2011-02-10 + + Updating Persian Translation + +M po/fa.po + +commit 20df7410f143960c206efce19e0f404df3265c93 +Author: Mahyar Moghimi +Date: 2011-02-10 + + Updating Persian Translation + +M po/fa.po + +commit 917a3e2097f52d2e8223011b672dffadc6674472 +Author: Cosimo Cecchi +Date: 2011-02-08 + + gsettings: rename our gschema path to /org/gnome/nemo + +M libnemo-private/org.gnome.nemo.gschema.xml.in + +commit fbabd8e4f13fb7312f3921f3a1633b586a4b048c +Author: Cosimo Cecchi +Date: 2011-02-08 + + editable-label: chain up in style_updated() + +M eel/eel-editable-label.c + +commit 4e47a409e990418f541ec9c5f5b5e1567eb04297 +Author: Alexander Larsson +Date: 2011-02-07 + + Avoid spew in the common case of non-existing desktop metadata file + +M libnemo-private/nemo-desktop-metadata.c + +commit 98feec44b9d93fc029e95b682ec29eb104c60320 +Author: Craig Keogh +Date: 2011-02-06 + + Remove configure.in ACLOCAL_FLAGS, now in Makefile.am (GNOME bug + 641629) + +M configure.in + +commit 43573325a03536a93869f0a080dc0b2257e7e258 +Author: Craig Keogh +Date: 2011-02-06 + + Honor aclocal flags (GNOME bug 641629) + +M Makefile.am + +commit 01e5b514d9155e73448365d5f994a967da2d58f2 +Author: Cosimo Cecchi +Date: 2011-02-07 + + pathbar: use "Home" for the home button, instead of the username + +M src/nemo-pathbar.c + +commit df482adbbdb62f422f9c3eabb5aa1ac7a638e700 +Author: Kjartan Maraas +Date: 2011-02-06 + + Updated Norwegian bokmål translation. + +M po/nb.po + +commit ed109037524dec6dbf11b4a840eb9b4ea82c9e2f +Author: Fran Diéguez +Date: 2011-02-06 + + Updated Galician translations + +M po/gl.po + +commit c926b072165b822af8dfd6f5d8a413809bb6b541 +Author: Cosimo Cecchi +Date: 2011-02-05 + + bookmark: apply name and custom-name during construction + +M libnemo-private/nemo-bookmark.c + +commit 8233aadcdd5dcf57d66c7c70df4e507ed32020ed +Author: Ivar Smolin +Date: 2011-02-05 + + [l10n] Updated Estonian translation + +M po/et.po + +commit 52d148c29a931ffaee715f714e7fd507901f7054 +Author: Daniel Mustieles +Date: 2011-02-05 + + Updated Spanish translation + +M po/es.po + +commit 21527ca0cdfc3bb4fa2bba86363ffd2b8a795fd1 +Author: Daniel Mustieles +Date: 2011-02-05 + + Updated Spanish translation + +M po/es.po + +commit eb69bfd91cca98f40f1c60f1198224c6b0e9ac61 +Author: Ivar Smolin +Date: 2011-02-05 + + [l10n] Updated Estonian translation + +M po/et.po + +commit 842a639da7450449877a31f1b0a52188c737b6c6 +Author: Cosimo Cecchi +Date: 2011-02-04 + + i18n: fix POTFILES.in + +M po/POTFILES.in + +commit 9e5a32831826ad609f8ad5315e5b6f72bda5c51f +Author: Cosimo Cecchi +Date: 2011-02-04 + + Release 2.91.9 + +M NEWS +M configure.in + +commit 82fb99a34a6c27f6881e0a049d9882756b615f42 +Author: Stefano Teso +Date: 2011-02-04 + + location-entry: fix auto-complete for non-local URIs + + https://bugzilla.gnome.org/show_bug.cgi?id=635333 + +M src/nemo-location-entry.c + +commit 1212e12456347da601a77de013082fd1beac8463 +Author: Stefano Teso +Date: 2011-02-04 + + query: don't crash with empty .savedSearch files + + Be more robust against empty .savedSearch files. + + https://bugzilla.gnome.org/show_bug.cgi?id=601205 + +M libnemo-private/nemo-query.c + +commit 8f5d29b21b2ab82250bf516f9263aa473dfd64f1 +Author: Stefano Teso +Date: 2011-02-04 + + bookmark: don't make the name/custom-name props construct-only + + This was probably a typo from the refactoring of the object. + + https://bugzilla.gnome.org/show_bug.cgi?id=641484 + +M libnemo-private/nemo-bookmark.c + +commit 59d7af27e1d62e01108058088c5f9faf980832b3 +Author: Khaled Hosny +Date: 2011-02-04 + + Updated Arabic translation + +M po/ar.po + +commit 41de4e52b43c8ed5c9118860dac7caa303ebbc5b +Author: Cosimo Cecchi +Date: 2011-02-04 + + list-view: add a FIXME comment + +M src/nemo-list-view.c + +commit 4f17fb7db7b8736ebb4fe82ddb1c279777847730 +Author: Cosimo Cecchi +Date: 2011-02-04 + + list-view: workaround a GtkTreeView regression + + See https://bugzilla.gnome.org/show_bug.cgi?id=641518 for details + +M src/nemo-list-view.c + +commit f324265d1795a7d23af3ece0e48ce9479e1e5bb5 +Author: Luca Ferretti +Date: 2011-02-04 + + Updated Italian translation + +M po/it.po + +commit c2bcaeb0da84d5759571e365a3a5e71e48d70952 +Author: Luca Ferretti +Date: 2011-02-03 + + connect-server-dialog: add missing mnemonics and use proper + capitalization + +M src/nemo-connect-server-dialog.c + +commit 5c89e3157752fa9311f0ca5e2310885187270ac8 +Author: Yaron Shahrabani +Date: 2011-02-04 + + Updated Hebrew translation. + +M po/he.po + +commit 11cc68cbcc154f7e84975861b26c177ae92547aa +Author: Cosimo Cecchi +Date: 2011-02-03 + + progress-ui: add a notification when all transfer complete + +M src/nemo-progress-ui-handler.c + +commit 046927432a01f7a4bb7a4dc9c96005548950ca79 +Author: Cosimo Cecchi +Date: 2011-02-03 + + progress-ui: add a "Show Details" action to the notification + +M src/nemo-progress-ui-handler.c + +commit 8536b7134f75f23c044772d583402bbe1ebf6174 +Author: Cosimo Cecchi +Date: 2011-02-03 + + progress-ui: first cut implemneting file ops progress with + notifications + +M configure.in +M src/nemo-application.c +M src/nemo-progress-ui-handler.c + +commit b9fe2ecb4894895e063c4cbda5f62b7ad54b7449 +Author: Cosimo Cecchi +Date: 2011-02-02 + + progress-info: split UI of NemoProgressInfo into its own object + +M libnemo-private/nemo-progress-info.c +M src/Makefile.am +A src/nemo-progress-info-widget.c +A src/nemo-progress-info-widget.h +M src/nemo-progress-ui-handler.c + +commit adab8f5fe5681dcb06be4d6fbaa674624b49b6b5 +Author: Cosimo Cecchi +Date: 2011-02-02 + + progress-info: add NemoProgressUIHandler + + It will take care of the various states of file operation progress' + user + interface. + +M src/Makefile.am +M src/nemo-application.c +A src/nemo-progress-ui-handler.c +A src/nemo-progress-ui-handler.h + +commit a0f89473830575ae39a568608bc58f3f92c6f4a4 +Author: Cosimo Cecchi +Date: 2011-02-01 + + progress-info: split progress information notify into a new manager + +M libnemo-private/Makefile.am +A libnemo-private/nemo-progress-info-manager.c +A libnemo-private/nemo-progress-info-manager.h +M libnemo-private/nemo-progress-info.c +M libnemo-private/nemo-ui-utilities.c +M libnemo-private/nemo-ui-utilities.h +M src/nemo-application.c +M src/nemo-application.h +M test/test-copy.c + +commit 2a86f1c60ba847951145ea3570bcf4e7a26a18f1 +Author: Fran Diéguez +Date: 2011-02-03 + + Updated Galician translations + +M po/gl.po + +commit bfece2283aacd609ce3466b6f27539b03f215e8e +Author: Mattias Põldaru +Date: 2011-02-03 + + [l10n] Updated Estonian translation + +M po/et.po + +commit 52b59769ea4944eaebdef26c271b8c1c45aa0493 +Author: Daniel Nylander +Date: 2011-02-02 + + Updated Swedish translation + +M po/sv.po + +commit eb6a4a8eaea16b6fa4d377b759e306016073d2fe +Author: William Jon McCann +Date: 2011-02-02 + + Use Files as launcher name + + https://bugzilla.gnome.org/show_bug.cgi?id=641256 + +M data/nemo.desktop.in.in + +commit a293b96241714a8d07e2b8aecd34ce61aff117ad +Author: Cosimo Cecchi +Date: 2011-02-01 + + eel: remove unused eel-canvas-util + +M eel/Makefile.am +D eel/eel-canvas-util.c +D eel/eel-canvas-util.h +M libnemo-private/nemo-icon-canvas-item.c + +commit 2870f8f8ef38350451ddf36dfc704b2a0e66c616 +Author: Cosimo Cecchi +Date: 2011-02-01 + + selection-canvas-item: fix copyright header + + I copied it from the wrong file. + +M libnemo-private/nemo-selection-canvas-item.c +M libnemo-private/nemo-selection-canvas-item.h + +commit 6b03a56dbd932de2b274bf61f78ae12f4ed7da0b +Author: Cosimo Cecchi +Date: 2011-02-01 + + icon-container: use the fade out effect for rubberbanding + +M libnemo-private/nemo-icon-container.c + +commit bd30e3d0670e437c55e82b544565a539331154d5 +Author: Cosimo Cecchi +Date: 2011-02-01 + + selection-canvas-item: implement a fade out effect + +M libnemo-private/nemo-selection-canvas-item.c +M libnemo-private/nemo-selection-canvas-item.h + +commit b13969228d4d96c3ff677090e888f2aa9d026083 +Author: Cosimo Cecchi +Date: 2011-02-01 + + selection-canvas-item: simplify GObject properties + +M libnemo-private/nemo-selection-canvas-item.c +M libnemo-private/nemo-selection-canvas-item.h + +commit 8853b7bf92271ff093803ccdfb3079512d12149d +Author: Cosimo Cecchi +Date: 2011-02-01 + + Move EelRectCanvasItem to its own object in libnemo-private/ + + eel-canvas-rect-ellipse has quite some unused code that make it + hard to + modify. + +M eel/Makefile.am +D eel/eel-canvas-rect-ellipse.c +D eel/eel-canvas-rect-ellipse.h +M libnemo-private/Makefile.am +M libnemo-private/nemo-icon-container.c +M libnemo-private/nemo-icon-dnd.c +A libnemo-private/nemo-selection-canvas-item.c +A libnemo-private/nemo-selection-canvas-item.h + +commit 67687dd50433d620ddd931d983462ca131dd48bb +Author: Cosimo Cecchi +Date: 2011-02-01 + + desktop-metadata: initialize a variable + +M libnemo-private/nemo-desktop-metadata.c + +commit 513e94c31e22d340888b139c50c43b6f2d037703 +Author: Cosimo Cecchi +Date: 2011-02-01 + + desktop-metadata: append a terminator for single-length strv values + + This is needed so that we can differentiate between single-length strv + and regular string values when reading them back from the keyfile, + which + does not store the type of its values. This way, we make sure that we + always respect the actual metadata type in GFileInfo. + +M libnemo-private/nemo-desktop-metadata.c + +commit 25754a54bb0889187d9b5cb45e6c32ae9321f038 +Author: Cosimo Cecchi +Date: 2011-02-01 + + desktop-metadata: group multiple desktop metadata saving calls + +M libnemo-private/nemo-desktop-metadata.c + +commit aa552113606e24d331c6c62de0f5406351600d7f +Author: Cosimo Cecchi +Date: 2011-01-31 + + Release 2.91.8 + +M NEWS +M configure.in + +commit 3f55f369c00044a3d93c6bb10aa9e7c025548d5d +Author: Cosimo Cecchi +Date: 2011-01-31 + + build: remove GConf dependency altogether + +M configure.in + +commit 4227f0b1708d36d464ffce207c75b429bec1917b +Author: Cosimo Cecchi +Date: 2011-01-31 + + convert-metadata: don't migrate the desktop metadata to GConf + +M src/nemo-convert-metadata.c + +commit 389789e8f102f794780a2842e9506dc23ddd6a08 +Author: Cosimo Cecchi +Date: 2011-01-31 + + preferences: don't use GConfClient anymore + +M libnemo-private/nemo-global-preferences.c +M libnemo-private/nemo-global-preferences.h + +commit 632bf39a23e5457d76540063eff69b36e36459d0 +Author: Cosimo Cecchi +Date: 2011-01-31 + + desktop-metadata: use a keyfile instead of GConf to store it + +M libnemo-private/Makefile.am +M libnemo-private/nemo-desktop-directory-file.c +M libnemo-private/nemo-desktop-directory-file.h +M libnemo-private/nemo-desktop-icon-file.c +A libnemo-private/nemo-desktop-metadata.c +A libnemo-private/nemo-desktop-metadata.h +M libnemo-private/nemo-metadata.h + +commit c62a8ff91596da4d14b56a52400baa52e05c2ccc +Author: Cosimo Cecchi +Date: 2011-01-31 + + desktop-directory-file: don't use eel boilerplate + +M libnemo-private/nemo-desktop-directory-file.c + +commit 3d0dc4d6d763c70630e82f5a5c69a6745af70866 +Author: Gabor Kelemen +Date: 2011-01-31 + + Fix a mistranslation + +M po/hu.po + +commit 678c5216ebe3987b7b268d27fc0af78f09e58d94 +Author: Cosimo Cecchi +Date: 2011-01-30 + + sort-order: resync sort order property with NemoFileSortType + + This makes the sorting preference reliably work again. + +M libnemo-private/nemo-file.c +M libnemo-private/nemo-file.h +M libnemo-private/org.gnome.nemo.gschema.xml.in +M src/nemo-file-management-properties.c +M src/nemo-file-management-properties.ui + +commit 6a6c18d4d62adc14cfc41769ab5ce37793d51c16 +Author: Cosimo Cecchi +Date: 2011-01-30 + + icon-view: save sort metadata only when the user explicitly changes it + +M src/nemo-icon-view.c + +commit c1fa2a49e02552a2fb334f7cb766a32f0c201ad1 +Author: Cosimo Cecchi +Date: 2011-01-30 + + eel: remove eel_g_settings_add_auto_* functions + +M eel/eel-glib-extensions.c +M eel/eel-glib-extensions.h + +commit 253345f0841a38fcf02023bc2acd8bdc26842160 +Author: Cosimo Cecchi +Date: 2011-01-30 + + all: don't use eel_g_settings_add_auto_* methods + + It makes no sense to use caching now with GSettings, as lookup + operations are fast enough. + +M libnemo-private/nemo-file.c +M libnemo-private/nemo-icon-canvas-item.c +M libnemo-private/nemo-thumbnails.c +M src/nemo-desktop-icon-view.c +M src/nemo-icon-view.c +M src/nemo-list-view.c + +commit e14351baf9f252a57395f2982e05ccecc504d646 +Author: Cosimo Cecchi +Date: 2011-01-30 + + icon-view: move desktop view's get_view_id to a proper implementation + + Instead of hardcoding IS_DESKTOP_ICON_VIEW() checks in the parent + class. + +M src/nemo-desktop-icon-view.c +M src/nemo-icon-view.c + +commit fdf30fd8c54c25e952ecc313af6d5325cf062452 +Author: A S Alam +Date: 2011-01-29 + + update Punjabi Translation by A S Alam + +M po/pa.po + +commit b97ee5da0bb1ab6ad4cc0f2a1d795ee7f64b5ec5 +Author: Cosimo Cecchi +Date: 2011-01-28 + + Update MAINTAINERS and DOAP files + +M MAINTAINERS +M nemo.doap + +commit 454b2caf1ba89a62321486db10c87e63217031b8 +Author: Cosimo Cecchi +Date: 2011-01-28 + + application: don't call mount_removed_callback() on pre-unmount + + The unmount process follows this flow: + - pre-unmount is emitted + - GIO performs checks to see whether the volume is safe to unmount, + and + spawns GtkMountOperation dialogues accordingly + - if everything is fine, the unmount signal is emitted + + So, it's wrong to close or redirect windows from pre-unmount, as the + mount could actually not be unmounted after that. + +M src/nemo-application.c + +commit 35bf6c86b53b68a61389f270aa0ce1ff2715ff7c +Author: Cosimo Cecchi +Date: 2011-01-27 + + Clean up our desktop file (#640687) + + - remove the 'System' category + - remove autostart interactions with gnome-session + +M data/nemo.desktop.in.in + +commit e7b6fd0e59ec49fbe6216c157eea2a92b384d39e +Author: Tomas Bzatek +Date: 2011-01-27 + + Clarify the reason for recent nemo_file_peek_display_name() + workaround + +M libnemo-private/nemo-file.c + +commit 8f6245a80cfd571274813fe4d5d950769d02bfba +Author: Tomas Bzatek +Date: 2011-01-27 + + Prevent a crash in nemo_file_peek_display_name() on invalid + NemoFile + + This is more a workaround only, expect assert failures at other + places when something bad happens. There's a race condition somewhere, + this patch only prevents immediate crash. + + Patch by Marcus Husar + + https://bugzilla.gnome.org/show_bug.cgi?id=602500 + +M libnemo-private/nemo-file.c + +commit fd03c910a73ba18459e68baaf15e8dd295acd5c1 +Author: Stefano Teso +Date: 2011-01-26 + + places-sidebar: allow keyboard navigation with Enter/Space (#637768) + +M src/nemo-places-sidebar.c + +commit 4f4c07b1f9964d437f70c89d94e9585429a69f91 +Author: Fran Diéguez +Date: 2011-01-27 + + Get Galician translations back from wrong commit + +M po/gl.po + +commit dace8ba5c2068e80bb9d99a1370f0c1a989fb72a +Author: Fran Diéguez +Date: 2011-01-27 + + QA of Galician translations + +M po/gl.po + +commit 17793d3bb90dbde51c95f73867bf75d6546cf88f +Author: Fran Diéguez +Date: 2011-01-27 + + QA of Galician translations + +M po/gl.po + +commit a63aaa68f14bec6507d36e856a4ed79d969b1be3 +Author: Cosimo Cecchi +Date: 2011-01-25 + + desktop-background: make sure to hold a ref in the 'changed' idle + + Otherwise we might end up accessing object fields after it was + destroyed. + + https://bugzilla.gnome.org/show_bug.cgi?id=640420 + +M libnemo-private/nemo-desktop-background.c + +commit 6d079cc40ab1dfab5b7d60cac44b655d4d243f3d +Author: Cosimo Cecchi +Date: 2011-01-24 + + editable-label: fix some drawing regressions + + Also, remove the copy/pasted gtkpango code again, as we can have a + better rendering without it. + +M eel/eel-editable-label.c + +commit d4230de8667764e02dbb966b5d806ff78ced2fd5 +Author: Cosimo Cecchi +Date: 2011-01-24 + + all: silence new warnings from GCC 4.6 + + GCC 4.6 introduced a new warning about variables declared and + initialized, but not really used in the function body. Remove all of + these occurrences to build cleanly. + +M eel/eel-canvas-rect-ellipse.c +M eel/eel-canvas.c +M libnemo-private/nemo-clipboard.c +M libnemo-private/nemo-desktop-icon-file.c +M libnemo-private/nemo-directory-async.c +M libnemo-private/nemo-directory.c +M libnemo-private/nemo-entry.c +M libnemo-private/nemo-file-conflict-dialog.c +M libnemo-private/nemo-file-operations.c +M libnemo-private/nemo-icon-canvas-item.c +M libnemo-private/nemo-icon-container.c +M libnemo-private/nemo-icon-dnd.c +M libnemo-private/nemo-saved-search-file.c +M libnemo-private/nemo-search-directory-file.c +M libnemo-private/nemo-vfs-directory.c +M libnemo-private/nemo-vfs-file.c +M nemo-sendto-extension/nemo-nste.c +M src/nemo-application.c +M src/nemo-connect-server-dialog-nonmain.c +M src/nemo-connect-server-dialog.c +M src/nemo-icon-view.c +M src/nemo-list-view.c +M src/nemo-main.c +M src/nemo-navigation-window-slot.c +M src/nemo-navigation-window.c +M src/nemo-pathbar.c +M src/nemo-places-sidebar.c +M src/nemo-properties-window.c +M src/nemo-query-editor.c +M src/nemo-tree-sidebar-model.c +M src/nemo-tree-sidebar.c +M src/nemo-view.c +M src/nemo-window-manage-views.c +M src/nemo-window.c + +commit 155cc03271fd7db1da4af7d60dcedfe8acdc2900 +Author: Funda Wang +Date: 2011-01-23 + + Updated zh_CN translation. + +M po/zh_CN.po + +commit 7e47ccdee2c8be8b16fad0da3320141f27596bfa +Author: Piotr Eljasiak +Date: 2011-01-22 + + Fix typo (G_TYPE_INSTANCE_CHECK_TYPE -> G_TYPE_CHECK_INSTANCE_TYPE) + +M libnemo-private/nemo-mime-application-chooser.h +M libnemo-private/nemo-module.c +M libnemo-private/nemo-tree-view-drag-dest.h +M src/nemo-connect-server-dialog.h +M src/nemo-connect-server-operation.h +M src/nemo-location-dialog.h + +commit 0b4bb326cae5d8df888192f4c763211dff9e7f97 +Author: Kristjan SCHMIDT +Date: 2011-01-22 + + Updated Esperanto translation + +M po/eo.po + +commit 9f539e6fa5d2832b9b4788c338bbce66f81971f9 +Author: Alexander Shopov +Date: 2011-01-21 + + Updated Bulgarian translation + +M po/bg.po + +commit 187dc50c76da193f46aa7cb856a4ce1ea964b023 +Author: Chao-Hsiung Liao +Date: 2011-01-20 + + Updated Traditional Chinese translation(Hong Kong and Taiwan) + +M po/zh_HK.po +M po/zh_TW.po + +commit 484c9a1bacd254795703c014a170b5801a1f3104 +Author: Cosimo Cecchi +Date: 2011-01-20 + + eel: remove eel-gdk-pixbuf-extensions + +M eel/Makefile.am +D eel/eel-gdk-pixbuf-extensions.c +D eel/eel-gdk-pixbuf-extensions.h + +commit 129d90ebcd83efd7d7f2ebc75c77922bd9771b9d +Author: Cosimo Cecchi +Date: 2011-01-20 + + all: remove unused includes of eel-gdk-pixbuf-extensions + +M eel/eel-gtk-extensions.c +M eel/eel.h +M libnemo-private/nemo-bookmark.c +M libnemo-private/nemo-icon-canvas-item.c +M libnemo-private/nemo-icon-container.c +M libnemo-private/nemo-icon-dnd.c +M libnemo-private/nemo-thumbnails.c +M src/nemo-properties-window.c + +commit 83a83e3a2200127889c9979240049124b7e9a182 +Author: Cosimo Cecchi +Date: 2011-01-20 + + icon-info: use gdk_pixbuf_new_from_stream_at_scale() + +M libnemo-private/nemo-icon-info.c + +commit 2103a49026fd1c406f2607ef7d070b3081835982 +Author: Cosimo Cecchi +Date: 2011-01-20 + + icon-canvas-item: simplify the code a bit + +M libnemo-private/nemo-icon-canvas-item.c + +commit f58a70a92a83f8979f43ed84fd79d9b764e6d7c6 +Author: Cosimo Cecchi +Date: 2011-01-20 + + eel: remove unused eel_pixbuf_render() + +M eel/eel-gdk-pixbuf-extensions.c +M eel/eel-gdk-pixbuf-extensions.h + +commit 8b13a044cc226cf1347831ef566938a24aa5f9a1 +Author: Cosimo Cecchi +Date: 2011-01-20 + + general: use eel_create_spotlight_pixbuf() + +M src/nemo-list-model.c +M src/nemo-places-sidebar.c +M src/nemo-tree-sidebar-model.c + +commit 09f0b79d854b00469410e2466897df6db5b4d51d +Author: Cosimo Cecchi +Date: 2011-01-20 + + icon-canvas-item: remove an useless snippet of drawing code + +M libnemo-private/nemo-icon-canvas-item.c + +commit a083fa0d0bbd99f1b74d28af305efeb71859e775 +Author: Cosimo Cecchi +Date: 2011-01-20 + + icon-container: hook to style_updated instead of style_set + +M libnemo-private/nemo-icon-container.c + +commit e652eb079514451313a67408c1cc3c8188ae0161 +Author: Cosimo Cecchi +Date: 2011-01-20 + + icon-container: remove unused style properties + +M libnemo-private/nemo-icon-container.c +M libnemo-private/nemo-icon-private.h + +commit a1fa4eaa03493d6b69c5e79db296a83532974f63 +Author: Cosimo Cecchi +Date: 2011-01-20 + + icon-canvas-item: use eel_create_spotlight_pixbuf() + + Instead of passing eel_pixbuf_render() always the same values + +M libnemo-private/nemo-icon-canvas-item.c + +commit 207a2499a3f19b194acb93925084bbd7800fe0bc +Author: Cosimo Cecchi +Date: 2011-01-20 + + css: move the style properties from adwaita here + +M data/nemo.css + +commit 2a1fbaf839fc7eaae505e3534acd317e9dd47b1b +Author: Cosimo Cecchi +Date: 2011-01-19 + + canvas: fix an ACTIVE -> NORMAL typo from GtkStyleContext conversion + +M eel/eel-canvas.c + +commit d0d90599476e4f21d3e07fd670b6c18b6ba06794 +Author: Cosimo Cecchi +Date: 2011-01-19 + + icon-container: fix a couple of ACTIVE -> NORMAL typos + +M libnemo-private/nemo-icon-container.c + +commit e2ca42cac78cb0287a1bbb73030e7bba8b171970 +Author: Cosimo Cecchi +Date: 2011-01-19 + + icon-container: remove useless theming properties + +M libnemo-private/nemo-icon-canvas-item.c +M libnemo-private/nemo-icon-container.c + +commit 5bfc3e50c91c4c6fc129e9383e3f2f20a87be0cf +Author: Cosimo Cecchi +Date: 2011-01-19 + + views: use proper background color for inactive panes + +M libnemo-private/nemo-icon-container.c +M src/nemo-list-view.c + +commit d55ca5df614a56f3d9750df1fbcfcca155dce0b4 +Author: Marios Zindilis +Date: 2011-01-19 + + Updated Greek translation + +M po/el.po + +commit bd179dad12aa8175ed7e02f9421c0d1ed125bd2a +Author: Maxim V. Dziumanenko +Date: 2011-01-18 + + Updated Ukrainian translation + +M po/uk.po + +commit 9eee9ff6ca3e93d5d363725282d8ba393a1e6d01 +Author: Markus T. Vartiainen +Date: 2011-01-18 + + list-view: jump to parent with left key on collapsed rows (#639688) + +M src/nemo-list-view.c + +commit c6fa6b2062a1adf3e4945824048b3771edb35ebe +Author: Cosimo Cecchi +Date: 2011-01-18 + + places-sidebar: plug a leak and cleanup code a bit + +M src/nemo-places-sidebar.c + +commit f394ce8c052dd65c8343106964ba4431d97d261c +Author: Cosimo Cecchi +Date: 2011-01-18 + + icon-container: plug a memory leak + +M libnemo-private/nemo-icon-container.c + +commit 8f15b28dd7afdd1a5c5b9c0d54c05d978a10461a +Author: Cosimo Cecchi +Date: 2011-01-18 + + eel: plug some leaks in gsettings helpers + +M eel/eel-glib-extensions.c + +commit 04d3aa67294f300f3b0bd927be5f45666260c5d3 +Author: Nicolò Chieffo <84yelo3@gmail.com> +Date: 2011-01-17 + + progress-info: use a symbolic icon for the notification area (#596568) + +M libnemo-private/nemo-progress-info.c + +commit 12c3841911b47e1496d8c8fea2429cf3ca4bf8d0 +Author: Ivar Smolin +Date: 2011-01-17 + + [l10n] Updated Estonian translation + +M po/et.po + +commit 9e016ee923a2625ebd4d66cf18f3a6d2c903e6c8 +Author: Cosimo Cecchi +Date: 2011-01-17 + + progress-info: tie the application life to the whole file operation + + And not to the progress widget only, as that + - starts hidden for the first seconds + - is not destroyed when the operation finishes, but only hidden + + Using g_application_hold/release with the progress operation lifetime + seems like a better way to deal with the app lifecycle. + +M libnemo-private/nemo-progress-info.c + +commit a11b54d5752d9792f9af05942901396330688cf7 +Author: Ivar Smolin +Date: 2011-01-16 + + [l10n] Updated Estonian translation + +M po/et.po + +commit 7cbc6f2ee4f85f6923bf56b4891f91c04edaae31 +Author: Daniel Mustieles +Date: 2011-01-16 + + Updated Spanish translation + +M po/es.po + +commit 8efb55bc266f8b471059b9bc83de19f4085fef48 +Author: Xan Lopez +Date: 2011-01-16 + + places-sidebar: remove unused variable + + It was being freed uninitialized, which caused a warning (and a build + failure with -Werror). + +M src/nemo-places-sidebar.c + +commit fcd8981ef68dd351910539302965476a66f0218f +Author: Ivar Smolin +Date: 2011-01-14 + + [l10n] Updated Estonian translation + +M po/et.po + +commit bf5d259288868a70258e63960ddc0eabe96bf9c8 +Author: Cosimo Cecchi +Date: 2011-01-14 + + application: don't quit if there are pending file operations + + Now that we're a single-window application, this has become much more + relevant. + +M libnemo-private/nemo-progress-info.c +M libnemo-private/nemo-ui-utilities.c +M libnemo-private/nemo-ui-utilities.h +M src/nemo-application.c + +commit f4637ff4481ee6d7d1e0453a5bd3ec4ac9dca17d +Author: Cosimo Cecchi +Date: 2011-01-14 + + bookmark: don't call into nemo_file methods unconditionally + + As NemoBookmark's file might be NULL in some cases. + +M libnemo-private/nemo-bookmark.c + +commit c55ddd80f16e56a366fe9e746c3632521d10f042 +Author: Cosimo Cecchi +Date: 2011-01-14 + + bookmark-list: avoid setting the bookmark icon by hand + + When creating a bookmark from the GTK+ list, otherwise we end up + overriding NemoBookmark's special casing when reloading the list + +M src/nemo-bookmark-list.c + +commit c637811c268abdecae3a3720b1f77fc7fe5bcd6a +Author: Cosimo Cecchi +Date: 2011-01-14 + + bookmark: add debug messages + +M libnemo-private/nemo-bookmark.c +M libnemo-private/nemo-debug.c +M libnemo-private/nemo-debug.h + +commit ce44fecb484ff1d6ae069446e3296f223b247c87 +Author: Fran Diéguez +Date: 2011-01-14 + + Updated Galician translations + +M po/gl.po + +commit 35a9e17696c0ff126a327f61046ab9e662a1738d +Author: Ivar Smolin +Date: 2011-01-13 + + [l10n] Updated Estonian translation + +M po/et.po + +commit ae1e300376b3479e14045892caa720dd3903a89c +Author: Cosimo Cecchi +Date: 2011-01-12 + + window-manage-views: re-add an accidentally removed snipped of code + +M src/nemo-window-manage-views.c + +commit d4df96c1e5c6bde62fd55dab1cbaae8a57f2b92e +Author: Cosimo Cecchi +Date: 2011-01-12 + + all: use new NemoBookmark API + +M src/nemo-bookmark-list.c +M src/nemo-bookmark-list.h +M src/nemo-bookmarks-window.c +M src/nemo-places-sidebar.c +M src/nemo-window-bookmarks.c +M src/nemo-window-manage-views.c +M src/nemo-window-menus.c +M src/nemo-window-slot.c + +commit 3aa0396da2014b35f0ef21dffd29e4953667ceb2 +Author: Cosimo Cecchi +Date: 2011-01-12 + + all: use nemo_bookmark_get_gicon() + +M libnemo-private/nemo-ui-utilities.c +M src/nemo-bookmarks-window.c +M src/nemo-window-menus.c + +commit f6850158283858aae24ed3f1982341bc1b587d28 +Author: Cosimo Cecchi +Date: 2011-01-12 + + file-utilities: make compute_title_for_location() return the basename + + As a last-resort fallback. + +M libnemo-private/nemo-file-utilities.c + +commit 7cbd07aa15a3c099dfd69ab7cdcfd3dcbea38b51 +Author: Cosimo Cecchi +Date: 2011-01-12 + + file: remove unused code + +M libnemo-private/nemo-file.c +M libnemo-private/nemo-file.h +M src/nemo-pathbar.c + +commit f1c782c13dd675bafffb2a4d85900da52be88f3f +Author: Cosimo Cecchi +Date: 2011-01-12 + + file: make nemo_file_get_gicon() return custom icons too + +M libnemo-private/nemo-file.c + +commit ef5ebfe5db767a2f703e1f5cc57f6ab829d5499a +Author: Cosimo Cecchi +Date: 2011-01-12 + + bookmark: refactor the object + + - add properties for location, name, custom name and icon + - make the code less convoluted, removing the appearance-changed + signal + - remove _get_pixbuf(), _get_icon() should be used instead + +M libnemo-private/nemo-bookmark.c +M libnemo-private/nemo-bookmark.h + +commit 8057f745fe1e741c8f2a3756efebc7c7e15cbf68 +Author: Khaled Hosny +Date: 2011-01-12 + + Updated Arabic translation + +M po/ar.po + +commit 906cea0bc4b2deac177e417551109b8319ee78cd +Author: Yaron Shahrabani +Date: 2011-01-11 + + Updated Hebrew translation. + +M po/he.po + +commit 31461f9f4782b0df89a14812c252addaa7d6e983 +Author: Cosimo Cecchi +Date: 2011-01-11 + + mime-actions: update the filtered out desktop files for folders + +M src/nemo-mime-actions.c + +commit a22f2501c8c00f16150d1de98d7039063a4e002a +Author: Cosimo Cecchi +Date: 2011-01-11 + + desktop-files: cleanup desktop files installed by nemo + + In the 3.0 world, nemo doesn't have to install a hundred of + desktop + files, as it's just a regular application. + Tweak the default desktop file to make it suitable for being the only + one, and remove the others. + +M configure.in +M data/Makefile.am +D data/nemo-browser.desktop.in.in +D data/nemo-computer.desktop.in.in +D data/nemo-folder-handler.desktop.in.in +D data/nemo-home.desktop.in.in +M data/nemo.desktop.in.in +M po/POTFILES.in +M src/Makefile.am +D src/network-scheme.desktop.in + +commit f2533adf30822d3839b67c5f81e410b5e212f7a7 +Author: Maciej Piechotka +Date: 2011-01-11 + + Fix handling of AM_CONDITIONAL + +M configure.in + +commit 395ba0fd8f679e6e2674eb0ce5976638edb9d979 +Author: Cosimo Cecchi +Date: 2011-01-11 + + window: remove unused and confusing code + +M src/nemo-window-slot.c +M src/nemo-window-slot.h +M src/nemo-window.c +M src/nemo-window.h + +commit 48ac967bff48e7e4a38c96859ebfd2f522179fa3 +Author: Cosimo Cecchi +Date: 2011-01-11 + + desktop-window: implement the right method for setting window title + + https://bugzilla.gnome.org/show_bug.cgi?id=555425 + +M src/nemo-desktop-window.c + +commit f9cb9e158b365ef3d1ed27cfa0ae138f367bd42a +Author: Cosimo Cecchi +Date: 2011-01-11 + + i18n: update POTFILES.in + +M po/POTFILES.in + +commit 9367d11d3a00d5192174f744eeea9e395fcd501a +Merge: 6430fd4 b13efe1 +Author: Cosimo Cecchi +Date: 2011-01-11 + + Merge branch 'refactor' + +commit b13efe1653ea1932bba8c3f3555729d34a21412c +Author: Cosimo Cecchi +Date: 2011-01-11 + + empty-view: fix it to make it work again with current architecture + +M src/Makefile.am +M src/nemo-application.c +M src/nemo-empty-view.c +M src/nemo-empty-view.h + +commit d5c9bae1381cb1f322d5ee3e0efbb27e06154574 +Author: Cosimo Cecchi +Date: 2011-01-11 + + Move other files away from src/file-manager + +M configure.in +M src/Makefile.am +D src/file-manager/Makefile.am +R100 src/file-manager/nemo-desktop-icon-view-ui.xml +src/nemo-desktop-icon-view-ui.xml +R100 src/file-manager/nemo-directory-view-ui.xml +src/nemo-directory-view-ui.xml +R100 src/file-manager/fm-empty-view.c src/nemo-empty-view.c +R100 src/file-manager/fm-empty-view.h src/nemo-empty-view.h +R100 src/file-manager/nemo-icon-view-ui.xml +src/nemo-icon-view-ui.xml +R100 src/file-manager/nemo-list-view-ui.xml +src/nemo-list-view-ui.xml + +commit 70b1acf6b0d4ef68903445d4198e78c5ea4807e5 +Author: Cosimo Cecchi +Date: 2011-01-11 + + Finish renaming fm_* -> nemo_* + +M src/nemo-actions.h +M src/nemo-desktop-icon-view.c +M src/nemo-desktop-item-properties.c +M src/nemo-desktop-item-properties.h +M src/nemo-error-reporting.c +M src/nemo-error-reporting.h +M src/nemo-icon-view.c +M src/nemo-list-view.c +M src/nemo-properties-window.c +M src/nemo-view.c + +commit e0538b42e65601d9ebee5beffaefebb3e425672e +Author: Cosimo Cecchi +Date: 2011-01-11 + + properties-window: move FMPropertiesWindow to NemoPropertiesWindow + +M src/Makefile.am +M src/file-manager/Makefile.am +D src/file-manager/fm-properties-window.h +R099 src/file-manager/fm-ditem-page.c +src/nemo-desktop-item-properties.c +R100 src/file-manager/fm-ditem-page.h +src/nemo-desktop-item-properties.h +R093 src/file-manager/fm-properties-window.c +src/nemo-properties-window.c +A src/nemo-properties-window.h +M src/nemo-tree-sidebar.c +M src/nemo-view.c + +commit 690909b8eb0b346d76b28da03c9228494e700db6 +Author: Cosimo Cecchi +Date: 2011-01-11 + + Rename FMListModel/View -> NemoListModel/View + + And move them outside of src/file-manager + +M src/Makefile.am +M src/file-manager/Makefile.am +D src/file-manager/fm-list-model.h +M src/nemo-application.c +R072 src/file-manager/fm-list-model.c src/nemo-list-model.c +A src/nemo-list-model.h +R100 src/file-manager/fm-list-view-private.h +src/nemo-list-view-private.h +R080 src/file-manager/fm-list-view.c src/nemo-list-view.c +R052 src/file-manager/fm-list-view.h src/nemo-list-view.h +M src/nemo-view.c + +commit 757a5acffc9e4ac7bdbd0dcfb5eaa1f64da8a471 +Author: Cosimo Cecchi +Date: 2011-01-11 + + icon-view-container: rename FMIconContainer -> + NemoIconViewContainer + +M src/nemo-desktop-icon-view.c +M src/nemo-icon-view-container.c +M src/nemo-icon-view-container.h +M src/nemo-icon-view.c + +commit ba4c8ef658f4f3e9e46d6cae12d84f06cf0a14b2 +Author: Cosimo Cecchi +Date: 2011-01-11 + + desktop-icon-view: rename FMDesktopIconView -> NemoDesktopIconView + +M src/nemo-application.c +M src/nemo-desktop-icon-view.c +M src/nemo-desktop-icon-view.h +M src/nemo-icon-view.c +M src/nemo-view-dnd.c +M src/nemo-view.c + +commit bb124418d4c131b03772acc64be3acf91903e9fb +Author: Cosimo Cecchi +Date: 2011-01-11 + + icon-view: rename FMIconView -> NemoIconView + +M src/nemo-application.c +M src/nemo-desktop-icon-view.c +M src/nemo-desktop-icon-view.h +M src/nemo-icon-view-container.c +M src/nemo-icon-view-container.h +M src/nemo-icon-view.c +M src/nemo-icon-view.h + +commit b20ff7a5cd1d9304c5716433de1958faedccefde +Author: Cosimo Cecchi +Date: 2011-01-11 + + Move icon views outside of src/file-manager + + Part of the final step towards removing src/file-manager completely; + only code shuffling around, not any real code change. + +M src/Makefile.am +M src/file-manager/Makefile.am +D src/file-manager/fm-actions.h +M src/file-manager/fm-list-view.c +M src/file-manager/fm-properties-window.c +M src/nemo-actions.h +M src/nemo-application.c +R100 src/file-manager/nemo-audio-mime-types.h +src/nemo-audio-mime-types.h +R099 src/file-manager/fm-desktop-icon-view.c +src/nemo-desktop-icon-view.c +R098 src/file-manager/fm-desktop-icon-view.h +src/nemo-desktop-icon-view.h +R099 src/file-manager/fm-error-reporting.c +src/nemo-error-reporting.c +R100 src/file-manager/fm-error-reporting.h +src/nemo-error-reporting.h +R099 src/file-manager/fm-icon-container.c +src/nemo-icon-view-container.c +R098 src/file-manager/fm-icon-container.h +src/nemo-icon-view-container.h +R099 src/file-manager/fm-icon-view.c src/nemo-icon-view.c +R100 src/file-manager/fm-icon-view.h src/nemo-icon-view.h +M src/nemo-view-dnd.c +M src/nemo-view.c + +commit e1ca0591f0588d114249361c624f467126b323c9 +Author: Cosimo Cecchi +Date: 2011-01-11 + + view: drop FMDirectoryView name + + Big code rename/indent fix, no actual code change here. + +M src/file-manager/fm-desktop-icon-view.c +M src/file-manager/fm-icon-container.c +M src/file-manager/fm-icon-view.c +M src/file-manager/fm-icon-view.h +M src/file-manager/fm-list-view.c +M src/file-manager/fm-list-view.h +M src/nemo-view-dnd.c +M src/nemo-view.c +M src/nemo-view.h + +commit 00578e62066c1c5dadf4a0080dcb56c215334619 +Author: Cosimo Cecchi +Date: 2011-01-01 + + view: remove useless virtual method + +M src/nemo-view.c +M src/nemo-view.h + +commit 8d726bab91c50d42edcb7e9a0e4107b6b0277ade +Author: Cosimo Cecchi +Date: 2011-01-01 + + view: move icon-view-only preferences to FMIconView + + Instead of using virtual methods + +M src/file-manager/fm-icon-view.c +M src/nemo-view.c +M src/nemo-view.h + +commit 9ab314c1dd30dc2d30fc46a62e2d31059c4c340a +Author: Cosimo Cecchi +Date: 2010-12-31 + + view: remove emblems_changed code + + This hack should not be required anymore now that we don't have user + emblems. + Other emblems should be taken care of by the normal NemoFile's + changed signal. + +M src/file-manager/fm-icon-view.c +M src/file-manager/fm-list-view.c +M src/nemo-view.c +M src/nemo-view.h + +commit d7de8e23fbe75e4a6ecbaf729affc9cbab9e08a3 +Author: Cosimo Cecchi +Date: 2010-12-31 + + signaller: remove unused emblems-changed signal + +M libnemo-private/nemo-signaller.c + +commit 5e57025a405e4ccbdd7a4ff51fa48d7eb4fb3671 +Author: Cosimo Cecchi +Date: 2010-12-31 + + view: remove useless virtual methods + + No need for some internal methods to be virtual if they're never + overridden. + Also, some of this code does nothing. + +M src/file-manager/fm-icon-container.c +M src/nemo-view.c +M src/nemo-view.h + +commit 9b29835c04fcaae84760a328a6cc70705c214506 +Author: Cosimo Cecchi +Date: 2010-12-31 + + places-sidebar: remove "Format..." action code + +M src/nemo-places-sidebar.c + +commit e4975471d233f1217bca48fae17519a285336645 +Author: Cosimo Cecchi +Date: 2010-12-31 + + view: remove commented out "Format..." action code + +M src/file-manager/fm-actions.h +M src/file-manager/nemo-directory-view-ui.xml +M src/nemo-view.c + +commit d0985e6d5ed7f6732bb4ee4b836192852adface2 +Author: Cosimo Cecchi +Date: 2010-12-31 + + view: remove unused flush_added_files signal + +M src/file-manager/fm-icon-view.c +M src/nemo-view.c +M src/nemo-view.h + +commit 7a4af383a2cb0e0257213e0e21f62e6cc82a7e58 +Author: Cosimo Cecchi +Date: 2010-12-31 + + view: don't check for allow_moves in the view superclass + + The property is only used by the icon view, so it's better to move the + check there. + +M src/file-manager/fm-icon-view.c +M src/nemo-view.c +M src/nemo-view.h + +commit be2d9bba9864f2834a57b608d47140f1e20eca66 +Author: Cosimo Cecchi +Date: 2010-12-29 + + view: make nemo_view_load_location() consistent with its name + +M src/nemo-view.c +M src/nemo-view.h +M src/nemo-window-manage-views.c + +commit 69c2c9f8c5855a7993f23998cff3ce3eab87fd45 +Author: Cosimo Cecchi +Date: 2010-12-29 + + view: use NemoFile objects for the view selection + + Use them in a consistent way, so to cleanup the previous + GFile/NemoFile confusion. + +M src/file-manager/fm-desktop-icon-view.c +M src/file-manager/fm-icon-view.c +M src/file-manager/fm-list-view.c +M src/nemo-spatial-window.c +M src/nemo-trash-bar.c +M src/nemo-view.c +M src/nemo-view.h +M src/nemo-window-manage-views.c +M src/nemo-window-slot.c +M src/nemo-window-slot.h + +commit eb178062ec31bf6a877e5bc61f697f85a3f927fe +Author: Cosimo Cecchi +Date: 2010-12-29 + + spatial-window: don't unref the main loop we're about to destroy + +M src/nemo-spatial-window.c + +commit ac1fbbba66c61d61c4469949b925862fa3c6600b +Author: Cosimo Cecchi +Date: 2010-12-29 + + window: remove unused code + +M src/nemo-window-slot.h +M src/nemo-window.c +M src/nemo-window.h + +commit 57c8b0416135ee3b5c1315b3419269d20ced233c +Author: Cosimo Cecchi +Date: 2010-12-29 + + view: split DnD code into its own module + + And use new method names in other classes + +M src/Makefile.am +M src/file-manager/fm-icon-view.c +M src/file-manager/fm-list-view.c +A src/nemo-view-dnd.c +A src/nemo-view-dnd.h +M src/nemo-view.c +M src/nemo-view.h +M src/nemo-window-slot-dnd.c + +commit 1f734cce8b243e2c1c1fd40491ab4e38c0eb65cd +Author: Cosimo Cecchi +Date: 2010-12-29 + + view: reduce visibility of some methods + + No need for them to stay public. + Remove some useless prototypes and reorder virtual methods, + while we're + at it. + +M src/file-manager/fm-icon-view.c +M src/nemo-view.c +M src/nemo-view.h + +commit 4c20fa07d8a587ebe8de820a0206aa8a75edc5d8 +Author: Cosimo Cecchi +Date: 2010-12-29 + + window: remove nemo_window_get_selection[_count] + + No need to duplicate selection handling between view and window. + +M src/nemo-trash-bar.c +M src/nemo-trash-bar.h +M src/nemo-view.c +M src/nemo-view.h +M src/nemo-window-manage-views.c +M src/nemo-window.c +M src/nemo-window.h + +commit dedd9e11ec6ff499b82bdb7a9b9bde7927066560 +Author: Cosimo Cecchi +Date: 2010-12-29 + + Rework architecture of NemoView/FMDirectoryView + + As a second step after ff5c759b3784db2d0cd71e1cde613dda007c3985, this + removes the NemoView/FMDirectoryView interface split, changing + FMDirectoryView to be NemoView directly. + + Left to do: complete renaming the public fm_directory_view methods to + nemo_view, and get rid of src/file-manager entirely. + +M libnemo-private/Makefile.am +M libnemo-private/nemo-dnd.c +D libnemo-private/nemo-view.c +D libnemo-private/nemo-view.h +M src/Makefile.am +M src/file-manager/Makefile.am +M src/file-manager/fm-desktop-icon-view.c +M src/file-manager/fm-icon-view.c +M src/file-manager/fm-icon-view.h +M src/file-manager/fm-list-view.c +M src/file-manager/fm-list-view.h +M src/nemo-trash-bar.c +M src/nemo-view-factory.h +R098 src/file-manager/fm-directory-view.c src/nemo-view.c +R087 src/file-manager/fm-directory-view.h src/nemo-view.h +M src/nemo-window-manage-views.c +M src/nemo-window-pane.h +M src/nemo-window-slot.c +M src/nemo-window-slot.h +A src/nemo-window-types.h +M src/nemo-window.h +M src/nemo-x-content-bar.c + +commit 10998fbf14029163d3669f1e2a9f1676b02e7d09 +Author: Cosimo Cecchi +Date: 2010-12-28 + + main: remove unneeded code + +M src/nemo-main.c + +commit 79ef5be141a55ccce67daf42b73aa0a4affa7a13 +Author: Cosimo Cecchi +Date: 2010-12-28 + + window-slot: trivial cleanups + +M src/nemo-window-manage-views.c +M src/nemo-window-slot.c + +commit acf3e032099dc2f7a156e755edb23a3dd8305fc8 +Author: Cosimo Cecchi +Date: 2010-12-28 + + window-slot: rename get_current_location -> get_current_uri + +M src/file-manager/fm-directory-view.c +M src/nemo-places-sidebar.c +M src/nemo-tree-sidebar.c +M src/nemo-window-slot-dnd.c +M src/nemo-window-slot.c +M src/nemo-window-slot.h + +commit 977fc6383dc74a320ce951d4d0b2f81f31e9cdcf +Author: Cosimo Cecchi +Date: 2010-12-27 + + window: cleanup nemo_window_reload() + +M src/nemo-window-manage-views.c +M src/nemo-window-menus.c +M src/nemo-window.c +M src/nemo-window.h + +commit ab75e5447ca5a5a5d7054c907d008816ad911c20 +Author: Cosimo Cecchi +Date: 2010-12-26 + + navigation-action: cleanup + +M src/nemo-navigation-action.c + +commit 2807b8884acab27de359a4ab51b9b57e8fb86a0f +Author: Cosimo Cecchi +Date: 2010-12-26 + + window: remove useless snippets + +M src/nemo-navigation-window.c + +commit b1011eced7e561b05dca2aa6345d3c5b3225610e +Author: Cosimo Cecchi +Date: 2010-12-23 + + window: remove useless method calls + + nemo_window_slot_set_content_view_widget() is called afterwards, + which in turn calls again _disconnect_view() + +M src/nemo-window-manage-views.c + +commit d166f04b8886687df6f03d0e03ec16c887f9842b +Author: Cosimo Cecchi +Date: 2010-12-23 + + window: remove non existent function declaration + +M src/nemo-window.h + +commit 6ff03b33b724d882cfabb67b1f1fb4e8287e932f +Author: Cosimo Cecchi +Date: 2010-12-22 + + window: cleanup nemo_window_allow_reload() + +M src/nemo-window.c +M src/nemo-window.h + +commit 553edbfbaf7e4fc171453634aa41006d49533da2 +Author: Cosimo Cecchi +Date: 2010-12-21 + + window: cleanup nemo_window_go_up() + +M src/nemo-window-manage-views.c +M src/nemo-window-menus.c +M src/nemo-window-slot.h +M src/nemo-window.c +M src/nemo-window.h + +commit 558e394a8dfba5f1c92423ac45c6462461720199 +Author: Cosimo Cecchi +Date: 2010-12-21 + + window: cleanup nemo_window_go_home() + +M src/nemo-navigation-window-menus.c +M src/nemo-window.c +M src/nemo-window.h + +commit d9ce97b0501cb3006013080ed688aa25649a31f6 +Author: Cosimo Cecchi +Date: 2010-12-21 + + window-slot: remove commented out code + +M src/nemo-window-manage-views.c +M src/nemo-window-slot.h + +commit a8d0c04c154ee8458fd5fd24091de1a8c92a6da4 +Author: Cosimo Cecchi +Date: 2010-12-21 + + window-slot: cleanup connect/disconnect_view() + +M src/nemo-window-manage-views.c +M src/nemo-window-slot.c +M src/nemo-window-slot.h +M src/nemo-window.c + +commit 307e0edbe7457a70f4a61acdfecb1ae38d8c243b +Author: Cosimo Cecchi +Date: 2010-12-21 + + window-slot: cleanup of window_slot_open_location() functions + +M src/file-manager/fm-directory-view.c +M src/nemo-mime-actions.c +M src/nemo-navigation-window-pane.c +M src/nemo-places-sidebar.c +M src/nemo-spatial-window.c +M src/nemo-tree-sidebar.c +M src/nemo-window-manage-views.c +M src/nemo-window-slot.h +M src/nemo-window.c + +commit cfdf80763ef3f7f3f88239fdba27ce01b642ab32 +Author: Cosimo Cecchi +Date: 2010-12-21 + + window-slot: remove nemo_window_slot_open_location() + + It's unused. + +M src/nemo-window-manage-views.c +M src/nemo-window-slot.h + +commit ad0d377ac236392a9ccaeae789e07e1af4a796e5 +Author: Cosimo Cecchi +Date: 2010-12-21 + + Rework architecture of NemoWindow/NemoWindowSlotInfo + + In the past, nemo was designed keeping in mind the concept that it + might not just be a file browser, but a sort of platform to embed + various kind of views in it. + - libnemo-private: general lowlevel items, such as the icon + container, NemoFile, I/O and so on + - src: general widgets and UI items + - src/file-manager: file manager views, agnostic of what's in src/, + for the sake of being pluggable enough + + This is really not applicable anymore, as nemo won't go in any + direction other than being a file manager; at the same time, this + complicates code and architecture quite a lot. + + In this commit, as a first step towards a more clean codebase, + we remove + the NemoWindowInfo and NemoWindowSlotInfo interfaces, using + NemoWindow and NemoWindowSlot directly. + + Note that there should be no actual code changes, only moving + of pieces + around. + +M libnemo-private/Makefile.am +M libnemo-private/nemo-dnd.c +M libnemo-private/nemo-dnd.h +D libnemo-private/nemo-window-info.c +D libnemo-private/nemo-window-info.h +D libnemo-private/nemo-window-slot-info.c +D libnemo-private/nemo-window-slot-info.h +M src/Makefile.am +M src/file-manager/fm-desktop-icon-view.c +M src/file-manager/fm-directory-view.c +M src/file-manager/fm-directory-view.h +M src/file-manager/fm-icon-view.c +M src/file-manager/fm-list-view.c +M src/nemo-application.h +M src/nemo-bookmarks-window.c +M src/nemo-connect-server-dialog-main.c +M src/nemo-connect-server-dialog-nonmain.c +M src/nemo-connect-server-dialog.c +M src/nemo-connect-server-dialog.h +M src/nemo-location-bar.c +M src/nemo-mime-actions.c +M src/nemo-mime-actions.h +M src/nemo-navigation-window-menus.c +M src/nemo-navigation-window-pane.c +M src/nemo-navigation-window-slot.c +M src/nemo-navigation-window.c +M src/nemo-places-sidebar.c +M src/nemo-places-sidebar.h +M src/nemo-query-editor.h +M src/nemo-spatial-window.c +M src/nemo-trash-bar.c +M src/nemo-tree-sidebar.c +M src/nemo-tree-sidebar.h +M src/nemo-view-as-action.c +R098 libnemo-private/nemo-view-factory.c +src/nemo-view-factory.c +R094 libnemo-private/nemo-view-factory.h +src/nemo-view-factory.h +M src/nemo-window-manage-views.c +M src/nemo-window-manage-views.h +M src/nemo-window-menus.c +M src/nemo-window-private.h +M src/nemo-window-slot-dnd.c +M src/nemo-window-slot.c +M src/nemo-window-slot.h +M src/nemo-window.c +M src/nemo-window.h + +commit 4c031a4794126af08cea1774dd7ec3904d0ad25e +Author: Cosimo Cecchi +Date: 2010-12-21 + + mime-actions: move nemo-mime-actions to src/ + +M libnemo-private/Makefile.am +M libnemo-private/nemo-program-choosing.c +M src/Makefile.am +M src/file-manager/Makefile.am +M src/file-manager/fm-directory-view.c +M src/file-manager/fm-properties-window.c +R099 libnemo-private/nemo-mime-actions.c +src/nemo-mime-actions.c +R100 libnemo-private/nemo-mime-actions.h +src/nemo-mime-actions.h +M src/nemo-navigation-window.c +M src/nemo-spatial-window.c +M src/nemo-window-manage-views.c +M src/nemo-window.c + +commit 97e67f49279ad87737541249ef09b99c4bc1d9fe +Author: Cosimo Cecchi +Date: 2010-12-21 + + dnd: move DnD slot proxying code to src/ + +M libnemo-private/nemo-dnd.c +M libnemo-private/nemo-dnd.h +M src/Makefile.am +M src/nemo-notebook.c +M src/nemo-pathbar.c +A src/nemo-window-slot-dnd.c +A src/nemo-window-slot-dnd.h + +commit 6430fd4a7435336a61000e2255621fb0023252d1 +Author: Ivar Smolin +Date: 2011-01-11 + + [l10n] Updated Estonian translation + +M po/et.po + +commit 63724239779c6f5f4dcb76ebde7f66f691a75786 +Author: Andika Triwidada +Date: 2011-01-11 + + Updated Indonesian translation + +M po/id.po + +commit 9022942dce517bc0fe52fdb769f6950c0aa5c444 +Author: Ivar Smolin +Date: 2011-01-10 + + [l10n] Updated Estonian translation + +M po/et.po + +commit cd976fa26099fb8c1f2084a6bae7ac0b05f5e29e +Author: Cosimo Cecchi +Date: 2011-01-10 + + Release 2.91.7 + +M NEWS +M configure.in +M po/POTFILES.in + +commit f6d4eed031e94570151cb4599e93d92b4612d53b +Author: Cosimo Cecchi +Date: 2011-01-10 + + debug: fix build without debugging support (#639107) + +M configure.in +M libnemo-private/nemo-debug.c +M libnemo-private/nemo-debug.h +M src/nemo-main.c + +commit ac168820fbb4db7fbdf243a0d6b118ce445cdf37 +Author: Cosimo Cecchi +Date: 2011-01-10 + + file-operations: make Create Document/Folder use the right template + + Make Create Document/Folder use "Untitled Document/Template/Folder %d" + filename format. + + Based on a patch by Marcus Husar + . + +M libnemo-private/nemo-file-operations.c + +commit 5846b33c5cd26ec3fe50255c628954d129c8ffc0 +Author: Marcus Husar +Date: 2011-01-10 + + Clean context menu and "File" menu (#618469) + + Also use "Create New Folder/Document". + + Part of https://bugzilla.gnome.org/show_bug.cgi?id=618469 + +M src/file-manager/fm-actions.h +M src/file-manager/fm-directory-view.c +M src/file-manager/nemo-directory-view-ui.xml +M src/nemo-tree-sidebar.c + +commit 0ff4fdb4c8228a358d3a0bc87b63b02751624716 +Author: Fran Diéguez +Date: 2011-01-10 + + Updated Galician translations + +M po/gl.po + +commit 8f9bb67e39a9d32be051416a474c3142539f7c3f +Author: Sjoerd Simons +Date: 2010-12-05 + + Add base libraries so building with --as-needed works + +M nemo-sendto-extension/Makefile.am + +commit 179b688c5938ba12e101a0231ba46199d2de4a5e +Author: Cosimo Cecchi +Date: 2011-01-10 + + window: remove unused code + +M src/nemo-window-private.h +M src/nemo-window.c + +commit b12aeed547664d44b0b552db06a5ec7b6d9b200b +Author: Cosimo Cecchi +Date: 2011-01-10 + + bookmark: compare URIs before names + +M libnemo-private/nemo-bookmark.c + +commit 120797cec00929dac58ac4ac838719dc67e9cae0 +Author: Cosimo Cecchi +Date: 2011-01-10 + + Use a consistent name for the Home folder (#341894) + + Based on a patchset by Marcus Husar + + +M libnemo-private/nemo-bookmark.c +M libnemo-private/nemo-desktop-link.c +M src/file-manager/fm-directory-view.c +M src/nemo-places-sidebar.c +M src/nemo-tree-sidebar.c +M src/nemo-window-menus.c +M src/nemo-window-slot.c + +commit 50e0c03f67072e374f8202ba7a25221fa7f88b99 +Author: Fran Diéguez +Date: 2011-01-09 + + Updated Galician translations + +M po/gl.po + +commit 598ede33ab781b46120d2149c37f47fcb7615ca2 +Author: Yuri Myasoedov +Date: 2011-01-09 + + Updated Russian translation + +M po/ru.po + +commit cd2a6e35c5757c7ca817aeef415873d2d4d8baee +Author: Matej Urbančič +Date: 2011-01-07 + + Updated Slovenian translation + +M po/sl.po + +commit d51bc0c99b0ca6e8bc402b7ae5848e9ced2dab46 +Author: Ivar Smolin +Date: 2011-01-06 + + [l10n] Updated Estonian translation + +M po/et.po + +commit 3ff059dcc1b76a7cde6d7111b9620d373c18b9a8 +Author: Yaron Shahrabani +Date: 2011-01-04 + + Updated Hebrew translation. + +M po/he.po + +commit f8f87d8cca0a9aa54d5a1290576eb0855098ffda +Author: Ivar Smolin +Date: 2011-01-02 + + [l10n] Updated Estonian translation + +M po/et.po + +commit 61476e9e0a776e1db74f73db1b3fa9291d997a83 +Author: Daniel Nylander +Date: 2010-12-29 + + Updated Swedish translation + +M po/sv.po + +commit 09cb61a5cc2b9e5f7b85ae619d2cc2d06bf5ef06 +Author: Daniel Mustieles +Date: 2010-12-29 + + Updated Spanish translation + +M po/es.po + +commit 811f49d1e0981f7414a57004a7fd0df95f64dfd8 +Author: A S Alam +Date: 2010-12-29 + + update Punjabi Translation + +M po/pa.po + +commit ddd507228a8a7a89c0398411f44d30e6ee9d73ed +Author: Cosimo Cecchi +Date: 2010-12-28 + + pathbar: remove buttons only if the gone file is below the current + + This should fix once and for all the crashers when ejecting devices. + +M src/nemo-pathbar.c + +commit 70df8fad8b1ddf470e8600f6e8e9bc953853b419 +Author: Cosimo Cecchi +Date: 2010-12-26 + + desktop-icon-view: don't use deprecated GDK grab API + +M src/file-manager/fm-desktop-icon-view.c + +commit bd151c8174796c1c5b0b6466ef8a0e3a0e214054 +Author: Cosimo Cecchi +Date: 2010-12-26 + + general: don't use deprecated gdk_app_launch_context_new() + +M eel/eel-gnome-extensions.c +M eel/eel-gnome-extensions.h +M libnemo-private/nemo-program-choosing.c +M src/nemo-connect-server-dialog-main.c + +commit 2ff006dd583f58ff2dd687f538e59757a8bd70c4 +Author: Cosimo Cecchi +Date: 2010-12-26 + + canvas: don't use deprecated GDK grab API + +M eel/eel-canvas.c +M eel/eel-canvas.h + +commit 7fa4d2202358940ef5a0dd70eb88996ac371cffd +Author: Gheyret T.Kenji +Date: 2010-12-23 + + Added UG translation + +M po/ug.po + +commit aac9a486cb310c62d1167cfe37118a70d772d41e +Author: Erdal Ronahi +Date: 2010-12-23 + + Updated Kurdish translations + +M po/ku.po + +commit 318a9bd653fb02a7c94e42139377cef5ed254dd2 +Author: Cosimo Cecchi +Date: 2010-12-22 + + Release 2.91.6 + +M NEWS +M configure.in + +commit b569d2cfa31951f67229e3aab00cd7f33c1ff3db +Author: Cosimo Cecchi +Date: 2010-12-22 + + general: use nemo_launch_application instead of gdk_spawn API + +M libnemo-private/nemo-mime-actions.c +M src/file-manager/fm-desktop-icon-view.c +M src/file-manager/fm-directory-view.c +M src/nemo-tree-sidebar.c +M src/nemo-window-menus.c + +commit 77ecdd69b023a16fc4d6d2895dd470c628679168 +Author: Cosimo Cecchi +Date: 2010-12-22 + + program-choosing: don't use gdk_spawn_ API + +M libnemo-private/nemo-program-choosing.c +M libnemo-private/nemo-program-choosing.h + +commit 13b6a5a50db8dd35dbcbbf1d318ba747609dfb70 +Author: Cosimo Cecchi +Date: 2010-12-22 + + eel: don't use gdk_spawn_ API + +M eel/eel-gnome-extensions.c + +commit 74a8f78e2a5b06485c7daf830372a5f7b15a87b8 +Author: Cosimo Cecchi +Date: 2010-12-22 + + general: don't use gdk_cursor_unref() + +M eel/eel-editable-label.c +M libnemo-private/nemo-icon-canvas-item.c +M libnemo-private/nemo-icon-container.c +M src/file-manager/fm-list-view.c +M src/file-manager/fm-properties-window.c +M src/nemo-window.c + +commit 2737d431e44e3e4dc12e9098b6e17881ca28c1f7 +Author: Wouter Bolsterlee +Date: 2010-12-22 + + Updated Dutch translation by Wouter Bolsterlee + +M po/nl.po + +commit 08462d0f0235274f1b6c2b12df47e27932b343ee +Author: Cosimo Cecchi +Date: 2010-12-20 + + Release 2.91.5 + +M NEWS +M configure.in + +commit f42d5aa97de09de7052fa80abda62fabe17dfb13 +Author: Cosimo Cecchi +Date: 2010-12-20 + + smclient: remove XSMP support + + EggSmClient is not well-maintained, and it doesn't seem like it will + ever hit GTK+, and the overall implementation seems to be poorly + tested + and buggy. + + Moreover, moving to 3.0 with nemo being an application, it makes + less sense to have it save opened windows state, as it might not be + always running at all. + +M cut-n-paste-code/libegg/Makefile.am +D cut-n-paste-code/libegg/eggdesktopfile.c +D cut-n-paste-code/libegg/eggdesktopfile.h +D cut-n-paste-code/libegg/eggsmclient-private.h +D cut-n-paste-code/libegg/eggsmclient-xsmp.c +D cut-n-paste-code/libegg/eggsmclient.c +D cut-n-paste-code/libegg/eggsmclient.h +M po/POTFILES.in +M src/Makefile.am +D src/nemo-application-smclient.c +D src/nemo-application-smclient.h +M src/nemo-application.c +M src/nemo-application.h +M src/nemo-main.c + +commit ee06a67a632476b9758cc00eaa573e12cc3cfc91 +Author: Cosimo Cecchi +Date: 2010-12-20 + + mime-app-chooser: use g_app_info_set_as_last_used_for_content_type() + + Instead of add_supports_for_content_type(), which does not save the + order in which custom apps have been used. + +M configure.in +M libnemo-private/nemo-mime-application-chooser.c + +commit b31222dae4c63479e0fe226a761f9c78bf08b6df +Author: Cosimo Cecchi +Date: 2010-12-20 + + mime: remove some useless code + + As GtkAppChooserDialog already takes care of calling + g_app_info_set_as_last_used_for_content_type() + +M libnemo-private/nemo-mime-actions.c +M src/file-manager/fm-directory-view.c + +commit 2c279a4a6b3480bfd3581a3a35c53eac3e996653 +Author: Ivar Smolin +Date: 2010-12-20 + + [l10n] Updated Estonian translation + +M po/et.po + +commit 3fa0ed2ca3e35719422fbc526337b52393d860d2 +Author: Kjartan Maraas +Date: 2010-12-19 + + Updated Norwegian bokmål translation + +M po/nb.po + +commit 9dc65e44c9f8e6c41079c0dc01220fe87fdfcecc +Author: Nguyễn Thái Ngọc Duy +Date: 2010-12-19 + + po/vi.po: import some translations from Ubuntu/Maverick + +M po/vi.po + +commit dd4cecdf8071552f80ba08fdb613a88090719e59 +Author: Yaron Shahrabani +Date: 2010-12-19 + + Updated Hebrew translation. + +M po/he.po + +commit fcfe53d5bd2121e4707e70345f18faa244c2dd75 +Author: Cosimo Cecchi +Date: 2010-12-18 + + Remove reference to a non-existing old trademark notice file. + + https://bugzilla.gnome.org/show_bug.cgi?id=463173 + +M COPYING + +commit 196c8390fcc671ef8399c00936ac7242b118de08 +Author: Jorge González +Date: 2010-12-18 + + Updated Spanish translation + +M po/es.po + +commit 83aeec725d0d3829a54cd700329864a2cab7a21b +Author: Marcus Carlson +Date: 2009-10-11 + + Handle G_IO_ERROR_FILENAME_TOO_LONG errors nicely when renaming files + + https://bugzilla.gnome.org/show_bug.cgi?id=548844 + +M src/file-manager/fm-error-reporting.c + +commit 9403df1b54b442737ed96739aeacf6b6c9b58889 +Author: Colin Walters +Date: 2010-12-17 + + Fix cairo-gobject.h include + + $ pkg-config --cflags cairo-gobject + -pthread -I/src/build/jhbuild/include/cairo + $ ls /src/build/jhbuild/include/cairo/cairo-gobject.h + /src/build/jhbuild/include/cairo/cairo-gobject.h + +M eel/eel-canvas.c + +commit b2d4ac40205e22e63e598ab742b56283acbc8901 +Author: Colin Walters +Date: 2010-12-17 + + nemo.desktop: Remove NoDisplay=true + + For GNOME 3, File Manager is moving towards being an application, + and therefore, we want it to show up in the appliactions list. + +M data/nemo.desktop.in.in + +commit 67d0cbaf0ed7a8f25b3a47abbbaf0feba990e404 +Author: Cosimo Cecchi +Date: 2010-12-17 + + location-entry: don't treat '~' as a relative path + + Based on a patch by Reed Lipman + + https://bugzilla.gnome.org/show_bug.cgi?id=628802 + +M src/nemo-location-entry.c + +commit 184096f912b119edde1f538e8cdd5ea593d753ca +Author: Cosimo Cecchi +Date: 2010-12-17 + + icon-canvas-item: attempt to fix up a11y for NemoIconCanvasItem + + Based on an initial patch by Alban Browaeys . + + https://bugzilla.gnome.org/show_bug.cgi?id=637425 + +M libnemo-private/nemo-icon-canvas-item.c +M libnemo-private/nemo-icon-container.c + +commit 42865d5e82160ccb60fd9a890a22019dcb832527 +Author: Alban Browaeys +Date: 2010-10-27 + + icon-container: remove spurious call to gtk_adjustment_changed() + + https://bugzilla.gnome.org/show_bug.cgi?id=637424 + +M libnemo-private/nemo-icon-container.c + +commit bc5b8bde3070a4fe6071c9a428d38fa93be19314 +Author: Jorge González +Date: 2010-12-15 + + Updated Spanish translation + +M po/es.po + +commit 1746a53cbbd450822ff857c3e1eadf5358b22cfa +Author: Cosimo Cecchi +Date: 2010-12-15 + + application: fix a copy-paste typo + +M src/nemo-application.c + +commit 08f71aa76cd5f250613f4a2833b43a72831974fc +Author: Cosimo Cecchi +Date: 2010-12-15 + + theming: cleanup previous manually parsed CSS + + It's not required anymore, now that we have a proper stylesheet. + +M src/nemo-notebook.c +M src/nemo-window.c + +commit 786ba61680bfaee136b4b72a53f220edb96a7db9 +Author: Cosimo Cecchi +Date: 2010-12-15 + + sidebar: set the NemoSidebar class on the sidebar treeviews + + So they can get the proper background. + +M src/nemo-places-sidebar.c +M src/nemo-tree-sidebar.c + +commit dad5d12770817aa739ab9980faa66972144008a7 +Author: Cosimo Cecchi +Date: 2010-12-15 + + theming: add a CSS file for nemo, and initialize it at startup + +M data/Makefile.am +A data/nemo.css +M src/nemo-application.c + +commit 1c79bf9809b208a57661aaccadd9eb7e78874bcc +Author: Cosimo Cecchi +Date: 2010-12-15 + + connect-server-dialog: properly align labels and entries + + https://bugzilla.gnome.org/show_bug.cgi?id=637326 + +M src/nemo-connect-server-dialog.c + +commit 0a43cee107e20d07667fc2eabf8321898ce80fb7 +Author: Luca Ferretti +Date: 2010-12-15 + + application: fix a typo in user message + +M src/nemo-application.c + +commit 4c026bf53253715251abf076badc4c979cc073c3 +Author: Cosimo Cecchi +Date: 2010-12-15 + + icon-container: don't malloc() GdkRGBA colors manually + + As GdkRGBA might or might not use internally a different allocator, + like + g_slice. + This should fix some memory corruption issues, thanks to Alban + Browaeys + for tracking down the bug. + +M libnemo-private/nemo-icon-container.c + +commit c1d9376601223e5dcca0a4ee47e95a8b93841d68 +Author: Cosimo Cecchi +Date: 2010-12-14 + + spatial-window: don't hook to unrealize for saving geometry + +M src/nemo-spatial-window.c + +commit e4750d78c6be4f935625a3511dbb9c3bc532aa0d +Author: Cosimo Cecchi +Date: 2010-12-14 + + desktop-icon-view: call the gnome-c-c executable to change background + + gnome-appearance-properties does not exist anymore. + +M src/file-manager/fm-desktop-icon-view.c + +commit 5d811bb37ef4a05edd7fa4c5868a9b68f717e056 +Author: Cosimo Cecchi +Date: 2010-12-14 + + icon-dnd: set the right style class, and use GdkRGBA + +M libnemo-private/nemo-icon-dnd.c + +commit 18e3369f02c4ff6a3eb01048e623fff8eb9aded4 +Author: Cosimo Cecchi +Date: 2010-12-14 + + tree-drag-dest: set the right style class + +M libnemo-private/nemo-tree-view-drag-dest.c + +commit 066896047e8d53076913994f9975ee1cb22fbd9d +Author: Cosimo Cecchi +Date: 2010-12-14 + + icon-canvas-item: set the right style class + +M libnemo-private/nemo-icon-canvas-item.c + +commit ef8544bec8437502f2f58c7a9e07bc9e1ecf91a4 +Author: Cosimo Cecchi +Date: 2010-12-13 + + editable-label: use gtk_style_context_get() to query standard props + + Also, fix a leak. + +M eel/eel-editable-label.c + +commit dccf76a36441332e96c40305373876ca32a1b110 +Author: Cosimo Cecchi +Date: 2010-12-13 + + preferences: remove exit-with-last-window preference entirely + + It makes no sense now that nemo doesn't do session services, + such as + autorun, anymore. + +M libnemo-private/nemo-global-preferences.h +M libnemo-private/nemo.convert +M libnemo-private/org.gnome.nemo.gschema.xml.in + +commit 9ef4ac9ee428e7f7952efe33d0784d547ca7bdc6 +Author: Cosimo Cecchi +Date: 2010-12-13 + + application: remove 'exit-with-last-window' preference + + It makes no sense now that nemo doesn't do session services + such as + autorun anymore. + +M src/nemo-application.c + +commit 00e0ae826765aeca4c203b77a5caec4ce2be2fd7 +Author: Cosimo Cecchi +Date: 2010-12-13 + + application: destroy all the widgets when quitting + + Instead of calling _release(). + +M src/nemo-application.c + +commit caa55b7e757a49fb323450152e6a37e1d63eb9fb +Author: Cosimo Cecchi +Date: 2010-12-13 + + editable-label: rename copy/pasted fill renderer to 'eel' prefix + + To avoid library clashes with the GTK+ internal one. + +M eel/eel-editable-label.c + +commit f27c50fb25fee58b9eee6c9edfd26101684eec52 +Author: Jorge González +Date: 2010-12-11 + + Updated Spanish translation + +M po/es.po + +commit f5acdfefc39b235fd1eb9b3bdd3a724cdaa1a7fe +Author: Fran Diéguez +Date: 2010-12-11 + + Updated Galician translations + +M po/gl.po + +commit c0645b53892c1f65b9258e5cc63b701dbcbacfe7 +Author: Fran Diéguez +Date: 2010-12-10 + + Updated Galician translations + +M po/gl.po + +commit eea53d2f740ac25a13eea13baa83ecb493fa24cc +Author: Cosimo Cecchi +Date: 2010-12-07 + + file: initialize variables to stop complaints from compilers (#636643) + +M libnemo-private/nemo-file.c + +commit def31cd34118e4a3daf53819f81a5d7325b8efcb +Author: Cosimo Cecchi +Date: 2010-12-07 + + Release 2.91.4 + +M NEWS +M configure.in + +commit bb68641adf3306675f3b259d0197ef74ecc9ccc0 +Author: Cosimo Cecchi +Date: 2010-12-07 + + dbus-manager: plug a leak + +M libnemo-private/nemo-dbus-manager.c + +commit 7686ba98e4283383f4e0b0146cbc693d041c5697 +Author: Cosimo Cecchi +Date: 2010-12-07 + + icon-container: plug a leak + +M src/file-manager/fm-icon-container.c + +commit 705d8144e5509d7926adec8af3d638b2e88fd837 +Author: Cosimo Cecchi +Date: 2010-12-07 + + icon-info: plug a leak + +M libnemo-private/nemo-icon-info.c + +commit 55869c3c65217f1c4386cf489f391eeb519e797d +Author: Yaron Shahrabani +Date: 2010-12-07 + + Updated Hebrew translation. + +M po/he.po + +commit ee0c6327eeaeaa0a924007cf3b56d2cd63dbe36b +Author: Daniel Șerbănescu +Date: 2010-12-06 + + Updated Romanian translation + +M po/ro.po + +commit 68a3a22297875118797eacb03ff5278024642366 +Author: Daniel Șerbănescu +Date: 2010-12-06 + + Updated Romanian translation + +M po/ro.po + +commit cb70787275e2e44cc2f3b394d1065313998fd1a3 +Author: Cosimo Cecchi +Date: 2010-12-06 + + file-operations: remove duplicate code + + Probably a leftover from NemoFileConflictDialog branch. + +M libnemo-private/nemo-file-operations.c + +commit c739fd781c355e47e4ef3f59e9e4008c230e83ad +Author: Cosimo Cecchi +Date: 2010-12-06 + + dbus-manager: add a 'CopyFile' remote method + + The interface mimics the nemo_file_operations_copy_file() I just + committed. + +M libnemo-private/nemo-dbus-manager.c + +commit 4be5d548a438b2b3c02f3e7e7e0265f4c8b641fe +Author: Cosimo Cecchi +Date: 2010-12-06 + + file-operations: add nemo_file_operations_copy_file + + Copies a single file to a target directory, allowing to specify + a custom + target display name, and a custom source display name, which will be + shown in the FileOperations dialog instead of the actual file name. + +M libnemo-private/nemo-file-operations.c +M libnemo-private/nemo-file-operations.h + +commit 52b8185908725ba9842f3d2ce8c29d7b7e3d520f +Author: Cosimo Cecchi +Date: 2010-12-06 + + file-conflict-dialog: don't use override_font + + Set the PangoAttributeList on the GtkLabel instead. + +M libnemo-private/nemo-file-conflict-dialog.c + +commit e3feaf8d6848a92e3d077d04177e7a637b6e628b +Author: Cosimo Cecchi +Date: 2010-12-06 + + editable-label: make the rename rectangle look a bit better + + Still not perfect, but still... + +M eel/eel-editable-label.c + +commit 2e5f7a23350016c67bb9e9cca86a9fb2360d79e2 +Author: Cosimo Cecchi +Date: 2010-12-06 + + icon-container: fix rendering of text on the desktop + +M libnemo-private/nemo-icon-canvas-item.c +M libnemo-private/nemo-icon-container.c + +commit ca9f8d8906b85a4f806d713030d02efc34fd7170 +Author: Cosimo Cecchi +Date: 2010-12-06 + + editable-label: copy-paste code from GTK+ to sync drawing with + GtkLabel + +M eel/eel-editable-label.c + +commit 465f576edaf1c8b952ec152884d55db985f10778 +Author: Cosimo Cecchi +Date: 2010-12-06 + + window: pkug a leak + +M src/nemo-window.c + +commit 1ee7fc84fe8232bfc57ba832642185b2829dcc8e +Merge: 1c31b7a b5302eb +Author: Cosimo Cecchi +Date: 2010-12-06 + + Merge branch 'style-context' + +commit b5302ebfc104aec7cc480931ede752efe9cc4325 +Author: Cosimo Cecchi +Date: 2010-12-06 + + eel: remove unused code + +M eel/eel-gdk-extensions.c +M eel/eel-gdk-extensions.h +M eel/eel-gtk-extensions.c +M eel/eel-lib-self-check-functions.h + +commit 1d3dd9693de26d91d60ed7a11f6f14df8478f6a6 +Author: Cosimo Cecchi +Date: 2010-12-06 + + eel-gdk-extensions: port to GtkStyleContext + +M eel/eel-gdk-extensions.c +M eel/eel-gdk-extensions.h + +commit 076886e9a45e8dce101f1d98eb5c4168c8ded311 +Author: Cosimo Cecchi +Date: 2010-12-06 + + window: port to GtkStyleContext + +M src/nemo-window.c + +commit 507b56e3a527e28117b259dbf0dce48f1656dd7d +Author: Cosimo Cecchi +Date: 2010-12-06 + + spatial-window: port to GtkStyleContext + +M src/nemo-spatial-window.c + +commit bc5d2904fd3338455579c77781c357fe85a86913 +Author: Cosimo Cecchi +Date: 2010-12-06 + + notebook: port to GtkStyleContext + +M src/nemo-notebook.c + +commit 5fc40adf98a384f4638401d7b7ced79da6ce2b87 +Author: Cosimo Cecchi +Date: 2010-12-06 + + location-bar: port to GtkStyleContext + +M src/nemo-location-bar.c + +commit 8e5689b5ff9fb1fedf2a1102f429f4f67e811e09 +Author: Cosimo Cecchi +Date: 2010-12-06 + + properties-window: port to GtkStyleContext + +M src/file-manager/fm-properties-window.c + +commit d7c576dbc1116139a29b7d263070283c47726ba2 +Author: Cosimo Cecchi +Date: 2010-12-06 + + list-view: port to GtkStyleContext + + Setting inactive pane doesn't work here yet, probably due to a bug in + GTK+. + +M src/file-manager/fm-list-view.c + +commit f8bdf9c68ae156506d04f198e054e9488845c173 +Author: Cosimo Cecchi +Date: 2010-12-06 + + tree-view-drag-dest: port to GtkStyleContext + +M libnemo-private/nemo-tree-view-drag-dest.c + +commit 4f23a0a89b14757dc86459c399ff6a9719bb4e01 +Author: Cosimo Cecchi +Date: 2010-12-06 + + icon-container: port to GtkStyleContext + +M libnemo-private/nemo-icon-container.c +M libnemo-private/nemo-icon-dnd.c +M libnemo-private/nemo-icon-private.h + +commit fc74332e3bbcc20094ab58631666b477640e2aeb +Author: Cosimo Cecchi +Date: 2010-12-06 + + icon-canvas-item: port to GtkStyleContext + +M libnemo-private/nemo-icon-canvas-item.c + +commit 5da941e338b159c42a4b4f2581573635e3d68b11 +Author: Cosimo Cecchi +Date: 2010-12-06 + + file-conflict-dialog: port to GtkStyleContext + +M libnemo-private/nemo-file-conflict-dialog.c + +commit 020adaf997cc63a2b78ccb21c34b7f7f5244008e +Author: Cosimo Cecchi +Date: 2010-12-06 + + eel-gdk-pixbuf: use GdkRGBA everywhere + +M eel/eel-gdk-pixbuf-extensions.c +M eel/eel-gdk-pixbuf-extensions.h +M eel/eel-graphic-effects.c +M eel/eel-graphic-effects.h + +commit d6e07c7803b3d70968e7a37bcf1ef730b8ca4bac +Author: Cosimo Cecchi +Date: 2010-12-06 + + editable-label: port to GtkStyleContext + + There are still some rendering artifacts, but we will fix them later. + +M eel/eel-editable-label.c + +commit 5cf60d2aa1e8fd9856aed886cce6bd746f4a8074 +Author: Cosimo Cecchi +Date: 2010-12-06 + + eel-canvas: build fix for gdk_window_get_geometry API change + +M eel/eel-canvas.c + +commit 0a3aff84fececf1cfce0969ac173a736d2014130 +Author: Cosimo Cecchi +Date: 2010-12-06 + + eel-canvas: port to GtkStyleContext + +M eel/eel-canvas.c +M eel/eel-canvas.h + +commit f0691e71c58bba402d896f0a236e4bd10b6e5760 +Author: Cosimo Cecchi +Date: 2010-12-06 + + eel-canvas-re: use RGBA colors only + +M eel/eel-canvas-rect-ellipse.c +M eel/eel-canvas-rect-ellipse.h + +commit 1c31b7ab0d8ed7122f385395f6844006aa4a41e2 +Author: Andre Klapper +Date: 2010-12-06 + + Fix POTFILES.in to make intltool-update work again + +M po/POTFILES.in + +commit a68bf9c76a9073db3247e8dd1e92c0c1b3b98727 +Author: Fran Diéguez +Date: 2010-12-05 + + Updated Galician translations + +M po/gl.po + +commit 59670a59c9b53a59ef587767c3e7be247b0f11cf +Author: Cosimo Cecchi +Date: 2010-12-04 + + icon-container: apply emblems from FmIconContainer + + This simplifies the code a bit, and also fixes emblem sizes for + thumbnails. + +M libnemo-private/nemo-icon-container.c +M libnemo-private/nemo-icon-container.h +M src/file-manager/fm-icon-container.c + +commit 1004a7df4357fb2772ad4289b997b16ef799fc34 +Author: Cosimo Cecchi +Date: 2010-12-04 + + file: add some debug messages for getting icons + +M libnemo-private/nemo-file.c + +commit 55098c48a050a226fdb7168440fdbeb1a1fd5da0 +Author: Cosimo Cecchi +Date: 2010-12-04 + + debug: add a flag for NemoFile + +M libnemo-private/nemo-debug.c +M libnemo-private/nemo-debug.h + +commit b97bad42e62d7d13d257a7785fa1b91943a0758f +Author: Cosimo Cecchi +Date: 2010-12-04 + + file-management-properties: open only one preferences window (#442263) + +M src/nemo-file-management-properties.c +M src/nemo-file-management-properties.h +M src/nemo-window-menus.c + +commit 1c5794a5a520ea9bdfa3865b9db702f484cabfe0 +Author: Cosimo Cecchi +Date: 2010-12-04 + + settings: remove notes and history sidebar from GSettings schemas + +M libnemo-private/org.gnome.nemo.gschema.xml.in + +commit 69e432cf94d31f07cf1d193e1fd25a693cfdc173 +Author: Cosimo Cecchi +Date: 2010-12-03 + + navigation-window: plug a leak + +M src/nemo-navigation-window.c + +commit 1eac9e307787d773ac1598d79df965d5be684f38 +Merge: 2a20b38 7bce748 +Author: Cosimo Cecchi +Date: 2010-12-03 + + Merge branch 'ui-polish' + +commit 7bce7484e9cf5389582fd70c509abd2541ac04e5 +Author: Cosimo Cecchi +Date: 2010-12-03 + + tree-sidebar: rename and move to src/ + +M src/Makefile.am +M src/file-manager/Makefile.am +M src/nemo-navigation-window.c +R099 src/file-manager/fm-tree-model.c +src/nemo-tree-sidebar-model.c +R100 src/file-manager/fm-tree-model.h +src/nemo-tree-sidebar-model.h +R099 src/file-manager/fm-tree-view.c src/nemo-tree-sidebar.c +R100 src/file-manager/fm-tree-view.h src/nemo-tree-sidebar.h + +commit b37e7b126e70b623e86b09c69f3f7839368e0604 +Author: Cosimo Cecchi +Date: 2010-12-03 + + notes-sidebar: remove NemoNotesViewer + + An ancient almost-hidden feature that just doesn't fit with the + current + design. + +M po/POTFILES.in +M src/Makefile.am +D src/nemo-notes-viewer.c +D src/nemo-notes-viewer.h + +commit 8bba34a56ca1fd9ae70b7821ed7b7be48d6cc8f1 +Author: Cosimo Cecchi +Date: 2010-12-03 + + side-pane: remove NemoSidePane + + It's an useless container now that we changed our sidebar handling. + +M po/POTFILES.in +M src/Makefile.am +D src/nemo-side-pane.c +D src/nemo-side-pane.h + +commit 369f2490308b615d3d9b2c86b428f18d721dff33 +Author: Cosimo Cecchi +Date: 2010-12-03 + + window: update for the removal of sidebar interfaces + + The window now just creates one of the two sidebars, and listens to + GSettings changes for toggling between the two. + +M src/nemo-navigation-window-menus.c +M src/nemo-navigation-window-ui.xml +M src/nemo-navigation-window.c +M src/nemo-navigation-window.h +M src/nemo-window-private.h +M src/nemo-window.h + +commit 24ba7de3289225145faf2f85f05faef67370d447 +Author: Cosimo Cecchi +Date: 2010-12-03 + + places-sidebar: don't implement NemoSidebar/Provider anymore + +M src/nemo-places-sidebar.c +M src/nemo-places-sidebar.h + +commit 1fe934a9955579103b72cd86c5ba83b9c7b4966a +Author: Cosimo Cecchi +Date: 2010-12-03 + + tree-sidebar: don't implement NemoSidebar/Provider anymore + +M src/file-manager/fm-tree-view.c +M src/file-manager/fm-tree-view.h + +commit 3905444bd00e45cfbbe897c1da9de7f2d2c393e2 +Author: Cosimo Cecchi +Date: 2010-12-03 + + sidebar: remove NemoSidebar and NemoSidebarProvider + + We'll hardcode two sidebars (Places and Tree) from now on, so + there's no + need for these generic interfaces now. + +M libnemo-private/Makefile.am +D libnemo-private/nemo-sidebar-provider.c +D libnemo-private/nemo-sidebar-provider.h +D libnemo-private/nemo-sidebar.c +D libnemo-private/nemo-sidebar.h + +commit bc8c0f2fb18365f84045d0bfd6107d8541fbba59 +Author: Cosimo Cecchi +Date: 2010-12-03 + + application: don't register sidebars anymore + +M src/nemo-application.c + +commit 0bfd0a8d7d69058d486ab30580e2623166a5a555 +Author: Cosimo Cecchi +Date: 2010-12-03 + + sidebar: remove NemoHistorySidebar + + This is part of the 3.0 redesign plans. + +M po/POTFILES.in +M src/Makefile.am +M src/nemo-application.c +D src/nemo-history-sidebar.c +D src/nemo-history-sidebar.h + +commit 2a20b38c4dc870d8f3a85dae222c125a77f40229 +Author: Michael Terry +Date: 2010-11-26 + + Add --print-uri option + +M src/nemo-connect-server-dialog-main.c + +commit 7e794ed30195f15e78b6d96a9064681a128e41d6 +Author: Cosimo Cecchi +Date: 2010-12-03 + + search-engine: remove Beagle support + +M libnemo-private/Makefile.am +D libnemo-private/nemo-search-engine-beagle.c +D libnemo-private/nemo-search-engine-beagle.h +M libnemo-private/nemo-search-engine.c + +commit fdae502d65f3c40dee4d418bd9d21270940aa93d +Author: Cosimo Cecchi +Date: 2010-12-03 + + libnemo-extension: use a different directory for 3.0 + + So that old extensions do not pull in GTK+2 code. + + https://bugzilla.gnome.org/show_bug.cgi?id=624244 + +M configure.in +M libnemo-extension/Makefile.am +M libnemo-extension/libnemo-extension-uninstalled.pc.in +M libnemo-extension/libnemo-extension.pc.in +M libnemo-private/Makefile.am +M nemo-sendto-extension/Makefile.am + +commit d9331ae959593cd81f59b39d61597278162ac7eb +Author: Matthias Clasen +Date: 2010-12-02 + + Fix the build with latest GTK+ + + Various GdkDrawable APIs have been replaced by GdkWindow ones, + and GtkFunction is no more, use GSourceFunc instead. + +M libnemo-private/nemo-icon-container.c +M libnemo-private/nemo-tree-view-drag-dest.c +M src/nemo-desktop-window.c + +commit 8ee6c67b5fe1b12999c2e2f4c7f42d85a497c233 +Author: Cosimo Cecchi +Date: 2010-12-02 + + dbus-manager: add DEBUG messages for NemoDBusManager + +M libnemo-private/nemo-dbus-manager.c +M libnemo-private/nemo-debug.c +M libnemo-private/nemo-debug.h + +commit 5433f57cec515bce9bddecc8a569aa02b597a75e +Author: Cosimo Cecchi +Date: 2010-12-02 + + debug: fix a stupid typo + +M libnemo-private/nemo-debug.c + +commit 46d6bbb1208c409b8507dc31ef6aaf895b55ba92 +Author: Cosimo Cecchi +Date: 2010-12-02 + + debug: check for flags in DEBUG_FILES + +M libnemo-private/nemo-debug.c + +commit a440c05ceebdbfc21c8e585087574c7827e5f1f2 +Author: Cosimo Cecchi +Date: 2010-12-02 + + eel-debug: remove unused code + +M eel/eel-debug.c +M eel/eel-debug.h + +commit 2f90dc16bc0a9b9fb5e862ad5759aed04b98872c +Author: Cosimo Cecchi +Date: 2010-12-02 + + debug-log: nuke nemo-debug-log + +M libnemo-private/Makefile.am +D libnemo-private/nemo-debug-log.c +D libnemo-private/nemo-debug-log.h + +commit 2c9da31ce8252d32eae502b584379d53631f1a91 +Author: Cosimo Cecchi +Date: 2010-12-02 + + main: don't hook up with nemo-debug-log + +M src/nemo-main.c + +commit 218670bd1f1f9d8f980460c9f2ed721ff57c04a7 +Author: Cosimo Cecchi +Date: 2010-12-02 + + general: use new DEBUG macros instead of nemo_debug_log + +M libnemo-private/nemo-file-operations.c +M libnemo-private/nemo-icon-container.c +M libnemo-private/nemo-icon-dnd.c +M libnemo-private/nemo-mime-actions.c +M libnemo-private/nemo-tree-view-drag-dest.c +M src/file-manager/fm-directory-view.c +M src/file-manager/fm-error-reporting.c +M src/file-manager/fm-list-view.c +M src/file-manager/fm-tree-view.c +M src/nemo-application-smclient.c +M src/nemo-application.c +M src/nemo-places-sidebar.c +M src/nemo-window-manage-views.c + +commit 695b2d933406b039fb46592b90b5f844d381490c +Author: Cosimo Cecchi +Date: 2010-12-02 + + debug: add a new, simpler nemo-debug module, based on Empathy's + + We lose dumping the log to a file automatically, but we gain a lot in + flexibility. + +M configure.in +A libnemo-private/nemo-debug.c +A libnemo-private/nemo-debug.h + +commit b2edace4164fbec353bba497ebb34914864bcd1a +Author: Cosimo Cecchi +Date: 2010-12-02 + + dbus-manager: add an EmptyTrash operation + +M libnemo-private/nemo-dbus-manager.c + +commit 2e210578261c9060111efba1a705c78ff2c369b9 +Author: Cosimo Cecchi +Date: 2010-12-02 + + dbus-manager: implement the CopyURIs method + +M libnemo-private/nemo-dbus-manager.c +M libnemo-private/nemo-dbus-manager.h + +commit 5c9f1adb43052b19499f6ff1ad403f2222f0e091 +Author: Cosimo Cecchi +Date: 2010-12-02 + + application: make the application-id not clash with the dbus interface + +M src/nemo-application.c + +commit b238be002e446e102e056b8484666f21feb6b6f2 +Author: Cosimo Cecchi +Date: 2010-12-01 + + dbus-manager: add a skeleton of NemoDBusManager + +M libnemo-private/Makefile.am +A libnemo-private/nemo-dbus-manager.c +A libnemo-private/nemo-dbus-manager.h +M src/nemo-application.c + +commit 41b91ea64d9731a48ffab621e293f7ff05d88acd +Author: Cosimo Cecchi +Date: 2010-12-01 + + icon-canvas-item: tweak the resize bounding box color according + to style + +M libnemo-private/nemo-icon-canvas-item.c + +commit 7bd06fab98c2c61a170535b6ebd94da1a4db7466 +Author: Cosimo Cecchi +Date: 2010-12-01 + + icon-dnd: fix DnD highlighting regression + +M libnemo-private/nemo-icon-dnd.c + +commit 8cb07ccf2ddcf0cb8557c763f8905558d67736de +Author: Benjamin Otte +Date: 2010-12-01 + + eel: Use future-safe macro to query the X display + +M eel/eel-canvas-rect-ellipse.c + +commit c2c4076ceb2216ff5e696b4e78aeb63e0f86c437 +Author: Benjamin Otte +Date: 2010-12-01 + + Remove unnecessary drawable cast + +M libnemo-private/nemo-icon-dnd.c + +commit 1cfc56563e6cf867af5e3a98cfb9c87281b5f4c2 +Author: Cosimo Cecchi +Date: 2010-12-01 + + build: bump required GTK+ version + +M configure.in + +commit de8cb567358f658c167b9413a077b681123ab056 +Author: Cosimo Cecchi +Date: 2010-12-01 + + mime-application-chooser: plug a leak + +M libnemo-private/nemo-mime-application-chooser.c + +commit 466fe29b2d1790b8f61d854b0294205a9f437fd2 +Author: Cosimo Cecchi +Date: 2010-12-01 + + mime-actions: remove unused code + +M libnemo-private/nemo-mime-actions.c +M libnemo-private/nemo-mime-actions.h + +commit fe8ffd8635abfcf280e06c9385bfae4dd01621a4 +Author: Cosimo Cecchi +Date: 2010-12-01 + + program-choosing: remove commented out code + +M libnemo-private/nemo-program-choosing.c + +commit c0b34d1f07b2b1b1f11f1dbab75f8b3303543078 +Author: Cosimo Cecchi +Date: 2010-12-01 + + i18n: update POTFILES.in + +M po/POTFILES.in + +commit c745b5c50ea9e103861cafb4ce210b375034dd8d +Author: Cosimo Cecchi +Date: 2010-12-01 + + mime-application-chooser: add a 'Show other applications' button + + Similar to GtkAppChooserDialog; the 'Add' button now adds the + currently + selected application, and it becomes insensitive when necessary. + +M libnemo-private/nemo-mime-application-chooser.c + +commit 677c52173a1f5ba1a8e3db8c70cd96f27fb90200 +Author: Cosimo Cecchi +Date: 2010-11-30 + + mime-application-chooser: tweak buttons ordering + +M libnemo-private/nemo-mime-application-chooser.c + +commit 2d58f04289c31c4a7de9318327e3edd111d8735d +Author: Cosimo Cecchi +Date: 2010-11-30 + + mime-application-chooser: use populate-popup for removing apps + + Instead of having yet another button. + +M libnemo-private/nemo-mime-application-chooser.c + +commit 3e5dcec59709514b2998963b539ec77ed9d5c46f +Author: Cosimo Cecchi +Date: 2010-11-23 + + open-with-dialog: remove NemoOpenWithDialog + + It's useless now that we ported everything to GtkAppChooser. + +M libnemo-private/Makefile.am +D libnemo-private/nemo-open-with-dialog.c +D libnemo-private/nemo-open-with-dialog.h + +commit f83be2507361b337fb7eaf59a50cdca7f49ca53c +Author: Cosimo Cecchi +Date: 2010-11-23 + + properties-window: use new NemoMimeApplicationChooser API + +M src/file-manager/fm-properties-window.c + +commit e86ded0eb9842eb9d4a0ac6c83333e9ce3ffcd0e +Author: Cosimo Cecchi +Date: 2010-11-23 + + mime-application-chooser: rewrite to make it use GtkAppChooserWidget + +M libnemo-private/nemo-mime-application-chooser.c +M libnemo-private/nemo-mime-application-chooser.h + +commit 7734204774ab87e07ddec50acbb62e3f9acd1120 +Author: Cosimo Cecchi +Date: 2010-11-23 + + mime-actions: port to GtkAppChooserDialog + +M libnemo-private/nemo-mime-actions.c + +commit 34a18d5b19df317bf19e4fdc67ea0c4007ed0375 +Author: Cosimo Cecchi +Date: 2010-11-23 + + directory-view: port to GtkAppChooserDialog + +M libnemo-private/nemo-mime-actions.c +M src/file-manager/fm-directory-view.c + +commit d7acbb0c1d58205f5c97d7c80fde034088feef9f +Author: Jorge González +Date: 2010-11-30 + + Updated Spanish translation + +M po/es.po + +commit 20c94e66a20a9d2d4643ce58b2696bbf5e5334b8 +Author: Cosimo Cecchi +Date: 2010-11-30 + + build: remove old X_LIBS variable + +M eel/Makefile.am + +commit fd03f393a55ea377583b821f578951b3ace237a5 +Author: Cosimo Cecchi +Date: 2010-11-30 + + docs: remove manual for nemo-file-management-properties + + The binary is not installed anymore. + +M docs/Makefile.am +D docs/nemo-file-management-properties.1 + +commit 41059f897c33f981ce03c1dd62bcbbd20a53c52d +Author: Cosimo Cecchi +Date: 2010-11-29 + + Release 2.91.3 + +M NEWS +M configure.in + +commit b83c479d40b86d8a4e537a1c30d2375a1277898c +Author: Cosimo Cecchi +Date: 2010-11-29 + + i18n: update POTFILES.in + +M po/POTFILES.in + +commit b088cc0bcf36bcbf4551de2e972b44423c92fb4f +Author: Cosimo Cecchi +Date: 2010-11-29 + + gsettings: remove org.gnome.media-handling gschemas from nemo + + They don't belong here anymore now that the media preferences + have been + moved elsewhere. + +M libnemo-private/Makefile.am +M libnemo-private/nemo.convert +D libnemo-private/org.gnome.media-handling.gschema.xml.in + +commit 6cb06b98d4c492ec774b9335565994190857c82d +Author: Daniel Nylander +Date: 2010-11-28 + + Updated Swedish translation + +M po/sv.po + +commit 92706c7ce3bd9dd703d7ad118e6bb95723e6cdd8 +Author: Victor Osadci +Date: 2010-11-27 + + query-editor: identify ogg/vorbis files as music (#365095) + +M src/nemo-query-editor.c + +commit aa9b6675d8a92329a7cba69c9bdb53fa30f87858 +Author: Cosimo Cecchi +Date: 2010-11-26 + + connect-dialog: use the correct string for gvfs (#635431) + +M src/nemo-connect-server-dialog.c + +commit 9d2d96fd2968e8f8a9b1f3a46660f27d6377f145 +Author: Cosimo Cecchi +Date: 2010-11-25 + + autorun: remove nemo-autorun.[ch] + +M libnemo-private/Makefile.am +D libnemo-private/nemo-autorun.c +D libnemo-private/nemo-autorun.h +M po/POTFILES.in + +commit 912320008beae418d71a74361c1a0d9bcdae6f60 +Author: Cosimo Cecchi +Date: 2010-11-25 + + autorun: move get_x_content_types_for_mount () to file-utilities + + So that we can remove nemo-autorun.[ch] + +M libnemo-private/nemo-file-utilities.c +M libnemo-private/nemo-file-utilities.h +M src/file-manager/fm-directory-view.c +M src/nemo-window-manage-views.c + +commit 9281506c5b264e81a4610a4f6a20f2a42eab207b +Author: Cosimo Cecchi +Date: 2010-11-25 + + autorun: move nemo_launch_application_for_mount () + + Also add the parent window parameter to it, so that we get startup + notification. + +M libnemo-private/nemo-autorun.c +M libnemo-private/nemo-autorun.h +M libnemo-private/nemo-program-choosing.c +M libnemo-private/nemo-program-choosing.h +M src/nemo-x-content-bar.c + +commit 7c71b7f383ece8ad9be39fcb28b9377364a35cb3 +Author: Tomas Bzatek +Date: 2010-11-23 + + Prevent showing asserts when GFile is no longer valid after unmount + +M src/nemo-application.c + +commit 36965ee18ed890f6899588df730345986213d7d1 +Author: Tomas Bzatek +Date: 2010-11-23 + + Includes cleanup + +M libnemo-private/nemo-autorun.c +M libnemo-private/nemo-autorun.h + +commit e4fb850f0fb43a08ebca016c31fece6211073cb7 +Author: Tomas Bzatek +Date: 2010-11-23 + + Remove media preferences GSettings stuff + +M libnemo-private/nemo-global-preferences.c +M libnemo-private/nemo-global-preferences.h + +commit 33df383a2692dd8d8aba802710da28a6063f3bbc +Author: Tomas Bzatek +Date: 2010-11-23 + + Remove unused autorun code + +M libnemo-private/nemo-autorun.c +M libnemo-private/nemo-autorun.h + +commit 9729357aa457bbc78e6e2370015b6ccb3e73cbf6 +Author: Tomas Bzatek +Date: 2010-11-23 + + Don't autorun on nemo_file_operations_mount_volume() + +M libnemo-private/nemo-file-operations.c +M libnemo-private/nemo-file-operations.h +M src/nemo-places-sidebar.c + +commit ab7d5069f1658edbf6516f441801d0d2599f658b +Author: Tomas Bzatek +Date: 2010-11-23 + + Drop obsolete eject-button signal watch + +M src/nemo-application.c + +commit 045224ee72d896499fc0b04ced7dccb3e135e177 +Author: Tomas Bzatek +Date: 2010-11-23 + + Includes cleanup + +M libnemo-private/nemo-mime-actions.c +M libnemo-private/nemo-vfs-file.c +M src/nemo-file-management-properties.c +M src/nemo-places-sidebar.c + +commit 8e0a51410a116ce875d04d205d3e89398bfae970 +Author: Tomas Bzatek +Date: 2010-11-23 + + Remove autorun after mount + + This way we lose ability to focus already open windows after mount. + Since gnome-settings-daemon uses default folder handler to show + freshly + mounted folder, there's little we can do. + +M src/nemo-application.c + +commit cdae5fea2a466bf09ef236499e9c442888516cb1 +Author: Tomas Bzatek +Date: 2010-11-23 + + Don't automount volumes on nemo startup + +M src/nemo-application.c +M src/nemo-application.h + +commit 36831040af2e262ee8e66768152d2057139af8b8 +Author: Cosimo Cecchi +Date: 2010-11-15 + + file-management-properties: remove the properties binary + + We are moving the Media preferences to a separate control-center + panel, + as they're desktop-wide settings. The actual autorun/automount will be + handled by gnome-settings-daemon. + + The result is that we don't need to install our old + gnome-control-center + capplet anymore, so we can remove all this code. + +M configure.in +M data/Makefile.am +D data/nemo-file-management-properties.desktop.in.in +M src/Makefile.am +D src/nemo-file-management-properties-main.c +M src/nemo-file-management-properties.c +M src/nemo-file-management-properties.ui + +commit a6f4e065a66eeb5d74322bfb5cfd4320135a61d1 +Author: Kjartan Maraas +Date: 2010-11-20 + + Updated Norwegian bokmål translation + +M po/nb.po + +commit b28340da1b97026938035fdb8544c4b8722ecdc9 +Author: Gheyret T.Kenji +Date: 2010-11-20 + + Added UG translation + +M po/ug.po + +commit df382f58d0ec2a1b779cf80048ad70944c8859df +Author: Tomas Bzatek +Date: 2010-11-16 + + Use G_SETTINGS_BIND_INVERT_BOOLEAN where appropriate + +M src/nemo-file-management-properties.c + +commit a5caa0e98c844a23656cafaa9b6f985dada7bc51 +Author: Javier Jardón +Date: 2010-11-16 + + Use GSourceFunc instead GtkFunction + +M libnemo-private/nemo-dnd.c +M libnemo-private/nemo-dnd.h +M libnemo-private/nemo-icon-container.c + +commit 812fcf2fbf4da7c97a6fc9eca1c64f9c9c225c90 +Author: Daniel Șerbănescu +Date: 2010-11-14 + + Updated Romanian translation + +M po/ro.po + +commit d9d2ed6cde69ce2ffb2fdd6028e36a0e760672a8 +Author: Lucian Adrian Grijincu +Date: 2010-11-14 + + Updated Romanian translation + +M po/ro.po + +commit e7d2c7468f0b04e6ee87981c291d6f2ed1aa87bb +Author: Theppitak Karoonboonyanan +Date: 2010-11-14 + + Updated Thai translation. + +M po/th.po + +commit f7b5d4b653317f080547c7b18649fd45531772a4 +Author: Gheyret T.Kenji +Date: 2010-11-13 + + Added UG translation + +M po/ug.po + +commit 5afa93854e2bde4f89910cff3a98546a66d880d2 +Author: Baptiste Mille-Mathias +Date: 2010-11-12 + + libgnome-desktop build fixes + + More porting from libgnome* to libgnome-desktop to fix build breakage + +M eel/eel-gnome-extensions.c +M libnemo-private/nemo-thumbnails.c +M src/file-manager/fm-properties-window.c + +commit 7c042f64ee59d9f149252f7e78e11ca6ad7d9dbe +Author: Cosimo Cecchi +Date: 2010-11-12 + + application: fix interaction with the session manager + + The porting to GApplication broke the session management code + that took + care of saving and loading existing windows if the session saving is + active. + + We now fix it by changing a bit our startup process, so that the + EggSMClient object is actually created at the right time. + +M src/nemo-application-smclient.c +M src/nemo-application-smclient.h +M src/nemo-application.c +M src/nemo-application.h + +commit fb574c106185e773449a6d92bd54512b2074dd01 +Author: Florian Müllner +Date: 2010-11-11 + + desktop-background: Fix include + + The file gnome-bg.h was moved from libgnomeui to libgnome-desktop. + +M configure.in +M libnemo-private/nemo-desktop-background.c + +commit a2eb813e14be86168173e4f95385934feddf2937 +Author: Javier Jardón +Date: 2010-11-11 + + Use gtk_separator_new() instead gtk_[h|v]separator_new() + +M libnemo-private/nemo-column-chooser.c +M src/file-manager/fm-properties-window.c + +commit 3b586c5e61ce80a527f2abdc6d3e45189fee6985 +Author: Tomas Bzatek +Date: 2010-11-10 + + Bump gnome-desktop requirement for new gnome-bg + +M configure.in + +commit 87d8e557c13f3d51098cfe03cf2727102e8a8937 +Author: Cosimo Cecchi +Date: 2010-11-10 + + Release 2.91.2 + +M NEWS +M configure.in + +commit 7b1c3ddd655977e3a26365942d21d83abed1f75d +Author: Cosimo Cecchi +Date: 2010-11-09 + + file: remove nemo_file_get_emblem_pixbufs() + + It's not used anymore. + +M libnemo-private/nemo-file.c +M libnemo-private/nemo-file.h + +commit 6a276d59af54413c59188ffb0143ffa6e1fe94a1 +Author: Cosimo Cecchi +Date: 2010-11-09 + + icon-container: don't care about the emblem size + + Use only GIcons for emblems, not pixbufs. We used to rely on + pixbufs to + get emblems at a specific size, but that's not important anymore now + that GTK+ takes care of it internally. + +M libnemo-private/nemo-icon-container.c +M libnemo-private/nemo-icon-container.h +M src/file-manager/fm-icon-container.c + +commit b118093fbc2b5a236a4502ac6e053ab9e64a9db1 +Author: Tomas Bzatek +Date: 2010-11-09 + + Port desktop background handling to GSettings + + See bug 626018 for details. + +M libnemo-private/nemo-desktop-background.c + +commit 36f64c7f85e305939ec9d5ddb7bb7a6a121c0c08 +Author: Matej Urbančič +Date: 2010-11-06 + + Updated Slovenian translation + +M po/sl.po + +commit 8fd2694ee06fbbfc0cc9452b6ce5cc0a27ff160b +Author: Cosimo Cecchi +Date: 2010-11-05 + + icon-canvas-item: remove the emblem layouting code + + We can directly use GTK+ for this now. + +M libnemo-private/nemo-icon-canvas-item.c + +commit 79a9c6a36256d430459b4d2a7bc37e0d691c8e5a +Author: Cosimo Cecchi +Date: 2010-11-05 + + sq + +M libnemo-private/nemo-icon-container.c + +commit a728e7b830ebeccfba6d851a5b005033ba07189b +Author: Cosimo Cecchi +Date: 2010-11-05 + + icon-container: apply emblems directly on the pixbuf + + Do that before setting the pixbuf to the NemoIconCanvasItem, + so the + logic in there can be removed. + +M libnemo-private/nemo-icon-container.c + +commit e72391a9cecd0fe11458a6633edde3e800a797aa +Author: Cosimo Cecchi +Date: 2010-11-05 + + general: use GdkPixbuf/GIcon interface to set emblems in treeviews + + So that emblems get composited for us also on pixbufs such as + thumbnails. + +M configure.in +M src/file-manager/fm-list-model.c +M src/file-manager/fm-tree-model.c + +commit 4882f2ac24dfcf33e06e5e9a06dd2cd0368069ec +Author: Cosimo Cecchi +Date: 2010-11-04 + + application: fix some bad interactions with GApplication + +M src/nemo-application.c +M src/nemo-application.h + +commit e038864cdaf728b1a8407dfb8e5949cf467b72b7 +Author: Ivar Smolin +Date: 2010-11-03 + + [l10n] Updated Estonian translation + +M po/et.po + +commit 72b34f160a49edc40dccfb435330e30cd14feb9c +Author: Yaron Shahrabani +Date: 2010-11-03 + + Updated Hebrew translation. + +M po/he.po + +commit a0c3d8e339625eb1f84b769a4f81fd73785556bc +Author: Takayuki KUSANO +Date: 2010-11-03 + + Updated Japanese translation + +M po/ja.po + +commit 805a147bac55d38464f97ce933b33b8e7e42432d +Author: Fran Diéguez +Date: 2010-11-03 + + Updated Galician translations + +M po/gl.po + +commit 373683da693e6f4a768c7eb6f1fc793315c23db7 +Author: Cosimo Cecchi +Date: 2010-11-02 + + pathbar: fix crasher when unmounting volumes (#627901) + +M src/nemo-pathbar.c + +commit 57f92209189de791904b014f49b8a383ca1a5bd2 +Author: Cosimo Cecchi +Date: 2010-11-02 + + build: use X11 pkg-config files instead of homebrew checks + +M configure.in + +commit 64640897a2357e6fc442e14372ca3950e4b54090 +Author: Ahmed Noor Kader Mustajir Md Eusoff +Date: 2010-11-02 + + Partial update of Malay translation + +M po/ms.po + +commit efe7e4727d56bc8872557674aa90037b255229d5 +Author: Jorge González +Date: 2010-11-01 + + Updated Spanish translation + +M po/es.po + +commit d61097230c3b77931b7fc6212f70104f1fcdab04 +Author: Cosimo Cecchi +Date: 2010-11-01 + + Release 2.91.1 + +M NEWS +M configure.in +M po/POTFILES.in + +commit 2b99456d621c08bd097b87726704e671c76be1a1 +Author: Cosimo Cecchi +Date: 2010-11-01 + + [eel] remove eel_gtk_adjustment* functions + + They should not be needed now. + +M eel/eel-gtk-extensions.c +M eel/eel-gtk-extensions.h + +commit 8b4271f5ad62d00b76d7e34a594c9b1819eb495e +Author: Cosimo Cecchi +Date: 2010-11-01 + + desktop-icon-view: don't use eel helper to set adjustment values + +M src/file-manager/fm-desktop-icon-view.c + +commit 3a9c6cd783507cc2fbd0a838cd6710f74e7f17dd +Author: Cosimo Cecchi +Date: 2010-11-01 + + icon-container: don't use eel helper to set adjustment values + +M libnemo-private/nemo-icon-container.c + +commit 7029d317446f26f829a794884abe07d6ce980a5f +Author: Cosimo Cecchi +Date: 2010-11-01 + + canvas: remove commented out code + +M eel/eel-canvas.c + +commit 27f14a83ca6b656c20f6f7851b11dee12bfd4540 +Author: Holger Berndt +Date: 2010-10-05 + + Add possibility to register an external bulk rename tool + + If the new setting "bulk-rename-tool" in + org.gnome.nemo.preferences + is set to a non-empty string, it is treated as a bulk renamer and + gets invoked on a Rename action if multiple files are selected. + Nemo appends a space separated list of URIs of all selected + files to the command string. + + https://bugzilla.gnome.org/show_bug.cgi?id=306489 + +M libnemo-private/nemo-global-preferences.h +M libnemo-private/org.gnome.nemo.gschema.xml.in +M src/file-manager/fm-directory-view.c + +commit b4aa3c083ab7616f321df4ade75e4d850142eff6 +Author: Bastien Nocera +Date: 2010-10-29 + + Move nemo-sendto extension to nemo + + And add a check for the presence of nemo-sendto to the + initialisation of the object. + + Building the extension is optional, though on by default. + + https://bugzilla.gnome.org/show_bug.cgi?id=633485 + +M Makefile.am +M configure.in +A nemo-sendto-extension/Makefile.am +A nemo-sendto-extension/nemo-nste.c +A nemo-sendto-extension/nemo-nste.h +A nemo-sendto-extension/nemo-sendto-module.c + +commit 0609431a5cb3803d0b98bd333f90e3c7796f86b7 +Author: Paolo Borelli +Date: 2010-11-01 + + Use gtk_paned_new instead gtk_[h|v]paned_new + +M src/nemo-navigation-window.c + +commit 059d9a384aedcc6dcc1e249a9979922278a90f60 +Author: Yaron Shahrabani +Date: 2010-11-01 + + Updated Hebrew translation. + +M po/he.po + +commit 802e1967cdf301a50b8403cfe820097561c60033 +Author: Cosimo Cecchi +Date: 2010-11-01 + + [eel] remove unused eel_gradient code + +M eel/eel-gdk-extensions.c +M eel/eel-gdk-extensions.h + +commit 7dee3226ad6b3aa1c782cc3d2969e32c5eeae3f3 +Author: Cosimo Cecchi +Date: 2010-11-01 + + [eel] remove eel_gdk_pixbuf_list_ref() + +M eel/eel-gdk-pixbuf-extensions.c +M eel/eel-gdk-pixbuf-extensions.h +M libnemo-private/nemo-icon-canvas-item.c + +commit 00c0b9daa2053a110e17c64fb79ce4884290dc76 +Author: Cosimo Cecchi +Date: 2010-11-01 + + [eel] remove unused eel_get_filename_charset() + +M eel/eel-glib-extensions.c +M eel/eel-glib-extensions.h + +commit 31dfbdc19075ddf92b4f04a2f84e3111c3fb429b +Author: Cosimo Cecchi +Date: 2010-11-01 + + [eel] remove eel_gtk_widget_set_shown() + + It's not used anymore. + +M eel/eel-gtk-extensions.c +M eel/eel-gtk-extensions.h + +commit bb145a018a9d66b748971e40be4e09a7f843b2be +Author: Cosimo Cecchi +Date: 2010-11-01 + + places-sidebar: use gtk_widget_set_visible() instead of the eel helper + +M src/nemo-places-sidebar.c + +commit 654b8f8a52d2343293c03eec304d20b7904867a1 +Author: Jorge González +Date: 2010-10-31 + + Updated Spanish translation + +M po/es.po + +commit 5e669515fd7f760382e6b7aa1449734a35a2d7f4 +Author: Cosimo Cecchi +Date: 2010-10-31 + + general: use g_list_free_full() instead of eel functions + +M configure.in +M eel/eel-gdk-pixbuf-extensions.c +M eel/eel-gdk-pixbuf-extensions.h +M eel/eel-glib-extensions.c +M eel/eel-glib-extensions.h +M libnemo-private/nemo-autorun.c +M libnemo-private/nemo-clipboard.c +M libnemo-private/nemo-debug-log.c +M libnemo-private/nemo-directory-async.c +M libnemo-private/nemo-directory.c +M libnemo-private/nemo-dnd.c +M libnemo-private/nemo-file-changes-queue.c +M libnemo-private/nemo-file-operations.c +M libnemo-private/nemo-file-utilities.c +M libnemo-private/nemo-file.c +M libnemo-private/nemo-icon-canvas-item.c +M libnemo-private/nemo-icon-container.c +M libnemo-private/nemo-merged-directory.c +M libnemo-private/nemo-mime-actions.c +M libnemo-private/nemo-mime-application-chooser.c +M libnemo-private/nemo-open-with-dialog.c +M libnemo-private/nemo-program-choosing.c +M libnemo-private/nemo-query.c +M libnemo-private/nemo-search-engine-beagle.c +M libnemo-private/nemo-search-engine-simple.c +M libnemo-private/nemo-search-engine-tracker.c +M src/file-manager/fm-directory-view.c +M src/file-manager/fm-list-model.c +M src/file-manager/fm-list-view.c +M src/file-manager/fm-properties-window.c +M src/file-manager/fm-tree-model.c +M src/file-manager/fm-tree-view.c +M src/nemo-application.c +M src/nemo-bookmark-list.c +M src/nemo-history-sidebar.c +M src/nemo-navigation-window-slot.c +M src/nemo-pathbar.c +M src/nemo-places-sidebar.c +M src/nemo-query-editor.c +M src/nemo-spatial-window.c +M src/nemo-trash-bar.c +M src/nemo-window-manage-views.c +M src/nemo-window-slot.c +M src/nemo-window.c + +commit 7d05f8804f044ef13b4f89a49a1a7b7730f3a279 +Author: Cosimo Cecchi +Date: 2010-10-30 + + build: bump GLib and GTK+ requirements + +M configure.in + +commit d8ad1ab61cdb9929a8cb4f7d393e8b501e054289 +Author: Cosimo Cecchi +Date: 2010-10-30 + + application: use prettier format strings + +M src/nemo-application.c + +commit f48796637854ca784f7458a387e3607917ef5990 +Author: Cosimo Cecchi +Date: 2010-10-30 + + application: fix interaction with SMCLient + + Use late-initialization, otherwise we and up locked while reading + session information. Also, don't try to use that information more than + once in the app lifetime. + +M src/nemo-application-smclient.c +M src/nemo-application.c +M src/nemo-application.h + +commit d09b45c72bb1c3573b8f1c0bc83f1d8448ba5309 +Author: Cosimo Cecchi +Date: 2010-10-30 + + smclient: backport and tweak a patch for late SMClient initialization + + This is a tweak of a patch bt Vincent Untz, see libegg commit + dc8db697dfaf8e57fbc9fe5251675a27e8c54f44 + +M cut-n-paste-code/libegg/eggsmclient.c + +commit 2260005986d8c620669e56c4b9f2fba12e8e0625 +Author: Cosimo Cecchi +Date: 2010-10-30 + + canvas: use GTK_LAYOUT casts instead of going through the parent + struct + + That's just confusing. + +M eel/eel-canvas.c + +commit ebee13eef39824ebe536d0e42a35337097a33942 +Author: Cosimo Cecchi +Date: 2010-10-30 + + desktop-icon-view: don't unconditionally unref the desktop background + +M src/file-manager/fm-desktop-icon-view.c + +commit e383af25948a9b93915b1c39ae379bf0eace06ac +Author: Cosimo Cecchi +Date: 2010-10-30 + + application: close desktop windows on quit + +M src/nemo-application.c + +commit 12c7a03bfe3c49078cb5b44ff2651eb9ce1edce4 +Author: Matthias Clasen +Date: 2010-10-28 + + editable-label: don't use deprecated size_request vfunc + +M eel/eel-editable-label.c + +commit b532d0d9290d1731203d971e7c679979265f0a43 +Author: Cosimo Cecchi +Date: 2010-10-28 + + window: don't use deprecated size_request vfunc + + Also, cleanup the size_request code a bit. + +M src/nemo-window.c + +commit 1cdd0b41bf9de69a93cb166636d7eccff9f5355f +Author: Cosimo Cecchi +Date: 2010-10-28 + + icon-container: remove size_request vfunc impl + + It doesn't seem to do anything useful. + +M libnemo-private/nemo-icon-container.c + +commit 22cb1accd98c1ae10938eac10cc6beda8fb6b145 +Author: Cosimo Cecchi +Date: 2010-10-28 + + pathbar: don't use deprecated size_request vfunc + +M src/nemo-pathbar.c + +commit 305d1b05896e39a5e3181247d9d4e837b4c35067 +Author: Cosimo Cecchi +Date: 2010-10-27 + + image-properties-page: don't special-case old EXIF/XMP APIs + +M src/nemo-image-properties-page.c + +commit 393df7a83c0a779784095a993db238867daeaa7a +Author: Cosimo Cecchi +Date: 2010-10-27 + + build: simplify configure script + + Also, don't support old exif/exempi APIs anymore. + +D acconfig.h +M check-headers-in-Makefile.pl +M configure.in +M cut-n-paste-code/libegg/Makefile.am +M docs/reference/libnemo-extension/Makefile.am +M eel/Makefile.am +M libnemo-extension/Makefile.am +M libnemo-private/Makefile.am +M src/Makefile.am +M src/file-manager/Makefile.am +M test/Makefile.am + +commit 8d9d6128b69e641c2b77322e8832be8ae0b9bf93 +Author: Cosimo Cecchi +Date: 2010-10-27 + + application: properly handle --no-default-window + +M src/nemo-application.c +M src/nemo-main.c + +commit 13630f0b4d58e3b2be6781f3049d13c1095b0dca +Author: Cosimo Cecchi +Date: 2010-10-27 + + application: perform checks in NemoApplication if requested so + +M src/nemo-application.c +M src/nemo-main.c + +commit 48f17e3726bc0e37d35714d5f18ce56498508d79 +Author: Cosimo Cecchi +Date: 2010-10-27 + + application: respect the 'exit-with-last-window' setting. + + If it's set, we quit immediately. + +M src/nemo-application.c + +commit df8bdf21cffc1b2370b34173487219ee3568d040 +Author: Cosimo Cecchi +Date: 2010-10-27 + + application: cleanup + +M src/nemo-application.c + +commit e0f68583d47d23738afd7695f6137e2d2552b45d +Author: Cosimo Cecchi +Date: 2010-10-27 + + application: don't unref unconditionally + + As we're building the NemoUndoManager in _startup() now, + which might + not have been called if the application is remote. + +M src/nemo-application.c + +commit e297d4108760e701b3cd276e9d4612b1933efee0 +Author: Cosimo Cecchi +Date: 2010-10-27 + + application: add the desktop windows to the application window list + + So that we don't quit immediately when we close the browser window. + +M src/nemo-application.c + +commit 248339e40908fc58a5edad462c77b667d5cb8315 +Author: Cosimo Cecchi +Date: 2010-10-27 + + application: remove get_n_windows() + +M src/nemo-application.c +M src/nemo-application.h +M src/nemo-window-manage-views.c + +commit 56dd8bb3d5594d9caffda23400f7bd64c94e5a4c +Author: Cosimo Cecchi +Date: 2010-10-27 + + application: move other init/cleanup functions in the app class + + Instead of mixing them between nemo-main and nemo-application + +M src/nemo-application.c +M src/nemo-application.h +M src/nemo-main.c + +commit 2d702e1eeb7f9a8ad1286db39f5088bf39f1229c +Author: Cosimo Cecchi +Date: 2010-10-27 + + application: make sure to initialize GTK+ during _startup() + +M src/nemo-application.c + +commit 0712652a5f3730d10bca4040b68f3dda1e98c0bf +Author: Cosimo Cecchi +Date: 2010-10-27 + + desktop-window: monitor the desktop dir key from NemoDesktopWindow + + Remove that code from NemoApplication, it doesn't belong there. + +M src/nemo-desktop-window.c + +commit 7500dd445df5a0cf082464f099169666727f6ec2 +Author: Cosimo Cecchi +Date: 2010-10-27 + + [src] use new GtkApplication API to handle windows + + Instead of old nemo-main/NemoApplication functions to register + windows within the mainloop. + +M src/nemo-application-smclient.c +M src/nemo-navigation-window-menus.c +M src/nemo-window-manage-views.c +M src/nemo-window.c + +commit a8481ee4bd8d34e792d63598fa5efb47736f9de4 +Author: Cosimo Cecchi +Date: 2010-10-27 + + main: adapt to GtkApplication changes + + This code should be much easier now that window lifecycle is + handled by + GtkApplication itself. + +M src/Makefile.am +M src/nemo-application-smclient.c +M src/nemo-application.c +M src/nemo-main.c +D src/nemo-main.h +M src/nemo-navigation-window.c +M src/nemo-spatial-window.c +M src/nemo-window-manage-views.c +M src/nemo-window.c + +commit b03b081e91d376140e4fc94fd885bf7d13fc57c5 +Author: Cosimo Cecchi +Date: 2010-10-27 + + application: make NemoApplication a GtkApplication subclass + +M src/nemo-application.c +M src/nemo-application.h + +commit bb52a77678b732626693869e315bb78c77635a0b +Author: Cosimo Cecchi +Date: 2010-10-26 + + application: replace custom GIcon custom load/save code with GIO one + +M src/nemo-application-smclient.c + +commit dc0b129436d5c9eb712a80852768387fc2b8cd7c +Author: Cosimo Cecchi +Date: 2010-10-26 + + application: split SmClient code in its own module. + +M src/Makefile.am +A src/nemo-application-smclient.c +A src/nemo-application-smclient.h +M src/nemo-application.c + +commit d811553a4e74106efdf8bf6c91c6d29944ed6df7 +Author: Cosimo Cecchi +Date: 2010-10-22 + + general: use new GtkScrollable interface + +M eel/eel-canvas.c +M libnemo-private/nemo-icon-container.c +M libnemo-private/nemo-icon-dnd.c +M libnemo-private/nemo-tree-view-drag-dest.c +M src/file-manager/fm-desktop-icon-view.c + +commit f9aa5d9442ae918bb1e583d1543b8da0b51fb959 +Author: Cosimo Cecchi +Date: 2010-10-22 + + application: go back to libunique for now + + While GApplication API settles. Also, porting to the new GApplication + would require quite some refactoring. + +M configure.in +M src/nemo-application.c +M src/nemo-application.h +M src/nemo-main.c + +commit 0e755165bc561b2c61628519c090cd826f7609c6 +Author: Cosimo Cecchi +Date: 2010-10-22 + + build: bump GTK+ required version + +M configure.in + +commit 6669f155734c320617bcf79f3b5d8f315f4886f9 +Author: Cosimo Cecchi +Date: 2010-10-22 + + preferences: cleanup expand/fill flags + + Probably a change in GTK+ requires fixing this flags, so that + the dialog + doesn't look odd. + +M src/nemo-file-management-properties.ui + +commit 18fc6dd2516f9091570902640032e68b263cfddf +Author: Cosimo Cecchi +Date: 2010-10-22 + + preferences: use GtkComboBoxText in the GtkBuilder file + +M src/nemo-file-management-properties.ui + +commit f123f99bee1005cd279783f9d441f538fcf85542 +Author: Cosimo Cecchi +Date: 2010-10-21 + + [src] don't use GtkComboBox text APIs (#632651) + + They got replaced by GtkComboBoxText. + Thanks to Mathias Clasen and Flo Gravo. + +M src/file-manager/fm-properties-window.c +M src/nemo-file-management-properties.c +M src/nemo-query-editor.c +M src/nemo-view-as-action.c + +commit d5ad28bff6c1ebcd6e1560d2036655ffa9562e8b +Author: Andrej Žnidaršič +Date: 2010-10-30 + + Updated Slovenian translation + +M po/sl.po + +commit 9c97179025ca98641737b44bf0a6409757ee2f18 +Author: Carles Ferrando +Date: 2010-10-29 + + Updated Catalan (Valencian) translation + +M po/ca@valencia.po + +commit 716ad3f41eae1773cc260427ccf87c959a2bc3a3 +Author: Jorge González +Date: 2010-10-28 + + Updated Spanish translation + +M po/es.po + +commit 4d1464f859439b12b8c79bac919da333caea28a3 +Author: Mattias Põldaru +Date: 2010-10-28 + + [l10n] Updated Estonian translation + +M po/et.po + +commit bbd7d86fc4ef27f4df3537844fc5998e4c29949e +Author: Yaron Shahrabani +Date: 2010-10-26 + + Updated Hebrew translation. + +M po/he.po + +commit 540dc54229fee2e5e5d53453c61d4dd48537545c +Author: Aron Xu +Date: 2010-10-25 + + Update Simplified Chinese translation. + +M po/zh_CN.po + +commit 87ccfbf66ebed490eb8c921a712d8cb94e4ad817 +Author: Gheyret T.Kenji +Date: 2010-10-21 + + Added UG translation + +M po/ug.po + +commit c30f0785727ebad08f3891d594831596d16598e0 +Author: Fran Diéguez +Date: 2010-10-20 + + Updated Galician translations + +M po/gl.po + +commit 18e74876421fd38584c9dd105914d7a626aed3b7 +Author: Mario Blättermann +Date: 2010-10-19 + + [i18n] Updated German translation + +M po/de.po + +commit 1f135b5da410b7a0052d22322d740037036b39b0 +Author: Tomas Bzatek +Date: 2010-10-19 + + Use gnome global 'show-desktop-icons' settings + + See bug 632225 for details. + +M libnemo-private/nemo-global-preferences.c +M libnemo-private/nemo-global-preferences.h +M libnemo-private/nemo.convert +M libnemo-private/org.gnome.nemo.gschema.xml.in +M src/nemo-application.c + +commit c0e91e6a53dc3d920a25be1cf836c28730e193d8 +Author: Милош Поповић +Date: 2010-10-18 + + Updated Serbian Translation + +M po/sr.po +M po/sr@latin.po + +commit 2c04203ef9c3be3fd209589e8ec7007889323991 +Author: Mattias Põldaru +Date: 2010-10-16 + + [l10n] Updated Estonian translation + +M po/et.po + +commit d3ab8e137ae957e5afef54bf0ec1e275b96caab5 +Author: Marcus Carlson +Date: 2010-07-23 + + image-properties-page: call gdk_pixbuf_loader_close() earlier + (#558267) + + This helps smaller images (>8192 bytes) to signal size_prepared before + reading image geometry. + +M src/nemo-image-properties-page.c + +commit 49ff3247d17e57afc3612de2f709997c8bb92408 +Author: Jorge González +Date: 2010-10-14 + + Updated Spanish translation + +M po/es.po + +commit 1cb6ea5dcb0cd384f49aac063e56d24203683602 +Author: Cosimo Cecchi +Date: 2010-10-14 + + icon-container: use the right signature for the 'preedit-changed' cb + + This should fix bug #629159. Thanks to Fumihito YOSHIDA to notice + this. + +M libnemo-private/nemo-icon-container.c + +commit 5e383c3377ef2c2333f97102826880e86fdddef2 +Author: Yaron Shahrabani +Date: 2010-10-14 + + Updated Hebrew translation. + +M po/he.po + +commit 0f8dcf2ac394121c488afdf0fecc2b7afeb673b6 +Author: Cosimo Cecchi +Date: 2010-10-13 + + column-utilities: fix a TODO about a missing description string + +M libnemo-private/nemo-column-utilities.c + +commit b0550951f461c2033f4d1aaa4404078c7a70f220 +Author: Antoine Jacoutot +Date: 2010-10-13 + + column-utilities: disable SELinux column if !HAVE_SELINUX (#631093) + +M libnemo-private/nemo-column-utilities.c + +commit ebcbb167876f8b4491af0bc86bc29015c211b3af +Author: Olivier Tilloy +Date: 2010-08-17 + + icon-view: if possible, use the local path for the preview (#624841) + + This solves issues where the audio previewer is not capable of + understanding some GVfs URIs. + +M src/file-manager/fm-icon-view.c + +commit 01f39f471005e788281c18da30563c0184434fff +Author: Cosimo Cecchi +Date: 2010-10-13 + + background: make the fading effect optional (#623174) + + This is implemented with a GSettings key. Thanks to Brian Cameron for + the initial patch. + +M libnemo-private/nemo-desktop-background.c +M libnemo-private/nemo-global-preferences.h +M libnemo-private/org.gnome.nemo.gschema.xml.in + +commit 4cd72a64d67cdfd1d9351c52b2cf8463efd0c141 +Author: Cosimo Cecchi +Date: 2010-10-13 + + background: fix the indentation modeline + +M libnemo-private/nemo-desktop-background.c + +commit e676a40dcef267c312e27c4191adc0d22eaf1554 +Author: Cosimo Cecchi +Date: 2010-10-13 + + preferences: remove obsolete background preferences + +M libnemo-private/nemo-global-preferences.h +M libnemo-private/nemo.convert +M libnemo-private/org.gnome.nemo.gschema.xml.in + +commit d26ae7b60c07057c6fbf926a3a805c29a5cfc3b2 +Author: A S Alam +Date: 2010-10-13 + + update typo in translation: Punjabi + +M po/pa.po + +commit 1620bd8a4e4ab1760c5c518dd954a4471645ce87 +Author: Cosimo Cecchi +Date: 2010-10-12 + + horizontal-splitter: remove, and use a regular GtkPaned instead + + The feature it was bringing in (shrink when the paned handle is + double-clicked) is even confusing. + +M libnemo-private/Makefile.am +D libnemo-private/nemo-horizontal-splitter.c +D libnemo-private/nemo-horizontal-splitter.h +M src/nemo-navigation-window.c +M src/nemo-spatial-window.c +M src/nemo-window.c + +commit c05e2d7cdf8a5da4b9a353529ed214e7b36de8ca +Author: Mattias Põldaru +Date: 2010-10-11 + + [l10n] Updated Estonian translation + +M po/et.po + +commit 62690ab70e62ae108d1a03c0d19510c58dd882c0 +Author: Jorge González +Date: 2010-10-10 + + Updated Spanish translation + +M po/es.po + +commit 5653060d93db2686997faa8f6a10b87659d09c0a +Author: Cosimo Cecchi +Date: 2010-10-10 + + background: assume the widget is an IconContainer + +M libnemo-private/nemo-desktop-background.c +M libnemo-private/nemo-desktop-background.h +M libnemo-private/nemo-icon-dnd.c +M src/file-manager/fm-desktop-icon-view.c + +commit 7e7691f0332a9b708217432a692cdf27e536cbcc +Author: Cosimo Cecchi +Date: 2010-10-10 + + icon-dnd: use new background API + +M libnemo-private/nemo-icon-dnd.c + +commit 843e6a9b9331a3e7a318df03b4074deb1163e386 +Author: Cosimo Cecchi +Date: 2010-10-10 + + background: make NemoDesktopBackground a singleton + + This avoids the need of using g_object_set_data() hacks to get the + background from the desktop icon container. + +M libnemo-private/nemo-desktop-background.c +M libnemo-private/nemo-desktop-background.h + +commit d4342547ebc2e26547cf8f1449bfd2e8fe4c443f +Merge: eda5d36 66cd22c +Author: Cosimo Cecchi +Date: 2010-10-09 + + Merge branch 'background-untangling' + +commit eda5d36cadf299cf62429c1e29763b5dd3d53c40 +Author: Jorge González +Date: 2010-10-09 + + Updated Spanish translation + +M po/es.po + +commit 66cd22c908cc73954fad3e261d28ae6a05ea1bc2 +Author: Cosimo Cecchi +Date: 2010-10-09 + + background: refactor code into NemoDesktopBackground + + Remove the DirectoryBackground->EelBackground->GnomeBG abstraction and + add a new object, NemoDesktopBackground, which is a thin wrapper + around GnomeBG, which takes care of handling background changes. + +M eel/Makefile.am +D eel/eel-background.c +D eel/eel-background.h +M eel/eel-lib-self-check-functions.h +M eel/eel.h +M libnemo-private/Makefile.am +M libnemo-private/nemo-autorun.h +A libnemo-private/nemo-desktop-background.c +A libnemo-private/nemo-desktop-background.h +D libnemo-private/nemo-directory-background.c +D libnemo-private/nemo-directory-background.h +M libnemo-private/nemo-icon-dnd.c +M src/file-manager/fm-desktop-icon-view.c +M src/file-manager/fm-directory-view.c +M src/file-manager/fm-directory-view.h +M src/file-manager/fm-list-view.c +M test/Makefile.am +M test/test.c + +commit 3bcd8464bcc9bdc44086275df8f6d1d29829bd8d +Author: Cosimo Cecchi +Date: 2010-10-08 + + icon-dnd: adapt to EelBackground changes. + +M libnemo-private/nemo-icon-dnd.c + +commit b6b2d222a4fc5150370589fd70811707139d3bbd +Author: Cosimo Cecchi +Date: 2010-10-08 + + directory-background: update to simplified EelBackground API + + EelBackground doesn't have any signals anymore, so don't try to + connect + to them. + +M libnemo-private/nemo-directory-background.c + +commit b137867bfaf9d1175b883d31baf18ae7e21d8549 +Author: Cosimo Cecchi +Date: 2010-10-08 + + eel-background: cleanup code not related to desktop background + + Remove all the EelBackground code that's not related to desktop + background handling. + +M eel/eel-background.c +M eel/eel-background.h + +commit c185321ed28d8aba69734039211946c739d32467 +Author: Cosimo Cecchi +Date: 2010-10-07 + + views: don't use EelBackground to set sensitive/insensitive bg + + Use an implementation for each view, don't relying on EelBackground. + +M src/file-manager/fm-empty-view.c +M src/file-manager/fm-icon-view.c +M src/file-manager/fm-list-view.c + +commit c31c5e360b0726788af93f6e404e1686d46b1f61 +Author: Cosimo Cecchi +Date: 2010-10-07 + + directory-view: call set_active() on subclasses to set insensitive bg + + Don't have a default implementation relying on EelBackground here. + +M src/file-manager/fm-directory-view.c +M src/file-manager/fm-directory-view.h + +commit ef74d171892ed7189b4a52695ae8de575d2dac1a +Author: Cosimo Cecchi +Date: 2010-10-07 + + icon-container: add set_active() + + This internally replaces EelBackground usage to set the non-sensitive + background on non-active panes. + +M libnemo-private/nemo-icon-container.c +M libnemo-private/nemo-icon-container.h +M libnemo-private/nemo-icon-private.h + +commit 42e726853157e561dc99d61180cae036f751fef8 +Author: Cosimo Cecchi +Date: 2010-10-07 + + eel-gdk-extensions: add eel_make_color_inactive() to public API + +M eel/eel-gdk-extensions.c +M eel/eel-gdk-extensions.h + +commit 11c0ce912f2c6d5c933968780a53f5261f125fec +Author: A S Alam +Date: 2010-10-09 + + updating translation for Punjabi + +M po/pa.po + +commit 9e35d0ca6f10650f4d86963a3b5e986e3ec17681 +Author: Changwoo Ryu +Date: 2010-09-24 + + Updated Korean translation + +M po/ko.po + +commit 407666719856127547f5c2f3f03f6a050858239a +Author: Cosimo Cecchi +Date: 2010-10-06 + + editable-label: fix cairo drawing regressions + +M eel/eel-editable-label.c + +commit 75e101268198ce92e8165c7adda55cac69d1f93a +Author: Fran Diéguez +Date: 2010-10-07 + + Updated galician translations + +M po/gl.po + +commit a0c3ff8742e2f877b73678cff6d1a2950296e0ba +Author: Yaron Shahrabani +Date: 2010-10-06 + + Updated Hebrew translation. + +M po/he.po + +commit 31fac990215a99a034b62e626fb86e02ad751a31 +Author: Cosimo Cecchi +Date: 2010-10-05 + + Release 2.91.0.1 + +M NEWS +M configure.in + +commit 33c9b6d24a60079fe6c4c1be281c76f43def6fee +Author: Cosimo Cecchi +Date: 2010-10-05 + + cell-renderer-text-ellipsized: use new GtkSizeRequest vfunctions + + This fixes the 'Name' column being too thin in list view. + +M libnemo-private/nemo-cell-renderer-text-ellipsized.c + +commit 61906b05ec90d5d4759ae7ff7fc7aca40fb18f15 +Author: Cosimo Cecchi +Date: 2010-10-05 + + window-toolbars: show/hide the spinner in the right order + + Apparently calling them in the wrong order makes new GTK+ crash. + +M src/nemo-window-toolbars.c + +commit ca6e8b6d59caa79e1095d02f107df1779107a565 +Author: Cosimo Cecchi +Date: 2010-10-04 + + Release 2.91.0 + +M NEWS +M configure.in + +commit 74a0311e65f2c9fc2d03967b0607633dcb652f88 +Author: Cosimo Cecchi +Date: 2010-10-04 + + build: fix distcheck + +M eel/Makefile.am +M src/Makefile.am + +commit 2053c267a79231aeb82a24adfe8f4e7da442cdb7 +Author: Cosimo Cecchi +Date: 2010-10-04 + + build: depend on 2.91.0 GTK+ and gnome-desktop + +M configure.in + +commit 64819695a13eb636df535e08e0eed6e896a8821c +Author: Cosimo Cecchi +Date: 2010-10-04 + + properties-window: split some long lines + +M src/file-manager/fm-properties-window.c + +commit 5ece5d67163e30a91e600d2f2bcf0d657d365dc4 +Author: Cosimo Cecchi +Date: 2010-10-04 + + properties-window: don't use expose-event to draw the pie chart + + Use GtkWidget::draw instead + +M src/file-manager/fm-properties-window.c + +commit d72087b74c871ef82b1f6a13bb5bb72b38670a52 +Author: Cosimo Cecchi +Date: 2010-10-04 + + window-toolbars: show/hide the spinner when changing its state + +M src/nemo-window-toolbars.c + +commit 3745195087a21bb46ed42925ff1d877562dbf36e +Author: Cosimo Cecchi +Date: 2010-09-30 + + build: bump GTK+ and gnome-desktop required versions + +M configure.in + +commit 098057414b38aeeddd3fcd81942324336628d341 +Author: Cosimo Cecchi +Date: 2010-09-30 + + icon-dnd: cleanup useless code + +M libnemo-private/nemo-icon-dnd.c + +commit f38bad2536faf497fe56c9a491ab852cb00514c0 +Author: Cosimo Cecchi +Date: 2010-09-30 + + icon-dnd: use negative device offsets to set the drag surface + +M libnemo-private/nemo-icon-dnd.c + +commit a136af0a01c160cdfb513c531b910b49a4a62973 +Author: Cosimo Cecchi +Date: 2010-09-30 + + icon-canvas-item: use cairo directly instead of gdk_pixbuf_composite() + +M libnemo-private/nemo-icon-canvas-item.c + +commit c6860491c432e311d585a6d92443ef821afd46d2 +Author: Cosimo Cecchi +Date: 2010-09-30 + + icon-canvas-item: set transparent background for highlight + +M libnemo-private/nemo-icon-canvas-item.c + +commit 426079ef07d5f902911f30b0a9d7de95f3020374 +Author: Benjamin Otte +Date: 2010-09-29 + + background: cope with renamings of gnome-bg APIs + +M eel/eel-background.c + +commit b1aac113ef867846fb39ee4187378c6f1a13f33e +Author: Cosimo Cecchi +Date: 2010-09-29 + + desktop-icon-view: don't use gdk_drawable_get_screen + +M src/file-manager/fm-desktop-icon-view.c + +commit 0b664aae4090704fa2e44d42f213da2cea8bd828 +Author: Cosimo Cecchi +Date: 2010-09-29 + + background: port to rendering-cleanup + + Based on patches from Benjamin Otte and Christian Persch. + +M eel/eel-background.c + +commit c47d18f566fa9518ca7750922da7da66d3211f3e +Author: Cosimo Cecchi +Date: 2010-09-29 + + [src] use gtk_widget_get_preferred_size() + +M src/nemo-pathbar.c +M src/nemo-side-pane.c +M src/nemo-spatial-window.c +M src/nemo-zoom-control.c + +commit e56241830bfd2ca470ec2b1da53313c2230bc2b9 +Author: Cosimo Cecchi +Date: 2010-09-29 + + icon-container: use gtk_widget_get_preferred_size() + +M libnemo-private/nemo-icon-container.c + +commit f5192b6990cd9240d126974dd587b7b7525ae714 +Author: Cosimo Cecchi +Date: 2010-09-29 + + [libnemo-private] use eel_canvas_item_destroy + + Instead of gtk_object_destroy() + +M libnemo-private/nemo-icon-container.c +M libnemo-private/nemo-icon-dnd.c + +commit 910191ea13e5647e1b8c793e7585530c6ae4c9b1 +Author: Christian Persch +Date: 2010-09-16 + + [libnemo-private] Port to rendering-cleanup-next + +M libnemo-private/nemo-icon-canvas-item.c +M libnemo-private/nemo-icon-canvas-item.h +M libnemo-private/nemo-icon-container.c +M libnemo-private/nemo-icon-dnd.c +M libnemo-private/nemo-tree-view-drag-dest.c + +commit 44171abea01a0c110aa029dddfb5d5afe018d086 +Author: Christian Persch +Date: 2010-09-16 + + [libnemo-private] Use gtk_widget_get_preferred_size() + + ... instead of the deprecated gtk_widget_get_child_requisition(). + +M libnemo-private/nemo-horizontal-splitter.c + +commit 2b7659ac4fcaa8b93ad8f409e1560aaa60dcdc12 +Author: Christian Persch +Date: 2010-09-16 + + [eel] Port EelEditableLabel to rendering-cleanup-next + +M eel/eel-editable-label.c + +commit 4963a3c9e5526ffd139b1b0b5bff18b6ea91a717 +Author: Cosimo Cecchi +Date: 2010-09-29 + + editable-label: use gtk_widget_get_preferred_size() + +M eel/eel-editable-label.c + +commit 58832e54b6a4e596693527d577e4f8fa2f3e4ccf +Author: Christian Persch +Date: 2010-09-16 + + [eel] Port the eel canvas to rendering-cleanup-next + +M eel/eel-canvas-rect-ellipse.c +M eel/eel-canvas.c +M eel/eel-canvas.h + +commit d2f141f4a5435b10b43abea0822e3d0569b67886 +Author: Christian Persch +Date: 2010-09-16 + + [eel] Add eel_cairo_draw_layout_with_drop_shadow + + Renamed from eel_gdk_draw_layout_with_drop_shadow. + +M eel/eel-gdk-extensions.c +M eel/eel-gdk-extensions.h + +commit 93e1cdfd387c47f73e51eeff924f8e2c9fad2bda +Author: Cosimo Cecchi +Date: 2010-09-29 + + undo-transaction: remove obsolete commented code + +M libnemo-private/nemo-undo-transaction.c +M src/nemo-bookmarks-window.c + +commit f616fee30fb153c9f71d79b2568d2e0e5a23fd39 +Author: Cosimo Cecchi +Date: 2010-09-29 + + undo-signal-handlers: remove commented out obsolete code + +M libnemo-private/nemo-undo-signal-handlers.c +M libnemo-private/nemo-undo-signal-handlers.h + +commit c5eba3314c99059aa1fff13aedcb1004966fdd55 +Author: Cosimo Cecchi +Date: 2010-09-29 + + icon-dnd: remove commented out obsolete code + +M libnemo-private/nemo-icon-dnd.c + +commit cc6cb51e827c0b15d4ef09f12d37b9f331ddcef8 +Author: Cosimo Cecchi +Date: 2010-09-29 + + [src] don't use GtkObject + +M src/file-manager/fm-desktop-icon-view.c +M src/file-manager/fm-directory-view.c +M src/file-manager/fm-icon-view.c +M src/file-manager/fm-properties-window.c +M src/nemo-application.c +M src/nemo-bookmarks-window.c +M src/nemo-location-bar.c +M src/nemo-location-dialog.c +M src/nemo-location-entry.c +M src/nemo-main.c +M src/nemo-main.h +M src/nemo-navigation-bar.c +M src/nemo-navigation-window-menus.c +M src/nemo-navigation-window.c +M src/nemo-pathbar.c +M src/nemo-window-bookmarks.c +M src/nemo-window-manage-views.c +M src/nemo-window.c + +commit aef4cfcf93ef34a0b2d4c87b40fcec2b7a66dd06 +Author: Cosimo Cecchi +Date: 2010-09-29 + + [libnemo-private] don't use GtkObject + +M libnemo-private/nemo-autorun.c +M libnemo-private/nemo-clipboard.c +M libnemo-private/nemo-entry.c +M libnemo-private/nemo-icon-container.c +M libnemo-private/nemo-mime-actions.c +M libnemo-private/nemo-mime-application-chooser.c +M libnemo-private/nemo-open-with-dialog.c +M libnemo-private/nemo-program-choosing.c +M libnemo-private/nemo-undo-transaction.c + +commit b5f9acb9029c015558ab678e01fc2c8dcc8c6c82 +Author: Cosimo Cecchi +Date: 2010-09-29 + + editable-label: don't use GtkObject + +M eel/eel-editable-label.c + +commit 1f615321613751a5dbc84d5ef7f20edd104b8dc4 +Author: Cosimo Cecchi +Date: 2010-09-29 + + canvas: don't use GtkObject + + This implies adding a 'destroy' signal to EelCanvasItem, with similar + semantics to gtk_object_destroy() + +M eel/eel-canvas-rect-ellipse.c +M eel/eel-canvas.c +M eel/eel-canvas.h + +commit 5edcd42e503623c11bf55c6afba437b3013c7f45 +Author: Cosimo Cecchi +Date: 2010-09-29 + + stock-dialogs: don't use GtkObject + +M eel/eel-stock-dialogs.c + +commit 510d5fba10058535b8d8a3bb05f564122b798abd +Author: Cosimo Cecchi +Date: 2010-09-30 + + window-menus: fix a typo in the about dialog (#630624). + +M src/nemo-window-menus.c + +commit 2e59a60800a9bc837af9132b0ac234d9d14668c6 +Author: Cosimo Cecchi +Date: 2010-09-29 + + background: remove leftover GtkObject + +M eel/eel-background.h + +commit 87eb53a0701252607b494f34c677b6506f82278c +Author: Cosimo Cecchi +Date: 2010-09-29 + + background: cleanup unused code + +M eel/eel-background.c +M eel/eel-background.h + +commit fbb6b024128e3c35aeb1d74f8e287e8870c9999f +Author: Cosimo Cecchi +Date: 2010-09-29 + + directory-background: don't user the 'destroy' signal of EelBackground + +M libnemo-private/nemo-directory-background.c + +commit 60044f8ef457036560fb94ad6b20cdf7bedb4f77 +Author: Cosimo Cecchi +Date: 2010-09-29 + + background: don't use GtkObject + +M eel/eel-background.c + +commit ab1229476f949fef5cd51545088c91c649be2ef1 +Author: Cosimo Cecchi +Date: 2010-09-28 + + icon-dnd: don't set 'Set as Background' sensitive outside the desktop + +M libnemo-private/nemo-icon-dnd.c + +commit 895830af57277c7fd542f3fd21f71c4cde1ea231 +Author: Cosimo Cecchi +Date: 2010-09-28 + + dnd: remove support for property/bgimage as DND type. + + That was used for tiled backgrounds in the 'Backgrounds and Emblems' + dialog. + +M libnemo-private/nemo-dnd.c +M libnemo-private/nemo-dnd.h +M libnemo-private/nemo-file-dnd.c +M libnemo-private/nemo-icon-dnd.c + +commit c9be35b3ee6c468a9a102b317b82b8b639637d0f +Author: Cosimo Cecchi +Date: 2010-09-28 + + directory-background: remove code for setting non-desktop window + backgrounds + + Remove all the code that sets non-desktop window backgrounds, as we + don't do that anymore. + This includes avoid listening to metadata and GSettings changes. + +M libnemo-private/nemo-directory-background.c +M libnemo-private/nemo-directory-background.h + +commit ab0616de55f6f817a745caac26fd2b38ae41b71b +Author: Cosimo Cecchi +Date: 2010-09-28 + + icon-view: move background setting code to FMDesktopIconView + + So that we avoid setting backgrounds on regular nemo windows. + +M src/file-manager/fm-desktop-icon-view.c +M src/file-manager/fm-icon-view.c + +commit ecc583092aa333081205470c7cca7fb1aa68cb81 +Author: Petr Kovar +Date: 2010-09-29 + + Update Czech translation by Marek Cernocky + +M po/cs.po + +commit d2a41707084726ebdf882c8c6ec82ef46e29dcb0 +Author: Damyan Ivanov +Date: 2010-09-27 + + Updated Bulgarian translation + +M po/bg.po + +commit c0b28726fc05c7eac004ebaf4f81bb5e753285aa +Author: Joan Duran +Date: 2010-09-26 + + Updated Catalan translation + +M po/ca.po + +commit 1839f9abf3fa7ce88574649d531c88c9e3ac4bf7 +Author: Mattias Põldaru +Date: 2010-09-24 + + [l10n] Updated Estonian translation + +M po/et.po + +commit 74630527a03b3492913d0611b221ebdc5e1e76ba +Author: Takayuki KUSANO +Date: 2010-09-24 + + Updated Japanese translation + +M po/ja.po + +commit be665613c0e9233042e6e1f97b8cdb8708fdd782 +Author: Khaled Hosny +Date: 2010-09-23 + + Updated Arabic translation + +M po/ar.po + +commit f3bbee79b915276068e0a0d6ed9590c212e11a0a +Author: Cosimo Cecchi +Date: 2010-09-20 + + connect-dialog: add a missing gtk_widget_show() + +M src/nemo-connect-server-dialog.c + +commit 24100d075f747e8fc9ca3cc43a32489177f35459 +Author: Cosimo Cecchi +Date: 2010-09-20 + + connect-dialog: make the code more readable + + Move bits around and rename methods; no actual code change. + +M src/nemo-connect-server-dialog.c + +commit 1b79a8666fee56cdb704e8757f28acf486f7dc54 +Author: Cosimo Cecchi +Date: 2010-09-20 + + connect-dialog: display a fatal error if GVfs doesn't have methods + + I.e. when GVfs is not installed. + +M src/nemo-connect-server-dialog.c + +commit 1c826ed78bde5f34fd4a0f72d788b8d0824d6099 +Author: Cosimo Cecchi +Date: 2010-09-11 + + connect-dialog: fixes for the handling of iconized entries + +M src/nemo-connect-server-dialog.c + +commit 7d004452f333b7b8b804d87de49c858e8743a115 +Author: Cosimo Cecchi +Date: 2010-09-01 + + connect-dialog: integrate password handling + + Also, use the info bar to display warnings/errors, and tweak the UI + details. + +M src/nemo-connect-server-dialog-main.c +M src/nemo-connect-server-dialog-nonmain.c +M src/nemo-connect-server-dialog.c +M src/nemo-connect-server-dialog.h + +commit c1bebe3a29bc2dc3b01ad2277a9802d9d0bc25cd +Author: Cosimo Cecchi +Date: 2010-08-31 + + connect-operation: add NemoConnectServerOperation + + This is a GtkMountOperation subclass to handle + password/username/domain + requests directly from inside of the 'Connect to Server' dialog. + +M src/Makefile.am +A src/nemo-connect-server-operation.c +A src/nemo-connect-server-operation.h + +commit 156615f8d9f8b99dea3459cdd76392d01b9d80df +Author: Cosimo Cecchi +Date: 2010-09-20 + + window-menus: use new connect dialog API + +M src/nemo-window-menus.c + +commit 7848e74d812c22299962a8ae22b01dbd403929c0 +Author: Cosimo Cecchi +Date: 2010-09-20 + + connect-dialog: redesign the dialog + + According to Allan Day's mockups. + +M src/nemo-connect-server-dialog-main.c +M src/nemo-connect-server-dialog.c +M src/nemo-connect-server-dialog.h + +commit d5350003ac927bd683d4e18f7c0513b94f9220d7 +Author: Cosimo Cecchi +Date: 2010-08-31 + + navigation-window-menus: use new NemoApplication API + +M src/nemo-navigation-window-menus.c + +commit a3ce22ec6e8fcb39dafb35e04e445f4a94b8c394 +Author: Cosimo Cecchi +Date: 2010-08-31 + + bk-window: use new NemoApplication API + +M src/nemo-bookmarks-window.c + +commit adedf859ec47296106f0f0d938e70b32f0120f7c +Author: Cosimo Cecchi +Date: 2010-08-31 + + window: call the callback during the location change + +M src/nemo-window-manage-views.c +M src/nemo-window-slot.h + +commit d070d631545aac9114bc271481da603587c07c7c +Author: Cosimo Cecchi +Date: 2010-08-31 + + application: change the way spatial windows are created + + Use a _get() function + the standard nemo_window_go_to() + instead of + using _present(). The new functions in nemo-window-manage-views + are + smart enough to take care of re-using an existent window. + +M src/nemo-application.c +M src/nemo-application.h + +commit 1936e668c73b932f8cb018e278f8b7f46442fda2 +Author: Cosimo Cecchi +Date: 2010-08-31 + + spatial-window: remove affect_location_on_next_change hack + +M src/nemo-spatial-window.c +M src/nemo-spatial-window.h + +commit f95927360079b1c05efb9cea0de62457eea307ab +Author: Cosimo Cecchi +Date: 2010-08-31 + + desktop-window: add a 'loaded' flag + +M src/nemo-desktop-window.c +M src/nemo-desktop-window.h + +commit 54e0a1f21513babc89f980b5b02af2bf7a6ebe85 +Author: Cosimo Cecchi +Date: 2010-08-31 + + window: rewrite window-opening policies + + The code there was very hackish and convoluted. Rewrite it to make + it at + least cleaner. This will allow further cleanup later. + +M src/nemo-window-manage-views.c + +commit 24515b87a91afd32885e07e32e2b4080584673a4 +Author: Cosimo Cecchi +Date: 2010-08-31 + + window: add _full() versions of _go_to and _open() methods + + These also have a callback to get the result of the operation. + +M libnemo-private/nemo-window-info.h +M libnemo-private/nemo-window-slot-info.c +M libnemo-private/nemo-window-slot-info.h +M src/nemo-window-manage-views.c +M src/nemo-window-slot.h +M src/nemo-window.c +M src/nemo-window.h + +commit 42cc7bd181d2f57dbc008bea54a40f02be40ce39 +Author: Cosimo Cecchi +Date: 2010-08-31 + + window-info: move include to nemo-window-private + +M libnemo-private/nemo-window-info.h +M src/nemo-window-private.h + +commit 8d07a73b28767b7c866fe403e9ac706b8affb8a2 +Author: Cosimo Cecchi +Date: 2010-09-01 + + build: don't include marshals we don't own + +M libnemo-private/nemo-directory.c +M libnemo-private/nemo-icon-container.c +M src/file-manager/fm-directory-view.c +M src/nemo-pathbar.c +M src/nemo-window.c +M src/nemo-zoom-control.c + +commit 6d3398968d9f2520a4b6f4a08e0f4ae65e2207ab +Author: Cosimo Cecchi +Date: 2010-09-20 + + list-view: check for model != NULL before unsetting the highlight + + The model could be NULL there as a result of the view being previously + disposed. + +M src/file-manager/fm-list-view.c + +commit 7723f508ca8c9bd837a531cb018de16d627f8bd9 +Author: Cosimo Cecchi +Date: 2010-09-20 + + Revert "Clear the list model in _finalize() instead of _dispose()" + + This reverts commit bfe278cbf84a441a951d48dc528f20226127e1f3. + +M src/file-manager/fm-list-view.c + +commit 2e32fc01537bb2c86d9d9bbb6cc5ab2713bd723e +Author: Timo Jyrinki +Date: 2010-09-20 + + Updated Finnish translation. + +M po/fi.po + +commit 8deeb8471034b90b83ecb0e4bde0cf852e275d24 +Author: Cosimo Cecchi +Date: 2010-09-19 + + build: require GLib 2.27.0 + + Due to GApplication, which has been removed from 2.25.x + +M configure.in + +commit a4f454825861c1fb65e8d52979a67a81c5133974 +Author: Cosimo Cecchi +Date: 2010-09-19 + + desktop-icon-view: initialize allocation before setting it + + This probably fixes a number of stack-corruption crashes on 2.31.x + +M src/file-manager/fm-desktop-icon-view.c + +commit 00df45be2c133f849267f1ae485d95f672744690 +Author: Cosimo Cecchi +Date: 2010-09-19 + + build: require GTK+ 2.90.7 for GDK_KEY names + +M configure.in + +commit 78e37ae9a18925d75cf90424d92c8d3ba502848a +Author: Cosimo Cecchi +Date: 2010-09-19 + + [ui] remove 'has_separator' properties from Glade files + +M src/nemo-bookmarks-window.ui +M src/nemo-file-management-properties.ui + +commit 71fa1a50145a6f06da3b805a29e75c1295fd546b +Author: Cosimo Cecchi +Date: 2010-09-19 + + [src] convert to new GDK_KEY prefix + +M src/file-manager/fm-directory-view.c +M src/file-manager/fm-list-view.c +M src/file-manager/fm-properties-window.c +M src/nemo-bookmarks-window.c +M src/nemo-location-entry.c +M src/nemo-navigation-bar.c +M src/nemo-places-sidebar.c +M src/nemo-query-editor.c +M src/nemo-search-bar.c +M src/nemo-side-pane.c +M src/nemo-spatial-window.c +M src/nemo-window.c +M src/nemo-zoom-control.c + +commit 8ee5d37f2b4776730247af75a6ce4cebcba4c550 +Author: Cosimo Cecchi +Date: 2010-09-19 + + thumbnails: don't use GDK_THREADS_* macros + +M libnemo-private/nemo-thumbnails.c + +commit 8dd87483bd187bfac80a606233b769c230343980 +Author: Cosimo Cecchi +Date: 2010-09-19 + + autorun: use gdk_error_trap_pop_ignored() + +M libnemo-private/nemo-autorun.c + +commit aeb53075ed55dc2a2ef3228917ded1b8029bfdff +Author: Cosimo Cecchi +Date: 2010-09-19 + + entry: rename GtkEditableClass->GtkEditableInterface + +M libnemo-private/nemo-entry.c + +commit 64dcbea2a005e4ed8bb4945d06a943058b8c7ba8 +Author: Cosimo Cecchi +Date: 2010-09-19 + + [ln-p] convert to new GDK_KEY prefix + +M libnemo-private/nemo-autorun.c +M libnemo-private/nemo-entry.c +M libnemo-private/nemo-icon-container.c + +commit 499c54a20b64051e427ff5746fc7c8dd1a1885c2 +Author: Cosimo Cecchi +Date: 2010-09-19 + + [eel] convert to new GDK_KEY prefix + +M eel/eel-editable-label.c + +commit a58bbde4ca6b11eeb1bca5fa4e62e60c0b26271b +Author: Cosimo Cecchi +Date: 2010-09-19 + + editable-label: rename GtkEditableClass->GtkEditableInterface + +M eel/eel-editable-label.c + +commit 73e2941f9b837d5d0326e6e88caa7a1e3fdcabeb +Author: Cosimo Cecchi +Date: 2010-09-19 + + Don't use gtk_dialog_set_has_separator() + +M libnemo-private/nemo-autorun.c +M libnemo-private/nemo-file-conflict-dialog.c +M libnemo-private/nemo-open-with-dialog.c +M src/file-manager/fm-directory-view.c +M src/file-manager/fm-properties-window.c +M src/nemo-connect-server-dialog.c +M src/nemo-location-dialog.c +M src/nemo-query-editor.c + +commit b66ce0fd23500f9727c1aac93366430285575697 +Author: Cosimo Cecchi +Date: 2010-09-19 + + Don't use GDK_DISPLAY () + +M libnemo-private/nemo-autorun.c +M src/file-manager/fm-desktop-icon-view.c + +commit 36836b7dc517a588b34117e05a45bc4026e77f71 +Author: Cosimo Cecchi +Date: 2010-09-19 + + Use gtk_size_request_get_size() + +M eel/eel-editable-label.c +M libnemo-private/nemo-horizontal-splitter.c +M libnemo-private/nemo-icon-container.c +M src/nemo-pathbar.c +M src/nemo-side-pane.c +M src/nemo-spatial-window.c +M src/nemo-zoom-control.c + +commit 93022eda89f650a82f8a17e332973ab88b2318a8 +Author: Žygimantas Beručka +Date: 2010-09-18 + + Updated Lithuanian translation + +M po/lt.po + +commit cfada2b36dd274b2d2835753fc87c69affbbba58 +Author: Cosimo Cecchi +Date: 2010-09-17 + + pathbar: use another way to remove buttons (#627901) + + This fixes a crasher in _size_allocate() where the list of buttons did + not contain valid data anymore. + +M src/nemo-pathbar.c + +commit 476d45bfd1dd71595e7d38f4d18c761fe2a85b78 +Author: Cosimo Cecchi +Date: 2010-09-17 + + Don't check for the eject button if the row doesn't have it (#628347) + + This sometimes caused false positives in the click-on-eject-button + detection method. + +M src/nemo-places-sidebar.c + +commit bfe278cbf84a441a951d48dc528f20226127e1f3 +Author: Cosimo Cecchi +Date: 2010-09-17 + + Clear the list model in _finalize() instead of _dispose() + + We have the only reference to the model anyway. This fixes a + crash when + _end_loading() is called for a windiow before it finished loading. + +M src/file-manager/fm-list-view.c + +commit 46544c9885b7064c216f1a9401d42bdb9816bdd2 +Author: Cosimo Cecchi +Date: 2010-09-17 + + preferences: use right link for the 'Media' help page (#564866). + +M src/nemo-file-management-properties.c + +commit 31ebe40c4a68db4a1fc57e1c942b2d94efce5a42 +Author: Kenneth Nielsen +Date: 2010-09-16 + + Updated Danish translation + +M po/da.po + +commit f9a85779d9ac73f280358bd96417ea69f2694361 +Author: Ivar Smolin +Date: 2010-09-14 + + [l10n] Updated Estonian translation + +M po/et.po + +commit 72a4af08ca5139d5ad6511667dbe5631e5962ae7 +Author: Ivar Smolin +Date: 2010-09-13 + + [l10n] Updated Estonian translation + +M po/et.po + +commit 2c5a174abaeb3ce79bde382617289e358a59b102 +Author: Takayuki KUSANO +Date: 2010-09-13 + + Updated Japanese translation. + +M po/ja.po + +commit a3213bb051bb1843e7a0c1a2d47d865219b47dcd +Author: Luca Ferretti +Date: 2010-09-12 + + Updated Italian translation + +M po/it.po + +commit 802146d70642abf27a4f7dde398f775545da3794 +Author: Duarte Loreto +Date: 2010-09-12 + + Updated Portuguese translation + +M po/pt.po + +commit 4dd8de5b24c7c9774b62207cbc067b715af6942d +Author: Mario Blättermann +Date: 2010-09-12 + + [i18n] Updated German translation + +M po/de.po + +commit 8962e6db60a335e72046e2444d9c02e7d3e1182f +Author: Wouter Bolsterlee +Date: 2010-09-12 + + Updated Dutch translation by Wouter Bolsterlee + +M po/nl.po + +commit 60af1701491afbf686d1610ef7aad253f2904432 +Author: Wouter Bolsterlee +Date: 2010-09-12 + + Updated Dutch translation by Hannie Dumoleyn + +M po/nl.po + +commit f9ccf920434ba6795e4e62f3c95f927532f023c6 +Author: Christian Kirbach +Date: 2010-09-12 + + [i18n] Updated German translation + +M po/de.po + +commit e20fd8287c710dd5fcd15ed6a46efe3e5dea1b8a +Author: Bruce Cowan +Date: 2010-09-11 + + Updated British English translation + +M po/en_GB.po + +commit 1dc64c6c1ebba6a5434be80babc78e40c9dacdd7 +Author: Fran Diéguez +Date: 2010-09-11 + + Updated Galician translations + +M po/gl.po + +commit d37b72c14326182e51e797fc3af5ab9d5f310fb8 +Author: Ask H. Larsen +Date: 2010-09-11 + + Updated Danish translation + +M po/da.po + +commit adba30e6655ddf85edb179fff6626aec43520894 +Author: Cosimo Cecchi +Date: 2010-09-11 + + list-view: properly setup the editable widget (#627076) + +M src/file-manager/fm-list-view.c + +commit 265e669b9380eb11ef8ac928cce597d05dd70c7b +Author: Cosimo Cecchi +Date: 2010-09-10 + + Make file conflict strings i18n-friendly + + Thanks to Wouter Bolsterlee for the initial patch. + +M libnemo-private/nemo-file-conflict-dialog.c + +commit af61c416ffc291032bb2e199a03b7b071f0a77eb +Author: Jorge González +Date: 2010-09-09 + + Updated Spanish translation + +M po/es.po + +commit 2cab30a8acdca5d63937d129bdff12118a8b5cb3 +Author: Jorge González +Date: 2010-09-09 + + Updated Spanish translation + +M po/es.po + +commit fa28706c9878e0123fa4ce5576d4e4f37a91f23a +Author: Takayuki KUSANO +Date: 2010-09-10 + + Updated Japanese translation. + +M po/ja.po + +commit 94275d4a786eba1dd51d020912fa74d9b19d91ad +Author: Piotr Drąg +Date: 2010-09-07 + + Updated Polish translation + +M po/pl.po + +commit 51f313e623c282d4540728e0adedbb7b0e6a21ec +Author: Daniel Nylander +Date: 2010-09-05 + + Updated Swedish translation + +M po/sv.po + +commit e3519b6a8a22d9d9b6e7b421ec5ead1654f456db +Author: Matej Urbančič +Date: 2010-09-04 + + Updated Slovenian translation + +M po/sl.po + +commit 459216c23d064f7e2f194251a787f8f6365c29e2 +Author: drtv +Date: 2010-09-03 + + Updated Tamil translation + +M po/ta.po + +commit 9d98055c4547b0e2e7cb8920d5d1436178277a16 +Author: drtv +Date: 2010-09-03 + + Updated Tamil translation + +M po/ta.po + +commit 5a74a9e3ebab733a25afb7f73940757c698ed850 +Author: Wouter Bolsterlee +Date: 2010-09-02 + + Fix small error in Dutch translation + +M po/nl.po + +commit 430980aca7f1231df970c980e03847c02485ed34 +Author: Michael Kotsarinis +Date: 2010-08-31 + + l10n: Updated Greek translation + +M po/el.po + +commit 4f579bcdf37b188853ec1076954680bc91e175f6 +Author: Bruce Cowan +Date: 2010-08-31 + + Updated British English translation + +M po/en_GB.po + +commit 1989b4be7d56d120c8fc57e40cba6155dcbae905 +Author: Mattias Põldaru +Date: 2010-08-31 + + [l10n] Updated Estonian translation + +M po/et.po + +commit d0086feb65c640926066dcc9d263153227e1a3c1 +Author: Gabor Kelemen +Date: 2010-08-30 + + Updated Hungarian translation + +M po/hu.po + +commit da6cdb1d2e2ddea2b46a78a4ea57f496bca6a995 +Author: Gabor Kelemen +Date: 2010-08-29 + + Updated Hungarian translation + +M po/hu.po + +commit 67c01533ab809e751ec2ceb3a81fd50c9c85ef2b +Author: Ivar Smolin +Date: 2010-08-29 + + [l10n] Updated Estonian translation + +M po/et.po + +commit ff83456b73cd2f6340fd0da57788f3c7c48b455b +Author: Dirgita +Date: 2010-08-29 + + Updated Indonesian translation + +M po/id.po + +commit e3c8b309386f4040b4c8853d78b8709e12fb4de8 +Author: Mattias Põldaru +Date: 2010-08-27 + + [l10n] Updated Estonian translation + +M po/et.po + +commit e6feba5047dc17decbda673d8df2de0dbb089140 +Author: Bruno Brouard +Date: 2010-08-26 + + Updated French translation + +M po/fr.po + +commit f233f2aeb78e5fd14c0b18f7a3c5e80b5e7c84c5 +Author: Cosimo Cecchi +Date: 2010-08-26 + + connect-dialog: don't use EEL boilerplate + +M src/nemo-connect-server-dialog.c + +commit 0f70ac4bb782b3c3fb0f5e8a24032cb344fdb2cc +Author: Cosimo Cecchi +Date: 2010-08-26 + + sidebar: don't try to add non-existing special dirs + +M src/nemo-places-sidebar.c + +commit 8277ddc798fc78793364b54444fa53e9a287b5cc +Author: Cosimo Cecchi +Date: 2010-08-26 + + sidebar: don't allow selecting headers + +M src/nemo-places-sidebar.c + +commit 0f7e56b5e0ae5134ed1d8caeadcb3c684ae7f661 +Author: Cosimo Cecchi +Date: 2010-08-26 + + sidebar: add myself to the authors + +M src/nemo-places-sidebar.c + +commit 1fdfa522da3e7c672fe4202c591a928c8796bb06 +Author: Cosimo Cecchi +Date: 2010-08-26 + + sidebar: fix bookmark renaming + + Regression of the new sidebar. + +M src/nemo-places-sidebar.c + +commit 2f847f37f429062d58df3927d10bc52c67a4524f +Author: Cosimo Cecchi +Date: 2010-08-26 + + icon-names: fix a typo + +M libnemo-private/nemo-icon-names.h + +commit 0dc6f5ddf472ba2033cdee0ba41cf78696e4017f +Merge: ce419d9 a59e586 +Author: Cosimo Cecchi +Date: 2010-08-25 + + Merge branch 'sidebar_revamp' + +commit a59e586adf32eea64c9c4ae08a5482d2a9c37fb1 +Author: Cosimo Cecchi +Date: 2010-08-25 + + sidebar: redesign the Places sidebar + + According to http://live.gnome.org/Nemo/UIRoadmap/Places + +M src/nemo-places-sidebar.c + +commit 2d9d47254908533d1eb20e16e091f91310052e93 +Author: Cosimo Cecchi +Date: 2010-08-25 + + sidebar: fix eject button highlighting + +M src/nemo-places-sidebar.c + +commit 1df83c6586560a8ae5efc96037e673e52b4b119b +Author: Cosimo Cecchi +Date: 2010-08-25 + + icon-info: add a method to fetch GIcons for user special dirs + +M libnemo-private/nemo-icon-info.c +M libnemo-private/nemo-icon-info.h +M libnemo-private/nemo-icon-names.h + +commit ce419d9bc7536af2e5e4f0c6122b79070cadddca +Author: Aurimas Černius +Date: 2010-08-23 + + Updated Lithuanian translation + +M po/lt.po + +commit 1346a15744ce3aa7f8f52aade250d6a303b33bf2 +Author: Aron Xu +Date: 2010-08-23 + + Update Simplified Chinese translation. + +M po/zh_CN.po + +commit fd75e8f5e8b160eaba22ca4ed7efc852dba612a0 +Author: Cosimo Cecchi +Date: 2010-08-22 + + pathbar: release the highlight path on dispose + +M src/nemo-places-sidebar.c + +commit 6f5777b81958ce6f3dbc6bac3323d423d3dcc20b +Author: Cosimo Cecchi +Date: 2010-08-22 + + sidebar: don't update the icon if it's not visible + + This greatly reduces the number of times we have to create a pixbuf + (only once-per-highlight now). + +M src/nemo-places-sidebar.c + +commit a43bc7def3976947b9624113d18167211e76f9b8 +Author: Cosimo Cecchi +Date: 2010-08-22 + + pathbar: make sure |path| is always valid and memory released + +M src/nemo-places-sidebar.c + +commit f4ae07c8741d2e8cc6b96450c8bb86e532b59137 +Author: Cosimo Cecchi +Date: 2010-08-22 + + sidebar: use _icon_info_lookup_from_name () + +M src/nemo-places-sidebar.c + +commit 63b2cac301970847f76f7bdbd12835117958d9be +Author: Marcus Carlson +Date: 2010-08-06 + + Add highlight to eject icon in places sidebar (#544103) + +M src/nemo-places-sidebar.c + +commit 3abe144501fcff60a65ebd621a51b45ffa5d113d +Author: Cosimo Cecchi +Date: 2010-08-22 + + Release 2.90.1 + +M NEWS +M po/POTFILES.in + +commit 1f64e4b0dd9729976a16d2cf14a6b7c6691ded1e +Author: Cosimo Cecchi +Date: 2010-08-21 + + [ln-p] remove unused NemoKeepLastVerticalBox + +M libnemo-private/Makefile.am +D libnemo-private/nemo-keep-last-vertical-box.c +D libnemo-private/nemo-keep-last-vertical-box.h + +commit ad5e896e1ce04485a115ee684a695b42ea0378a5 +Author: Cosimo Cecchi +Date: 2010-08-21 + + [eel] reorganize Makefile.am + +M eel/Makefile.am + +commit 7e8d1dfa6a17fe9189bf2489b735cd6462f03571 +Author: Cosimo Cecchi +Date: 2010-08-21 + + [eel] remove eel_gdk_window_focus + +M eel/eel-gdk-extensions.c +M eel/eel-gdk-extensions.h + +commit 6b06e0e27ca1cf29afd4fac716c58e15928a8ff8 +Author: Cosimo Cecchi +Date: 2010-08-21 + + icon-container: use gdk_window_focus + +M libnemo-private/nemo-icon-container.c + +commit fe94a33657d55a2463fa066e09a8ecbfc637c4bd +Author: Cosimo Cecchi +Date: 2010-08-21 + + [eel] remove EelAlertDialog + + This is unused now. + +M eel/Makefile.am +D eel/eel-alert-dialog.c +D eel/eel-alert-dialog.h + +commit 82c5b6c0d82ebd8a705d542fcc9aa58e6e9b0da4 +Author: Cosimo Cecchi +Date: 2010-08-21 + + [eel] use GtkMessageDialog for stock dialogs + + Instead of EelAlertDialog, which is going away. + +M eel/eel-stock-dialogs.c + +commit 930af7f3058eed256a42c0c1558c7307bb93f411 +Author: Cosimo Cecchi +Date: 2010-08-21 + + tree-view: don't include eel-alert-dialog.h + +M src/file-manager/fm-tree-view.c + +commit 7a3dcdd4bf667aac271be74988770e18575a7df2 +Author: Cosimo Cecchi +Date: 2010-08-21 + + mime-actions: use GtkMessageDialog + + Instead of EelAlertDialog, which is going away. + +M libnemo-private/nemo-mime-actions.c + +commit 51ec5861ca0697e802e8c003053211ac12f2fd54 +Author: Cosimo Cecchi +Date: 2010-08-21 + + file-operations: use GtkMessageDialog + + Instead of EelAlertDialog, which is going away. + +M libnemo-private/nemo-file-operations.c + +commit a2b4de80a94b4e049f1d2a7ef00a174865b5c9ec +Author: Cosimo Cecchi +Date: 2010-08-21 + + [eel] add an utility to pack details into a message dialog + + So that we can remove EelAlertDialog. + +M eel/eel-gtk-extensions.c +M eel/eel-gtk-extensions.h + +commit 394cb741c3e59df66f924771d4ef68866e602faa +Author: Cosimo Cecchi +Date: 2010-08-21 + + [eel] remove eel_gtk_signal* utilities + + These are unused now. + +M eel/eel-gtk-extensions.c +M eel/eel-gtk-extensions.h + +commit 57b66862a53298468755e12ca3712569274f0a32 +Author: Cosimo Cecchi +Date: 2010-08-21 + + [eel] remove functions to set widget backgrounds + + These are unused now. + +M eel/eel-gtk-extensions.c +M eel/eel-gtk-extensions.h + +commit 472f3e1433ecb3d5e1a7fc8707975f45dd8d0469 +Author: Cosimo Cecchi +Date: 2010-08-21 + + [eel] remove functions to handle accelerators + + These are unused now. + +M eel/eel-gtk-extensions.c +M eel/eel-gtk-extensions.h + +commit cab696f7d760f5ee63f0a623b13d27b76d2f2d00 +Author: Cosimo Cecchi +Date: 2010-08-21 + + bk-window: don't use _event_is_close_accelerator() + +M src/nemo-bookmarks-window.c + +commit f4432dfba1e8f545d3aeeed5989bd30bba52d160 +Author: Cosimo Cecchi +Date: 2010-08-21 + + slot: cleanup previous commit + + There was an unused variable left + +M src/nemo-window-slot.c +M src/nemo-window-slot.h + +commit 712cf85b9c44fc93b8f506bfb03ea06cb58eb5e6 +Author: Cosimo Cecchi +Date: 2010-08-21 + + Add a border around info bars (#621366). + +M src/file-manager/fm-directory-view.c +M src/nemo-window-slot.c +M src/nemo-window-slot.h + +commit 93798c75a1ae3cbd3a85a4ce79b5521b562a7074 +Author: Cosimo Cecchi +Date: 2010-08-21 + + spatial-window: cleanups + + - Don't do anything else than checking/scheduling a source in the + conifigure-event callback + - Avoid useless roundtrips through GFile + - Avoid some casts, so we don't do useless type-checking in a row + on the + same object + +M src/nemo-spatial-window.c + +commit 5973bc50618d1fe69247e3e2ec6eb8cf3213000b +Author: Cosimo Cecchi +Date: 2010-08-21 + + window: remove dead prototypes + +M src/nemo-window-private.h +M src/nemo-window.h + +commit ef13366e667f848adc6b96509612e3321554d188 +Author: Cosimo Cecchi +Date: 2010-08-21 + + desktop-window: cleanups + +M src/nemo-desktop-window.c + +commit eb88f44bd27e11607cb5466c943b9caad0202110 +Author: Cosimo Cecchi +Date: 2010-08-21 + + window: remove dead function + +M src/nemo-window.c +M src/nemo-window.h + +commit cf152f9ec75714af2b14be2750f9ea84daab361a +Author: Cosimo Cecchi +Date: 2010-08-21 + + undo-manager: remove dead code + +M libnemo-private/nemo-undo-manager.c +M libnemo-private/nemo-undo-manager.h + +commit 90eb723490ab0338d3d2f1acd02ae5af5fdea819 +Author: Cosimo Cecchi +Date: 2010-08-20 + + about: add some authors and update year + +M src/nemo-window-menus.c + +commit 21e75511d2466bd814a31031472323d3cd8ae6c1 +Author: Cosimo Cecchi +Date: 2010-08-20 + + [file-manager] autogenerate marshallers + +M src/file-manager/Makefile.am +M src/file-manager/fm-directory-view.c + +commit 608918449f548b0d3ea3e7916c944b077ac43e87 +Author: Cosimo Cecchi +Date: 2010-08-20 + + [src] autogenerate marshallers + +M src/Makefile.am +M src/nemo-query-editor.c +M src/nemo-window.c + +commit 6509c91b48f52c72c868f2ca7a9b47c46b9e0bc6 +Author: Cosimo Cecchi +Date: 2010-08-20 + + [ln-p] autogenerate marshallers + +M libnemo-private/Makefile.am +M libnemo-private/nemo-icon-container.c +D libnemo-private/nemo-marshal.c +D libnemo-private/nemo-marshal.list + +commit 75a03a440ebff23ccbf8674ca4a0e9f6475ebbb8 +Author: Cosimo Cecchi +Date: 2010-08-20 + + [eel] simplify build system + + We don't need the enumtypes anymore, and the marshallers can easily be + autogenerated. + +M eel/Makefile.am +M eel/eel-background.c +D eel/eel-types.c +D eel/eel-types.h +M eel/eel.h +D eel/eelmarshal.list +D eel/makeenums.pl +D eel/maketypes.awk +D eel/update-from-egg.sh + +commit 52a37d6e46fc34cef6061bc91aa02847652f3c9d +Author: Cosimo Cecchi +Date: 2010-08-20 + + [ln-p] remove unused nemo-iso9660.h + +M libnemo-private/Makefile.am +D libnemo-private/nemo-iso9660.h + +commit 1d660252b408f3628a2d3d5943abcf6bfdd9091b +Author: Cosimo Cecchi +Date: 2010-08-20 + + tree-model: only display the first emblem + + Only display the first emblem we can render. + +M src/file-manager/fm-tree-model.c + +commit 5c08250adf30f2e24b4455fd3c08e81dc3ff4987 +Author: Cosimo Cecchi +Date: 2010-08-20 + + list-model: display only the first emblem + + Only display the first emblem we can render. + +M src/file-manager/fm-list-model.c + +commit 110a0e8f2b9ec96b34e4b76390e3f78adc9cda30 +Author: Cosimo Cecchi +Date: 2010-08-20 + + icon-info: add nemo_icon_theme_can_render() + +M libnemo-private/nemo-icon-info.c +M libnemo-private/nemo-icon-info.h + +commit 25b48e9d1f4c847e2fc95b9b9893e63ba7081658 +Author: Cosimo Cecchi +Date: 2010-08-19 + + [ln-p] remove NemoCellRendererPixbufEmblem + + It's useless now. + +M libnemo-private/Makefile.am +D libnemo-private/nemo-cell-renderer-pixbuf-emblem.c +D libnemo-private/nemo-cell-renderer-pixbuf-emblem.h + +commit d2cbf993766d7b63f50431ab483035d01c267cdb +Author: Cosimo Cecchi +Date: 2010-08-19 + + tree-view: don't use NemoCellRendererPixbufEmblem + +M src/file-manager/fm-tree-view.c + +commit 1694d7141bbe4a29e54cff77def697a6c9b4e118 +Author: Cosimo Cecchi +Date: 2010-08-19 + + tree-model: use GEmblemedIcon + + Use GEmblemedIcon instead of a separate column to render emblems. + +M src/file-manager/fm-tree-model.c +M src/file-manager/fm-tree-model.h + +commit 69740a3c7fd3a2e1cea99c0dc61b3c735993e4bb +Author: Cosimo Cecchi +Date: 2010-08-19 + + list-view: don't use NemoCellRendererPixbufEmblem + +M src/file-manager/fm-list-view.c + +commit a187f8a4cdcc46f56c0cb03c31b9b7c92c747a88 +Author: Cosimo Cecchi +Date: 2010-08-19 + + list-model: use GEmblemedIcon + + Use GEmblemedIcon instead of other columns to render emblems. + +M src/file-manager/fm-list-model.c +M src/file-manager/fm-list-model.h + +commit e42ddad5109f193bf8a5b3c0c6cd7cf4b1408300 +Author: Cosimo Cecchi +Date: 2010-08-19 + + [eel] remove eel-pango-extensions + +M eel/Makefile.am +M eel/eel-lib-self-check-functions.h +D eel/eel-pango-extensions.c +D eel/eel-pango-extensions.h +M eel/eel.h + +commit f080b86daeb571def4c092e1524e9adfc7700699 +Author: Cosimo Cecchi +Date: 2010-08-19 + + Don't include eel-pango-extensions.h + +M eel/eel-gtk-extensions.c +M libnemo-private/nemo-file-operations.c +M libnemo-private/nemo-icon-canvas-item.c + +commit 931644a649175b1886dce5cc8e50c21380f8b8b0 +Author: Cosimo Cecchi +Date: 2010-08-19 + + [test] remove test-eel-image-scrolled + + It only increases compilation time + +M test/Makefile.am +D test/test-eel-image-scrolled.c + +commit 2f202206fee4e1917494e3f4652e22648097c765 +Author: Cosimo Cecchi +Date: 2010-08-19 + + [eel] cleanup eel-vfs-extensions + +M eel/eel-vfs-extensions.c +M eel/eel-vfs-extensions.h + +commit 230581b5d58650c1f50f7d9fda9ab3a1f211361a +Author: Cosimo Cecchi +Date: 2010-08-19 + + [eel] cleanup eel-glib-extensions + +M eel/eel-glib-extensions.c +M eel/eel-glib-extensions.h + +commit fbccd9bfaa9c983dccc60d040b63b86521306788 +Author: Cosimo Cecchi +Date: 2010-08-19 + + [eel] cleanup eel-gnome-extensions + +M eel/eel-gnome-extensions.c +M eel/eel-gnome-extensions.h + +commit 48c6012e89fb1362e418d4bf56c05614f1515eab +Author: Cosimo Cecchi +Date: 2010-08-19 + + [eel] remove unused eel_make_semitransparent() + +M eel/eel-graphic-effects.c +M eel/eel-graphic-effects.h + +commit 9c9c619ae2d4e9dbdc9be175679abad3a174ca32 +Author: Cosimo Cecchi +Date: 2010-08-19 + + [test] remove eel-pixbuf-scale test + +M test/Makefile.am +D test/test-eel-pixbuf-scale.c + +commit 7ed8e2d7b90489f41ad674aa4758728dce62fa77 +Author: Cosimo Cecchi +Date: 2010-08-19 + + [eel] remove unused code from eel-gdk-pixbuf-extensions + +M eel/eel-gdk-pixbuf-extensions.c +M eel/eel-gdk-pixbuf-extensions.h +M eel/eel-lib-self-check-functions.h + +commit 6b2a053985b8c37aa1038e7a01ab05d7dd15aa2e +Author: Cosimo Cecchi +Date: 2010-08-19 + + [eel] remove unused code from eel-gdk-extensions + +M eel/eel-gdk-extensions.c +M eel/eel-gdk-extensions.h + +commit d2fb7d661a639633473c9339ea2004f18ad3fcf2 +Author: Cosimo Cecchi +Date: 2010-08-19 + + [eel] remove eel-art-gtk-extensions + +M eel/Makefile.am +D eel/eel-art-gtk-extensions.c +D eel/eel-art-gtk-extensions.h +M eel/eel.h + +commit 2bfd4e3694e2f726592bae5341d7e4c7464ec415 +Author: Cosimo Cecchi +Date: 2010-08-19 + + [eel] don't include eel-art-gtk-extensions.h + +M eel/eel-gdk-pixbuf-extensions.c + +commit 940dddbb6ce26138a5325f8a1352b6be6dc6b4ff +Author: Cosimo Cecchi +Date: 2010-08-19 + + [eel] remove eel-debug-drawing + +M eel/Makefile.am +D eel/eel-debug-drawing.c +D eel/eel-debug-drawing.h + +commit 8447fd3670021530b6340829f27f1d689b633d3a +Author: Cosimo Cecchi +Date: 2010-08-19 + + [eel] use glib's i18n API instead of eel's + +M eel/eel-alert-dialog.c +M eel/eel-canvas.c +M eel/eel-editable-label.c +M eel/eel-glib-extensions.c +M eel/eel-gnome-extensions.c +M eel/eel-stock-dialogs.c +M eel/eel-vfs-extensions.c + +commit 742b9fb1550ceec9284f581c3741c0a864ca82fd +Author: Cosimo Cecchi +Date: 2010-08-19 + + [eel] remove eel-i18n.[ch] + +M eel/Makefile.am +D eel/eel-i18n.c +D eel/eel-i18n.h + +commit 296efa481c76046e60481eec119da749fad15ba8 +Author: Cosimo Cecchi +Date: 2010-08-19 + + [eel] remove EelGtkContainer + +M eel/Makefile.am +D eel/eel-gtk-container.c +D eel/eel-gtk-container.h +M eel/eel.h + +commit 3f68e342205f4446a99c1c18d34f23e33e11cae2 +Author: Cosimo Cecchi +Date: 2010-08-18 + + Revert "Add a border around info bars (#621366)." + + This reverts commit 48c0e19e60eee88f38a6e9c7a51211376a4c90f9. + +M src/file-manager/fm-directory-view.c +M src/nemo-window-slot.c +M src/nemo-window-slot.h + +commit f5e2ed4c8a54340d26097c08eebd0b4d5f7c7cb7 +Author: Baurzhan Muftakhidinov +Date: 2010-08-18 + + l10n: Added Kazakh translation for nemo + +A po/kk.po + +commit e3b6eaf2a5c251014e9df40ff5d880ce92647db5 +Author: Baurzhan Muftakhidinov +Date: 2010-08-18 + + l10n: Added Kazakh (kk) to po/LINGUAS + +M po/LINGUAS + +commit 7397d9967125b8ef5ac39d8ad331ed22498d53cd +Author: Милош Поповић +Date: 2010-08-16 + + Updated Serbian translation + +M po/sr.po +M po/sr@latin.po + +commit d433ee1280fd7fa821de5941db1c972124633c29 +Author: Cosimo Cecchi +Date: 2010-08-14 + + pathbar: walk the buttons in the right order + + When a file is gone, walk the button items in the right order, + i.e. the + reversed one, otherwise we end up removing the entire pathbar. + +M src/nemo-pathbar.c + +commit d8cfb36f697bdf9130e36cdb60c375a9b363fbbe +Author: Cosimo Cecchi +Date: 2010-08-14 + + pathbar: use g_list_free_1 where appropriate + +M src/nemo-pathbar.c + +commit 76ab7b6266b3fd050c11f6365981d21f8c22b364 +Author: Cosimo Cecchi +Date: 2010-08-14 + + pathbar: add missing modeline + +M src/nemo-pathbar.c + +commit aa43821e73d60804a3f0f2ebafb66aab53b440e1 +Author: Cosimo Cecchi +Date: 2010-08-13 + + [ln-p] use the 'outline-stippling' property on DnD + +M libnemo-private/nemo-icon-dnd.c + +commit b453aaacb0b17392eacacd8a9e378b7227da6413 +Author: Cosimo Cecchi +Date: 2010-08-13 + + [eel] add an 'outline-stippling' property to the rect item + +M eel/eel-canvas-rect-ellipse.c +M eel/eel-canvas-rect-ellipse.h + +commit b10d8c00395026719dc0840e9d82e682c7c4e436 +Author: Cosimo Cecchi +Date: 2010-08-13 + + [ln-p] properly dash the icon when resizing it + +M libnemo-private/nemo-icon-canvas-item.c + +commit 29d7b86087f6ab86f6abd6c3c08c4e1d94b92b36 +Author: Cosimo Cecchi +Date: 2010-08-13 + + [ln-p] make drawing of resize knobs work again + +M libnemo-private/nemo-icon-canvas-item.c + +commit cbdf5829637093c0a5c0a4ff4d303ad184847627 +Author: Benjamin Otte +Date: 2010-08-13 + + [ln-p] port nemo-icon-private to cairo drawing + +M libnemo-private/nemo-icon-private.h + +commit 34a376c97717cb05187b3d880e991c2d23511109 +Author: Benjamin Otte +Date: 2010-08-13 + + [ln-p] port nemo-icon-dnd to cairo drawing + +M libnemo-private/nemo-icon-dnd.c +M libnemo-private/nemo-icon-dnd.h + +commit 8eab39c06628da7cf919be77d922024198105f0a +Author: Benjamin Otte +Date: 2010-08-13 + + [ln-p] port NemoIconContainer to cairo drawing + +M libnemo-private/nemo-icon-container.c + +commit 89bd44de6bb11450b88d9d160593b65d62467579 +Author: Benjamin Otte +Date: 2010-08-13 + + [ln-p] port NemoIconCanvasItem to cairo drawing + +M libnemo-private/nemo-icon-canvas-item.c + +commit 6c691075c09ec23620484da00ffd43d3dfe0b75b +Author: Benjamin Otte +Date: 2010-08-13 + + [ln-p] port NemoDirectoryBackground to cairo drawing + +M libnemo-private/nemo-directory-background.c + +commit dfbf8b9b5636dceb3d6291c980d2c349afc849d7 +Author: Benjamin Otte +Date: 2010-08-13 + + [ln-p] port NemoCellRendererPixbufEmblem to cairo drawing + +M libnemo-private/nemo-cell-renderer-pixbuf-emblem.c + +commit a904f4acd546151ab37ee03bcce87869a805c323 +Author: Cosimo Cecchi +Date: 2010-08-13 + + [eel] remove dead code from eel-gtk-extensions + +M eel/eel-gtk-extensions.c +M eel/eel-gtk-extensions.h + +commit 172af77cfbdc4910034a100a99aa1ec2cb843495 +Author: Benjamin Otte +Date: 2010-08-13 + + [eel] port eel-gdk-pixbuf-extensions to cairo drawing + +M eel/eel-gdk-pixbuf-extensions.c +M eel/eel-gdk-pixbuf-extensions.h + +commit 917a27a6f69509720fadd0d50e40dbc87ae9f5d2 +Author: Benjamin Otte +Date: 2010-08-13 + + [eel] port eel-gdk-extensions to cairo drawing + +M eel/eel-gdk-extensions.c +M eel/eel-gdk-extensions.h + +commit 6cb78fb15c89e53e60ee54dc8b773db6ca0def73 +Author: Benjamin Otte +Date: 2010-08-13 + + [eel] port EelEditableLabel to cairo drawing + +M eel/eel-editable-label.c +M eel/eel-editable-label.h + +commit e716f82eea847e5298d773e2689642813db3d36e +Author: Benjamin Otte +Date: 2010-08-13 + + [eel] port eel-debug-drawing to cairo drawing + +M eel/eel-debug-drawing.c + +commit 759f3401bee333caf6d0ae6ae9820cdadda440e4 +Author: Benjamin Otte +Date: 2010-08-13 + + [eel] port EelCanvas to cairo drawing + +M eel/eel-canvas.c +M eel/eel-canvas.h + +commit 820d4088a4d1768cf7e16de3c8ec0d7ff383f473 +Author: Benjamin Otte +Date: 2010-08-13 + + [eel] port EelCanvasRE to cairo drawing + +M eel/eel-canvas-rect-ellipse.c +M eel/eel-canvas-rect-ellipse.h + +commit 28b6813b77c4776b789231d3c64be3be01748608 +Author: Benjamin Otte +Date: 2010-08-13 + + [eel] port EelBackground to cairo drawing + +M eel/eel-background.c + +commit a9fece4d5cc759ee5d7c1f1761bbebc597a3d912 +Author: Cosimo Cecchi +Date: 2010-08-12 + + Actually check for gsettings-desktop-schemas + +M configure.in + +commit 7aca581c68aa1174f635cb79f24ba394f5ae1d3a +Author: Cosimo Cecchi +Date: 2010-08-12 + + Bump to 2.90.1 on master. + +M configure.in + +commit 8973b8b20308ae6bb24881385597294e1209a2b0 +Author: Fran Diéguez +Date: 2010-08-11 + + Updated galician translations + +M po/gl.po + +commit c938ed5839ddba4654818dacf437633d168865eb +Author: Gheyret T.Kenji +Date: 2010-08-11 + + Added UG translation + +M po/LINGUAS +A po/ug.po + +commit 8ceed8e258c83975c1a7d4de71884505d64bb572 +Author: Daniel Nylander +Date: 2010-08-10 + + Updated Swedish translation + +M po/sv.po + +commit d24a302fbaad263c207cd2fded2719cf17753699 +Author: Yaron Shahrabani +Date: 2010-08-10 + + Updated Hebrew translation. + +M po/he.po + +commit 9db6cf3ed43eebf0ded2aacaaed883eface75e92 +Author: Marcus Carlson +Date: 2010-08-04 + + Better (shorter) text when emptying trash (#304336) + +M libnemo-private/nemo-file-operations.c + +commit 8598d769993843e1e6529a661fea034785ca0091 +Author: Marcus Carlson +Date: 2010-08-02 + + Adds option to open new tab in tab bar context menu (#590714) + +M src/nemo-navigation-window-menus.c +M src/nemo-navigation-window-pane.c +M src/nemo-window.c +M src/nemo-window.h + +commit 489a146546100d6429fb1705c99a23e959838b2c +Author: Marcus Carlson +Date: 2010-08-09 + + Removes doublespacing strings (#577535) + +M libnemo-private/nemo-program-choosing.c + +commit 69c7b1850cf7125a3289c9a57c8335eb29a7053d +Author: Marcus Carlson +Date: 2010-08-04 + + Adds "Free space: " to the end of the current status string (#588641) + +M src/file-manager/fm-directory-view.c + +commit 19dc1d9dbf2c1be17d7ad502ba0710e76f5de9ff +Author: Marcus Carlson +Date: 2010-08-09 + + Open current folder properties on Alt+Enter and Ctrl+I (#569694) + +M src/file-manager/fm-actions.h +M src/file-manager/fm-directory-view.c +M src/file-manager/nemo-directory-view-ui.xml + +commit 2b107d37a85ff03f84ecb63bb0b356dac43261f0 +Author: Marcus Carlson +Date: 2010-08-09 + + Enable scaling of icons on desktop only (#589295) + +M src/file-manager/fm-desktop-icon-view.c +M src/file-manager/fm-icon-view.c +M src/file-manager/fm-icon-view.h + +commit 5319feba3457213b656575893eeb973bde37a722 +Author: Marcus Carlson +Date: 2010-07-31 + + Hide all windows before closing when closing all windows (#441095) + +M src/nemo-application.c + +commit 59799e3e26476382ddd45d311e22db164474bbb2 +Author: Marcus Carlson +Date: 2010-07-05 + + Ellipseze bookmarks editing window renderer (#319159) + +M src/nemo-bookmarks-window.c + +commit 4bd09dd6ac7771579dc9e5af8779371c569a54ae +Author: Andika Triwidada +Date: 2010-08-10 + + Updated Indonesian translation + +M po/id.po + +commit 3988f758f0086a3b0cc149a9b7f4ebdc4bb9ef69 +Author: Yaron Shahrabani +Date: 2010-08-09 + + Updated Hebrew translation. + +M po/he.po + +commit aa27b362af03f198d5e49dbba85d662348d8ae8b +Author: Nils-Christoph Fiedler +Date: 2010-08-08 + + Updated LowGerman translation + +M po/nds.po + +commit 51ad44b586793dcc040001ae4d4d5c622c0102bb +Author: Kjartan Maraas +Date: 2010-08-07 + + Updated Norwegian bokmål translation + +M po/nb.po + +commit ec99a1028efd2914a7ebaa5c85417168e956f4ef +Author: drtv +Date: 2010-08-07 + + Updated Tamil translation + +M po/ta.po + +commit 023076ad6a8cc79e8fcb11dfc769c801cbddc5d6 +Author: drtv +Date: 2010-08-07 + + Updated Tamil translation + +M po/ta.po + +commit 516733dba0f33edab1944649693bba271263daf4 +Author: drtv +Date: 2010-08-06 + + Updated Tamil translation + +M po/ta.po + +commit 803071c151adb67daaa669cbaa2614181157b82f +Author: Fran Diéguez +Date: 2010-08-05 + + Updated Galician translations + +M po/gl.po + +commit a9592caff33f54555d71715593879f09cfd6022a +Author: Claude Paroz +Date: 2010-08-05 + + Update POTFILES.in + +M po/POTFILES.in + +commit 0d33233e110922f614b7378f0ae9f8b94321dd06 +Author: Reuben Potts +Date: 2010-08-05 + + Added Manx translation + +M po/LINGUAS +A po/gv.po + +commit 36add5d8c8107a0c2ed97a64f2a644c2362566a4 +Author: Tomas Bzatek +Date: 2010-08-05 + + Remove lockdown from monitored GConf paths + +M libnemo-private/nemo-global-preferences.c + +commit 9e219b3750a2cf60897bcd6213957cb9635dc05f +Author: Tomas Bzatek +Date: 2010-08-05 + + Require gsettings-desktop-schemas + +M configure.in + +commit 3c8b43bf6c10e83d0bd8fd97e0dae7032339ba72 +Author: Tomas Bzatek +Date: 2010-08-05 + + Convert disable-command-line lockdown to gsettings + +M libnemo-private/nemo-global-preferences.c +M libnemo-private/nemo-global-preferences.h +M src/file-manager/fm-desktop-icon-view.c +M src/file-manager/fm-directory-view.c + +commit f871519fb28449c370448d8032294971ead1f162 +Author: Tomas Bzatek +Date: 2010-08-05 + + Remove unused gsettings schema keys + +M libnemo-private/org.gnome.nemo.gschema.xml.in + +commit 0c0d34f9cf2448303249122cd3baae6d1e32b93d +Author: Tomas Bzatek +Date: 2010-08-05 + + Re-enable commented-out keys in gsettings conversion file + + Please see bug 626106 for full story. + Let's hope data mapping will work one day, for now it makes no issues. + +M libnemo-private/nemo.convert + +commit 224ea80bceb93e01cd9676c14e24c27eb556b813 +Author: Sense Hofstede +Date: 2010-08-04 + + Updated Frisian translations + +M po/fy.po + +commit 60ce7af080842792df21af6ff7fadf4a6674cf60 +Author: Dirgita +Date: 2010-08-04 + + Updated Indonesian translation + +M po/id.po + +commit 6c71e95a995db6fa15fd97fb314152481676b23a +Author: Cosimo Cecchi +Date: 2010-08-03 + + Remove useless code for handling color drops + +M libnemo-private/nemo-dnd.h +M libnemo-private/nemo-file-dnd.c +M libnemo-private/nemo-icon-dnd.c + +commit 5ce852673cc5d5ae45bd042f9ab07916358f349a +Author: Cosimo Cecchi +Date: 2010-08-03 + + Use the actual action for GDK_ACTION_ASK drops + +M libnemo-private/nemo-icon-dnd.c + +commit 2a980bb67b95c9d6c8218181e8c492869beb126a +Author: Tomas Bzatek +Date: 2010-07-30 + + Add GSettings migration file + +M libnemo-private/Makefile.am +A libnemo-private/nemo.convert + +commit 3ea4de522ddba6ad9313dc3fdf2d6936b130913c +Author: Marcus Carlson +Date: 2010-08-02 + + Only show "Organize Desktop by Name" on Desktop (#530136) + +M src/file-manager/fm-icon-view.c + +commit f985fe76918ef299e3b580fef8922045c9a4cfed +Author: Cosimo Cecchi +Date: 2010-08-03 + + Don't unref the DBus proxy if it's NULL + +M libnemo-private/nemo-mime-actions.c + +commit 6d91cfb1d053a433cc5e17336c2e22c4e1d71673 +Author: Cosimo Cecchi +Date: 2010-08-01 + + Correctly show the multiple files warning + + Only show it when we're actually opening files, not folders. + +M libnemo-private/nemo-mime-actions.c + +commit 5b31e211ff20645c548949bd8d012b7bcaa39bf2 +Author: Ankit Patel +Date: 2010-07-27 + + Updated Gujarati Translations to correct dynamic variables mistakes + +M po/gu.po + +commit a1a8f97c9dcd9fdbbbfdddcec7f7d8da85a68dfb +Author: Runa Bhattacharjee +Date: 2010-07-27 + + Updated Bengali India Translation + +M po/bn_IN.po + +commit 52cf8ee6614dc311412ccecd8ea229d7b8c2a091 +Author: Marcus Carlson +Date: 2010-07-25 + + Enter key when combo box has focus validates new media dialog + (#589436) + +M libnemo-private/nemo-autorun.c + +commit 915e5523947fe049e06f9bd8574760f6765e8ad7 +Merge: 84b89c5 e50565b +Author: Cosimo Cecchi +Date: 2010-07-26 + + Merge branch 'remove-emblems-splitted' + +commit e50565bae0943c3bfe7025fc1f9728b07ef6ebd4 +Author: Cosimo Cecchi +Date: 2010-07-26 + + Remove sort by emblems in the UI file. + +M src/nemo-file-management-properties.ui + +commit 786dfd9d98dd7d313fa9cc33a7ebb500f100262c +Author: Cosimo Cecchi +Date: 2010-07-26 + + Remove emblem references from the GSettings schema. + +M libnemo-private/org.gnome.nemo.gschema.xml.in + +commit 326e6b14fbb7c106b35993ad3db8f243e38b3e44 +Author: Cosimo Cecchi +Date: 2010-07-26 + + Remove useless struct. + +M libnemo-private/nemo-file-private.h + +commit edfa318f2624bccba7b002c4176a839bf36136bd +Author: Cosimo Cecchi +Date: 2010-07-26 + + Remove useless defines. + +M libnemo-private/nemo-icon-names.h + +commit 09778cd3845fd3b6cf890d8263575e1a188fcdb2 +Author: Cosimo Cecchi +Date: 2010-07-26 + + Remove useless defines. + +M libnemo-private/nemo-file.h + +commit 23c1dbcac260018428949bb954dff65dd774ee11 +Author: Cosimo Cecchi +Date: 2010-07-26 + + Readd code to read emblems provided by extensions. + +M libnemo-private/nemo-file.c +M libnemo-private/nemo-file.h + +commit 84b89c5e4c1e7185d053c59fb6b14f72c1670e88 +Author: Daniel Nylander +Date: 2010-07-25 + + Updated Swedish translation + +M po/sv.po + +commit 2f21906e0f8d54df736a13e38f7b84013f8afb33 +Author: Cosimo Cecchi +Date: 2010-07-25 + + [data] remove other unused icons + +M icons/Makefile.am +D icons/backgrounds.png +D icons/chit_frame.png +D icons/colors.png +D icons/emblems.png +D icons/erase.png + +commit 87469500d98babc7d74a74d2e6a88535a1b5ad95 +Author: Cosimo Cecchi +Date: 2010-07-25 + + [data] remove patterns + +M configure.in +M data/Makefile.am +D data/patterns/Makefile.am +D data/patterns/blue_gray_rough.png +D data/patterns/blue_ridge.png +D data/patterns/blue_type.png +D data/patterns/brushed_metal.png +D data/patterns/burlap.jpg +D data/patterns/camouflage.png +D data/patterns/chalk.jpg +D data/patterns/cork.png +D data/patterns/countertop.png +D data/patterns/dark-gnome.jpg +D data/patterns/dots.png +D data/patterns/fibers.png +D data/patterns/fleur_de_lis.png +D data/patterns/floral.png +D data/patterns/fossil.png +D data/patterns/gnome.jpg +D data/patterns/green_weave.png +D data/patterns/ice.png +D data/patterns/manila_paper.png +D data/patterns/moss_ridge.png +D data/patterns/numbers.png +D data/patterns/ocean_stripes.png +D data/patterns/purple_marble.png +D data/patterns/reset.png +D data/patterns/ridged_paper.png +D data/patterns/rough_paper.png +D data/patterns/sky_ridge.png +D data/patterns/snow_ridge.png +D data/patterns/stucco.jpg +D data/patterns/terracotta.png +D data/patterns/wavy_white.png + +commit b5dd2515600f6dca2543aed45ae5455d9626ae92 +Author: Cosimo Cecchi +Date: 2010-07-25 + + [data] remove useless browser file + +M data/Makefile.am +D data/browser.xml + +commit 1abbbd936663d91c8d4b854a0beed41f64d85f73 +Author: Cosimo Cecchi +Date: 2010-07-25 + + [src] remove useless nemo-emblem-utils + +M libnemo-private/Makefile.am +D libnemo-private/nemo-emblem-utils.c +D libnemo-private/nemo-emblem-utils.h +M src/file-manager/fm-properties-window.c + +commit f9be00dfbf7e6baa1ee66e3ed0d392b26d23b665 +Author: Cosimo Cecchi +Date: 2010-07-25 + + [src] remove unused sort option + +M src/nemo-file-management-properties.c + +commit a147dffbf4ffbb11063f820a26537484bc67b558 +Author: Cosimo Cecchi +Date: 2010-07-25 + + [src] remove useless variables. + +M src/file-manager/fm-properties-window.c + +commit 48df65532da4646db7250452e7cfb731f5773566 +Author: Cosimo Cecchi +Date: 2010-07-25 + + Remove [_set/_get]_keywords API from NemoFile. + +M libnemo-private/nemo-file.c +M libnemo-private/nemo-file.h + +commit 988e0ef8c5048ed7add4441f2325a5eb725b728e +Author: Cosimo Cecchi +Date: 2010-07-25 + + Remove 'Sort by Emblems' from the views. + +M src/file-manager/fm-icon-view.c +M src/file-manager/fm-list-view.c +M src/file-manager/nemo-icon-view-ui.xml + +commit 4c465f5590f3e908b98197faeb63767193bb6e79 +Author: Cosimo Cecchi +Date: 2010-07-25 + + Remove dead code from the properties window. + +M src/file-manager/fm-properties-window.c + +commit d58d42c261db94bf0d538698939698f2aeb63d1d +Author: Cosimo Cecchi +Date: 2010-07-25 + + Remove code to handle emblems in DnD. + +M libnemo-private/nemo-dnd.h +M libnemo-private/nemo-file-dnd.c +M libnemo-private/nemo-file-dnd.h +M libnemo-private/nemo-icon-dnd.c +M libnemo-private/nemo-tree-view-drag-dest.c + +commit 3e1347c1100095b38deb2431a434ad56e543aafa +Author: Cosimo Cecchi +Date: 2010-07-25 + + Remove code for handling reset backgorund in DnD. + +M libnemo-private/nemo-dnd.h +M libnemo-private/nemo-file-dnd.c +M libnemo-private/nemo-icon-dnd.c +M src/file-manager/fm-properties-window.c + +commit 82bfad0af3902dd22e764a3cae9ad82735aac591 +Author: Cosimo Cecchi +Date: 2010-07-25 + + [src] remove unused NemoSidebarTitle + +M src/Makefile.am +D src/nemo-sidebar-title.c +D src/nemo-sidebar-title.h + +commit 41b7e9fe4d944dc9adabd62c35b053bc8099c393 +Author: Cosimo Cecchi +Date: 2010-07-25 + + [eel] remove unused eel-xml-extensions. + +M eel/Makefile.am +D eel/eel-xml-extensions.c +D eel/eel-xml-extensions.h +M eel/eel.h +M src/nemo-navigation-window-menus.c +M test/test-eel-pixbuf-scale.c + +commit cc4cbfcde75280055d78c61f867009820efb1749 +Author: Cosimo Cecchi +Date: 2010-07-25 + + [ln-p] remove unused NemoCustomizationData + +M libnemo-private/Makefile.am +D libnemo-private/nemo-customization-data.c +D libnemo-private/nemo-customization-data.h +M src/file-manager/fm-properties-window.c + +commit 4ba7cefdd56ac289bb157d5d7d99034378efdebe +Author: Cosimo Cecchi +Date: 2010-07-25 + + [eel] remove unused EelWrapTable + +M eel/Makefile.am +D eel/eel-wrap-table.c +D eel/eel-wrap-table.h +M eel/eel.h +M src/file-manager/fm-properties-window.c + +commit 1ad357964e6d4e33a3fa4301245318e6e080385f +Author: Cosimo Cecchi +Date: 2010-07-25 + + [eel] remove unused EelLabeledImage + +M eel/Makefile.am +D eel/eel-labeled-image.c +D eel/eel-labeled-image.h +M eel/eel.h +M src/file-manager/fm-properties-window.c +M test/Makefile.am +D test/test-eel-labeled-image.c +D test/test-nemo-wrap-table.c + +commit 6feed0a28d927a98aa5b09bc6622de1fc146387b +Author: Cosimo Cecchi +Date: 2010-07-25 + + [eel] remove unused EelImageTable + +M eel/Makefile.am +D eel/eel-image-table.c +D eel/eel-image-table.h +M eel/eel.h +M test/Makefile.am +D test/test-eel-image-table.c + +commit 28fbb49494879666928a23aa37d36ca0e819d176 +Author: Cosimo Cecchi +Date: 2010-07-25 + + [eel] remove unused EelBackgroundBox + +M eel/Makefile.am +D eel/eel-background-box.c +D eel/eel-background-box.h + +commit 83af9319fe2ad9eb8af559dc1934a0fc48ed98ba +Author: Cosimo Cecchi +Date: 2010-07-25 + + [src] remove NemoInformationPanel + + It's old, basically unused, and unmaintained. + +M src/Makefile.am +M src/nemo-application.c +D src/nemo-information-panel.c +D src/nemo-information-panel.h +M src/nemo-navigation-window.h +M src/nemo-window.c +M src/nemo-window.h + +commit dc0517bb3462c3da5d7fd2afb31470cc58fac903 +Author: Cosimo Cecchi +Date: 2010-07-25 + + [src] remove emblems from the properties window. + +M src/file-manager/fm-properties-window.c + +commit b2eb619da772af14f2e4127988a4431eedf212b6 +Author: Cosimo Cecchi +Date: 2010-07-25 + + [src] remove NemoEmblemSidebar + +M src/Makefile.am +M src/nemo-application.c +D src/nemo-emblem-sidebar.c +D src/nemo-emblem-sidebar.h + +commit c1a69337f031d0fce79fb6f0be52c44670145668 +Author: Cosimo Cecchi +Date: 2010-07-25 + + [src] remove NemoPropertyBrowser + + This is part of a complete removal of the backgrounds/emblems feature. + +M src/Makefile.am +M src/nemo-navigation-window-menus.c +D src/nemo-property-browser.c +D src/nemo-property-browser.h +M src/nemo-shell-ui.xml +M src/nemo-window-menus.c + +commit 92d8c11fb694aaf44b13184c704f7ec792796922 +Author: Daniel Nylander +Date: 2010-07-25 + + Updated Swedish translation + +M po/sv.po + +commit 6fe90302d79742b7a17449569c47de9b04e83c35 +Author: Aron Xu +Date: 2010-07-24 + + Update Simplified Chinese translation. + +M po/zh_CN.po + +commit 8497f4011e7c42010b9db669b31a09cae7f57844 +Author: Alexander Larsson +Date: 2010-07-23 + + Remove gconf schemas + +M configure.in +M libnemo-private/Makefile.am +D libnemo-private/apps_nemo_preferences.schemas.in + +commit f58f80d4414daa520bd7287999c36b783103b70f +Author: Alexander Larsson +Date: 2010-07-23 + + Bump glib requirements for g_settings_reset + +M configure.in + +commit 31833fee708e23bb6ed16af045fa59b711076ecf +Author: Alexander Larsson +Date: 2010-07-23 + + Remove eel-enumeration, eel-gconf-extensions and eel-preferences + +M eel/Makefile.am +D eel/eel-enumeration.c +D eel/eel-enumeration.h +D eel/eel-gconf-extensions.c +D eel/eel-gconf-extensions.h +M eel/eel-lib-self-check-functions.h +D eel/eel-preferences-builder.c +D eel/eel-preferences.c +D eel/eel-preferences.h +M eel/eel.h + +commit ca1c74b6df8a67e305c73adc1893e3552b763835 +Author: Alexander Larsson +Date: 2010-07-23 + + Remove last users of eel_preferences and eel_gconf + +M libnemo-private/nemo-desktop-link-monitor.c +M libnemo-private/nemo-directory-background.c +M libnemo-private/nemo-global-preferences.c +M libnemo-private/nemo-global-preferences.h +M libnemo-private/nemo-icon-container.c +M libnemo-private/nemo-program-choosing.c +M src/file-manager/fm-tree-view.c +M src/nemo-connect-server-dialog-main.c +M src/nemo-file-management-properties-main.c +M src/nemo-file-management-properties.c +M src/nemo-history-sidebar.c +M src/nemo-navigation-window-pane.c +M src/nemo-pathbar.c +M src/nemo-places-sidebar.c +M src/nemo-window-menus.c +D test/test-nemo-preferences-display.c +M test/test.c + +commit e85f7b768edd103a48dc18993edd431fd880f5d4 +Author: Alexander Larsson +Date: 2010-07-23 + + Convert last eel_preference users to raw gconf + + This is moslty the lockdown stuff, but we also access the background + setting. This should be converted to use the new gsettings when they + land. + +M libnemo-private/nemo-global-preferences.c +M libnemo-private/nemo-global-preferences.h +M src/file-manager/fm-desktop-icon-view.c +M src/file-manager/fm-directory-view.c +M src/nemo-connect-server-dialog-main.c + +commit 02bb707335bbee09bb033f69c87baab65f8c8051 +Author: Alexander Larsson +Date: 2010-07-23 + + Initialize gsettings in nemo-connect-server + +M src/nemo-connect-server-dialog-main.c + +commit f202dab6902b28fdf1deaad7e4d259c50ef6b575 +Author: Alexander Larsson +Date: 2010-07-23 + + Remove remnants of old file-limit preference + +M libnemo-private/nemo-directory-async.c +M libnemo-private/nemo-directory.c +M libnemo-private/nemo-directory.h +M src/file-manager/fm-directory-view.c +M src/file-manager/fm-directory-view.h + +commit 97bbb3cd5029157fe044ad1949620ed6ee4f2278 +Author: Alexander Larsson +Date: 2010-07-23 + + Fix conversion of enable-delete + +M src/file-manager/fm-directory-view.c + +commit f495063f73e4949959678280186f99bb801f804b +Author: Alexander Larsson +Date: 2010-07-23 + + Move desktop-font preference to desktop settings + +M libnemo-private/nemo-global-preferences.h +M libnemo-private/org.gnome.nemo.gschema.xml.in +M src/file-manager/fm-desktop-icon-view.c + +commit 36c238331d19b9a33f13fcbaf49928f35b78ff8c +Author: Alexander Larsson +Date: 2010-07-23 + + Convert list-view preferences to gsettings + + Also removes unused default-use-manual-layout setting, and + joins the sort order preferences of the list view and the icon + view. + +M libnemo-private/nemo-global-preferences.c +M libnemo-private/nemo-global-preferences.h +M src/file-manager/fm-icon-view.c +M src/file-manager/fm-list-view.c +M src/nemo-file-management-properties.c + +commit 000b73a429932d9816aaf5e69cd521675b39b548 +Author: Alexander Larsson +Date: 2010-07-23 + + Move the sort order prefs from view-specific to common prefs + + We already only have one UI setting that controls both, so it makes + no sense to have two settings. + +M libnemo-private/org.gnome.nemo.gschema.xml.in + +commit 77207d5ff5bade458446d5783fe6a99fc38ac6de +Author: Alexander Larsson +Date: 2010-07-23 + + Add eel_g_settings_add_auto_strv + +M eel/eel-glib-extensions.c +M eel/eel-glib-extensions.h + +commit 1f2e9750da78aab404f4bda66889c9c5dc6adc94 +Author: Alexander Larsson +Date: 2010-07-22 + + Remove unused NEWS side pane prefs + +M libnemo-private/nemo-global-preferences.h + +commit 80a26e69ad2383d3aca093ed993e7ff3f8a1bc5b +Author: Alexander Larsson +Date: 2010-07-22 + + Convert compact view prefs to gsettings + +M libnemo-private/nemo-global-preferences.c +M libnemo-private/nemo-global-preferences.h +M src/file-manager/fm-icon-view.c +M src/nemo-file-management-properties.c + +commit 706efc521fec6035d644600b18afdfe20ac9d472 +Author: Alexander Larsson +Date: 2010-07-22 + + Convert tree sidebar prefs to gsettings + +M libnemo-private/nemo-global-preferences.c +M libnemo-private/nemo-global-preferences.h +M src/file-manager/fm-tree-view.c +M src/nemo-file-management-properties.c + +commit f6697ac99280f4fd9b8920d52bcc7407fd09c15c +Author: Alexander Larsson +Date: 2010-07-22 + + Convert desktop preferences to gsettings + +M libnemo-private/nemo-desktop-link-monitor.c +M libnemo-private/nemo-desktop-link.c +M libnemo-private/nemo-global-preferences.c +M libnemo-private/nemo-global-preferences.h +M libnemo-private/nemo-icon-container.c +M libnemo-private/org.gnome.nemo.gschema.xml.in +M src/nemo-file-management-properties.c +M src/nemo-file-management-properties.ui + +commit 43652872e6b5644c831a9041c9d2e3e22a8ef773 +Author: Alexander Larsson +Date: 2010-07-22 + + Fix up desktop-is-home-dir gsettings conversion + +M libnemo-private/nemo-file-utilities.c + +commit 831787a7460655ebbac3499d399d72d45b1cdc60 +Author: Alexander Larsson +Date: 2010-07-22 + + Fix desktop-font gsettings conversion + +M src/file-manager/fm-desktop-icon-view.c + +commit df9c8ce6b162f37fe9372ee8b9e5c4798c9033e0 +Author: Alexander Larsson +Date: 2010-07-22 + + Convert icon-view preferences to gsettings + +M libnemo-private/nemo-file.c +M libnemo-private/nemo-global-preferences.c +M libnemo-private/nemo-global-preferences.h +M libnemo-private/nemo-icon-container.c +M libnemo-private/nemo-thumbnails.c +M src/file-manager/fm-desktop-icon-view.c +M src/file-manager/fm-directory-view.c +M src/file-manager/fm-icon-container.c +M src/file-manager/fm-icon-view.c +M src/nemo-file-management-properties.c + +commit 467af3b7e13fcc51ad1ecafd05bbfd4a4f7d9541 +Author: Alexander Larsson +Date: 2010-07-22 + + Add some more g_settings auto helpers to eel-glib-extensions + +M eel/eel-glib-extensions.c +M eel/eel-glib-extensions.h + +commit 75ade49a17470a86354eb8b591212d512c2ab08b +Author: Alexander Larsson +Date: 2010-07-22 + + Convert preview settings to gsettings + +M libnemo-private/nemo-file.c +M libnemo-private/nemo-global-preferences.c +M libnemo-private/nemo-global-preferences.h +M src/file-manager/fm-directory-view.c +M src/file-manager/fm-icon-view.c +M src/nemo-file-management-properties.c + +commit bcf929af833a83aba7ab58b7ae85697a288d006d +Author: Alexander Larsson +Date: 2010-07-22 + + Convert show-directory-item-counts to gsettings + +M libnemo-private/nemo-directory.c +M libnemo-private/nemo-file.c +M libnemo-private/nemo-global-preferences.c +M libnemo-private/nemo-global-preferences.h +M src/nemo-file-management-properties.c +M src/nemo-sidebar-title.c + +commit 4b5a2c833296abfb2ea28c0cca45d1a748d8a0d1 +Author: Alexander Larsson +Date: 2010-07-22 + + Convert show-text-in-icons to gsettings + +M libnemo-private/nemo-directory.c +M libnemo-private/nemo-file.c +M libnemo-private/nemo-global-preferences.c +M libnemo-private/nemo-global-preferences.h +M src/nemo-file-management-properties.c + +commit 184d31a6773358c1d081c82e508cd4c369e6a711 +Author: Alexander Larsson +Date: 2010-07-22 + + Remove unused search-bar-type setting + +M libnemo-private/nemo-global-preferences.c +M libnemo-private/nemo-global-preferences.h + +commit 3f87495987c2db24002e48da344e96243a5c70e2 +Author: Alexander Larsson +Date: 2010-07-22 + + Convert default-folder-view to gsettings + +M libnemo-private/nemo-global-preferences.c +M libnemo-private/nemo-global-preferences.h +M src/nemo-file-management-properties.c + +commit 87aa83c53183b02ca78fedf3c39b4ff15ad09e11 +Author: Alexander Larsson +Date: 2010-07-22 + + Convert sort-directories-first to gsettings + +M libnemo-private/nemo-global-preferences.c +M libnemo-private/nemo-global-preferences.h +M src/file-manager/fm-directory-view.c +M src/nemo-file-management-properties.c + +commit c6a6fb894cf9bd12fbd12977ab5ccd9e58540ae1 +Author: Alexander Larsson +Date: 2010-07-22 + + Conver window-state to gsettings + +M libnemo-private/nemo-global-preferences.c +M libnemo-private/nemo-global-preferences.h +M src/nemo-application.c +M src/nemo-navigation-window-pane.c +M src/nemo-navigation-window.c + +commit adee5018f3a4985cf8d538a998f32ed9bb6a6ffd +Author: Alexander Larsson +Date: 2010-07-22 + + Convert install-mime-activation to gsettings + +M libnemo-private/nemo-global-preferences.c +M libnemo-private/nemo-global-preferences.h +M libnemo-private/nemo-mime-actions.c + +commit a7163bb6c91c40a8dea2e3b6c34623a0449053a4 +Author: Alexander Larsson +Date: 2010-07-22 + + convert exit with last window to gsettings + +M libnemo-private/nemo-global-preferences.c +M libnemo-private/nemo-global-preferences.h +M src/nemo-main.c + +commit e167d6f663fc2c420d939f5cbb24c6463b03e8c2 +Author: Alexander Larsson +Date: 2010-07-22 + + Convert new tab position to gsettings + +M libnemo-private/nemo-global-preferences.c +M libnemo-private/nemo-global-preferences.h +M libnemo-private/nemo-mime-actions.c +M src/nemo-navigation-window-menus.c +M src/nemo-window-manage-views.c + +commit 42e9d22c84a3f54dfaa6da39243dd07c18a7cb9c +Author: Alexander Larsson +Date: 2010-07-22 + + Convert always-use-browser to gsettings + +M libnemo-private/nemo-global-preferences.c +M libnemo-private/nemo-global-preferences.h +M src/file-manager/fm-directory-view.c +M src/nemo-application.c +M src/nemo-bookmarks-window.c +M src/nemo-connect-server-dialog-nonmain.c +M src/nemo-file-management-properties.c +M src/nemo-navigation-window-menus.c +M src/nemo-navigation-window.c +M src/nemo-window-manage-views.c + +commit 97d62a1d402853f2dd328a53cb7e94581b8e2498 +Author: Alexander Larsson +Date: 2010-07-22 + + Convert click-policy to GSettings + +M libnemo-private/nemo-global-preferences.c +M libnemo-private/nemo-global-preferences.h +M libnemo-private/nemo-icon-canvas-item.c +M src/file-manager/fm-directory-view.c +M src/file-manager/fm-icon-view.c +M src/file-manager/fm-list-view.c +M src/nemo-file-management-properties.c +M src/nemo-history-sidebar.c + +commit cf4f7f10baa305cc3cbacb0b3c27c1eb45ae65f4 +Author: Alexander Larsson +Date: 2010-07-22 + + Convert executable-text-activation to GSettings + +M libnemo-private/nemo-global-preferences.c +M libnemo-private/nemo-global-preferences.h +M libnemo-private/nemo-mime-actions.c +M src/nemo-file-management-properties.c + +commit e3777c0e025815fd40908ea826f0091ecfe84fb0 +Author: Alexander Larsson +Date: 2010-07-22 + + Convert mouse prefs to gsettings + +M libnemo-private/nemo-global-preferences.c +M libnemo-private/nemo-global-preferences.h +M src/nemo-navigation-window.c + +commit 202b69146a1fb42e147d1ca6f8694b27d8ada28b +Author: Alexander Larsson +Date: 2010-07-22 + + Convert date-format to gsettings + +M libnemo-private/nemo-directory.c +M libnemo-private/nemo-file.c +M libnemo-private/nemo-global-preferences.c +M libnemo-private/nemo-global-preferences.h +M src/nemo-file-management-properties.c + +commit 4c3067f86f9dfb848ab941ea8a2fb8aeb2c34944 +Author: Alexander Larsson +Date: 2010-07-22 + + Add eel_g_settings_add_auto_enum + +M eel/eel-glib-extensions.c +M eel/eel-glib-extensions.h + +commit 7abbb99a0e16be6050d61719a6b69197746ed7e4 +Author: Alexander Larsson +Date: 2010-07-22 + + Convert show-advanced-persmissions to gsettings + +M libnemo-private/nemo-global-preferences.c +M libnemo-private/nemo-global-preferences.h +M src/file-manager/fm-properties-window.c + +commit 9318df841a5a0ccd0723e2d5dbce8d2ddfd89b1d +Author: Alexander Larsson +Date: 2010-07-21 + + Convert show-hidden-files to gsettings and merge it with + show-backup-files + +M libnemo-private/nemo-desktop-directory-file.c +M libnemo-private/nemo-desktop-directory.c +M libnemo-private/nemo-desktop-icon-file.c +M libnemo-private/nemo-directory-async.c +M libnemo-private/nemo-directory-private.h +M libnemo-private/nemo-directory.c +M libnemo-private/nemo-directory.h +M libnemo-private/nemo-file-private.h +M libnemo-private/nemo-file.c +M libnemo-private/nemo-file.h +M libnemo-private/nemo-global-preferences.c +M libnemo-private/nemo-global-preferences.h +M libnemo-private/nemo-merged-directory.c +M libnemo-private/nemo-search-directory.c +M libnemo-private/nemo-vfs-directory.c +M libnemo-private/nemo-vfs-file.c +M src/file-manager/fm-directory-view.c +M src/file-manager/fm-tree-model.c +M src/file-manager/fm-tree-view.c +M src/nemo-file-management-properties.c +M src/nemo-window-menus.c +M test/test-nemo-directory-async.c + +commit 036ae8def6b46048b8d3db36ae944f3d6c6523de +Author: Alexander Larsson +Date: 2010-07-21 + + Initialize global preferences in nemo-file-management-properties + +M src/nemo-file-management-properties-main.c + +commit f5b77ef6fb16d0378916a0b9e99161694480a0b3 +Author: Alexander Larsson +Date: 2010-07-21 + + Remove declaration of nonexisting functions + +M libnemo-private/nemo-file-utilities.h + +commit 8c13219e9a44e90e1e74ea20a440dc763b5892ed +Author: Alexander Larsson +Date: 2010-07-21 + + Convert desktop preferences to gsettings + +M libnemo-private/nemo-desktop-directory.c +M libnemo-private/nemo-file-utilities.c +M libnemo-private/nemo-global-preferences.c +M libnemo-private/nemo-global-preferences.h +M src/file-manager/fm-desktop-icon-view.c +M src/nemo-application.c +M src/nemo-main.c +M src/nemo-pathbar.c +M src/nemo-places-sidebar.c + +commit 77f7a0378921b98f9b9bd0347acc25aabaa954dd +Author: Alexander Larsson +Date: 2010-07-21 + + Convert enable-delete to gsettings + +M libnemo-private/nemo-global-preferences.c +M libnemo-private/nemo-global-preferences.h +M src/file-manager/fm-directory-view.c +M src/file-manager/fm-tree-view.c +M src/nemo-file-management-properties.c + +commit 85cd2e45893a561ebd739c9bca595a1ef9a4f136 +Author: Alexander Larsson +Date: 2010-07-21 + + Convert confirm-trash preference to gsettings + +M libnemo-private/nemo-file-operations.c +M libnemo-private/nemo-global-preferences.c +M libnemo-private/nemo-global-preferences.h +M src/file-manager/fm-directory-view.c +M src/nemo-file-management-properties.c + +commit 924e9ee3ad889d9a8abc63c79c79c1cb25aaf0cf +Author: Alexander Larsson +Date: 2010-07-21 + + Convert media handling preferences to gsettings + +M libnemo-private/nemo-autorun.c +M libnemo-private/nemo-global-preferences.c +M libnemo-private/nemo-global-preferences.h +M src/nemo-application.c +M src/nemo-file-management-properties.c + +commit d6ab21e01e525f7c18b6c592802cc4f3b8764665 +Author: Alexander Larsson +Date: 2010-07-21 + + Convert side pane width to gsettings + +M libnemo-private/nemo-global-preferences.c +M libnemo-private/nemo-global-preferences.h +M src/nemo-navigation-window.c + +commit df4dcf7dc10b40af61e2922dbfd728ffdb575e76 +Author: Alexander Larsson +Date: 2010-07-21 + + Convert side pane background to gsettings + +M libnemo-private/nemo-global-preferences.h +M src/nemo-information-panel.c + +commit 352e84790d3738a8d1e965ccd0f911c290dfef5d +Author: Alexander Larsson +Date: 2010-07-21 + + Convert background prefs to GSettings + +M libnemo-private/nemo-directory-background.c +M libnemo-private/nemo-global-preferences.h + +commit 096b906da1e22b9ece5e568f195961ac40cae542 +Author: Alexander Larsson +Date: 2010-07-21 + + Create the global nemo_preferences GSettings object + +M libnemo-private/nemo-global-preferences.c +M libnemo-private/nemo-global-preferences.h + +commit c70466a133e6ca670e998af11bdc39aa2aec4825 +Author: Alexander Larsson +Date: 2010-07-21 + + Remove deprecated prefs for nemo theme + +M libnemo-private/nemo-directory-background.c +M libnemo-private/nemo-global-preferences.c +M libnemo-private/nemo-global-preferences.h +M libnemo-private/nemo-icon-container.c +M src/nemo-property-browser.c + +commit a31e758e00b714a6897ebc6adf11c1599455b7f6 +Author: Alexander Larsson +Date: 2010-07-21 + + Rename sidebar ids as per the new gsettings pref names + +M src/file-manager/fm-tree-view.h +M src/nemo-emblem-sidebar.h +M src/nemo-history-sidebar.h +M src/nemo-information-panel.h +M src/nemo-notes-viewer.h +M src/nemo-places-sidebar.h + +commit b33acb0abea58b2e980876ccde9fdc3bfce5c589 +Author: Alexander Larsson +Date: 2010-07-21 + + Add GSettings schemas for nemo + +M configure.in +M libnemo-private/Makefile.am +A libnemo-private/org.gnome.media-handling.gschema.xml.in +A libnemo-private/org.gnome.nemo.gschema.xml.in + +commit ac038a0d90a4d59b564803be2698bc883672ab84 +Author: Tomas Bzatek +Date: 2010-07-21 + + Set default value for the navigation_window_saved_maximized gconf key + + And avoid gconftool messages like + WARNING: Failed to parse default value `' for schema + (/schemas/apps/nemo/preferences/navigation_window_saved_maximized) + +M libnemo-private/apps_nemo_preferences.schemas.in + +commit d992764b81b8b77efd0a68629372b569fb09dd11 +Author: Fran Diéguez +Date: 2010-07-21 + + Updated Galician translations + +M po/gl.po + +commit fed4221b81043420447bc45502314a4c1b6b12d6 +Author: Chao-Hsiung Liao +Date: 2010-07-20 + + Updated Traditional Chinese translation(Hong Kong and Taiwan) + +M po/zh_HK.po +M po/zh_TW.po + +commit bed28df1062042de23e939aeda409a9fc35d8eac +Author: Mario Blättermann +Date: 2010-07-18 + + [i18n] Updated German translation + +M po/de.po + +commit c7aae474dd404a015beb7413bab7d6d517ff2951 +Author: Jorge González +Date: 2010-07-18 + + Updated Spanish translation + +M po/es.po + +commit ab1ddd9e2bb2401a32cc0ebc587401b815504bd5 +Author: Yaron Shahrabani +Date: 2010-07-18 + + Updated Hebrew translation. + +M po/he.po + +commit faf1c74e479a6fb44fc1b51ee8e3319ee646cb81 +Author: Sense Hofstede +Date: 2010-07-18 + + Updated Frisian translations and added the language to LINGUAS + +M po/LINGUAS +A po/fy.po + +commit b8f5d27f7deadb985d7574bc0547f2c616d8e9b9 +Author: Cosimo Cecchi +Date: 2010-07-17 + + Don't set a NULL argv for GApplication (#624508) + +M src/nemo-application.c + +commit 521e3c8481fcf2af398d2ed62692d415448386cd +Author: Cosimo Cecchi +Date: 2010-07-17 + + Refer to 3.0 instead of 2.32 in a string (#624286) + +M src/nemo-application.c + +commit b145c20c58e465114d372590e460a98c40a770dc +Author: Diego Escalante Urrelo +Date: 2010-07-15 + + nemo-recent: gtk_recent_manager_set_limit is deprecated + + Views are expected to filter results on their own, not the model. + + Bug #624506 + +M libnemo-private/nemo-recent.c + +commit 24bfbbb615a507b005d3b8d4bdea9efd69387ea0 +Author: Mario Blättermann +Date: 2010-07-16 + + [i18n] Updated German translation + +M po/de.po + +commit 837ed1bf4741550b9c41f041ee418af1912ee320 +Author: Yaron Shahrabani +Date: 2010-07-16 + + Updated Hebrew translation. + +M po/he.po + +commit 397f9a3b66edfde3974256c7c4ac3e031ef99328 +Author: Diego Escalante Urrelo +Date: 2010-07-13 + + Update GtkNotebook callbacks to gtk+ master + + GtkNotebookPage is gone in switch-page, it's just a GtkWidget now. + + Bug #624295 + +M src/nemo-navigation-window-pane.c +M src/nemo-side-pane.c + +commit e3b7cebba5c6be648286905fe116e744eb532f16 +Author: du baodao +Date: 2010-07-15 + + Update Simplified Chinese translation. + +M po/zh_CN.po + +commit fe2322d56aace170295ba51221d0ad0cc66a1c17 +Author: Paolo Borelli +Date: 2010-07-15 + + Remove leftover comments. + + These eel functions do not exist anymore. + +M eel/eel-gdk-extensions.c + +commit 5fab3e456c7bf05bb2b080ef97b7aa1470390806 +Author: Lucian Adrian Grijincu +Date: 2010-07-15 + + po: Updated Romanian translation + + completed translation + +M po/ro.po + +commit a13a4faf32ab442734a11bf2d3855007231f8b6a +Author: Lucian Adrian Grijincu +Date: 2010-07-15 + + po: Updated Romanian translation + + media & trash consistency. + +M po/ro.po + +commit cde01839725762691f663d6d7cfec710024781b1 +Author: Lucian Adrian Grijincu +Date: 2010-07-14 + + po: Updated Romanian translation + + Signed-off-by: Lucian Adrian Grijincu + +M po/ro.po + +commit aea71b38892a2a0932472521d0414f8ad4ce9939 +Author: Kjartan Maraas +Date: 2010-07-13 + + Updated Norwegian bokmål translation + +M po/nb.po + +commit 683c15d3400988e5458ad91036b000c47859dec5 +Author: Fran Diéguez +Date: 2010-07-13 + + Updated Galician translations + +M po/gl.po + +commit 92076643ef6b11b9ffe5c9624ad50dccc2b6269e +Author: Cosimo Cecchi +Date: 2010-07-12 + + Release 2.31.5. + +M NEWS +M configure.in + +commit 8ef7a9a1a1bdd02926b8b1fe59a6e97cf6c69574 +Author: Marcus Carlson +Date: 2010-07-10 + + Adds key binding for expanding and collapsing folders in list view + + https://bugzilla.gnome.org/show_bug.cgi?id=504869 + +M src/file-manager/fm-list-view.c + +commit 525b54d9a2385efdae21fd0b0da3631ba0071ce1 +Author: Marcus Carlson +Date: 2010-07-11 + + Ask for confirmation before opening more than 5 files (#596577) + +M libnemo-private/nemo-mime-actions.c + +commit b6fa38579dae68afd5b6ac71c98f7868e0a1731a +Author: Marcus Carlson +Date: 2010-07-10 + + Remove unnecessary include and remove a FIXME (#544211) + + Include of nemo-desktop-window.h in nemo-window.c is not + needed anymore + +M src/nemo-window.c + +commit f12805d978c576e5f93f48815565f6e02fdd38ff +Author: Marcus Carlson +Date: 2010-07-10 + + Eat Control + v to not enable type ahead (#350819) + +M libnemo-private/nemo-icon-container.c +M src/file-manager/fm-list-view.c + +commit 0a1cf043c9ec90b7b3da7e454eb860c5e2347866 +Author: Marcus Carlson +Date: 2010-07-11 + + Also change filename on disk when renaming a .desktop file (#145125) + +M libnemo-private/nemo-file.c + +commit 0fb0e54f06ec1090a0e3267a48bc66cc50603e82 +Author: Marcus Carlson +Date: 2010-07-10 + + Fixed typo (#624055) + +M src/nemo-file-management-properties.ui + +commit 34936ae8336e32359b3cc36b1bb2ba850313f4f5 +Author: Marcus Carlson +Date: 2010-07-10 + + Change clicked signal to toggled to not get into bad state (#440435) + +M src/nemo-property-browser.c + +commit a0bd71abc1d664d2ae3b949a3181041cdc162f2c +Author: Cosimo Cecchi +Date: 2010-07-10 + + Compile cleanly with GCC 4.5. + +M libnemo-private/nemo-directory-background.c +M libnemo-private/nemo-icon-dnd.c +M src/nemo-information-panel.c + +commit cd447610e3a8b32ec85d32cac7a12efcc33238ee +Author: Fran Diéguez +Date: 2010-07-07 + + Updated Galician translations + +M po/gl.po + +commit 8c033772f9ddf816103a21a6689e8a18831090fa +Author: Marcus Carlson +Date: 2010-07-05 + + Remove "Browse Folder" on Desktop when browsing is set to default + (#563829) + +M src/file-manager/fm-directory-view.c + +commit 1f6f65c9547b430eb1414758a50d2aeea142869e +Author: Marcus Carlson +Date: 2010-07-05 + + Don't eat Alt+Right/Left in icon container + + So they do not interfere with history browsing + + https://bugzilla.gnome.org/show_bug.cgi?id=411664 + +M libnemo-private/nemo-icon-container.c + +commit e23140e8aea753ebb4195f1cfe728c62367fbdeb +Author: Jorge González +Date: 2010-07-04 + + Updated Spanish translation + +M po/es.po + +commit aca606ed03617ed15dc87ad34c1e0b72eda72928 +Author: A. Walton +Date: 2010-07-04 + + Use the correct icon for autorunning Open Folder + + According to the HIG, this icon should be 'folder-open'. + This closes GNOME bug #608060. + +M libnemo-private/nemo-autorun.c + +commit c71ac3d1e00c3013a6736ac6dcf3ad074380b8a3 +Author: YunQiang Su +Date: 2010-07-04 + + Updated zh_CN translation. + +M po/ChangeLog +M po/zh_CN.po + +commit 6b65b65f773e2ad27a23d40194b64fa911ae888c +Author: Luca Ferretti +Date: 2010-03-06 + + Fix mnemonics and capitalization for extra pane menu entries + + https://bugzilla.gnome.org/show_bug.cgi?id=612021 + +M src/file-manager/fm-directory-view.c +M src/nemo-navigation-window-menus.c + +commit bb1ecb90fea17606c0eec2e36be7f60f47bb43ff +Author: Ray Strode +Date: 2010-07-04 + + Support overriding .gnome2 directory. + + The env var GNOME22_USER_DIR should be used for that. + + https://bugzilla.gnome.org/show_bug.cgi?id=614030 + +M libnemo-private/nemo-file-utilities.c +M src/file-manager/fm-directory-view.c + +commit 5d86a47524e86980ec0ac21728ec76911d6bface +Author: A. Walton +Date: 2010-07-04 + + Set accessible name for the desktop. + + See https://bugzilla.gnome.org/show_bug.cgi?id=555425 + +M src/nemo-desktop-window.c + +commit 3094265abbfd3b70b39bb1dbd9625a81faf0fbca +Author: Tomeu Vizoso +Date: 2010-02-04 + + Use G_PASSWORD_SAVE_FOR_SESSION by default. + + When mounting volumes that require a password, present by default the + option G_PASSWORD_SAVE_FOR_SESSION. + + https://bugzilla.gnome.org/show_bug.cgi?id=587909 + +M libnemo-private/nemo-file-operations.c +M libnemo-private/nemo-mime-actions.c +M src/file-manager/fm-directory-view.c +M src/nemo-connect-server-dialog-main.c +M src/nemo-window-manage-views.c + +commit cfc72ae3ea86b63660e1bf153a9e33844e5b2281 +Author: Thomas Karpiniec +Date: 2010-06-08 + + Use correct logic for delaying updates while loading + + See + http://mail.gnome.org/archives/nemo-list/2010-June/msg00023.html + and https://bugzilla.gnome.org/show_bug.cgi?id=599680 for details. + +M src/file-manager/fm-directory-view.c + +commit ae1e7474830fb98eea93e1f4aadbf6e2b6caefc2 +Author: Marcus Carlson +Date: 2010-07-03 + + Properly handle G_IO_ERROR_FAILED_HANDLED (#601096). + + This avoid showing an useless message dialog when the user did + not give + authorization for mounting a device. + +M src/nemo-window-manage-views.c + +commit 41526834650640aa961d026ce5dea6025f668900 +Author: Marcus Carlson +Date: 2010-07-02 + + Change 'Close all Windows' shortcut to Ctrl+Q. + + Fixes bug #615808. + +M src/nemo-navigation-window-menus.c + +commit 1db7342c3fdc18ddea42266ae25ba3a6585c04b7 +Author: Jorge González +Date: 2010-07-01 + + Updated Spanish translation + +M po/es.po + +commit ab4a1d8234a63ce5c4ac96b89b624a1b216bd289 +Author: Ted M Lin +Date: 2009-09-02 + + Cleanup non-existant folders on pathbar (bug #310205). + +M src/nemo-pathbar.c + +commit 41e9a662b329c3438ee0c4c029cd4cf8d22d9574 +Author: Cosimo Cecchi +Date: 2010-07-01 + + Require GTK+ 2.90.5. + + So that we can drag in the right cairo dependency. + +M configure.in + +commit 375b1f4335666f9ba8d7e4f8003baecc1b9ec033 +Author: Cosimo Cecchi +Date: 2010-07-01 + + Add missing modeline. + +M eel/eel-canvas-rect-ellipse.c + +commit 3b671558f1d8ac1ee72e8af13d4ede6ab549a400 +Author: Cosimo Cecchi +Date: 2010-07-01 + + Fix build with GTK+3 master, use cairo_region_t. + +M eel/eel-canvas-rect-ellipse.c +M eel/eel-canvas.c +M eel/eel-editable-label.c + +commit d1446086855ec1a673b144befff5b707244b998c +Author: Cosimo Cecchi +Date: 2010-07-01 + + Don't set has_custom_name for current location bookmark. + + So that renaming the relevant location can trigger updates in the + listeners. + +M src/nemo-window-manage-views.c + +commit 7f6f20fd30dd989b85dbf132fd06e7e3e850d82c +Author: Cosimo Cecchi +Date: 2010-07-01 + + Remove dead code. + +M src/nemo-window-slot.c + +commit 90ebd95a7dbc3f7bef21e39c14fe04d4849fef37 +Author: Marcus Carlson +Date: 2010-06-30 + + Change "Clean Up by Name" to "Organize Desktop by Name" (#530136) + +M src/file-manager/fm-icon-view.c + +commit 83944789404d745e71f4b4a2f29c384cd44eba00 +Author: Marcus Carlson +Date: 2010-07-01 + + Ignore > 2 clicks in the icon container (#621098). + +M libnemo-private/nemo-icon-container.c + +commit 7faea402e1e37d88e5532dea712566312c981f92 +Author: Kristjan Schmidt +Date: 2010-06-29 + + Updated Esperanto translation + +M po/eo.po + +commit 9c903fd8a5b8daaa265a8d2c05603dbed9447d60 +Author: Cosimo Cecchi +Date: 2010-06-29 + + Release 2.31.4. + +M NEWS +M configure.in + +commit a4e6c93d22394b086055ce92d0e06576958f969b +Author: Mattias Põldaru +Date: 2010-06-27 + + [l10n] Updated Estonian translation + +M po/et.po + +commit aaaf14437c04bd7ee8c53554e93ea47e615ae2d9 +Author: Ivar Smolin +Date: 2010-06-27 + + [l10n] Updated Estonian translation + +M po/et.po + +commit 0187296a18d2e30f5f30fab4528e42de42f7692a +Author: Bastien Nocera +Date: 2010-06-23 + + Update pkg-config files for GTK+ 3.x + +M libnemo-extension/libnemo-extension-uninstalled.pc.in +M libnemo-extension/libnemo-extension.pc.in + +commit 3031b7d81721c2f54ce5412779e53ff6ebdf1fe2 +Author: Bruno Brouard +Date: 2010-06-23 + + Updated French translation + +M po/fr.po + +commit 48f2f2b3bb2abe397e799b74fd9a7140f52e307d +Author: Matthias Clasen +Date: 2010-06-21 + + Depend on the right gtk gir file + + We need Gtk-3.0.gir now. + +M libnemo-extension/Makefile.am + +commit 8f77b22b6091f87986abbd42d7637edf17e473a6 +Author: Frédéric Péters +Date: 2010-06-20 + + [build] link against gail-3.0 (GNOME bug 622155) + +M configure.in + +commit dc0ad00d37a68c009f555300cef427c4fb38d82c +Author: Fran Diéguez +Date: 2010-06-20 + + Updated Galician translations + +M po/gl.po + +commit f2e87dbcdb5535724a59ab9c69afe038b124b2bf +Author: Matthias Clasen +Date: 2010-06-19 + + Use the right datatype in the schema + + GConf calls it a bool, not a boolean. + +M libnemo-private/apps_nemo_preferences.schemas.in + +commit 45c9eb9bcbdddc91b4f53ecbd5731fc7eec88ac3 +Author: Cosimo Cecchi +Date: 2010-06-18 + + Move some variables around. + +M src/nemo-application.c + +commit e5d50bfd152e3d248519160a82908470973a539f +Author: Cosimo Cecchi +Date: 2010-06-18 + + Port to GApplication. + + Drop the libunique dependency. + +M src/nemo-application.c +M src/nemo-application.h +M src/nemo-main.c + +commit f75a6809f97033c75bf89cb6239415540953e9bb +Author: Claudio Saavedra +Date: 2010-06-18 + + Build against GTK+ 3.0 (#621938). + +M configure.in + +commit 89456b131830476d48234cd0ef32faf287496afb +Author: Cosimo Cecchi +Date: 2010-06-18 + + Use gtk_widget_get_child_requisition for the pathbar. + + Basically backport this GTK+ commit to make the pathbar work properly + with width-for-height. + + http://git.gnome.org/browse/gtk+/commit/?id=0b92348077489047af98f360fd9bb3d59ee6d04a + +M src/nemo-pathbar.c + +commit c9e20bc18f5590b9377cab3b4ab5fc72108f7413 +Author: Cosimo Cecchi +Date: 2010-06-18 + + Don't fix relative paths for URIs. + +M src/nemo-location-entry.c + +commit 48c0e19e60eee88f38a6e9c7a51211376a4c90f9 +Author: Cosimo Cecchi +Date: 2010-06-17 + + Add a border around info bars (#621366). + +M src/file-manager/fm-directory-view.c +M src/nemo-window-slot.c +M src/nemo-window-slot.h + +commit eae04584d51b9e058c6dcaea488880d8a43409bf +Author: Cosimo Cecchi +Date: 2010-06-17 + + Update for GLib 2.25.9 API changes (#621879). + +M configure.in +M libnemo-private/nemo-mime-actions.c +M src/nemo-application.c +M src/nemo-application.h + +commit 5a53ae7e699edb480b76b72df99fdf1dd68eb8f8 +Author: A S Alam +Date: 2010-06-15 + + Updating Punjabi Translation by A S Alam + +M po/pa.po + +commit 877f57375a200daceafc9f5b96b9802cfc21e500 +Author: A S Alam +Date: 2010-06-15 + + Updating Punjabi Translation by A S Alam + +M po/pa.po + +commit af984bc991757eeda233c6e335cc3f35e6329a97 +Author: Fran Diéguez +Date: 2010-06-13 + + Updated Galician translations + +M po/gl.po + +commit aefc1fc8d2a49e123c4c647cfa01499d4649ef6a +Author: Andrej Žnidaršič +Date: 2010-06-11 + + Updated Slovenian translation + +M po/sl.po + +commit ca0dbef16103f523b3dfb86e795447998f060b53 +Author: Cosimo Cecchi +Date: 2010-06-11 + + [src] remove a debug printf. + +M src/nemo-sidebar-title.c + +commit d667293d865797665b50de2b972297ae61881eb6 +Author: Cosimo Cecchi +Date: 2010-06-11 + + [build] bump GTK+ required version to 2.21.2. + +M configure.in + +commit d9f80b3f407b65f559c0ca47cddac41175ac353d +Author: Cosimo Cecchi +Date: 2010-06-11 + + [test] GSEAL test-eel-image-table. + +M test/test-eel-image-table.c + +commit 78287a76d6be97428d166f781385b86e18c9b6b8 +Author: Cosimo Cecchi +Date: 2010-06-11 + + [src] GSEAL nemo-zoom-control. + +M src/nemo-zoom-control.c + +commit bbeb350ef219f6e94d9eba6e78d0ebbdb2201a08 +Author: Cosimo Cecchi +Date: 2010-06-11 + + [src] GSEAL nemo-window. + +M src/nemo-window.c + +commit 44af78c3c205f88801a8bdfa3cb0a02f7cd87d3f +Author: Cosimo Cecchi +Date: 2010-06-11 + + [src] GSEAL nemo-window-manage-views. + +M src/nemo-window-manage-views.c + +commit b5407396039035e6f4e78c2d9d03891d76dd93bd +Author: Cosimo Cecchi +Date: 2010-06-11 + + [src] GSEAL nemo-window-bookmarks. + +M src/nemo-window-bookmarks.c + +commit 2675ebc0873e71af0a5f8cc3463313525bfeebac +Author: Cosimo Cecchi +Date: 2010-06-11 + + [src] GSEAL nemo-spatial-window. + +M src/nemo-spatial-window.c + +commit 11736c1fcbe581eab9c4a86619cfff0e71bbef38 +Author: Cosimo Cecchi +Date: 2010-06-11 + + [src] GSEAL nemo-sidebar-title. + +M src/nemo-sidebar-title.c + +commit 24b94447cb798ee03c9d21973f2d650c4cec2ad9 +Author: Cosimo Cecchi +Date: 2010-06-11 + + [src] GSEAL nemo-side-pane. + +M src/nemo-side-pane.c + +commit 2aa9bed8a98cbf68fec53b88e7d05f86f158bd07 +Author: Cosimo Cecchi +Date: 2010-06-11 + + [src] GSEAL nemo-query-editor. + +M src/nemo-query-editor.c + +commit 075446f3751566ec1187d6cdb3751456c9c50867 +Author: Cosimo Cecchi +Date: 2010-06-11 + + [src] GSEAL nemo-property-browser. + +M src/nemo-property-browser.c + +commit 06a2e40ccc45d82692997ee29e56314a45ea373f +Author: Cosimo Cecchi +Date: 2010-06-11 + + [src] GSEAL nemo-places-sidebar. + +M src/nemo-places-sidebar.c + +commit 61006bd18b748c50bde01efe4abcb038a710ee11 +Author: Cosimo Cecchi +Date: 2010-06-11 + + [src] GSEAL nemo-pathbar. + +M src/nemo-pathbar.c + +commit 791e4c7cf2f0ee3c5f8bd55b1867daea6d891000 +Author: Cosimo Cecchi +Date: 2010-06-11 + + [src] GSEAL nemo-notebook. + +M src/nemo-notebook.c + +commit 2b200c5bcaee4018a9fcf82a7b1e0076f2568588 +Author: Cosimo Cecchi +Date: 2010-06-11 + + [src] GSEAL nemo-navigation-window. + +M src/nemo-navigation-window.c + +commit cb1e2694bdaa8c8fbad8b2541f0efe354d81b1c0 +Author: Cosimo Cecchi +Date: 2010-06-11 + + [src] GSEAL nemo-navigation-window-menus. + +M src/nemo-navigation-window-menus.c + +commit a0d1ca75e37fd26135fe9c85d8d86dc75e831d86 +Author: Cosimo Cecchi +Date: 2010-06-11 + + [src] GSEAL nemo-location-dialog. + +M src/nemo-location-dialog.c + +commit 4bba151bdacd27a193c100cf771144b7d2501548 +Author: Cosimo Cecchi +Date: 2010-06-11 + + [src] GSEAL nemo-location-bar. + +M src/nemo-location-bar.c + +commit eab92fb34f344fcadaaaf17beb7609a1f2cab0fa +Author: Cosimo Cecchi +Date: 2010-06-11 + + [src] GSEAL nemo-information-panel. + +M src/nemo-information-panel.c + +commit 26f5fcc5efe27ca7f63b45d04a773caae6a0becd +Author: Cosimo Cecchi +Date: 2010-06-11 + + [src] GSEAL nemo-emblem-sidebar. + +M src/nemo-emblem-sidebar.c + +commit 45fc9cc4fae20e69e12ca14b767277d190978c71 +Author: Cosimo Cecchi +Date: 2010-06-11 + + [src] GSEAL nemo-desktop-window. + +M src/nemo-desktop-window.c + +commit ac4547b030a3b0b9ed60ff9bb2f783ac10a7d62b +Author: Cosimo Cecchi +Date: 2010-06-11 + + [src] GSEAL nemo-connect-server-dialog. + +M src/nemo-connect-server-dialog.c + +commit b43e268e738e8754eaa3d0e38a0cb5859f254241 +Author: Cosimo Cecchi +Date: 2010-06-11 + + [src] GSEAL nemo-application. + +M src/nemo-application.c + +commit c76136d88c314c17dbabca9ddd8808d297ceaee0 +Author: Cosimo Cecchi +Date: 2010-06-11 + + [file-manager] GSEAL fm-tree-view. + +M src/file-manager/fm-tree-view.c + +commit c764e246da912817929ae33075a3683a22bb3bf6 +Author: Cosimo Cecchi +Date: 2010-06-11 + + [file-manager] GSEAL fm-properties-window. + +M src/file-manager/fm-properties-window.c + +commit 0fe90a931acbef48d8b50b380ee05362ecdf0058 +Author: Cosimo Cecchi +Date: 2010-06-11 + + [file-manager] GSEAL fm-list-view. + +M src/file-manager/fm-list-view.c + +commit 8f9b6e75eb8eb5f9ece32963e53a69381fd65336 +Author: Cosimo Cecchi +Date: 2010-06-11 + + [file-manager] GSEAL fm-list-model. + +M src/file-manager/fm-list-model.c + +commit df190cef8cb35e0f5a717d8bd28b810ab8304137 +Author: Cosimo Cecchi +Date: 2010-06-11 + + [file-manager] GSEAL fm-icon-view. + +M src/file-manager/fm-icon-view.c + +commit eea532e7f0cf729c6e9e78744add5c8cde304ba4 +Author: Cosimo Cecchi +Date: 2010-06-11 + + [file-manager] GSEAL fm-ditem-page. + +M src/file-manager/fm-ditem-page.c + +commit 197a0101f756111b4f8712433586761c356051d3 +Author: Cosimo Cecchi +Date: 2010-06-11 + + [file-manager] GSEAL fm-directory-view. + +M src/file-manager/fm-directory-view.c + +commit 8ba99b676c20b359c7b46b9ae4e8432fbbf4ae8f +Author: Cosimo Cecchi +Date: 2010-06-11 + + [file-manager] GSEAL fm-desktop-icon-view. + +M src/file-manager/fm-desktop-icon-view.c + +commit 0405cc8c808247eff6672a1ae69fd35c6bda841b +Author: Cosimo Cecchi +Date: 2010-06-11 + + [ln-p] GSEAL nemo-undo. + +M libnemo-private/nemo-undo.c + +commit 8ce136d19d72559a7eeb0665b61607646ecf36d6 +Author: Cosimo Cecchi +Date: 2010-06-11 + + [ln-p] GSEAL nemo-tree-view-drag-dest. + +M libnemo-private/nemo-tree-view-drag-dest.c + +commit 8ad542cf15a6a7749c672def06a5198f93a40e12 +Author: Cosimo Cecchi +Date: 2010-06-11 + + [ln-p] GSEAL nemo-progress-info. + +M libnemo-private/nemo-progress-info.c + +commit a0d555cf31a6568038fb67c004c1085bec6de8cf +Author: Cosimo Cecchi +Date: 2010-06-11 + + [ln-p] GSEAL nemo-open-with-dialog. + +M libnemo-private/nemo-open-with-dialog.c + +commit 44f222288b33de74464567a1578fbf7ea69725d7 +Author: Cosimo Cecchi +Date: 2010-06-11 + + [ln-p] GSEAL nemo-keep-last-vertical-box. + +M libnemo-private/nemo-keep-last-vertical-box.c + +commit 3711a0db65ad8ca432d0359eb11b4cd31f799df6 +Author: Cosimo Cecchi +Date: 2010-06-11 + + [ln-p] GSEAL nemo-icon-dnd. + +M libnemo-private/nemo-icon-dnd.c + +commit e57bd6003efc33bfb97fd7aa46166eba105cc2a8 +Author: Cosimo Cecchi +Date: 2010-06-11 + + [ln-p] GSEAL nemo-icon-container. + +M libnemo-private/nemo-icon-container.c +M libnemo-private/nemo-icon-container.h + +commit 028a80a630e17df3ba23a6778459122b2e18da0b +Author: Bastien Nocera +Date: 2010-06-11 + + [ln-p] GSEAL nemo-icon-canvas-item. + +M libnemo-private/nemo-icon-canvas-item.c + +commit 92d8c2a24dbf5a1a902efef0da86dd23e43208db +Author: Bastien Nocera +Date: 2010-06-11 + + [ln-p] GSEAL nemo-horizontal-splitter. + +M libnemo-private/nemo-horizontal-splitter.c + +commit 2206f6c82c5a49769ccdede84d74bf595a0a57c1 +Author: Bastien Nocera +Date: 2010-06-11 + + [ln-p] GSEAL nemo-file-operations. + +M libnemo-private/nemo-file-operations.c + +commit dddf609f373f472bca41070296a54be7e67b7adf +Author: Bastien Nocera +Date: 2010-06-11 + + [ln-p] GSEAL nemo-file-conflict-dialog. + +M libnemo-private/nemo-file-conflict-dialog.c + +commit 0ea1e03d74713bcac0ad90a03092d8ed6d7d2528 +Author: Bastien Nocera +Date: 2010-06-11 + + [ln-p] GSEAL nemo-entry. + +M libnemo-private/nemo-entry.c + +commit a22a367740abe58100e8137ad750176ed79f5325 +Author: Bastien Nocera +Date: 2010-06-11 + + [ln-p] GSEAL nemo-dnd. + +M libnemo-private/nemo-dnd.c + +commit 3cd134fde66949514eb86b60795394f1aa7a2db6 +Author: Bastien Nocera +Date: 2010-06-11 + + [ln-p] GSEAL nemo-clipboard. + +M libnemo-private/nemo-clipboard.c + +commit fd6f9364d040814346b9995570a558c1d6cb081c +Author: Bastien Nocera +Date: 2010-06-11 + + [ln-p] GSEAL nemo-clipboard-monitor. + +M libnemo-private/nemo-clipboard-monitor.c + +commit 392e079433aed213889b972c906d8d0b1b4290d9 +Author: Bastien Nocera +Date: 2010-06-11 + + [ln-p] GSEAL nemo-cell-renderer-pixbuf-emblem. + +M libnemo-private/nemo-cell-renderer-pixbuf-emblem.c + +commit 3709f641bde70d96fb1feb0288521ced6dba7719 +Author: Bastien Nocera +Date: 2010-06-11 + + [ln-p] GSEAL nemo-bookmark. + +M libnemo-private/nemo-bookmark.c + +commit 756beaef00e01c686b061ea77d56c7aa6768d32e +Author: Bastien Nocera +Date: 2010-06-11 + + [ln-p] GSEAL nemo-autorun. + +M libnemo-private/nemo-autorun.c + +commit 47947617e14e9e3b676b0f8614bbe294f86dde86 +Author: Bastien Nocera +Date: 2010-06-11 + + [eel] GSEAL eel-wrap-table. + +M eel/eel-wrap-table.c + +commit 1db88082b3dddef066f718a44dd750a18b201dbd +Author: Bastien Nocera +Date: 2010-06-11 + + [eel] GSEAL eel-labeled-image. + +M eel/eel-labeled-image.c + +commit 963d2dbd1cca1b92bc35f6421ae8789d1b3f4f9d +Author: Bastien Nocera +Date: 2010-06-11 + + [eel] GSEAL eel-image-table. + +M eel/eel-image-table.c + +commit 6a2110eb0cda5f3c7d47f196b73336ec0227505b +Author: Bastien Nocera +Date: 2010-06-11 + + [eel] GSEAL eel-gtk-extensions. + +M eel/eel-gtk-extensions.c + +commit 239c62774c44ef6e192301379db19ad53c382742 +Author: Bastien Nocera +Date: 2010-06-11 + + [eel] GSEAL eel-gtk-container. + +M eel/eel-gtk-container.c + +commit f9273be48cb62cd39aa145fa715547ec077c1670 +Author: Bastien Nocera +Date: 2010-06-11 + + [eel] GSEAL eel-editable-label. + +M eel/eel-editable-label.c + +commit 3e8a76045a33c778f423befc1c16a5e26929d00e +Author: Bastien Nocera +Date: 2010-06-11 + + [eel] GSEAL eel-debug-drawing. + +M eel/eel-debug-drawing.c + +commit e07b688a3b8ec257a14087b696b3a02090f289ab +Author: Bastien Nocera +Date: 2010-06-11 + + [eel] GSEAL eel-canvas. + +M eel/eel-canvas.c +M eel/eel-canvas.h + +commit 191f491c9f0877c1e2c174e435898ba1e717c352 +Author: Bastien Nocera +Date: 2010-06-11 + + [eel] GSEAL eel-canvas-rect-ellipse. + +M eel/eel-canvas-rect-ellipse.c + +commit a63c3afa5c19083558c365fe6374ab5d85db3c98 +Author: Bastien Nocera +Date: 2010-06-11 + + [eel] GSEAL eel-background-box. + +M eel/eel-background.c + +commit 24cff3dc16b71105d1c096451357e6df6347b9d1 +Author: Bastien Nocera +Date: 2010-06-11 + + [eel] GSEAL eel-background-box. + +M eel/eel-background-box.c + +commit c357d232dd5cbfd7fdb3014dfff4034d01f8e66e +Author: Bastien Nocera +Date: 2010-06-11 + + [eel] GSEAL eel-art-gtk-extensions. + +M eel/eel-art-gtk-extensions.c + +commit dae50fa5b6aeb4f811fb0d8e35da999138653cd9 +Author: Bastien Nocera +Date: 2010-06-11 + + [eel] GSEAL eel-alert-dialog. + +M eel/eel-alert-dialog.c + +commit d104160104f50a3b2fd5e311578314e927ea73ca +Author: Bastien Nocera +Date: 2010-06-11 + + [eel] GSEAL eel-accessibility. + +M eel/eel-accessibility.c + +commit 0596f0121e6f931bfcd704cb9bcdc8ec0afdf024 +Author: Cosimo Cecchi +Date: 2010-06-08 + + Don't use 'File Browser' in the window title for browser mode + (#614848). + + We still use it if spatial mode is the default though. + Thanks to Marcus Carlson for the initial patch. + +M src/nemo-navigation-window.c + +commit c8c1dd8061d04fc002fa19cd643a95243a4a1468 +Author: Cosimo Cecchi +Date: 2010-06-07 + + Release 2.31.3. + +M NEWS +M configure.in + +commit 54b044b9eaa3614498bf4a56ea915ff3a46f5e6d +Author: Cosimo Cecchi +Date: 2010-06-07 + + Update the location bar and dialog to the new API. + + This also fixes bug #346422. Thanks to Amos Brocco for the initial + patch. + +M src/nemo-location-bar.c +M src/nemo-location-dialog.c + +commit 376f9ba0bdd25794a6bd2a57caa760b8d2cbb32d +Author: Cosimo Cecchi +Date: 2010-06-07 + + Support relative paths in NemoLocationEntry. + + This also adds a custom 'activate' implementation which converts a + relative path (if present) to an absolute one. + +M src/nemo-location-entry.c +M src/nemo-location-entry.h + +commit 613b6a8292296b097660f92566de81fa71d7a878 +Author: Cosimo Cecchi +Date: 2010-06-07 + + Use the new API to order files in the list view. + + This also closes bug #590077. Thanks to Holger Berndt for the initial + patch. + +M src/file-manager/fm-list-view.c + +commit 1459a109750d0e740fe1327cc029e342c02ce2d3 +Author: Cosimo Cecchi +Date: 2010-06-07 + + Use the new API to order files in the icon view. + +M src/file-manager/fm-icon-view.c + +commit b04bafc862ef092c1090851e6c87aabfed1eea50 +Author: Cosimo Cecchi +Date: 2010-06-07 + + Add methods to get per-file default sort type/attribute. + +M libnemo-private/nemo-file.c +M libnemo-private/nemo-file.h + +commit e847f4196c5aabb65a1ac43688bcd1b79443b261 +Author: Cosimo Cecchi +Date: 2010-06-07 + + Add nemo_file_is_user_special_directory(). + +M libnemo-private/nemo-file.c +M libnemo-private/nemo-file.h + +commit 0d36142a4eaa799034a25e37e95f6d66ca14f0ee +Author: Theppitak Karoonboonyanan +Date: 2010-06-06 + + Updated Thai translation. + +M po/th.po + +commit 0c8ea8597ae0616696fb52ae4396082990a85be0 +Author: Sira Nokyoongtong +Date: 2010-06-06 + + Updated Thai translation. + +M po/th.po + +commit 6cb3dae5f89887a15fa180a52e4f1362c079b1a0 +Author: Cosimo Cecchi +Date: 2010-06-02 + + Use single GTK+ header includes. + +M libnemo-private/nemo-file-conflict-dialog.c +M libnemo-private/nemo-file-conflict-dialog.h + +commit 02f961d5c892e34f88a680a7662f655b6676400b +Author: Kjartan Maraas +Date: 2010-06-01 + + Updated Norwegian bokmål translation + +M po/nb.po + +commit 4edc5f843a4cb0d89c21fd957dc7d6fa955cf012 +Author: Alexander Larsson +Date: 2010-06-01 + + Don't use deprecated Gtk+ api (GtkBoxChild) + +M libnemo-private/nemo-keep-last-vertical-box.c + +commit 4cebf7e4582788229f3fde7685ef44148b5cb99d +Author: Ivar Smolin +Date: 2010-05-31 + + Estonian translation updated + +M po/et.po + +commit 345e520752b627bf0d085ab6f5d480476b1dba89 +Author: Cosimo Cecchi +Date: 2010-05-30 + + Specify the expected variant type instead of using + G_VARIANT_TYPE_TUPLE. + + Thanks to Christian Persch. + +M libnemo-private/nemo-file-utilities.c +M src/nemo-application.c + +commit f1c08dcb6ff93dcdea9dfeacded9d70f7e725167 +Author: Cosimo Cecchi +Date: 2010-05-30 + + Bump required GLib version. + +M configure.in + +commit ce766ea529017649b72ea844e73c46e1d73c79b6 +Author: Cosimo Cecchi +Date: 2010-05-30 + + Use g_bus_watch_proxy() to call PackageKit methods. + +M libnemo-private/nemo-mime-actions.c + +commit 73ae91e0664b62e7b066cf5a23f6e37ea145a818 +Author: Cosimo Cecchi +Date: 2010-05-30 + + Use g_bus_watch_proxy() to initialize ConsoleKit. + +M src/nemo-application.c +M src/nemo-application.h + +commit 1eb13e5686f14b006dd0f11a92219b7fe826b50e +Author: Cosimo Cecchi +Date: 2010-05-30 + + Re-use the same connection to Inhibit/Unhinibit power manager. + +M libnemo-private/nemo-file-utilities.c + +commit 8a58f4e298e844c18928e5a0681fa8ac2b9f2ee1 +Author: Christian Persch +Date: 2010-05-17 + + Port to GDBus + + Bug #618910. + +M configure.in +M libnemo-private/nemo-file-utilities.c +M libnemo-private/nemo-mime-actions.c +M src/nemo-application.c +M src/nemo-application.h + +commit 6cba2c2bcae95e7eca687561359b4d85c89694df +Author: Alan Monfort +Date: 2010-05-29 + + Updated Breton translation + +M po/br.po + +commit 460c57e9ad8bb725076ae90e2eb8287a90330663 +Author: Alan Monfort +Date: 2010-05-29 + + Updated Breton translation + +M po/br.po + +commit 8bc39ced44598fb0be61ffdf799c50a81d6dd272 +Author: Yaron Shahrabani +Date: 2010-05-29 + + Updated Hebrew translation. + +M po/he.po + +commit 68a877ab0fe8fef87841e06e84312eea9068794e +Author: Jorge González +Date: 2010-05-25 + + Updated Spanish translation + +M po/es.po + +commit 9708b257484931185f458ce343f1e4f88a82c6ab +Author: Cosimo Cecchi +Date: 2010-05-24 + + Release 2.31.2. + +M NEWS +M configure.in + +commit 81e15c0accfe2147e0520fc8fba91fc2d97d0d2a +Author: Cosimo Cecchi +Date: 2010-05-24 + + Fix a compiler warning. + +M cut-n-paste-code/libegg/eggdesktopfile.c + +commit b0d808de8c8d1be6b8a4403fc587cc032612027a +Author: Alexander Larsson +Date: 2010-05-24 + + Change default thumbnail size from 96 to 64 + + Still not the same as icons (48) but makes for less jaring layouts, + and + lets you see more of the thumbnail content than 48 would. + +M libnemo-private/apps_nemo_preferences.schemas.in + +commit 7b75f714980293b12c2548126ba30c8af7dacecf +Author: Paul Seyfert +Date: 2010-05-24 + + Updated German translation + +M po/de.po + +commit d320b181dc169cb2720b38e65ef743803ad524ea +Author: Thomas Thurman +Date: 2010-05-20 + + Updated Shavian translation + +M po/en@shaw.po + +commit ddb325fe0c420edcae32e65ebc0b6958fa0a84e2 +Author: Fran Diéguez +Date: 2010-05-20 + + Updated Galician translations + +M po/gl.po + +commit 86d41c14159741c6803940a83a42e40a89d061d7 +Author: Cosimo Cecchi +Date: 2010-05-20 + + Split WARNING_CFLAGS into its own variable. + + So that we can use e.g. LIBNEMO_EXTENSIONS_CFLAGS when compiling + the + gir information. + +M configure.in +M eel/Makefile.am +M libnemo-extension/Makefile.am +M libnemo-private/Makefile.am +M src/Makefile.am +M src/file-manager/Makefile.am +M test/Makefile.am + +commit 2617e16aa55367ba3d73a33dc27376cf518d4676 +Author: Cosimo Cecchi +Date: 2010-05-20 + + Implement transparent icons for cut files in tree view. + +M src/file-manager/fm-tree-model.c +M src/file-manager/fm-tree-model.h +M src/file-manager/fm-tree-view.c + +commit 5b213054823f64c8125effe56f0288c54aefa625 +Author: Cosimo Cecchi +Date: 2010-05-20 + + Use the new NemoFile API in the list model. + +M src/file-manager/fm-list-model.c + +commit df11a77d4b08e170b63da4c4b67ea9730634268c +Author: Cosimo Cecchi +Date: 2010-05-20 + + Move the clipboard callbacks to NemoClipboardMonitor. + +M libnemo-private/nemo-clipboard-monitor.c +M libnemo-private/nemo-clipboard-monitor.h +M src/file-manager/fm-directory-view.c + +commit bbc6c3d83e51af4da3a093ef95cb17d188f162f2 +Author: Cosimo Cecchi +Date: 2010-05-20 + + Add an utility function to compare file locations. + +M libnemo-private/nemo-file.c +M libnemo-private/nemo-file.h + +commit 044952f0a5683e37545cd30d2a5296213abf70bd +Author: Cosimo Cecchi +Date: 2010-05-15 + + Implement transparent icons for cut files in list view. + +M src/file-manager/fm-list-model.c +M src/file-manager/fm-list-model.h +M src/file-manager/fm-list-view.c + +commit 07f768de905f42857c01434f2550c43d79eb4ed6 +Author: Cosimo Cecchi +Date: 2010-05-15 + + Implement transparent icons for cut files in icon view. + +M src/file-manager/fm-icon-view.c + +commit 03ff6b4d60473db94f351b9b3b2c0ee9490556cc +Author: Cosimo Cecchi +Date: 2010-05-15 + + Move clipboard information to NemoClipboardMonitor. + + So that we can use that information from more than one view at + the same + time. + +M libnemo-private/nemo-clipboard-monitor.c +M libnemo-private/nemo-clipboard-monitor.h +M src/file-manager/fm-directory-view.c + +commit 226e7ba044f15cb22e8f9c3966625c496913f3df +Author: Cosimo Cecchi +Date: 2010-05-15 + + Add an "highlighted-for-clipboard" property to the item. + +M libnemo-private/nemo-icon-canvas-item.c +M libnemo-private/nemo-icon-container.c +M libnemo-private/nemo-icon-container.h + +commit 76ae23877a3e022d1d47526f1b74e5559faeb756 +Author: Cosimo Cecchi +Date: 2010-05-15 + + Move pixbuf render code to libeel. + + So that we'll be able to use it from outside of + NemoIconCanvasItem. + +M eel/eel-gdk-pixbuf-extensions.c +M eel/eel-gdk-pixbuf-extensions.h +M libnemo-private/nemo-icon-canvas-item.c + +commit 97d736a0861a81f825698451249564e42d002d4b +Author: Cosimo Cecchi +Date: 2010-05-19 + + Add another missing GConf schema. + +M libnemo-private/apps_nemo_preferences.schemas.in + +commit 4309418a12b43e87a4de1f44d0641a6c902a64ce +Author: Gregory J. Horvath +Date: 2010-05-19 + + Add a missing GConf schema. + +M libnemo-private/apps_nemo_preferences.schemas.in + +commit f1148c5878e8b68c95dad8dec50aa30c6ee9b2d3 +Author: Rodrigo Moya +Date: 2010-05-19 + + Add introspection support for libnemo-extension + +M libnemo-extension/Makefile.am + +commit 8d366402ca6120e6f75051596d8ae33589ef3591 +Author: Rodrigo Moya +Date: 2010-05-13 + + Added introspection to libnemo-extension + +M configure.in +M libnemo-extension/Makefile.am + +commit 1c88c7186ed298fbdd67e31cb3b8c613093c3411 +Author: Adrian Bunk +Date: 2010-03-29 + + autogen.sh: automake 1.9 is required (see configure.in) + +M autogen.sh + +commit 38986e1c0773299a7efa9f7333d5d0c513a8b66c +Author: Thomas Thurman +Date: 2010-05-16 + + Updated Shavian translation + +M po/en@shaw.po + +commit 649b0f65182f370792e00e227923a251e19ace17 +Author: Fran Diéguez +Date: 2010-05-16 + + Updated Galician translations + +M po/gl.po + +commit 0a8ec392070d9927df450ceffc4333b0a25c281c +Author: Fran Diéguez +Date: 2010-05-14 + + Updated Galician translations + +M po/gl.po + +commit 0eead029b0725cb70d9817467f820ac53b14eb60 +Author: Jorge González +Date: 2010-05-13 + + Updated Spanish translation + +M po/es.po + +commit b521530ac4cba5327ea37af7b488355f1d87399c +Author: Cosimo Cecchi +Date: 2010-05-13 + + Hide the 'Arrange by Trash Time' option if we're not in the trash. + +M src/file-manager/fm-actions.h +M src/file-manager/fm-icon-view.c + +commit eab6722face64b510b8bbf330761d5b5ae7e807f +Author: Cosimo Cecchi +Date: 2010-05-13 + + Don't rely on updated metadata when resetting columns to default. + +M src/file-manager/fm-list-view.c + +commit 96da10025c3bd00ed5d748d0b91447a0137b5ef9 +Author: Cosimo Cecchi +Date: 2010-05-12 + + Define different defaults for the columns in trash. + + These defaults are hardcoded, but I think it's fine, as they're + limited + to the trash. The rest of nemo will follow the usual defaults. + +M src/file-manager/fm-list-view.c + +commit 19bbf8a1ae54cc11d51935f94209074fb2659e90 +Author: Cosimo Cecchi +Date: 2010-05-12 + + Use the new API in the preferences. + +M src/nemo-file-management-properties.c + +commit 4b3038b4ea85ce309d6fb128675611d3c912739e +Author: Cosimo Cecchi +Date: 2010-05-12 + + Use the new methods in the column chooser. + + The chooser becomes file-oriented as well. It will fetch the common + columns if we don't provide any file, and try to fetch the specialized + list if we pass a file. + +M libnemo-private/nemo-column-chooser.c +M libnemo-private/nemo-column-chooser.h + +commit 14dc307c7e76f144d9fbbd091777123867b1efe4 +Author: Cosimo Cecchi +Date: 2010-05-12 + + Split the special columns. + + Add utility functions which return a list of columns depending on the + location, separate from the 'common' set which is useful for every + directory. + +M libnemo-private/nemo-column-utilities.c +M libnemo-private/nemo-column-utilities.h + +commit f62cad9bae1b742b41c088449b2278eb7b6fd093 +Author: Marcus Carlson +Date: 2009-10-11 + + Adds Trashed On and Original Location as columns in List View + + And also an 'Arrange by Trash Time' option in Icon View. + + https://bugzilla.gnome.org/show_bug.cgi?id=89706 + +M libnemo-private/nemo-column-utilities.c +M libnemo-private/nemo-file-private.h +M libnemo-private/nemo-file.c +M libnemo-private/nemo-file.h +M libnemo-private/nemo-vfs-file.c +M src/file-manager/fm-icon-view.c +M src/file-manager/nemo-icon-view-ui.xml + +commit eafead25cabb9ec580c21f105f053be10dac9d5d +Author: Thomas Thurman +Date: 2010-05-12 + + Updated Shavian transliteration + +M po/en@shaw.po + +commit 6519089b3597d158618dab8d752b2d4e09494e87 +Author: Khaled Hosny +Date: 2010-05-12 + + Cleanup file header + +M po/ar.po + +commit 000092092d86c5b39b6d3a4638c860ce50d32961 +Author: Khaled Hosny +Date: 2010-05-12 + + Updated Arabic translation + +M po/ar.po + +commit 3aa7864fd2fd0459073abe0eb75b9f73fdb91653 +Author: Kjartan Maraas +Date: 2010-05-11 + + Updated Norwegian bokmål translation + +M po/nb.po + +commit a9c3fff8710dfaae0615e48b3f6447d4b5576146 +Author: Manoj Kumar Giri +Date: 2010-05-11 + + Updated Oriya Translation + +M po/or.po + +commit 5f6b4e6f3b8ca2c27eacf5977121618fb3fb12c1 +Author: Bruno Brouard +Date: 2010-05-10 + + Updated French translation + +M po/fr.po + +commit 601c42c06e4d40de99c38eb795f20375dd2e7242 +Author: Cosimo Cecchi +Date: 2010-05-09 + + Don't add the emblem if it's equal to the icon. + +M libnemo-private/nemo-file.c + +commit 414810d3e294eaf3565127cce26fc760f147f6bf +Author: Cosimo Cecchi +Date: 2010-05-08 + + Use the mount icon as an emblem in the information sidebar. + +M src/nemo-sidebar-title.c + +commit 88781dae75003996accbf521a2d3e405d7d4fd14 +Author: Cosimo Cecchi +Date: 2010-05-08 + + Use the mount icon as an emblem in the views. + +M src/file-manager/fm-icon-container.c +M src/file-manager/fm-list-model.c + +commit 7bfc3c6a7d22e1091f7985377dabd8581e1dfeac +Author: Cosimo Cecchi +Date: 2010-05-03 + + Prefer mount icons as window icons (#613733). + +M src/nemo-navigation-window.c +M src/nemo-spatial-window.c + +commit 38c5b7ee06b4f8d90689dfd8fa5e010066a0b233 +Author: Cosimo Cecchi +Date: 2010-05-08 + + Add new icon flags to use mount icons. + + This will allow us to be more consistent with mount icons around and + refactor some code as well. + +M libnemo-private/nemo-file.c +M libnemo-private/nemo-file.h + +commit 17f50da7dfbb7efdc3db74deed0cd341711ddb6e +Author: Mario Blättermann +Date: 2010-05-08 + + Updated German translation + +M po/de.po + +commit ca10b4b89df5c8123c08ad1de80139e1a52a4932 +Author: Cosimo Cecchi +Date: 2010-05-06 + + Never update icons for remote bookmarks. + +M libnemo-private/nemo-bookmark.c + +commit 108a23dc0e0be534530028612d72302c7d2a1e53 +Author: Cosimo Cecchi +Date: 2010-05-06 + + Trigger the eject button on release. + +M src/nemo-places-sidebar.c + +commit 729ce7cf7feead42d16a5b8793cd7948286c00f8 +Author: Cosimo Cecchi +Date: 2010-05-06 + + Use the new API in the places sidebar. + +M src/nemo-places-sidebar.c + +commit 6bbe1bd9ed2d9eea934ced04952b3ab4a8d74252 +Author: Cosimo Cecchi +Date: 2010-05-06 + + Set a 'folder-remote' icon for remote bookmarks. + +M src/nemo-connect-server-dialog.c + +commit 89fa909f3d406dd2e47006eeaaee051bef2b77d5 +Author: Cosimo Cecchi +Date: 2010-05-06 + + Set a 'folder-remote' icon if the URI is not native. + + Also, port to the new API. + +M src/nemo-bookmark-list.c + +commit e6d70ef8a41bd0c6e6685f07e85e266e3227c61c +Author: Cosimo Cecchi +Date: 2010-05-06 + + Update to the new API. + +M src/nemo-bookmarks-window.c +M src/nemo-window-manage-views.c +M src/nemo-window.c + +commit 856177d1dc13802e6473923d331f8f1ba91f8e51 +Author: Cosimo Cecchi +Date: 2010-05-06 + + Change NemoBookmark API. + + Remove _set_has_custom_name() method and use just one _new() + constructor. + + Also, emit the CONTENTS_CHANGED signal when we're setting a new + name, as + that will trigger a save/reload of .gtk-bookmarks due to saving a new + label. + + Finally, don't use gnome-fs-bookmark* icon names anymore, as they're + deprecated. We now use 'folder' as a default icon, and add a 'warning' + emblem when the URI does not exist. + +M libnemo-private/nemo-bookmark.c +M libnemo-private/nemo-bookmark.h + +commit 1756fb0b77aebae201ffb1ee1641a9118ca941d9 +Author: Cosimo Cecchi +Date: 2010-05-06 + + Remove a pile of hacks used to initialize bookmarks. + + - Make nemo_window_constructed a real GObject implementation and + move bookmark initialization code there. + - Don't replicate a singleton logic in nemo-window-bookmarks now + that NemoBookmarkList is a real singleton + - Remove get_bookmark_list() method from NemoWindowInfo, as it's + not any useful anymore. + +M libnemo-private/nemo-window-info.c +M libnemo-private/nemo-window-info.h +M src/nemo-application.c +M src/nemo-window-bookmarks.c +M src/nemo-window-bookmarks.h +M src/nemo-window-menus.c +M src/nemo-window-private.h +M src/nemo-window.c + +commit 03c5612730d4de29d8cb80352b1bfc42bab59742 +Author: Cosimo Cecchi +Date: 2010-05-06 + + Make NemoBookmarkList a singleton. + +M src/nemo-bookmark-list.c + +commit 00035932b2948140d95f27a473be380f189caf21 +Author: Fran Diéguez +Date: 2010-05-04 + + Updated Galician translation + +M po/gl.po + +commit 997028e6669062537b2f8ec2ce0fad2854f114b3 +Author: Jorge González +Date: 2010-05-04 + + Updated Spanish translation + +M po/es.po + +commit e6a7039162d4eb37afe329cc4d8378f9edb446c7 +Author: Cosimo Cecchi +Date: 2010-05-04 + + Release 2.31.1. + +M NEWS +M po/POTFILES.in + +commit c0f8096150ea98af40248a55d6dbb77a35c0a771 +Author: Jorge González +Date: 2010-05-03 + + Updated Spanish translation + +M po/es.po + +commit abade38f2477bc807246d5b4acf8b7a753ea369e +Author: Jorge González +Date: 2010-05-03 + + Updated Spanish translation + +M po/es.po + +commit 64524ff2724bb6f0cc72fea34cb7ca3d5253cec7 +Author: Cosimo Cecchi +Date: 2010-05-03 + + Use header capitalization for "Open With" menu items (#596778). + + As the HIG says so. + +M src/file-manager/fm-directory-view.c +M src/nemo-information-panel.c + +commit 79e155aba54ee7cfeac9363548d6b1cee221ae2f +Author: Cosimo Cecchi +Date: 2010-05-03 + + Don't give input focus to the selectable label (#591902). + +M src/nemo-image-properties-page.c + +commit e0f463562e894a2f394279d00fdf027343d2efad +Author: Cosimo Cecchi +Date: 2010-05-03 + + Change "Stretch Icon" to "Resize Icon" (#459900). + +M src/file-manager/fm-icon-view.c + +commit 5348820067ab62dd3fcac78f0acc0fef869cc2a1 +Author: Cosimo Cecchi +Date: 2010-05-02 + + Use "Cancel" as default response when activating a broken link + (#341595) + +M libnemo-private/nemo-mime-actions.c + +commit fe817911c538f1018d73945af9d637e01943378b +Author: Cosimo Cecchi +Date: 2010-05-02 + + Don't force a default response. + +M eel/eel-stock-dialogs.c + +commit 846dd7c0e50b0f2db288285e615698932cf81e41 +Author: Kjartan Maraas +Date: 2010-05-02 + + Updated Norwegian bokmål translation + +M po/nb.po + +commit 1eac7a19cd7c4f543408809d0c0875bec849a494 +Author: Fran Diéguez +Date: 2010-05-01 + + Updated Galician translation + +M po/gl.po + +commit 777a404b76c0bcb3c3504fa9ff986c256777be8d +Author: Torstein Adolf Winterseth +Date: 2010-05-01 + + Updated Norwegian Nynorsk translation + +M po/nn.po + +commit 2a87565bcb810597dca323a943c616075ee7c6ab +Author: Cosimo Cecchi +Date: 2010-04-29 + + Let the sidebar header fill the whole width (#463111). + + The code for this is borrowed from Evince's sidebar implementation. + +M src/nemo-side-pane.c + +commit b281985fff427982420b7d037dff609383b3ea74 +Author: Cosimo Cecchi +Date: 2010-04-29 + + Don't let the sidebar shrink more than its requisition (#311732). + + This also makes us consistent with the other GNOME apps that use a + sidebar widget. + +M src/nemo-navigation-window.c + +commit 842c94dbdd20bff3e9dcc1811b6e900d8d27d775 +Author: Jorge González +Date: 2010-04-29 + + Updated Spanish translation + +M po/es.po + +commit 90b32ff314a141417c2b8e3691766910420ca25e +Author: Cosimo Cecchi +Date: 2010-04-28 + + Don't ignore the return value of write() (#617092). + +M src/nemo-application.c + +commit 3683288f8a86cd714623cca3d6921315c67ec7f1 +Author: Cosimo Cecchi +Date: 2010-04-28 + + Add a 'Restore Selected Items' button in the trashbar. + + This makes the restore function more visible in the UI (#616304). + +M src/nemo-trash-bar.c +M src/nemo-trash-bar.h +M src/nemo-window-manage-views.c + +commit b87911c0caf3d957fc4e9575fd905493829f787c +Author: Cosimo Cecchi +Date: 2010-04-28 + + Move restore_from_trash() in nemo-file-utilities. + + This is needed so we will be able to use the function from the + trash bar + later. + +M libnemo-private/nemo-file-utilities.c +M libnemo-private/nemo-file-utilities.h +M src/file-manager/fm-directory-view.c + +commit a7792d030df5f2139043f7228cb0f30bf1cdf5c1 +Author: Jorge González +Date: 2010-04-27 + + Updated Spanish translation + +M po/es.po + +commit 02ef15eabeef5cdbcb479adad90632ff12d2b791 +Author: Cosimo Cecchi +Date: 2010-04-27 + + Properly update icons as we load the thumbnails. + +M libnemo-private/nemo-file-conflict-dialog.c + +commit 9ecdac9b1a4adb3db9ac32606ff36023a3d6909e +Author: Cosimo Cecchi +Date: 2010-04-27 + + Fix size requests and wrap modes for labels. + +M libnemo-private/nemo-file-conflict-dialog.c + +commit 430d554f55632475dac94a7a9d6009c0f189b178 +Author: Cosimo Cecchi +Date: 2010-04-27 + + Initialize variables to NULL. + +M src/nemo-places-sidebar.c + +commit 47ad2649dc83faf1b3931d93d5060729344de955 +Author: Cosimo Cecchi +Date: 2010-04-27 + + Use a new icon for audio preview (#614907). + + Thanks to Hylke Bons for the icon. + +M icons/audio.svg +M libnemo-private/nemo-icon-canvas-item.c + +commit 96a7a6bb7aa680d98f0bb05d77aa6101c25fb491 +Author: Jorge González +Date: 2010-04-27 + + Updated Spanish translation + +M po/es.po + +commit 46124f684e5db4bd05bc9575eef2b16527d58b66 +Author: Cosimo Cecchi +Date: 2010-04-27 + + Bump libnemo-extension API version (#610356). + +M configure.in + +commit 4b680e163e41a26c8ace47d43efdc72be9ede93a +Author: Cosimo Cecchi +Date: 2010-04-27 + + Don't use C++ keywords in NemoMenu (#616657). + +M libnemo-extension/nemo-menu.c +M libnemo-extension/nemo-menu.h + +commit eee505e416678ce7f51999b6a4acd385a0ae99c7 +Author: Cosimo Cecchi +Date: 2010-04-27 + + Bump version to 2.31.1 on master. + +M configure.in + +commit add025f7d1502d97062a9fdce8eff85fcd27205e +Author: Martin Pitt +Date: 2010-03-30 + + Do not show Unmount when showing Eject/Safe removal + + Having three menu entries (unmount/eject/safe removal) in a + volume/drive menu + entry is too confusing. Unmount only really makes sense for internal + drives, + for external ones it is pretty much a "geek" option. Geeks can + use palimpsest + or "unmount /media/foo" from the CLI if they really want to, for + everyone else + it is just an unintuitive and hard to to explain menu entry. + + Bug: https://bugzilla.gnome.org/show_bug.cgi?id=598690 + Bug-Ubuntu: https://launchpad.net/bugs/453072 + (cherry picked from commit 0a5cc4c4e5b01eb8aa38dfae926502ce920efc94) + +M src/file-manager/fm-directory-view.c +M src/nemo-places-sidebar.c + +commit cee1ced8e45dc9570308ba447f8e3c0edfd986ba +Author: Cosimo Cecchi +Date: 2010-04-15 + + Use display names for applications (#611378). + + Instead of using the simple GAppInfo name property. + +M libnemo-private/nemo-autorun.c +M libnemo-private/nemo-mime-actions.c +M libnemo-private/nemo-mime-application-chooser.c +M libnemo-private/nemo-open-with-dialog.c +M libnemo-private/nemo-program-choosing.c +M src/file-manager/fm-directory-view.c +M src/nemo-information-panel.c +M src/nemo-x-content-bar.c + +commit 9192dd8faffd788acf54a3b98de48cd1252dd9a6 +Author: Cosimo Cecchi +Date: 2010-04-15 + + Properly set the application as default (#605814). + + When the checkbox is enabled in the Open With dialog, set that + application as default; it the checkbox is not enabled, add the + application to the supported list. + +M libnemo-private/nemo-open-with-dialog.c + +commit 3d82f47ee91f5e0ca3284aef55911bace0736243 +Author: Cosimo Cecchi +Date: 2010-04-26 + + Don't mark the regex for translation. + +M src/file-manager/fm-directory-view.c + +commit 4dd3fc4731a313803c776ee096478a6f60ef5a72 +Author: Marcus Carlson +Date: 2009-10-05 + + Adds legend to "Select Items Matching" dialog + + https://bugzilla.gnome.org/show_bug.cgi?id=301690 + +M src/file-manager/fm-directory-view.c + +commit a7336c72c6f6cc0b0340e218fd123bcdddb144b9 +Author: Cosimo Cecchi +Date: 2010-04-26 + + Always set the parent window in dialogs (#573788). + +M eel/eel-stock-dialogs.c +M libnemo-private/nemo-mime-actions.c + +commit d63623cee6ac5cbbb74f6f31a7afa660d2037cbe +Author: Cosimo Cecchi +Date: 2010-04-09 + + Focus and sensitivity fixes. + +M libnemo-private/nemo-file-conflict-dialog.c + +commit 7e9ec46e34c899cae0eb92aabe9c826ea2abc5c6 +Author: Cosimo Cecchi +Date: 2010-04-09 + + Focus the entry after clicking on 'Reset'. + +M libnemo-private/nemo-file-conflict-dialog.c + +commit 5423c9f36cea27fac78d2fa7fee75c20a0a44d3e +Author: Cosimo Cecchi +Date: 2010-04-09 + + Tweak UI according to usability suggestions. + + This includes the addition of a reset button, use a single + Replace/Rename button and some smaller UI candies. + +M libnemo-private/nemo-file-conflict-dialog.c + +commit e1d7563733075cd0302951db45b645bee9f71cdb +Author: Cosimo Cecchi +Date: 2010-04-09 + + Reverse broken logic. + +M libnemo-private/nemo-file-conflict-dialog.c + +commit 33da32efab246804efb745c0f9c63d88574cf5d0 +Author: Cosimo Cecchi +Date: 2010-04-08 + + Remove manual markup. + + Now that we use Pango to make the string bold, this is useless. + +M libnemo-private/nemo-file-conflict-dialog.c + +commit b9640f4cb9b24b567e44f7f87b75f59bddf2f073 +Author: Cosimo Cecchi +Date: 2010-04-08 + + Make the primary label bold. + + For that, use the same code from GtkMessageDialog. + +M libnemo-private/nemo-file-conflict-dialog.c + +commit e1a6a08cbff7884635b2e6478171c85ce555b999 +Author: Cosimo Cecchi +Date: 2010-04-08 + + Specify which file is older. + + That's valuable information, so display it clearly in the secondary + label of the conflict dialog. + +M libnemo-private/nemo-file-conflict-dialog.c + +commit 067619c9c6fa155ff5dfff2b94f5f70e1a52dc4c +Author: Cosimo Cecchi +Date: 2010-04-08 + + Make sure NemoFiles are ready. + +M libnemo-private/nemo-file-conflict-dialog.c + +commit e84883bde6919d8bcbbc93713c80f3d537131d4e +Author: Cosimo Cecchi +Date: 2010-04-08 + + Show the file type only if it's different. + + Also, don't hardcode markup in strings marked for translations, + as i18n + don't usually like it. :) + +M libnemo-private/nemo-file-conflict-dialog.c + +commit 148dfd2b8d5492b7c9b4824133537d812782ea62 +Author: Cosimo Cecchi +Date: 2010-04-08 + + Fix indentation. + +M libnemo-private/nemo-file-conflict-dialog.c +M libnemo-private/nemo-file-conflict-dialog.h +M libnemo-private/nemo-file-operations.c + +commit 8734e4268b74935aaa5418ee567340fdfd2b953f +Author: Cosimo Cecchi +Date: 2010-04-08 + + Fix a conflict after rebase. + +M libnemo-private/nemo-file-operations.c + +commit 5d5166d2cdc68ccee3cacd9d0c266de0f0bee3f5 +Author: Cosimo Cecchi +Date: 2009-04-22 + + Swap the order of files in the dialog + + The dialog had the source and destination files wrongly ordered, + swap them. + +M libnemo-private/nemo-file-conflict-dialog.c + +commit d8a11018692ec20a8ec6a3dcb1f2d942dcb72a90 +Author: Cosimo Cecchi +Date: 2008-04-23 + + Use NemoFile machinery instead of is_dir + + Use the NemoFile cached data to find out whether a file is + a directory instead of using GIO. + +M libnemo-private/nemo-file-conflict-dialog.c + +commit 7e44bab4b8910bb26a91fc09a8e3b0cd12455bf8 +Author: Cosimo Cecchi +Date: 2009-04-22 + + Implement support for rename in the operations code + + Act accordingly to a rename response from the conflict dialog. + +M libnemo-private/nemo-file-operations.c + +commit 95016daa49bdd8b951dd0fa500b9634e12e91856 +Author: Cosimo Cecchi +Date: 2009-04-22 + + Adapt the file operations code to use the new dialog + + Cut out of the file operations module, the code used to display + conflict dialogs. Use the new dialog instead. + Rename is not working yet. + +M libnemo-private/nemo-file-conflict-dialog.c +M libnemo-private/nemo-file-operations.c + +commit dc21af1dc03759661fea147a8b98a8772749b29e +Author: Cosimo Cecchi +Date: 2008-04-03 + + Implement responses from the dialog back to the file operation. + + Add some API to get the response type from the conflict dialog back to + the file operations code. Start using that API during the operations + accordingly. + +M libnemo-private/nemo-file-conflict-dialog.c +M libnemo-private/nemo-file-conflict-dialog.h +M libnemo-private/nemo-file-operations.c + +commit bf607e6e3045dff76128894e87cd42affb68a44c +Author: Cosimo Cecchi +Date: 2008-04-03 + + HIG fixes + + Make sure the UI doesn't suck too much. + +M libnemo-private/nemo-file-conflict-dialog.c + +commit 2048c2d61db6ec557b6b572fb635a0f5a11bab09 +Author: Cosimo Cecchi +Date: 2008-04-02 + + Finish implement icon boxes in the dialog. + + Finish implement icon boxes in the conflict dialog. + Add a main thread runner from inside the file operations, as + the operation itself is done in an I/O worker thread. + +M libnemo-private/nemo-file-conflict-dialog.c +M libnemo-private/nemo-file-operations.c + +commit fee8b5095521fb6db98f866f6e0d53e8cf381783 +Author: Cosimo Cecchi +Date: 2008-04-02 + + UI and HIG fixes + + Use the correct markup strings in the dialog, and take care of + some layouting issues. + +M libnemo-private/nemo-file-conflict-dialog.c + +commit 6f0dc097348f7c2d0ede26daf5e76634a6625db3 +Author: Cosimo Cecchi +Date: 2008-04-02 + + Use a GtkDialog. + + Use a GtkDialog instead of a GtkMessageDialog. Take care of some HIG + fixes, and try to use icons from NemoFile. + +M libnemo-private/nemo-file-conflict-dialog.c +M libnemo-private/nemo-file-conflict-dialog.h + +commit 68ac5db7bcb762bcea612239c4a9d6408924a7b2 +Author: Cosimo Cecchi +Date: 2008-04-02 + + First implementation of NemoFileConflictDialog + + Basic UI implementation of NemoFileConflictDialog. Add it + to Makefile.am. + Also, hook the dialog inside the relevant file operations and + load it at the right place when doing a file operation. + +M libnemo-private/Makefile.am +A libnemo-private/nemo-file-conflict-dialog.c +A libnemo-private/nemo-file-conflict-dialog.h +M libnemo-private/nemo-file-operations.c + +commit ce66d5d2bf1b3c028f08d1f3ed3fa6d4c7c633f1 +Author: Cosimo Cecchi +Date: 2010-04-12 + + Don't use Backspace to delete bookmarks. + + In the places sidebar, don't assign Backspace to deleting bookmarks, + as + that's confusing (and we already have Delete for it). Fix bug #340934. + +M src/nemo-places-sidebar.c + +commit a051ce374f38b1dc13663f7a099337f39302c5b2 +Author: Cosimo Cecchi +Date: 2010-04-12 + + Always return TRUE from drop-motion. + + Fixes the displaying of a black line when DnD-ing something in the + sidebar which is not supported (#432529). + +M src/nemo-places-sidebar.c + +commit b80bfe38ac1cc4fd3561961d7f6f8b43ec786f20 +Author: Cosimo Cecchi +Date: 2010-04-12 + + Refactor the load/save code for the list. + + Don't use sync i/o anymore. This should also fix bug #532911. + +M src/nemo-bookmark-list.c +M src/nemo-bookmark-list.h + +commit 721f9999bcac87f28780d0b6938dac66b04970f2 +Author: Cosimo Cecchi +Date: 2010-04-12 + + Bring the object to 2010. + +M libnemo-private/nemo-bookmark.c +M libnemo-private/nemo-bookmark.h +M src/nemo-bookmark-list.c +M src/nemo-bookmark-list.h + +commit 5d84350777a40f53ae3970f2acbafb5846cb1c94 +Author: Cosimo Cecchi +Date: 2010-04-12 + + Set rate limit to the file monitor. + +M src/nemo-bookmark-list.c + +commit 2d64615521d9d6a090ef9a296e7783a73edc1f68 +Author: Cosimo Cecchi +Date: 2010-04-11 + + Remove dead code. + +M src/nemo-places-sidebar.c + +commit 006f5164b7ce1bf54fed170800ed145eb625826e +Author: Cosimo Cecchi +Date: 2010-04-11 + + Use the new NemoBookmarksList API. + +M src/nemo-places-sidebar.c + +commit 5b80a0e60516518f359596b5d6285b241d7c6cad +Author: Cosimo Cecchi +Date: 2010-04-11 + + Add a method to move bookmarks in the list. + + So that moving a bookmark in the list doesn't trigger two + 'contents-changed' signals in a row. + +M src/nemo-bookmark-list.c +M src/nemo-bookmark-list.h + +commit c87d0252bbd028ef80c3460be737c4e8ae07aa62 +Author: Cosimo Cecchi +Date: 2010-04-26 + + Preserve last selection while updating places. + +M src/nemo-places-sidebar.c + +commit 6b768ef18298bd8048f13e50094f5777b2b7e07b +Author: Cosimo Cecchi +Date: 2010-04-11 + + Use 'button-release-event' to activate bookmarks. + + Instead of using the 'row-activated' signal. This allows us to + only open + the bookmark after DnD (#606097). + +M src/nemo-places-sidebar.c + +commit 60b27c11e0dd3416eee13bdea45b280ec2562a36 +Author: Cosimo Cecchi +Date: 2010-04-13 + + Migrate confguration to XDG_CONFIG. + + https://bugzilla.gnome.org/show_bug.cgi?id=601476 + +M src/nemo-application.c + +commit 3c98314f94086dd241ca48bedee112d83733c183 +Author: Cosimo Cecchi +Date: 2010-04-13 + + Don't use ~/.nemo anymore (#601476). + + But use XDG_CONFIG to save configuration files. + Patch by jarryson. + +M libnemo-private/nemo-file-utilities.c + +commit a09d41702b771fb0041fa0c4270afaa678413a2d +Author: Cosimo Cecchi +Date: 2010-04-13 + + Remove deprecated GTK+ symbols (#565038). + +M eel/eel-background.c +M eel/eel-canvas.c +M eel/eel-debug-drawing.c +M eel/eel-editable-label.c +M eel/eel-gtk-container.c +M eel/eel-gtk-extensions.c +M eel/eel-image-table.c +M eel/eel-labeled-image.c +M eel/eel-wrap-table.c + +commit 2e79c499851757bf6da55c735268e36fcc4f2552 +Author: Alexander Larsson +Date: 2010-04-26 + + Update NEWS for release + +M NEWS + +commit 7411a0f07a6505ca5205a819b2539fe95bb1a1c0 +Author: Andy Owen +Date: 2010-04-26 + + Update split view menu item sensitivity when closing extra pane + +M src/nemo-navigation-window.c + +commit 39547f935a4f766eece11513eee175fffcbad2c1 +Author: Andy Owen +Date: 2010-04-26 + + Don't crash if there is no next_pane + + This happened due to menu sensitivity being wrongs (bug 616179) + +M src/nemo-navigation-window-menus.c + +commit bae7b352ae02233e5f3368818bf4daa864ad9a2e +Author: Mattias Põldaru +Date: 2010-04-26 + + Estonian translation updated + +M po/et.po + +commit dae9a5f81eec0ea5ededecb4375ca76c8f3ed9d1 +Author: Maxim V. Dziumanenko +Date: 2010-04-24 + + Updated Ukrainian translation + +M po/uk.po + +commit bf052548334dc7eae0b01131a4771c9fc34301f6 +Author: Maxim V. Dziumanenko +Date: 2010-04-22 + + Updated Ukrainian translation + +M po/uk.po + +commit 3c336f6968ed198c89eaeeae8d44a71312b5682b +Author: Carles Ferrando +Date: 2010-04-21 + + Updated Catalan (Valencian) translation + +M po/ca@valencia.po + +commit 17e388240fd5947cf21081c1d3971b2c9a66eeb1 +Author: Shankar Prasad +Date: 2010-04-21 + + Updated the kn translations + +M po/kn.po + +commit 2514148ef1a3d8a22caeb2f80989d29441e816e0 +Author: Jorge González +Date: 2010-04-17 + + Updated Spanish translation + +M po/es.po + +commit 32327339b335e71f661f5f51c6f66ddb95cbd099 +Author: Paolo Borelli +Date: 2010-04-17 + + Do not use "if (spatial) ..." in window superclass + + Delegate behavior specific to the window type to an appopriate + subclass + method. + +M src/nemo-application.c +M src/nemo-navigation-window.c +M src/nemo-spatial-window.c +M src/nemo-window-private.h +M src/nemo-window.c +M src/nemo-window.h + +commit 90c1b707ce4ab0a96dc4200537ef9fae17e45e60 +Author: Andika Triwidada +Date: 2010-04-17 + + Updated Indonesian translation due bug #569491 + +M po/id.po + +commit fc18d0bfc4f6001be311be63993a90129f02520a +Author: Holger Berndt +Date: 2010-04-06 + + Let w close the extra pane + + The keybinding w closes the active slot until no slot is + remaining, in which case it closes the window. This commit includes + the extra pane layer in this chain. + + Fixes bug 615593 + +M src/nemo-window-pane.c +M src/nemo-window.c + +commit 719c524c571fc0742382bff1c04174bb585326b8 +Author: Manoj Kumar Giri +Date: 2010-04-16 + + Updated Oriya Translation + +M po/or.po + +commit 85c0047c370b06473026b2920dc53428bd3c30ae +Author: Holger Berndt +Date: 2010-03-22 + + Fix sensitivity of "{Copy|Move} to other pane after enable/disable + of extra pane" + + Add an "update_menus" signal to the NemoView interface, so that + external events + can trigger a menu sensitivity update. + Fixes bug 613257. + +M libnemo-private/nemo-view.c +M libnemo-private/nemo-view.h +M src/file-manager/fm-directory-view.c +M src/nemo-navigation-window-menus.c + +commit 543d3ddd5131546fbbb2e3e2a504d9800c4f0d62 +Author: Peteris Krisjanis +Date: 2010-04-15 + + Updated Latvian translation. + +M po/lv.po + +commit 1ec432f114b357822256349b85c7401d1ade4cf5 +Author: Runa Bhattacharjee +Date: 2010-04-15 + + Updated Bengali India Translation + +M po/bn_IN.po + +commit 183b65d95d7c6418ba74104e6c718572ae518af3 +Author: Andika Triwidada +Date: 2010-04-15 + + Updated Indonesian translation + +M po/id.po + +commit 00de9e84618738f2f41c5ac5e01e7bddc953423b +Author: Reşat SABIQ +Date: 2010-04-14 + + Minor update for Crimean Tatar/Turkish translation + +M po/crh.po + +commit 9a45cd408e177c49bfbd7bced2f117c2b5f87e75 +Author: Yannig Marchegay +Date: 2010-04-14 + + Updated Occitan translation + +M po/oc.po + +commit 7fb83086b3c39aa6555b3fe2b0c3a59449cab5f2 +Author: Yannig Marchegay +Date: 2010-04-14 + + Updated Occitan translation + +M po/oc.po + +commit 73fc9b35508b3be5d959c568e92ae6870817dee2 +Author: Yannig Marchegay +Date: 2010-04-14 + + Updated Occitan translation + +M po/oc.po + +commit 27850a638a0075fb35b49c0621363bcb9ffd50d3 +Author: Ani Peter +Date: 2010-04-14 + + Updated Malayalam Translation + +M po/ml.po + +commit d88eca5a81988d62fbcbcc60037abbaae124b407 +Author: Sandeep Shedmake +Date: 2010-04-14 + + Updated Marathi Translations + +M po/mr.po + +commit 95b2c6e322a9bd15320fd6cdb37394e645b85ef4 +Author: Yannig Marchegay +Date: 2010-04-13 + + Occitan translation update + +M po/oc.po + +commit 89953c7140b285cc27a0dc4f8a771a58bee21e20 +Author: Yannig Marchegay +Date: 2010-04-13 + + Occitan translation update + +M po/oc.po + +commit 36586cd1ad3f0c12c707f052964b3c188343e78a +Author: Francisco Diéguez +Date: 2010-04-09 + + Updated Galician translations + +M po/gl.po + +commit cb4097700ddfc5992544528cc4e412ec345131aa +Author: Tomas Bzatek +Date: 2010-04-09 + + Tracker: Fix filtering by location, code cleanup + + This also involves code cleanup to maintain consistency with + gtksearchenginetracker.c + + Related: bug 612725 + +M libnemo-private/nemo-search-engine-tracker.c + +commit 31b4b4adda7a9da23b611966176c7f7b7ae552cd +Author: Cosimo Cecchi +Date: 2010-04-09 + + Don't use LDFLAGS for the eel library. + + libeel is a convenience library now, so it should pull its dependecies + using LIBADD, not LDFLAGS. Patch by Josselin Mouette (#604575). + +M eel/Makefile.am + +commit 496d3f15de295482e158194e1fe1dae3569f4524 +Author: Cosimo Cecchi +Date: 2010-04-09 + + Use gtk_widget_get_state() (#612423). + + Instead of the deprecated GTK_WIDGET_STATE macro. + Patch by Dominique Leuenberger. + +M eel/eel-editable-label.c +M eel/eel-gtk-extensions.c +M eel/eel-labeled-image.c + +commit 305cf9768bd716ba9bbcd3e773511536243a9cc5 +Author: Marcus Carlson +Date: 2010-04-07 + + Fix emblem scaling with zoom >= 150% + + Emblem handling did not properly take zoom into account (#343540) + +M libnemo-private/nemo-icon-canvas-item.c + +commit 263051df98aace0b59fb2bd1772711dceba8e404 +Author: Marcus Carlson +Date: 2010-04-07 + + Fix crash when middle click on an invalid network share in Places + + https://bugzilla.gnome.org/show_bug.cgi?id=579627 + +M src/nemo-window-manage-views.c + +commit 1698377dcad6762bc0b32c4efa75d7e2c4b3fb67 +Author: Tomas Bzatek +Date: 2010-04-06 + + Support for tracker 0.8 stable release + +M libnemo-private/nemo-search-engine-tracker.c + +commit 323124d88ba4bf2d39466ee11c3f166ffebb0a01 +Author: Sweta Kothari +Date: 2010-04-06 + + Updated Gujarati Translations + +M po/gu.po + +commit ae2b3bffcb1bb5f333bc6654af3c0a3719d50b70 +Author: Jordi Serratosa +Date: 2010-04-02 + + Fixes to Catalan translation + +M po/ca.po + +commit 1b252c84a9f1efaab652679f2511d5d5a63593f4 +Author: Wouter Bolsterlee +Date: 2010-03-30 + + Dutch translation updated by Wouter Bolsterlee + +M po/nl.po + +commit 09b695b4cab81b239a3934e6c53222299fc61137 +Author: Jordi Serratosa +Date: 2010-03-29 + + Fixes to Catalan translation + +M po/ca.po + +commit 3bdca4a2c5720e239a8947348b8390da0ac7b998 +Author: Alexander Larsson +Date: 2010-03-29 + + Post release version bump + +M configure.in + +commit e414801ab9c3baba23ce82df02f59ec7fdf2f7d8 +Author: Alexander Larsson +Date: 2010-03-29 + + Bump version to 2.30.0 + +M configure.in + +commit 8174126cad82d54b25b40b883aa05d0a13abdc44 +Author: Alexander Larsson +Date: 2010-03-29 + + Require stable versions of glib/gtk+ + +M configure.in + +commit 8972aad5f0fc3f6346000845770239d39c0fd63b +Author: Alexander Larsson +Date: 2010-03-29 + + Update for release + +M NEWS + +commit 6364bbbbea855bcd5f507d08e4270956aed4083a +Author: Runa Bhattacharjee +Date: 2010-03-29 + + Typo correction and updation + +M po/bn_IN.po + +commit 313ee0e2b19d5850bbc62dae73fe315b4c450277 +Author: Jamil Ahmed +Date: 2010-03-27 + + Updated Bengali translation + +M po/bn.po + +commit be4461243fdf084bd1a2c466fd3b196e134439d7 +Author: Maxim V. Dziumanenko +Date: 2010-03-26 + + Updated Ukrainian translation + +M po/uk.po + +commit 94127c6f6c553849c033ce06e0eb3fa8a837d994 +Author: Timo Jyrinki +Date: 2010-03-26 + + Separate ejecting from safely removing and link to the relevant + bug report. + +M po/fi.po + +commit 0fe43b73226164ac381d48e167c15035161f7e19 +Author: Gabor Kelemen +Date: 2010-03-26 + + Updated Hungarian translation + +M po/hu.po + +commit f9f46d46040e97f802e530706248d39a2daf99cc +Author: Simos Xenitellis +Date: 2010-03-25 + + Updated Greek translation for nemo + +M po/el.po + +commit de23258a5b70b7237cf972b4689731763eb19ebf +Author: Cosimo Cecchi +Date: 2010-03-25 + + Use a better thumbnail frame for image previews. + + Thanks to Hylke Bons for working on this. Closes bug #613858. + +M icons/thumbnail_frame.png +M libnemo-private/nemo-thumbnails.h + +commit acb01f0fe637a64f92c1ff2188879b7c470ed0e0 +Author: Tomas Bzatek +Date: 2010-03-24 + + Unref local query object when turning search off + +M src/nemo-navigation-window-menus.c + +commit a92a7bfcb2c7bb9f171724bc97b1c163f52c0fd7 +Author: Tomas Bzatek +Date: 2010-03-24 + + Don't crash when hiding search bar with no text + + Happens in browser mode and only when search results pane is displayed + +M src/nemo-navigation-window-menus.c + +commit 4702bc8e74248de734c2fbcddd57191ba2fc1bd1 +Author: Fran Diéguez +Date: 2010-03-24 + + Updated Galician translation + +M po/gl.po + +commit 4297995df518bc17f5b3de9889c655c35eb05fbf +Author: Inaki Larranaga Murgoitio +Date: 2010-03-24 + + Updated Basque language + +M po/eu.po + +commit 9b458e52b43a87c0b5ff13a0634c18dc6328de8a +Author: A S Alam +Date: 2010-03-24 + + update for Punjabi by A S Alam + +M po/pa.po + +commit ffadc713c20db01c3678f947f510565affcd4887 +Author: Anders Jenbo +Date: 2010-03-23 + + Updated Danish translation + +M po/da.po + +commit 81709b3bba3630fdee8577453820a353b4757aed +Author: Simos Xenitellis +Date: 2010-03-23 + + Updated Greek translation for nemo + +M po/el.po + +commit 14b652632c63b586bf32ae6a7a0599da459fcc4a +Author: Nikos Bakaoukas +Date: 2010-03-23 + + Updated Greek translation for nemo + +M po/el.po + +commit 5bbd6545ac0114e2a6962079fdbcaae5bbe84b78 +Author: Tommi Vainikainen +Date: 2010-03-22 + + Updated Finnish translation + +M po/fi.po + +commit c18f16106fe0cf6b9c139c61728f6f5233ca0737 +Author: Luke Symes +Date: 2010-03-14 + + Don't display a border around the desktop frame. + + Fixes bug 605704. + +M src/file-manager/fm-desktop-icon-view.c + +commit 0a53599124a8d57b5d6ccdb8694da10bea8313d7 +Author: Reşat SABIQ +Date: 2010-03-18 + + Updated Crimean Tatar (Crimean Turkish) translation + +M po/crh.po + +commit e0b4fd622a4eb31a3d9af56bb0b2d5c1fd7e3d06 +Author: Bastien Nocera +Date: 2010-03-17 + + Add AIFF as a supported audio type for preview + +M src/file-manager/nemo-audio-mime-types.h + +commit ba6a7c6e1098c5cb88fb7468e98bf9f58ff6b543 +Author: Alexander Larsson +Date: 2010-03-17 + + Set exit_with_last_window to false by default + + This fixes problems with show_desktop=false causing nemo to + exit and gnome-session restarting nemo in a loop (#571417). + + This means nemo will keep running, so that it can handle automount + and stuff. If you only run nemo rarely you need to set this + to true. + + In the future we will move the automount handling to + gnome-settings-daemon + and then we will probably change this back. + +M libnemo-private/apps_nemo_preferences.schemas.in + +commit dfa7758c96580e06261756b6f49433befec677c4 +Author: Inaki Larranaga Murgoitio +Date: 2010-03-16 + + Updated Basque language + +M po/eu.po + +commit 1ab3721437d8371301079023c10dfa14c0eb5b5d +Author: Inaki Larranaga Murgoitio +Date: 2010-03-15 + + Updated Basque language + +M po/eu.po + +commit e61a5c23dce6af7861628ace3fb049d9a0d4c8e8 +Author: Petr Kovar +Date: 2010-03-15 + + Update Czech translation by Lucas Lommer + +M po/cs.po + +commit 863a13e1dbbcee2d7405f17b3eef6db93df437df +Author: Ivar Smolin +Date: 2010-03-14 + + Estonian translation updated + +M po/et.po + +commit e3ea8ba00461ccd43716c1360215d4d44e4fa872 +Author: Fran Diéguez +Date: 2010-03-13 + + Updtae Galician translation + +M po/gl.po + +commit 68dbac28c64ea365a09b7cbc58fba0434fad8a34 +Author: Luca Ferretti +Date: 2010-03-12 + + Updated Italian translation + +M po/it.po + +commit 797cacb28b78fede43b713dbd1fba2479bdbe943 +Author: Holger Berndt +Date: 2010-03-11 + + Remove grab_focus from list view + + The grab_focus interface function is now implemented + in the directory view. There's no need for special handling + of list views anymore. + +M src/file-manager/fm-list-view.c + +commit c78da8903804267ef7399d92753c5f5b2e811585 +Author: Holger Berndt +Date: 2010-03-11 + + Fix focus handling + + Move the focus to a new window's first slot. The extra + pane doesn't get focus initially, which fixes + bug 612203. + + To make this work for all views, the focus_grab interface + function was implemented for the directory view class. + +M src/file-manager/fm-directory-view.c +M src/nemo-window-pane.c +M src/nemo-window-pane.h +M src/nemo-window.c + +commit 34807782c143f99f0ab94dd4a1804239a5710d1a +Author: Holger Berndt +Date: 2010-03-11 + + Bring back "Don't grab focus on realize" + + This brings back commit 4efd42312584b46f248e2839582a87776a7baebe + that was reverted in 95ae539e8d042b04ee9c6817bcc41f551ab207fc + + The focus issues that this introduces will be taken care of in a + followup commit. + +M libnemo-private/nemo-icon-container.c + +commit dde8fff965302b2d73f3aed81d19e6f93a7c6334 +Author: Padraig O'Briain +Date: 2010-03-11 + + Don't use inline keyword + + Its unnecessary and breaks on e.g. sun compilers. + +M src/nemo-navigation-window.c +M src/nemo-navigation-window.h + +commit c25488049229c725dde566d9c37e90c0122a6dd2 +Author: Gabor Kelemen +Date: 2010-03-11 + + Updated Hungarian translation + +M po/hu.po + +commit 44ea265c75a6cf54145002d9323b8bec52f76e3d +Author: Tomas Bzatek +Date: 2010-03-10 + + Update for 2.29.92.1 + +M NEWS +M configure.in + +commit 8c8cf192d861a1a6c202624ee0b4c0ff43077080 +Author: Tomas Bzatek +Date: 2010-03-10 + + Fix compilation due to deprecated GTK_WIDGET_STATE symbol + + Also see https://bugzilla.gnome.org/show_bug.cgi?id=69872#c87 + +M libnemo-private/nemo-tree-view-drag-dest.c + +commit fab5d01888eb08e3721db7331011534e40afe24e +Author: Duarte Loreto +Date: 2010-03-10 + + Updated Portuguese translation + +M po/pt.po + +commit 2d40fbadb053bc7ad0d988050e58a81bfc3ea08b +Author: Tomas Bzatek +Date: 2010-03-09 + + Fix libm linking + + Nemo was underlinked, found by recently introduced change + in Fedora: + https://fedoraproject.org/wiki/Features/ChangeInImplicitDSOLinking + + /usr/bin/ld: + ../libnemo-private/.libs/libnemo-private.a(eel-canvas.o): + undefined reference to symbol 'floor@@GLIBC_2.0' + /usr/bin/ld: note: 'floor@@GLIBC_2.0' is defined in DSO /lib/libm.so.6 + so try adding it to the linker command line + /lib/libm.so.6: could not read symbols: Invalid operation + +M configure.in + +commit 4df08e047b42ae4d11cd1edbbb7e99f95ae1b326 +Author: Tomas Bzatek +Date: 2010-03-08 + + Remove obsolete defines + +M configure.in + +commit 02afb2f5f2b95185c42ecac87af089a8ca8488ab +Author: Alexander Larsson +Date: 2010-03-08 + + Bump version to 2.29.92 + +M configure.in + +commit 7d79c4ad6db9a39ca6d37bb7eadd95ff84ac2af5 +Author: Alexander Larsson +Date: 2010-03-08 + + Update NEWS for release + +M NEWS + +commit b6958cb2d9e699c3a81ab39b9aa7766f6070a832 +Author: Alexander Larsson +Date: 2010-03-08 + + Don't close the window you initiated an unmount in. + + Based on patch from Luke Symes + +M src/nemo-application.c +M src/nemo-navigation-window-slot.c + +commit 80dd8fb8ff0df3aa32314c633b04173517da3a36 +Author: Alexander Larsson +Date: 2010-03-08 + + Set initiated_unmount on windows while unmounting + +M src/file-manager/fm-directory-view.c +M src/file-manager/fm-directory-view.h +M src/nemo-places-sidebar.c + +commit 5e7f95842228f289b2940f23e63a2dd3b2cca842 +Author: Alexander Larsson +Date: 2010-03-08 + + Always call back from nemo_file_unmount/eject, even on success + +M libnemo-private/nemo-file.c + +commit 7fb5d7f6e4c32ab391eb9f3a61c0cab59c585874 +Author: Alexander Larsson +Date: 2010-03-08 + + Add nemo_file_operations_unmount_mount_full with a callback + +M libnemo-private/nemo-file-operations.c +M libnemo-private/nemo-file-operations.h + +commit 43f080c97369796043e45719933f536e0b29582f +Author: Luke Symes +Date: 2010-03-08 + + Implement the initiated_unmount property for NemoWindow. + + Windows will have this set to TRUE when one of their slots + initiates an unmount. + + https://bugzilla.gnome.org/show_bug.cgi?id=611569 + +M libnemo-private/nemo-window-info.c +M libnemo-private/nemo-window-info.h +M src/nemo-window-private.h +M src/nemo-window.c + +commit e1e1fe0d505bdb9b53d7204bba0abeee52f73bca +Author: Tomas Bzatek +Date: 2010-03-08 + + Load tracker/beagle at runtime + + Dynamically load tracker (preferred) and beagle client libraries on + demand if available. + This allows more flexibility for packagers and users. + + See bug 589345 for details. + +M configure.in +M libnemo-private/Makefile.am +M libnemo-private/nemo-search-engine-beagle.c +M libnemo-private/nemo-search-engine-tracker.c +M libnemo-private/nemo-search-engine.c + +commit bbe632e641df6f184de338b8215e390139adc573 +Author: Miloš Popović +Date: 2010-03-07 + + Fixed typo in Serbian translation + +M po/sr.po +M po/sr@latin.po + +commit e9e1dbc188983bac428bade85becbfea079306a0 +Author: Miloš Popović +Date: 2010-03-07 + + Updated Serbian translations + +M po/sr.po +M po/sr@latin.po + +commit 8217aa1931ed6f275d3651003fe3e599baaf8245 +Author: Christian Kirbach +Date: 2010-03-06 + + Updated German translation + +M po/de.po + +commit a6715be7e462109020f8450fe9781ea70e5ca128 +Author: Holger Berndt +Date: 2010-03-05 + + Bring back + for tab changing + + Make the first 10 tabs of every pane changable via keyboard + shortcuts +1, +2 etc. + This brings back non-GUI functionality that was removed together + with the tab menus in e156e39e07276a4de8414bfdb82340f8762060b4 + Fixes bug 609924 + +M src/nemo-navigation-window-menus.c + +commit 97ef4d40e6c743620e0629ee768b6df0effa61df +Author: Kjartan Maraas +Date: 2010-03-04 + + Updated Norwegian bokmål translation + +M po/nb.po + +commit 4f870048b8d6754e29dd5ed0c4104f453caf7d3b +Author: Rodrigo Moya +Date: 2010-03-04 + + Replace deprecated GTK_WIDGET_* macros and depend on newer GTK+ + +M configure.in +M libnemo-private/nemo-clipboard.c +M libnemo-private/nemo-horizontal-splitter.c +M libnemo-private/nemo-icon-canvas-item.c +M libnemo-private/nemo-icon-container.c +M libnemo-private/nemo-progress-info.c +M libnemo-private/nemo-tree-view-drag-dest.c +M src/file-manager/fm-list-view.c +M src/file-manager/fm-properties-window.c +M src/file-manager/fm-tree-view.c +M src/nemo-application.c +M src/nemo-bookmarks-window.c +M src/nemo-navigation-window-pane.c +M src/nemo-navigation-window.c +M src/nemo-notebook.c +M src/nemo-pathbar.c +M src/nemo-side-pane.c +M src/nemo-spatial-window.c +M src/nemo-window-manage-views.c +M src/nemo-window.c +M src/nemo-zoom-control.c + +commit af9305deb5a699fa430599685f25ad363d280808 +Author: Leonid Kanter +Date: 2010-03-04 + + Update Russian translation by Yury Kozlov + +M po/ru.po + +commit 4d742c83498df29d6f4b853dca946c0b4c4b13a3 +Author: Alexander Larsson +Date: 2010-03-03 + + Revert "Put tabs at the bottom" + + This reverts commit c6ee7553fd029239eff50d32dbcb57223ffa185e. + + We have gotten feedback that this experiment was not liked by users, + so reverting. + +M src/nemo-notebook.c + +commit 7aad24446ce11d8508853cc0541590d3c8e0f99d +Author: Umarzuki bin Mochlis Moktar +Date: 2010-03-03 + + Update Malaj translation. Fixes bug 610519. + +M po/ms.po + +commit 95ae539e8d042b04ee9c6817bcc41f551ab207fc +Author: Alexander Larsson +Date: 2010-03-03 + + Revert "Don't grab focus on realize" + + This reverts commit 4efd42312584b46f248e2839582a87776a7baebe. + + We now don't store the extra view visible status, so the problem this + change fixed is gone. And this change caused other focus issues, as + per bug 607060. + +M libnemo-private/nemo-icon-container.c + +commit c8ded383147e0f860f9a206e9f45606bf16effe9 +Author: Holger Berndt +Date: 2010-02-25 + + Don't remember status of extra pane in a gconf key + + The focus for Nemo' split view mode are occasional, temporary + switches to a split view mode for heavy-duty filebrowsing, not to + be a permanent double pane filemanager. Therefore, neither split-view + toggle status nor splitter position of a window are supposed to affect + subsequently opened windows. See comments at bug 608431. + +M libnemo-private/apps_nemo_preferences.schemas.in +M libnemo-private/nemo-global-preferences.c +M libnemo-private/nemo-global-preferences.h +M src/nemo-navigation-window.c + +commit 0b6dd131e0d4d4ce7694b824e9925c1d021d9754 +Author: Changwoo Ryu +Date: 2010-03-01 + + Updated Korean translation + +M po/ko.po + +commit 82018666fb492bb423f4bcaccfa9bd50d868974d +Author: Daniel Nylander +Date: 2010-02-28 + + Updated Swedish translation + +M po/sv.po + +commit 582c1021a4b2f9039296a67bb45f8c3d51c327d5 +Author: Piotr Drąg +Date: 2010-02-28 + + Updated Polish translation + +M po/pl.po + +commit 78ed12260a72967f7e1d135c4ffe7d51c44e3021 +Author: Mario Blättermann +Date: 2010-02-27 + + Updated German translation + +M po/de.po + +commit 1688fbbbcd1a55c7a731f65fdef31b9d7c90ed60 +Author: Joan Duran +Date: 2010-02-27 + + Updated Catalan translation + +M po/ca.po + +commit 533c274c00f1d6ab27b56e58363acd164e15d268 +Author: Torstein Adolf Winterseth +Date: 2010-02-27 + + Updated Norwegian Nynorsk translation + +M po/nn.po + +commit c7e51ada91e966af89b14c46f6fd20a4da0f5e3c +Author: Bruce Cowan +Date: 2010-02-24 + + Updated British English translation + +M po/en_GB.po + +commit 5dc02f0410a14b17bcdf74404b79c6b97a47c6e2 +Author: Gintautas Miliauskas +Date: 2010-02-23 + + Updated Lithuanian translation. + +M po/lt.po + +commit 64c484ae80012d120c3420f9fdd09915aaed32f4 +Author: Alexander Shopov +Date: 2010-02-23 + + Updated Bulgarian translation + +M po/bg.po + +commit 5f1d9d7b17a9b21d934d05e9c3e724a3ff3318a8 +Author: Alexander Larsson +Date: 2010-02-22 + + Require latest gnome-desktop for spanning bg + +M configure.in + +commit dd7f350e54b99c6644632062f44165e29a2fd8e6 +Author: Alexander Larsson +Date: 2010-02-22 + + Remove src/nemo-throbber.c from POTFILES.in + +M po/POTFILES.in + +commit 6b445d8c23b82327083ccd7a0254ccd5d001cfbc +Author: Alexander Larsson +Date: 2010-02-22 + + Update NEWS for release + +M NEWS + +commit d27a9a4260f76602a0c5e88706c1641e06515971 +Author: Alexander Larsson +Date: 2010-02-22 + + Use GtkSpinner instead of custom widget + + Forgot this part of the commit... + +M configure.in +M src/Makefile.am +M src/nemo-navigation-window.c +M src/nemo-notebook.c +M src/nemo-window-private.h +M src/nemo-window-toolbars.c + +commit 07a6c14e4008e6ea131e5740485e8bd66547db3e +Author: A. Walton +Date: 2010-02-22 + + Use GtkSpinner instead of custom widget + +D src/ephy-spinner.c +D src/ephy-spinner.h +D src/nemo-throbber.c +D src/nemo-throbber.h + +commit 472d7b454862e5a18a4e04f50162b1cfe41beb30 +Author: Luke Symes +Date: 2010-02-16 + + Go to computer:/// on unmount + +M src/nemo-application.c + +commit a3f5dde5051737beceeb6bc825758d0ecce1e3fd +Author: Luke Symes +Date: 2010-02-17 + + Fix location check in should_close_with_mount + + https://bugzilla.gnome.org/show_bug.cgi?id=318094 + +M src/nemo-navigation-window-slot.c + +commit 45f7cbb0bf331f6e99fc5cbb8dcc84f3b26455fa +Author: vasudeven +Date: 2010-02-21 + + updated Tamil translation + +M po/ta.po + +commit 8df9b4a10a31532c52f5fbc36f8dee60fa04948d +Author: Alexandre Franke +Date: 2010-02-20 + + Update French translation to show real last translator + +M po/fr.po + +commit e8099533621bdb3a24178ea05d5a88586259e319 +Author: Alexandre Franke +Date: 2010-02-20 + + Fixed French translation (closes bug 610365) + +M po/fr.po + +commit 47eaabdecb657c284366c1832206595e470242c6 +Author: Khaled Hosny +Date: 2010-02-19 + + Updated Arabic translation + +M po/ar.po + +commit 3de6a780cb9dde0c54537139a81ab8186b81ccde +Author: Matthias Clasen +Date: 2010-02-18 + + Make it possible to have backgrounds spanning multiple monitors. + + gnome-desktop added a new 'spanned' picture_option for this. This + fixes + bug 610396. + +M eel/eel-background.c +M eel/eel-background.h +M libnemo-private/nemo-directory-background.c + +commit 402f79e82c91b5129fa8fb11840d390a8527e2fb +Author: vasudeven +Date: 2010-02-18 + + updated Tamil translation + +M po/ta.po + +commit e570e2f6fd6ed73aa472d85409be2e01107caa5c +Author: Rene Pärts +Date: 2010-02-17 + + Estonian translation updated + +M po/et.po + +commit 5de7ed5ee5c9857615c2da8c6424fa99e365dc26 +Author: Fran Diéguez +Date: 2010-02-15 + + Updated Galician Translation + +M po/gl.po + +commit ecdea68af78c46fbf9b7ecfb77cc8f71f4cfb687 +Author: vasudeven +Date: 2010-02-15 + + updated Tamil translation + +M po/ta.po + +commit 6549e2e1ef18e20bd6023d645092ae7b3b735d2f +Author: Ask H. Larsen +Date: 2010-02-14 + + Updated Danish translation + +M po/da.po + +commit 467e375bc52d1ceb400534c5d9d2995de1b40789 +Author: Claude Paroz +Date: 2010-02-13 + + Updated French translation + + Contributed by Claude Paroz and Bruno Brouard + +M po/fr.po + +commit 8d7e2a397fe4a70707c9fb92a98c1dfe2b621e2e +Author: Lucian Adrian Grijincu +Date: 2010-02-13 + + Update Romanian translation + +M po/ro.po + +commit 662e19941905cf80a9131e56cefc4eab69f6e5da +Author: Fran Diéguez +Date: 2010-02-12 + + Updated Galician Translation + +M po/gl.po + +commit bbb9d918761c07e0711c058e7b8295b3d7079ff3 +Author: Matej Urbančič +Date: 2010-02-11 + + Updated Slovenian translation + +M po/sl.po + +commit 862ba955f5f918eca3853faef00de67f1066c5c7 +Author: Chao-Hsiung Liao +Date: 2010-02-10 + + Updated Traditional Chinese translation(Hong Kong and Taiwan) + +M po/zh_HK.po +M po/zh_TW.po + +commit ef76f4421331a8575f43db2c4cd5b26a2f5952a2 +Author: Tomas Bzatek +Date: 2010-02-09 + + Post release version bump + +M configure.in + +commit 574b9a27bcb631dfa616e856f9f11131ddd1e150 +Author: Tomas Bzatek +Date: 2010-02-09 + + Update for 2.29.90 + +M NEWS +M configure.in + +commit e302cf74e2374f3e3850b4341c3456199d520726 +Author: Gabor Kelemen +Date: 2010-02-08 + + Hungarian translation updated + +M po/hu.po + +commit 09c0a7dfeb8530dcf8cc871b7377d27e4c41c2bd +Author: Theppitak Karoonboonyanan +Date: 2010-02-08 + + Updated Thai translation. + +M po/th.po + +commit a38cc9eb354fb48f48c38501ccf649a9e3f412d5 +Author: Henrique P. Machado +Date: 2010-02-06 + + Updated Brazilian Portuguese translation + +M po/pt_BR.po + +commit 80ce7ee481d292fae620b878b1c83dd65d71dfbe +Author: Jorge González +Date: 2010-02-06 + + Updated Spanish translation + +M po/es.po + +commit ebca4f18692c06e8af724317a82328a84514e6b0 +Author: Claude Paroz +Date: 2010-02-06 + + Fix copy-pasted tooltip string + +M src/file-manager/fm-directory-view.c + +commit cd49c551d46a41d803d8bb76c7bef6d395e14369 +Author: Jennie Petoumenou +Date: 2010-01-31 + + Updated Greek translation + +M po/el.po + +commit fde78a67b016d7c59b86145ac31d6b46462ee1b0 +Author: Mattias Põldaru +Date: 2010-01-29 + + Updating Estonian translation + +M po/et.po + +commit cf6477ac9b5576ab0f28077d817388fc3b77637f +Author: Jamil Ahmed +Date: 2010-01-29 + + Updated Bengali translation + +M po/bn.po + +commit e7f8fdf47e421122a7d13703fd3ff6cb6cd14b82 +Author: Alexander Shopov +Date: 2010-01-26 + + Updated Bulgarian translation + +M po/bg.po + +commit 4474a1d606c486486eb88e5043da500dd5885e1d +Author: Alexander Larsson +Date: 2010-01-25 + + Post release version bump + +M configure.in + +commit 49967fd917d0ae5f3e5d63858199fd41e1cd0811 +Author: Alexander Larsson +Date: 2010-01-25 + + Update NEWS for release + +M NEWS + +commit 1b07696835481a911e44c5964eeb545537242cff +Author: Khaled Hosny +Date: 2010-01-23 + + Updated Arabic translation + +M po/ar.po + +commit e156e39e07276a4de8414bfdb82340f8762060b4 +Author: Alexander Larsson +Date: 2010-01-22 + + Remove tabs menu + + I don't think this menu is much use, and it clutters up the menus + even for + users who don't use tabs, which is against our policy of having + the more + advanced features affect users not using them as little as possible. + + Also, remove the setting to disable tabs althoughter, as with the menu + removed the tabs feature is very minimal when not in use. + +M libnemo-private/apps_nemo_preferences.schemas.in +M libnemo-private/nemo-global-preferences.c +M libnemo-private/nemo-global-preferences.h +M libnemo-private/nemo-mime-actions.c +M src/file-manager/fm-directory-view.c +M src/file-manager/fm-icon-view.c +M src/file-manager/fm-list-view.c +M src/file-manager/fm-tree-view.c +M src/nemo-actions.h +M src/nemo-navigation-window-menus.c +M src/nemo-navigation-window-pane.c +M src/nemo-navigation-window-pane.h +M src/nemo-navigation-window-ui.xml +M src/nemo-navigation-window.c +M src/nemo-places-sidebar.c +M src/nemo-window-private.h + +commit c9d59901003f635221299ca90887b830f3c0a3fa +Author: Kjartan Maraas +Date: 2010-01-22 + + Updated Norwegian bokmål translation + +M po/nb.po + +commit ec8b9a8b58ddd9d6bf08ac9e0b875581009255b3 +Author: Thomas Hindoe Paaboel Andersen +Date: 2010-01-18 + + Replace deprecated GTK_OBJECT_TYPE with G_OBJECT_TYPE + + GNOME bug 565038 + +M eel/eel-canvas.c + +commit 6146cd17e4340ca3af43050e405c7ef64efd6e5d +Author: Benjamin Berg +Date: 2010-01-19 + + Use test instead of fg for eel-editable-label test + + Since we use base for the background we should use text for + the foreground. (#548295) + +M eel/eel-editable-label.c + +commit 46af408406ace29ad8e52e26cdfb43c50c5b96ca +Author: Jorge González +Date: 2010-01-16 + + Updated Spanish translation + +M po/es.po + +commit fb138478020738917f0fe408e5c4e2fafd3c2bb8 +Author: Nelson Benítez León +Date: 2010-01-06 + + Update glib required version + +M configure.in + +commit 7fcd79f3d404a734095b4e42cfa36b45aad95c4d +Author: dumol +Date: 2010-01-10 + + Updated Romanian translation + +M po/ro.po + +commit e050b4134983ea14115d276ee41ba3e877952e52 +Author: Lucian Adrian Grijincu +Date: 2010-01-10 + + Updated Romanian translation + +M po/ro.po + +commit 344f80b837341e114f5a4f7473ad7d7cfa3c6efc +Author: Daniel Nylander +Date: 2010-01-09 + + Updated Swedish translation + +M po/sv.po + +commit c444f6d555df95ea2767992c0af6a7cdce3f0d53 +Author: Maxim V. Dziumanenko +Date: 2010-01-06 + + Update Ukrainian translation + +M po/uk.po + +commit dd151d503dbe6c12dca868b69a8bcddf8fc798b4 +Author: Timo Jyrinki +Date: 2010-01-06 + + A few fixes by me from Launchpad. + +M po/fi.po + +commit 8769220d5c95057470d58c7591732afc126b58a1 +Author: Mattias Põldaru +Date: 2010-01-05 + + Updating Estonian translation + +M po/et.po + +commit a12dd191b5b0286a975e8dbfb435ddc09ec1f930 +Author: Matej Urbančič +Date: 2010-01-02 + + Updated Slovenian translation + +M po/sl.po + +commit 331e69edcb178fe157a2990ea9beab0cd128a6be +Author: Khaled Hosny +Date: 2009-12-25 + + Updated Arabic translation + +M po/ar.po + +commit 972d4f7a4c04f1fffe1a6ad7aa8c4fc9b5bead49 +Author: Jorge González +Date: 2009-12-19 + + Updated Spanish translation + +M po/es.po + +commit 89c29e1beb04b7f0cc751976bff052af26faf8cd +Author: Alexander Larsson +Date: 2009-12-17 + + Move the navigation bar size group to be a cross window header + size group + + This way we can make sure we align the headers of the sidebar too. + +M src/nemo-navigation-window-pane.c +M src/nemo-navigation-window-pane.h +M src/nemo-navigation-window.c +M src/nemo-side-pane.c +M src/nemo-window-private.h + +commit 595150f7a94664fb247cef5b0af714fd7f1c0e6b +Author: Alexander Larsson +Date: 2009-12-17 + + Add nemo_side_pane_get_title + +M src/nemo-side-pane.c +M src/nemo-side-pane.h + +commit f8447895dbb680a7abbb483a80d1db05e07ee730 +Author: Alexander Larsson +Date: 2009-12-17 + + Post release version bump + +M configure.in + +commit 0c33ea773fa27da99187c3bd7ddfcbb42ed6d90d +Author: Alexander Larsson +Date: 2009-12-17 + + Fix up include + +M src/nemo-location-bar.h + +commit 056ac6c3deaad63f70b61c68743cd03baa0db726 +Author: Alexander Larsson +Date: 2009-12-17 + + Dist nemo-extension-private.h + +M libnemo-extension/Makefile.am + +commit 2622cc470fa482f8b766bd9a37afc1f0597b8e08 +Author: Alexander Larsson +Date: 2009-12-17 + + Remove the rest of shave + +M Makefile.am +M configure.in +D m4/Makefile.am + +commit 21b1aa0144389f7f0a9645d0a734fe5881223844 +Author: Alexander Larsson +Date: 2009-12-17 + + Update NEWS for release + +M NEWS + +commit e2363ba468bca0662a7f139386432a677478f722 +Author: Alexander Larsson +Date: 2009-12-17 + + Change "enable browser" prefs to "enable spatial" + + Since browser is now the default we want to change the description + and default state of the prefs UI for this to follow this change. + +M src/nemo-file-management-properties.c +M src/nemo-file-management-properties.ui + +commit 70f2f7c8e36898553ba0c6593aee1e8ee52bd7a7 +Author: Alexander Larsson +Date: 2009-12-17 + + Add eel_preferences_builder_connect_inverted_bool + +M eel/eel-preferences-builder.c +M eel/eel-preferences.h + +commit 07c0bf9cb422d38fb4c38faed7af261c5411378c +Author: Alexander Larsson +Date: 2009-12-17 + + Enable browser mode by default + + As discussed on the list we're moving to browser mode with the switch + to gnome-shell. Gnome-shell is not quite ready yet, but we want to + move towards that as early as possible so we can iron out all the + details in the new behaviour. + +M libnemo-private/apps_nemo_preferences.schemas.in +M libnemo-private/nemo-global-preferences.c + +commit c69f3a2ba2d0bd23de5a218b8ce13d256481213a +Author: Alexander Larsson +Date: 2009-12-17 + + When showing a window for the first time, focus the active slots view + +M src/nemo-window.c + +commit cf1e32162affc91b5b3a2ca934c0dee45e3f1a2e +Author: Alexander Larsson +Date: 2009-12-17 + + Set right slot in active pane state for new views + +M src/nemo-window.c + +commit 4efd42312584b46f248e2839582a87776a7baebe +Author: Alexander Larsson +Date: 2009-12-17 + + Don't grab focus on realize + + This causes problems when opening up an extra view as it forces it + to become focused which is not what we want. + +M libnemo-private/nemo-icon-container.c + +commit d9abc4bf2ff65009ab1521c31f0877b0e312c8a6 +Author: Alexander Larsson +Date: 2009-12-17 + + Move "go to same location as other pane" in the menus + + We don'r want separators around this single item, put it with the + navigation stuff instead (not ideal, but ok). + +M src/nemo-navigation-window-menus.c +M src/nemo-navigation-window-ui.xml + +commit ea28580ac582c6df66215b39743e3914c422f236 +Author: Alexander Larsson +Date: 2009-12-17 + + Fix typo + +M src/nemo-navigation-window-ui.xml + +commit 3fb63af8aed0f350f4eabf65085d80a4442a34b5 +Author: Alexander Larsson +Date: 2009-12-17 + + Remove switch to other pane menu item and make F6 do this instead + + This is a very useless menu item, its sole reason for existance is + to bind a keyboard combo to it. Instead we should just choose one. + + Some research indicate that F6 is standard for this. In Gtk+ F6 is + used for split view navigation in general, so it will toggle + between the + sidebar and the two views. However, you can reach the sidebar in other + ways using keynav, and the more important thing is the pane toggling, + so we override this and make F6 be pane switching only. + +M src/nemo-navigation-window-menus.c +M src/nemo-navigation-window-ui.xml + +commit b4f413314de5857867ef152384741c49f2613737 +Author: Alexander Larsson +Date: 2009-12-17 + + Replace shave with AM_SILENT_RULES + +M configure.in +M eel/Makefile.am +M libnemo-private/Makefile.am +D m4/shave-libtool.in +D m4/shave.in +D m4/shave.m4 + +commit 8f3e5b8d65d5c67ce6b762c8c33efc42ee13f6c3 +Author: Alexander Larsson +Date: 2009-12-17 + + Don't focus the search entry when we're activating a pane with search + + This is not the right behaviour, and additionally it caused problems + to do this from the focus in signal handler for the icon view, since + the recursion of the focus changes caused HAS_FOCUS state to be + mixed up. + +M src/nemo-navigation-window-menus.c +M src/nemo-navigation-window.c + +commit a9384103fe8822a351aa5256c21e00058bfef310 +Author: Alexander Larsson +Date: 2009-12-17 + + Set active pane when its search bar gets focus + +M src/nemo-navigation-window-pane.c + +commit e5806d3a65f0b6dda23d4c4c12d53a5d09cc1f52 +Author: Alexander Larsson +Date: 2009-12-17 + + Add event for search bar getting focus + +M src/nemo-search-bar.c +M src/nemo-search-bar.h + +commit aecc6b6abf1e1c313d2d4473902a2b9eb0e11827 +Author: Alexander Larsson +Date: 2009-12-17 + + Minor whitespace cleanups + +M src/nemo-window.c + +commit adc968f34c1085ce4e5378fba92655082052f13d +Author: Alexander Larsson +Date: 2009-12-17 + + Move nemo_navigation_window_pane_set_active into a vfunc + + Now nemo_window_pane_set_active works for both navigational + and spatial panes. + +M src/nemo-navigation-window-pane.c +M src/nemo-navigation-window-pane.h +M src/nemo-window-pane.c +M src/nemo-window-pane.h +M src/nemo-window.c + +commit 36ba547921917daa970bd2d8510e3cd1bef894bf +Author: Alexander Larsson +Date: 2009-12-16 + + Move active background color handling to the view + + This stuff references view implementations and should not be in + the generic code. + +M libnemo-private/nemo-view.c +M libnemo-private/nemo-view.h +M src/file-manager/fm-directory-view.c +M src/file-manager/fm-directory-view.h +M src/file-manager/fm-list-view.c +M src/nemo-window-slot.c + +commit 096453c004a2538b816046b0388d6cfb60b618b2 +Author: Alexander Larsson +Date: 2009-12-16 + + Remove unnecessary check + +M src/nemo-window-manage-views.c + +commit d40b44e5f54a16bdf91ebf2d291732941717fdc6 +Author: Alexander Larsson +Date: 2009-12-16 + + Clean up sync_location_widgets by using vtable calls instead of + type checks + +M src/nemo-navigation-window-pane.c +M src/nemo-navigation-window-pane.h +M src/nemo-window-pane.c +M src/nemo-window-pane.h + +commit 7c66c6c020edf40383681a6e691c1451ff90b9f7 +Author: Alexander Larsson +Date: 2009-12-16 + + Only update toolbar items when active pane changes + +M src/nemo-window-manage-views.c + +commit cc3241aa713b99c72f30b01be9179f9b7a4635fc +Author: Alexander Larsson +Date: 2009-12-16 + + Fix indentation + +M src/nemo-window-slot.c + +commit 3a9fae22b64e4c4c3fa66520314285b4a8b836bb +Author: Alexander Larsson +Date: 2009-12-16 + + Move sync_search_widgets from window to pane + + Since the search widgets are per pane we need only update them + for the pane, never for all the window. + +M src/nemo-navigation-window-pane.c +M src/nemo-navigation-window.c +M src/nemo-navigation-window.h +M src/nemo-window-manage-views.c +M src/nemo-window-pane.c +M src/nemo-window-pane.h +M src/nemo-window-slot.c +M src/nemo-window.c +M src/nemo-window.h + +commit a6b53ce4d5b811c854ef8987d1bf6af7ab355b68 +Author: Alexander Larsson +Date: 2009-12-16 + + On view selection failure, reload the right window + +M src/nemo-window-manage-views.c + +commit 1d62423f6518be0a063e93cc160a0ffdae26ff6d +Author: Alexander Larsson +Date: 2009-12-16 + + Remove nemo_window_sync_location_widgets + + Not used anymore + +M src/nemo-window-manage-views.c +M src/nemo-window-private.h + +commit 8a0ca66f2c2d69cc50cdbcc319f80529b1b30d00 +Author: Alexander Larsson +Date: 2009-12-16 + + Only sync the location bar on the affected pane + +M src/nemo-window-manage-views.c +M src/nemo-window-slot.c + +commit bc87c744f84fe3c787fd504d811db4ba5c50de79 +Author: Alexander Larsson +Date: 2009-12-16 + + Fix window slot close crash + + On window close via nemo_window_close when the viewed file + closed there was a ref on the slot living past the window. This + caused crashes when disposing the slot as it referenced the window. + We fix this by running the dispose handler when closing a slot + and by making the dispose handler able to run multiple times. + +M src/nemo-window.c + +commit 9d8f34fa253c9c2812cfc7a738e4751fff18c1dd +Author: Alexander Larsson +Date: 2009-12-16 + + Remove fm_directory_view_move_copy_items_between_views + + not used anymore + +M src/file-manager/fm-directory-view.c + +commit ce2e90c30506cbce28addf3258938824a1a61494 +Author: Alexander Larsson +Date: 2009-12-16 + + Revert "Pass the window instead of the view to action callbacks." + + This reverts commit f3390c4f9a277ffd95bc5f3c6e475d9dad7d8935. + + It makes no sense to pass the window for all view specific callbacks. + If anything needs to access the window that is easily doable from + the view reference. + + Conflicts: + + src/file-manager/fm-directory-view.c + +M src/file-manager/fm-directory-view.c + +commit 0a6c249015c7ab1cfa62e64428652970d397f57b +Author: Alexander Larsson +Date: 2009-12-16 + + Rearrange copy/move to menus and add home + desktop items + +M src/file-manager/fm-actions.h +M src/file-manager/fm-directory-view.c +M src/file-manager/nemo-directory-view-ui.xml + +commit 3bd562283262314fc8dd9840a3c1b5d390ab1860 +Author: Alexander Larsson +Date: 2009-12-16 + + Don't disable next pane ops if tabs are disabled + +M src/file-manager/fm-directory-view.c + +commit ef9b76bc41992a0bd9bb870e64ee0749bfe74d8b +Author: Alexander Larsson +Date: 2009-12-16 + + Remove unnecessary includes + +M src/nemo-window.c + +commit dc26bef3e209d654c8f952ff4837beb34c0fa8ae +Author: Alexander Larsson +Date: 2009-12-16 + + Remove next_pane functions from NemoWindowInfo + + No need for these, and they put FMDirectoryView at the wrong place. + +M libnemo-private/nemo-window-info.c +M libnemo-private/nemo-window-info.h +M src/nemo-window.c + +commit 0ea5a1bfe0815f71fcacec151852bada86b477f2 +Author: Alexander Larsson +Date: 2009-12-16 + + Remove use of nemo_window_info_copy_move_selection_to_next_pane + + Doing this via the window is unnecessary. + Also, we simplify the copy operation by not using cut+paste. + +M src/file-manager/fm-directory-view.c + +commit e0a6c302d23fde1e4781671f70d501fdeffb7c8f +Author: Alexander Larsson +Date: 2009-12-16 + + Don't use nemo_window_info_next_pane_is_writable + + Instead we can use get_extra_slot and other existing functions, thus + avoiding referencing fm-directory-view from the main code. + +M src/file-manager/fm-directory-view.c + +commit 1545e04eaf41068c3add34792815b2df84b7fd5d +Author: Alexander Larsson +Date: 2009-12-16 + + Use window_get_extra_slot instead of get_directory_view_of_next_pane + + We want to remove get_directory_view_of_next_pane as the main code + should not reference FMDirectoryView. + +M src/file-manager/fm-directory-view.c + +commit 6a71f0f996e7c946a10e263951a906dd9795c4dc +Author: Alexander Larsson +Date: 2009-12-16 + + Add nemo_window_info_get_extra_slot + +M libnemo-private/nemo-window-info.c +M libnemo-private/nemo-window-info.h +M src/nemo-window-private.h +M src/nemo-window.c + +commit 7545b45b7c1c1f849b01814304b24af5238dba7e +Author: Alexander Larsson +Date: 2009-12-16 + + Remove unnecessary includes + +M src/nemo-navigation-window.c + +commit fa563623570eeb6a0ab8d90aae386ecbbd740721 +Author: Emilio Pozuelo Monfort +Date: 2009-12-15 + + Bug 604574 - Fix NAME section in nemo-connect-server.1 + +M docs/nemo-connect-server.1 + +commit 9c7c2c9d2cc0a8648abf2dbc851e9efec3e3df1c +Author: Alexander Larsson +Date: 2009-12-15 + + Make trash keybindings only work if the action is sensitive + + This fixes https://bugzilla.gnome.org/show_bug.cgi?id=603413 in + a way not causing regressions. + +M src/file-manager/fm-directory-view.c + +commit d87cf7e75c37d139631807bc22c07ba879f8218f +Author: Alexander Larsson +Date: 2009-12-15 + + Use right signal handler for delete signal action + + This is not actually called atm, since an action overrides it, but + we should do it right anyway. + +M src/file-manager/fm-directory-view.c + +commit d5d94cdf05a8f775494e5445e0c899a4548d2690 +Author: Alexander Larsson +Date: 2009-12-15 + + Revert "Disable Trash/Delete key bindings when appropriate" + + This reverts commit e7c171acb8060436969139210060874f3a43d835. + It causes regressions (see bug 603413) + + Conflicts: + + src/file-manager/fm-directory-view.c + +M src/file-manager/fm-actions.h +M src/file-manager/fm-directory-view.c +M src/file-manager/nemo-directory-view-ui.xml + +commit 75bcfea177c837215ea46c970bfea24ec04a3dae +Author: Alexander Larsson +Date: 2009-12-14 + + Don't access uninitialized variable + + gdk_property_get doesn't set prop_text if it fails. + +M libnemo-private/nemo-icon-dnd.c +M libnemo-private/nemo-tree-view-drag-dest.c + +commit fb39afae9bf1027cf405f7309685327abd67f1bf +Author: Alexander Larsson +Date: 2009-12-14 + + Better tab size + + This removes the minimum size of tabs, since that causes problems + when there are little availible horizontal size (such as in split + view), as it caused ellipsizion to only work for strings larger + than the minimum set size. + + However, doing *just* this causes the tabs by default to be only + 3 chars wide, which is obviously also bad. So we enable tab-expansio + to solve this. + + The new situation is not ideal either, but its the best we can do + before this gtk bug is fixed: + + https://bugzilla.gnome.org/show_bug.cgi?id=125250 + +M src/nemo-notebook.c + +commit 7fb432ba6b6816076e9eb5cd6f586df2e90ed33a +Author: Alexander Larsson +Date: 2009-12-14 + + Better split view size allocation + + Ensure that the views always get *some* size so that we can at least + always see the scrollbars, etc. + + Also make the toplevel size of a pane be a fixed size, thus + guaranteeing + the two panes in a split view return the same size request, thereby + guaranteeing a default (if unset by user) position of 50%. Without + this + we could get e.g. a size request from the tabs or the location + bar size + change causing a change in the view splitter position. + +M src/nemo-navigation-window-pane.c +M src/nemo-navigation-window.c + +commit 50fece012964a9bea091a21bb51d65bf877a1ff4 +Author: Alexander Larsson +Date: 2009-12-14 + + Don't allow the right part of the sidebar split be shrunk + + Views at 0x0 pixels make no sense. + +M libnemo-private/nemo-horizontal-splitter.c + +commit ee66bca8b74b1530e29414ef226e12157e92d9b7 +Author: Alexander Larsson +Date: 2009-12-14 + + Make slot label/icon update work right + + We move the update calls to a bit later when all the slot-internal + state (like slot->location, etc) has been updated. + +M src/nemo-window-manage-views.c + +commit 53ae0522ab2ee458eb8235beaf6c8e3afefe49b6 +Author: Alexander Larsson +Date: 2009-12-14 + + Minor cleanup + + Use temporary variable to avoid casts. + +M src/nemo-navigation-window.c + +commit 451aafee60cd171650993c5b7640116319eebc9e +Author: Alexander Larsson +Date: 2009-12-11 + + Require latest gnome-desktop for gnome-bg changes + +M configure.in + +commit 04c26296fb78b6de1a5bf933e543734ce18bd062 +Author: Alexander Larsson +Date: 2009-12-11 + + Move status bar to under view in navigational view + + This means the status bar moves closer to what it shows the status + of. Additionally it gives more space for the sidebar, which is not + needed for the normally small status messages we have. + +M src/nemo-navigation-window.c +M src/nemo-spatial-window.c +M src/nemo-window.c + +commit 7c1207aa1317e95762b9773f7a2ca72a96177942 +Author: Alexander Larsson +Date: 2009-12-11 + + If starting with split view, create extra slot durin construction + +M src/nemo-navigation-window.c + +commit 1a6db1b3ff79971f75ad309c22d60c14b2af2857 +Author: Alexander Larsson +Date: 2009-12-11 + + Don't show the window until all views in it are visible + + For the dual-pane at startup case we want to delay window + change until all views are loaded. Also when switching to + split view we want to delay showing until the view is loaded. + +M libnemo-private/nemo-window-info.c +M libnemo-private/nemo-window-info.h +M src/file-manager/fm-directory-view.c +M src/nemo-navigation-window-pane.c +M src/nemo-window-pane.c +M src/nemo-window-pane.h +M src/nemo-window-slot.h +M src/nemo-window.c +M src/nemo-window.h + +commit 84631cacd1909000ebd43b7267b7cacb8115d857 +Author: Alexander Larsson +Date: 2009-12-11 + + When loading a location in a slot also load in other non-loaded panes + + This makes sure that if a window is created with more than one pane + we'll load something in each of them. + +M src/nemo-window-manage-views.c + +commit fbbf8701595d4b6ad3cef93cc83e861d35b34859 +Author: Alexander Larsson +Date: 2009-12-11 + + Fix up indentation + +M src/nemo-window.c + +commit fb87db4e78a494623921a1ad844b86448965a924 +Author: Alexander Larsson +Date: 2009-12-11 + + Update location for all active slots + + When the location changes for a slot we should update it if its + the active slot in its pane (since each pane has a location bar), + not only if its in the active pane. + +M src/nemo-window-manage-views.c + +commit 605cdcc062c77c3badcb03eb0c8f97385b4739a4 +Author: Alexander Larsson +Date: 2009-12-11 + + Remove nemo_window_get_pane_from_slot + + This is useless, just look at slot->pane + +M src/nemo-window-private.h +M src/nemo-window.c + +commit 877da7dab374c4ae66ee57b7e5c10e672058b523 +Author: Alexander Larsson +Date: 2009-12-11 + + Only sync tab name in menu for the active pane + +M src/nemo-navigation-window.c + +commit 55f1438bf898c819504dae540a7540ec30508f1e +Author: Alexander Larsson +Date: 2009-12-11 + + Don't rewrite bookmarks file when file appearance changes + + We no longer write the icon to the bookmarks file so this is just + unnecessary. Also this means we don't rewrite the bookmark file + on each + startup. + +M src/nemo-bookmark-list.c + +commit 3fab1d20298552000369480a694186fd7354f586 +Author: Alexander Larsson +Date: 2009-12-11 + + Fix up background setting for non-desktop windows + +M eel/eel-background.c + +commit c68a696dcb8884ded4571c375e368f3f3375d068 +Author: Alexander Larsson +Date: 2009-12-10 + + Only fade the desktop background, not normal windows + + All this flashing is just in the way, especially when the + color changes as part of a pane going inactive. + +M eel/eel-background.c + +commit 6e5323188fc6af5d8920a01c3e34496df3320760 +Author: Alexander Larsson +Date: 2009-12-10 + + Remove border width on notebook + + This makes the view line up with the sidebar, etc. + +M src/nemo-navigation-window-pane.c + +commit 09efd40fbb2cd924bfee6650bea50e2ffb21a349 +Author: Alexander Larsson +Date: 2009-12-10 + + Remove border on statusbar + + https://bugzilla.gnome.org/show_bug.cgi?id=499361 + +M src/nemo-window.c + +commit 9bc68d825f3e928e736caf213b84371607a6bd41 +Author: Baptiste Mille-Mathias +Date: 2009-12-10 + + Put border around file views + + https://bugzilla.gnome.org/show_bug.cgi?id=499361 + +M src/file-manager/fm-directory-view.c + +commit c6ee7553fd029239eff50d32dbcb57223ffa185e +Author: Alexander Larsson +Date: 2009-12-10 + + Put tabs at the bottom + + There is way to much visual clutter at the top already, with the + location + bars and toolbars. + +M src/nemo-notebook.c + +commit 4b49aab5aa6a9ef9ab288ff2ce463affca1eacf2 +Author: Alexander Larsson +Date: 2009-12-10 + + Remove location button + + This takes a lot of space for something thats not commonly used. + Especially with two of it visible in split view mode. + + Maybe we should make a preference for it, but its not interesting + in the main UI. + +M src/nemo-navigation-window-pane.c +M src/nemo-navigation-window-pane.h + +commit df7048157403efefb560c5d1075f04088af3048b +Author: Holger Berndt +Date: 2009-12-05 + + Improve search button handling in split view mode + + This commit fixes issues that were introduced in + merge commit e92c336df90df012746d08d9af8121edc38b0f3c + Now the escape key during temporary search toggles the search key + off again, + as does changing active pane during temporary searches. + +M src/nemo-navigation-window-pane.c +M src/nemo-navigation-window.c +M src/nemo-navigation-window.h + +commit 8bafe8109f2151ee1febfc4a00255b92053c2ef8 +Author: Holger Berndt +Date: 2009-06-25 + + Fix View -> Location Bar in dual pane mode. + + Although each pane has a separate location bar, the show/hide location + bar setting is window-global instead of applying to individual panes: + Either both panes have a location bar, or neither one + does. Inconsistencies with remembered show/hide location bar gconf + setting were also fixed. + +M src/nemo-navigation-window-menus.c +M src/nemo-navigation-window.c + +commit ee3c49268205cd6fd99694706a4b2b7e3aca8086 +Author: Alexander Larsson +Date: 2009-12-10 + + Remember extra pane status access windows. + + The status of the extra pane display is remembered in a gconf key, + analog to show/hide statusbar and other window display properties. As + the extra-pane action implementation does a lot of widget and action + re-ordering, this can only be done when a windows is set up + completely, and is thus delayed in an idle-callback. If splitting the + view is to be done on startup, the showing of the window is delayed to + avoid ugly visible reordering. + +M libnemo-private/apps_nemo_preferences.schemas.in +M libnemo-private/nemo-global-preferences.c +M libnemo-private/nemo-global-preferences.h +M src/nemo-actions.h +M src/nemo-navigation-window-menus.c +M src/nemo-navigation-window.c +M src/nemo-navigation-window.h +M src/nemo-window-slot.c +M src/nemo-window.c + +commit 5d236a20aadd291196e6ead3a2220e9c0258b126 +Author: Holger Berndt +Date: 2009-06-13 + + Make it possible for Nemo Scripts to access the other pane. + + This is accomplished by placing additional variables into the + environment of the script, analoguous to the single-pane ones: + - NEMO_SCRIPT_NEXT_PANE_SELECTED_FILE_PATHS + - NEMO_SCRIPT_NEXT_PANE_SELECTED_URIS + - NEMO_SCRIPT_NEXT_PANE_CURRENT_URI + + If there is no second pane in the window, these are set to empty + strings. + +M libnemo-private/nemo-window-info.c +M libnemo-private/nemo-window-info.h +M src/file-manager/fm-directory-view.c +M src/nemo-window.c + +commit 09359fd13b52c5f5cebe55a9efae21c0290fe86f +Author: Holger Berndt +Date: 2009-06-13 + + Implement "Go to same location as other pane" menu item. + +M src/nemo-navigation-window-menus.c +M src/nemo-navigation-window-ui.xml + +commit a0bd4bc51d556a44ada296b3d3ec22e6c19f04f4 +Author: Holger Berndt +Date: 2009-06-13 + + Implement "Switch to other pane" menu item. + +M src/nemo-navigation-window-menus.c +M src/nemo-navigation-window-ui.xml +M src/nemo-window-pane.c +M src/nemo-window-pane.h +M src/nemo-window-private.h + +commit 0a5d182ac274a0b11a39daa41285fbf1d39b1e70 +Author: Holger Berndt +Date: 2009-07-20 + + Also draw background of inactive pane in insensitive color when in + list view + +M src/nemo-window-slot.c + +commit 2f843f0ed243a1c1f184c69e166c9da710fe1618 +Author: Holger Berndt +Date: 2009-06-13 + + Draw background of inactive panes in INSENSITIVE color. + + In order to make it easier to visually distinguish active and inactive + panes, the background of inactive panes is drawn in the theme's + INSENSITIVE color. Like the inactive location bar widgets, this is + only a visual marker, and does not mean that that pane is + insensitive. It's still clickable, and in fact a click makes the + corresponding pane active. + +M eel/eel-background.c +M eel/eel-background.h +M src/nemo-window-pane.c +M src/nemo-window-slot.c +M src/nemo-window-slot.h + +commit 4cc909a668692551db92a67bcb36b7cdeb473579 +Author: Holger Berndt +Date: 2009-06-11 + + Implement "{copy,move} to other pane" menus. + +M libnemo-private/nemo-window-info.c +M libnemo-private/nemo-window-info.h +M src/file-manager/fm-actions.h +M src/file-manager/fm-directory-view.c +M src/file-manager/fm-directory-view.h +M src/file-manager/nemo-directory-view-ui.xml +M src/nemo-shell-ui.xml +M src/nemo-window-private.h +M src/nemo-window.c + +commit 7191f6fa4f3013481463c1181b51b705d5c48d9a +Author: Holger Berndt +Date: 2009-06-11 + + Fix tab menus in split view mode. Only the menu of the active pane + is inserted. + +M src/nemo-navigation-window-menus.c +M src/nemo-navigation-window-pane.c +M src/nemo-navigation-window.c +M src/nemo-window.c + +commit c3da9152ce3efadbeaf92340ca832af6dbfc6266 +Author: Holger Berndt +Date: 2009-06-11 + + Make location bar more reactive, part 2: navigation bar + + Followup to the last commit: The location bar of the inactive pane now + has an insensitive apprearance, but is in fact clickable/focusable. A + click makes the corresponding pane active via the focus-in event of + the entry widget. + +M src/nemo-location-bar.c +M src/nemo-location-bar.h +M src/nemo-navigation-window-pane.c + +commit 689fd8e7ac943f1bed48dc0f6aad4b0e418e1005 +Author: Holger Berndt +Date: 2009-06-11 + + Make location bar more reactive: path bar, toggle button and zoom + control + + The buttons in the directory button bar are made inactive when the + corresponding pane is inactive. This means that the buttons have an + insensitive appearance, but are in fact clickable. Clicking on them + will make the corresponding pane active while changing into the + respective directory. + + This required the pathbar to export the button widget, done with the + new function nemo_path_bar_get_button_from_button_list_entry(). + +M src/nemo-navigation-window-pane.c +M src/nemo-pathbar.c +M src/nemo-pathbar.h +M src/nemo-zoom-control.c +M src/nemo-zoom-control.h + +commit 531ff030ef016b118f174252b1ac9aee0e385c63 +Author: Holger Berndt +Date: 2009-06-07 + + Don't use a function to get the active slot. + +M src/nemo-window-slot.c + +commit f3390c4f9a277ffd95bc5f3c6e475d9dad7d8935 +Author: Holger Berndt +Date: 2009-06-07 + + Pass the window instead of the view to action callbacks. + + With dual pane, actions may work on more than one view. Thus it makes + sense to pass the window instead of the view to the callbacks. If the + callbacks want the old behaviour, they first need to get the active + view of the window, and work with that. + +M src/file-manager/fm-directory-view.c + +commit 3cb24525f5e3681592900a3db49f2862debf084d +Author: Holger Berndt +Date: 2009-06-07 + + Also active/deactive panes based on focus-in-event for list views + +M src/file-manager/fm-list-view.c + +commit 02529b86015195128ebcbe3702888445727d5679 +Author: Holger Berndt +Date: 2009-06-06 + + Propagate activation in slot-info interface + +M libnemo-private/nemo-window-slot-info.c +M libnemo-private/nemo-window-slot-info.h +M src/file-manager/fm-icon-view.c +M src/nemo-window-slot.c + +commit 01e94440638904b0bc546b1ef1081a88e92d3e8e +Author: Holger Berndt +Date: 2009-05-27 + + Start implementation of "add extra pane" menu item callback + + Upon activating that menu item, create new pane and pack into the + split view hpane. + + On deactivation, delete non-active pane. + +M src/file-manager/fm-list-view.c +M src/file-manager/fm-list-view.h +M src/nemo-navigation-window-pane.c +M src/nemo-navigation-window.c + +commit 8babbe1095134861e4e57f482557587ee9b78576 +Author: Holger Berndt +Date: 2009-05-25 + + Add skeleton for split view. + + Add a new menu item "View -> Extra pane", and corresponding skeleton + callback functions and UI containers. + +M src/nemo-navigation-window-menus.c +M src/nemo-navigation-window-pane.h +M src/nemo-navigation-window-ui.xml +M src/nemo-navigation-window.c +M src/nemo-navigation-window.h +M src/nemo-window-private.h + +commit 6fc12915c7e3b8e92696630117afb5d5f5aaf60c +Author: Alexander Larsson +Date: 2009-12-10 + + Move location from toolbar to pane widget + +M src/nemo-navigation-window-menus.c +M src/nemo-navigation-window-pane.c +M src/nemo-navigation-window-pane.h +M src/nemo-navigation-window-slot.c +M src/nemo-navigation-window.c +M src/nemo-window-manage-views.c +M src/nemo-window-pane.c +M src/nemo-window-pane.h +M src/nemo-window.c + +commit e1fe45ddde92aece9aafdeb2febcfe76178e48b1 +Author: Holger Berndt +Date: 2009-05-24 + + Move notebook from window into pane + + This is another refactorisation commit. A notebook is also pane + specific, not window specific. In particular, the following function + logic has been moved: + + notebook_popup_menu_move_left_cb + notebook_popup_menu_move_right_cb + notebook_popup_menu_close_cb + notebook_popup_menu_show + notebook_tab_close_requested + notebook_button_press_cb + notebook_popup_menu_cb + notebook_switch_page_cb + nemo_navigation_window_pane_setup_notebook + + The following functions have been renamed: + + nemo_navigation_window_initialize_tabs_menu to + nemo_navigation_window_pane_initialize_tabs_menu + (also made public) + + nemo_window_get_slot_for_content_box to + nemo_window_pane_get_slot_for_content_box + +M src/nemo-navigation-window-menus.c +M src/nemo-navigation-window-pane.c +M src/nemo-navigation-window-pane.h +M src/nemo-navigation-window-slot.c +M src/nemo-navigation-window.c +M src/nemo-navigation-window.h +M src/nemo-notebook.c +M src/nemo-window-pane.c +M src/nemo-window-pane.h +M src/nemo-window-private.h +M src/nemo-window.c + +commit f14e7d47456867899016889756f32120dda847fb +Author: Alexander Larsson +Date: 2009-12-09 + + Move location bar entries to pane + + Location bar entries are pane-specific, not window + specific. Therefore, it is neccessary to move significant parts of the + logic around, mainly from NemoWindow to NemoWindowPane, and + NemoNavigationWindow to NautilisNavigationWindowPane. + + In particular, the following functions have been moved into the pane: + + bookmark_list_get_uri_index + restore_focus_widget + search_bar_activate_callback + search_bar_cancel_callback + navigation_bar_cancel_callback + navigation_bar_location_changed_callback + location_button_should_be_active + location_button_toggled_cb + path_bar_location_changed_callback + path_bar_button_pressed_callback + path_bar_button_released_callback + path_bar_button_drag_begin_callback + path_bar_path_set_callback + nemo_navigation_window_show_location_bar_temporarily + nemo_navigation_window_show_navigation_bar_temporarily + nemo_navigation_window_path_bar_showing + nemo_navigation_window_set_bar_mode + nemo_navigation_window_search_bar_showing + nemo_navigation_window_hide_location_bar + nemo_navigation_window_show_location_bar + nemo_navigation_window_location_bar_showing + nemo_window_zoom_{in,out,to_level,to_default} + + The location bar setup parts of nemo_navigation_window_init() have + been moved to nemo_navigation_window_pane_setup_location_bar. + + The following fuctions have been made public: + + hide_temporary_bars + load_view_as_menu + unset_focus_widget + update_up_button + + Much logic of the following functions has been moved to the pane, but + the functions themselves have been left in the window as triggers: + + nemo_navigation_window_hide_temporary_bars + nemo_window_sync_location_widgets + +M src/nemo-application.c +M src/nemo-location-bar.c +M src/nemo-location-bar.h +M src/nemo-navigation-window-menus.c +M src/nemo-navigation-window-pane.c +M src/nemo-navigation-window-pane.h +M src/nemo-navigation-window-slot.c +M src/nemo-navigation-window.c +M src/nemo-navigation-window.h +M src/nemo-window-manage-views.c +M src/nemo-window-manage-views.h +M src/nemo-window-pane.c +M src/nemo-window-pane.h +M src/nemo-window-private.h +M src/nemo-window.c + +commit 014b488d184fafe59f29810d372eccebd3c66876 +Author: Holger Berndt +Date: 2009-05-18 + + Use the new NemoNavigationWindowPane class in + NemoNavigationWindow's + +M src/nemo-navigation-window.c + +commit 651053fec975b95536b7e967c7e8b81732b1f740 +Author: Holger Berndt +Date: 2009-05-18 + + Add new class NemoNavigationWindowPane, derived from + NemoWindowPane + + NemoWindowPane is the base class for window panes, while + NemoNavigationWindowPane will add some functionality spefic + to panes + in a Nemo navigation window. + +M po/POTFILES.in +M src/Makefile.am +A src/nemo-navigation-window-pane.c +A src/nemo-navigation-window-pane.h + +commit e1db3d61f6510a8f6cc063ba84b5fa26bebf6189 +Author: Alexander Larsson +Date: 2009-12-07 + + Associate basic slot functions to panes instead of windows. + +M src/nemo-application.c +M src/nemo-navigation-window-menus.c +M src/nemo-navigation-window.c +M src/nemo-spatial-window.c +M src/nemo-window-manage-views.c +M src/nemo-window-manage-views.h +M src/nemo-window-pane.h +M src/nemo-window-private.h +M src/nemo-window.c +M src/nemo-window.h + +commit e7f2144e38c02f6aeba7b563e8bc1fb195616477 +Author: Alexander Larsson +Date: 2009-12-07 + + Move slots from NemoWindow to NemoWindowPane + + A window does not hold lists of slots anymore, but lists of panes, + which + in turn hold lists of slots, making a slot effectively a layer between + a window and a slot. Much of the remaining part of the patch is + simply replacing "window->details->active_slot" with + "window->details->active_pane->active_slot" and similar + changes. Commits + to move corresponding parts of the logic out of the window into + the pane + are to follow. + +M src/nemo-application.c +M src/nemo-location-bar.c +M src/nemo-location-dialog.c +M src/nemo-navigation-action.c +M src/nemo-navigation-window-menus.c +M src/nemo-navigation-window-slot.c +M src/nemo-navigation-window.c +M src/nemo-spatial-window.c +M src/nemo-window-bookmarks.c +M src/nemo-window-manage-views.c +M src/nemo-window-pane.c +M src/nemo-window-pane.h +M src/nemo-window-private.h +M src/nemo-window-slot.c +M src/nemo-window-toolbars.c +M src/nemo-window.c + +commit d3ee81d3021204786c3c51bf9f651fffbd10ff0b +Author: Holger Berndt +Date: 2009-01-31 + + Associate a slot to a pane instead of a window + + NemoWindowSlot->window is removed and NemoWindowSlot->pane + is added. All references to window is then replaces with + ->pane->window. + +M src/nemo-application.c +M src/nemo-navigation-window-menus.c +M src/nemo-navigation-window-slot.c +M src/nemo-navigation-window.c +M src/nemo-spatial-window.c +M src/nemo-window-manage-views.c +M src/nemo-window-slot.c +M src/nemo-window-slot.h +M src/nemo-window.c + +commit adc0b289f6f92751bd40a6005375eae2a79439c3 +Author: Alexander Larsson +Date: 2009-12-07 + + Add a NemoWindowPane to all windows + +M src/nemo-navigation-window.c +M src/nemo-spatial-window.c +M src/nemo-window-private.h +M src/nemo-window.c + +commit daa113b66fbf4193cdb049c11bd3df9f98f4ba0a +Author: Holger Berndt +Date: 2009-01-30 + + Introduce concept of a NemoWindowPane + + A pane is another layer around a slot. For spatial windows, a pane + will contain a single slot. For navigation windows, a pane will + contain a + list of slots, as well as a corresponding toolbar items. + +M src/Makefile.am +A src/nemo-window-pane.c +A src/nemo-window-pane.h +M src/nemo-window-private.h +M src/nemo-window.c + +commit 8e69e90733dcb1bd65d2fdcc2a026cb458c25ed2 +Author: Alexander Larsson +Date: 2009-12-09 + + Remove all traces of old view-as and zoom widgets + +M src/nemo-navigation-window.c +M src/nemo-navigation-window.h +M src/nemo-window.c +M src/nemo-window.h + +commit 14def79a4e1cd7d78d0dd155fa5b643f440859e7 +Author: Alexander Larsson +Date: 2009-12-09 + + Add a view as toolbar item using the view-as action + +M src/nemo-navigation-window-menus.c +M src/nemo-navigation-window-ui.xml + +commit c7aeb63442007fbdac9feff66cc4541972162738 +Author: Alexander Larsson +Date: 2009-12-09 + + Add NemoViewAsAction + + This is an action that makes it easy to create a view as toolbar item. + +M src/Makefile.am +A src/nemo-view-as-action.c +A src/nemo-view-as-action.h + +commit bff56af563ee232815c6bd0502869fac7eb97476 +Author: Alexander Larsson +Date: 2009-12-09 + + Add NemoWindow::view-as-changed + +M src/nemo-window.c + +commit 946f377fc531b47ba71f85b8d57a4f2f20c9c432 +Author: Alexander Larsson +Date: 2009-12-09 + + Use NemoZoomAction to put zoom item in toolbar + +M src/nemo-navigation-window-menus.c +M src/nemo-navigation-window-ui.xml + +commit da25dfdc1e94aae68bb9ff35497e7c2481449389 +Author: Alexander Larsson +Date: 2009-12-09 + + Add NemoZoomAction + + This is an action that can be used to easily put zoom items in + toolbars. + +M src/Makefile.am +A src/nemo-zoom-action.c +A src/nemo-zoom-action.h + +commit 70298f3dfc04c6c7cc995c94af7b67d97d60a66a +Author: Alexander Larsson +Date: 2009-12-09 + + Add NemoWindow::zoom-changed signal + +M src/nemo-window.c + +commit 27b7859f2aa6d61b0b4cf5ae48333dc089ddf56f +Author: Alexander Larsson +Date: 2009-12-09 + + Add VOID:INT,BOOLEAN,BOOLEAN,BOOLEAN,BOOLEAN marshaller + + Needed for zoom-changed signal + +M libnemo-private/nemo-marshal.list + +commit 3add7e368af3ea9f37e2f5f386543cf228b0b74f +Author: Baptiste Mille-Mathias +Date: 2009-12-10 + + Add border on sidebar (remove on header) + + https://bugzilla.gnome.org/show_bug.cgi?id=499361 + +M src/file-manager/fm-tree-view.c +M src/nemo-emblem-sidebar.c +M src/nemo-history-sidebar.c +M src/nemo-places-sidebar.c +M src/nemo-side-pane.c + +commit 49193a40792ba8df413a3b361940f977dc009aef +Author: Alexander Larsson +Date: 2009-12-10 + + Add shadow_type arg to eel_scrolled_wrap_table_new + +M eel/eel-wrap-table.c +M eel/eel-wrap-table.h +M src/file-manager/fm-properties-window.c +M src/nemo-emblem-sidebar.c + +commit 60dd20355079003afe3ba342e6233834afeffd39 +Author: William Jon McCann +Date: 2009-12-03 + + Fixes to enable per-monitor backgrounds + + https://bugzilla.gnome.org/show_bug.cgi?id=147808 + +M eel/eel-background.c + +commit 90b8c56e64caa7fd2435cdb619c8ed83971b9519 +Author: Aron Xu +Date: 2009-12-09 + + Update Simplified Chinese translation, + +M po/zh_CN.po + +commit 2d61fcdf4987802441b7d9dab5364a28fb2dbd7c +Author: Alexander Larsson +Date: 2009-12-08 + + Don't leak NemoDirectory + +M libnemo-private/nemo-file.c + +commit ac9f08eb1f74b32c432b0a4904fb57e982202a4c +Author: Alexander Larsson +Date: 2009-12-08 + + Don't leak NemoDirectory + +M src/nemo-navigation-window.c + +commit 8c3e5abb396bb67274d9e3d769295ece33b52091 +Author: Alexander Larsson +Date: 2009-12-08 + + Use nemo_directory_unref to unref directories + + Its nice to have nemo_directory_ref/unref paired for help when + debugging. + +M src/file-manager/fm-tree-model.c + +commit 18763611ef08a6915b4bfd03a3c0bc287ba142ca +Author: Alexander Larsson +Date: 2009-12-07 + + Forgot to add nemo-extension-private.h in last commit + +A libnemo-extension/nemo-extension-private.h + +commit 09877bd2c4da7282f3d341297af75eda197f3e33 +Author: Kjartan Maraas +Date: 2009-12-05 + + Updated Norwegian bokmål translation. + +M po/nb.po + +commit 881f208b876c6e4386d54a0db3fca26aaa34ff71 +Author: Alexander Larsson +Date: 2009-12-04 + + Add lookup and creator functions for NemoFileInfo objects + + This has been requested by many extension developers. + +M libnemo-extension/nemo-file-info.c +M libnemo-extension/nemo-file-info.h +M libnemo-private/nemo-file.c + +commit 002bea81792cdfe6f4e45da95a59708040566171 +Author: Alexander Larsson +Date: 2009-12-04 + + Don't change background on the initial style_set call + + This results in queueing an unnecessary background change + which causes the EelBackground to be unrealized wrongly. + + This fixes https://bugzilla.gnome.org/show_bug.cgi?id=578136 + +M eel/eel-background.c + +commit fd2e7311edd0d673adc21efdd7d4c6585723c730 +Author: Alexander Larsson +Date: 2009-12-04 + + Revert commit 7b86b78e2ff6a0f1b45ac8f8a9c30cf3d0c6ae96 + + This is not the right solution + +M eel/eel-background.c + +commit d876890dfdbcd7c6255f14f9b910255598fcf84b +Author: Khaled Hosny +Date: 2009-12-04 + + Fix typo + +M po/ar.po + +commit 7ad4b090a3d90f9333d2efdd52f2019a1cab1292 +Author: Ivar Smolin +Date: 2009-12-01 + + Updating Estonian translation + +M po/et.po + +commit e7c171acb8060436969139210060874f3a43d835 +Author: Michael Terry +Date: 2009-12-01 + + Disable Trash/Delete key bindings when appropriate + + This makes trash/delete key binding be enabled/disabled just like + the menu items are. + +M src/file-manager/fm-actions.h +M src/file-manager/fm-directory-view.c +M src/file-manager/nemo-directory-view-ui.xml + +commit 523a87744cdf86123da2de4e42a650aa0e891259 +Author: Daniel Nylander +Date: 2009-11-30 + + Updated Swedish translation + +M po/sv.po + +commit 2fb27dad4661dfce14a1ac5c7bc23e68fec7ee5c +Author: Yaron Shahrabani +Date: 2009-11-30 + + Update Hebrew translation + +M po/he.po + +commit 529ebf07a31e3a460f0ebde97833235136e50cf4 +Author: Ivar Smolin +Date: 2009-11-29 + + Updating Estonian translation + +M po/et.po + +commit 519ec1ef646f5edeff75801e592ab8f9e7423f82 +Author: Alexander Larsson +Date: 2009-11-27 + + Don't free uninitilized errors + + test_dir_is_parent doesn't set error, so no need to free it. + +M libnemo-private/nemo-file-operations.c + +commit 58e8653a8b0eb885f73c65eebc5926539eef9687 +Author: Gabor Kelemen +Date: 2009-11-27 + + Updated Hungarian translation + +M po/hu.po + +commit c125ec694bb7f7159cb72a3eb15f5845fc2c10ef +Author: Alexander Larsson +Date: 2009-11-27 + + Go to default location (not root) when clicking on mount in sidebar + +M src/nemo-places-sidebar.c + +commit ce39f704ff3494893a1198697cc2ae7b12f0d7ee +Author: Alexander Larsson +Date: 2009-11-27 + + Use mount default location for desktop links + +M libnemo-private/nemo-desktop-link.c + +commit 817803aaeefd9ebf6ee1df4053f8f986943d91f5 +Author: Alexander Larsson +Date: 2009-11-27 + + Handle GMount default_location in pathbar as fake root + +M src/nemo-pathbar.c + +commit d9d860a8e2fa5d41ff941ce5dc8e80672c05d5b8 +Author: Alexander Larsson +Date: 2009-11-27 + + Clean up fake-root handling + +M src/nemo-pathbar.c + +commit 5b1159927b98b569fcb22f05986a140a7c42ba0a +Author: Alexander Larsson +Date: 2009-11-26 + + Ensure show-hidden-files UI is uptodate + + When we read the per-location show-hidden-files setting, also + update the UI. + + Fixes bug #568089. + +M src/nemo-window-manage-views.c + +commit 09f24d05eae830fd0ec696267f85e02debdc95a7 +Author: Jorge González +Date: 2009-11-27 + + Updated Spanish translation + +M po/es.po + +commit 5e86595f45d8470732dee1bd820512f5229bf160 +Author: Matej Urbančič +Date: 2009-11-26 + + Updated Slovenian translation + +M po/sl.po + +commit 04c84927339a18aac3c8ee2fa3b2f6edc88e969f +Author: Nils-Christoph Fiedler +Date: 2009-11-25 + + Updated LowGerman translation + +M po/nds.po + +commit 6f0c44a70f62395e6281604601075994fa921afc +Author: Alexander Larsson +Date: 2009-11-25 + + Add entry icon to search bar + + This way you can activate a search using the mouse. + (Bug #598256) + +M src/nemo-search-bar.c + +commit eee73c5eb6d83955a7b7a1af9a86f8294eea218a +Author: Nikos Verschore +Date: 2009-11-25 + + Make search button a toggle button + + Make the search button on the toolbar toggle between search + and normal mode. + See: https://bugzilla.gnome.org/show_bug.cgi?id=332078 + +M src/nemo-navigation-window-menus.c +M src/nemo-navigation-window-ui.xml +M src/nemo-navigation-window.c +M src/nemo-navigation-window.h +M src/nemo-query-editor.c + +commit 6ff1e3881e070a0a235208cc10dfdc53e8faa0aa +Author: Alexander Larsson +Date: 2009-11-25 + + Avoid deprecated gtk_button_pressed/released + + We replace these with direct use of deprecated signals, + which is not ideal either. However, it makes us not reference + depcrecated symbols and makes it works. I don't know how else + to solve this. + +M src/nemo-navigation-action.c +M src/nemo-window-menus.c + +commit 6161343d9d3eaa4fa044613085c00415852f8b55 +Author: Pierre Wieser +Date: 2009-11-25 + + Allow absolute pathnames for plugin menu/toolbar item icons. + +M libnemo-private/nemo-ui-utilities.c +M src/file-manager/fm-directory-view.c + +commit 36d83807cc0744e131e3532714849a7d1bbbf65d +Author: Pierre Wieser +Date: 2009-11-25 + + Add nemo_icon_info_lookup_from_path() + +M libnemo-private/nemo-icon-info.c +M libnemo-private/nemo-icon-info.h + +commit 4ea889ee82a66fb929920589322eb0565984f31d +Author: Tao Wei +Date: 2009-11-24 + + Updated Simplified Chinese translation. + +M po/zh_CN.po + +commit 2c50a8dea92273286404ba1e87f892354fb9b777 +Author: Jorge González +Date: 2009-11-19 + + Updated Spanish translation + +M po/es.po + +commit 7a890c3f5adb8eb35e208958b293e03c691c7830 +Author: Alexander Larsson +Date: 2009-11-19 + + Ensure range checking works below zero + + We add an int to an unsigned and then check for underflow, but + this check will never trigger for unsigned variables like an enum. + We fix this by using a signed value for the addition result. + +M src/file-manager/fm-list-view.c + +commit 1f8f54f4777343dda87043e444a24c3f86e90439 +Author: Alexander Larsson +Date: 2009-11-19 + + Ensure ABS calls work on difference of unsigned values + + guint64 - guint64 is of type guint64, so ABS doesn't work on it. + Cast to gint64 to make sure this works. + +M libnemo-private/nemo-file-operations.c + +commit 3c0cc87da5eccab0c022d5bfee6191af4a3f4ea9 +Author: Matej Urbančič +Date: 2009-11-18 + + Updated Slovenian translation + +M po/sl.po + +commit a76fe6975c0e3a31aa8d8ab4ddf3b7afbafbe274 +Author: James Dietrich +Date: 2009-10-27 + + Complete XDS support + + https://bugzilla.gnome.org/show_bug.cgi?id=585790 + +M libnemo-private/nemo-dnd.h +M libnemo-private/nemo-file-dnd.c +M libnemo-private/nemo-file-operations.c +M libnemo-private/nemo-file-operations.h +M libnemo-private/nemo-icon-container.c +M libnemo-private/nemo-icon-container.h +M libnemo-private/nemo-icon-dnd.c +M libnemo-private/nemo-marshal.list +M libnemo-private/nemo-tree-view-drag-dest.c +M libnemo-private/nemo-tree-view-drag-dest.h +M src/file-manager/fm-directory-view.c +M src/file-manager/fm-directory-view.h +M src/file-manager/fm-icon-view.c +M src/file-manager/fm-list-view.c + +commit f146e054849fef9300e9fc8786c11e2d9b7c91d7 +Author: Marcus Carlson +Date: 2009-10-12 + + Changed the "event-after" signal to "changed" to update the "Location" + / "Go to" label Change the secondary icon in the location to a "Go" + (play) icon when the label is "Go to" otherwise a clear icon + + https://bugzilla.gnome.org/show_bug.cgi?id=163245 + +M src/nemo-location-bar.c +M src/nemo-location-entry.c +M src/nemo-location-entry.h + +commit 3ee90909fa92feaf3df0964eed2b95c5d968ba98 +Author: Tomas Bzatek +Date: 2009-11-10 + + Unfreeze updates in directory list view after rename cancellation + + We successfully cancelled rename operation but the directory view + was left in frozen state, containing pseudo items with NULL elements. + + Fixes bug 590591. + +M src/file-manager/fm-list-view.c + +commit e487552287e5970dbbb39199b55026f2788bb42b +Author: Alexander Larsson +Date: 2009-11-17 + + Correctly update the request counters + + The request counters weren't updated by + nemo_directory_add_file_monitors + and nemo_directory_remove_file_monitors. This can cause a number + of weird + problems, including those described in bug #598931. + + This checkin fixes this, and fixes bug #598931. + +M libnemo-private/nemo-directory-async.c + +commit f60a28846a32543849a4916d032efdf71e167548 +Author: Alexander Larsson +Date: 2009-11-17 + + Add debug code for tracking down errors in request counters + + nemo_directory_verify_request_counts can be uncommented and called + in various places to catch when the request counters are not properly + updated. + +M libnemo-private/nemo-directory-async.c + +commit 0f638d6505b3adbd2d73fa1bd5894d62d40a2844 +Author: Kjartan Maraas +Date: 2009-11-15 + + Updated Norwegian bokmål translation. + +M po/nb.po + +commit f829c8fe28f221a153f9bedb5f7c86073f082550 +Author: Aron Xu +Date: 2009-11-14 + + Updated Simplified Chinese translation. + +M po/zh_CN.po + +commit 50836f6b37714516a7fb561475b3fe36666b1749 +Author: Alexander Shopov +Date: 2009-11-13 + + Updated Bulgarian translation + +M po/bg.po + +commit e5247083a16425171858e2a61ec54efee8191eac +Author: Thomas Thurman +Date: 2009-11-11 + + Further Shavian translation + +M po/en@shaw.po + +commit 97d98d9c7aeef53378bd07dfac78bf9ea770383e +Author: Mario Blättermann +Date: 2009-11-10 + + Added nds to LINGUAS + +M po/LINGUAS + +commit a0216f02be4793f8d0a19a3cdff5ae1619748472 +Author: Nils-Christoph Fiedler +Date: 2009-11-10 + + Added Low German translation + +A po/nds.po + +commit 13f4560aeeedd3f1626556d688e008aaf9b97f20 +Author: Thomas Thurman +Date: 2009-11-10 + + Shavian translation + +M po/LINGUAS +A po/en@shaw.po + +commit 2bad8fcd7c67439826b7174bad4d2bfa5dee36c9 +Author: Kjartan Maraas +Date: 2009-11-09 + + Single gtk/gdk includes. + +M eel/eel-canvas.h + +commit c0d618993a79f655f474532ed8d1d0118d479a68 +Author: Jovan Naumovski +Date: 2009-11-06 + + Minor fix in Macedonian translation. + +M po/mk.po + +commit 0458c87d2f5561d03eb1bae593a867135c3c14a5 +Author: Matej Urbančič +Date: 2009-11-06 + + Updated Slovenian translation + +M po/sl.po + +commit 6613262f4e6d40d153299d7fd4726210268a2a53 +Author: Cosimo Cecchi +Date: 2009-11-02 + + Don't get drag data in list mode if we don't support the target. + + This fixes bug #600183. + +M libnemo-private/nemo-tree-view-drag-dest.c + +commit 71e7b576751c1192fe0c05529619f4c0aba674c0 +Author: Cosimo Cecchi +Date: 2009-11-02 + + Emit the selection-changed signal when inverting. + + Do emit the selection-changed signal in NemoIconContainer when we + invert the selection, so that the views can update the UI items + accordingly (#600308). + +M libnemo-private/nemo-icon-container.c + +commit 51150a7fb834a7e6e64511e7f7cf7070328222c8 +Author: Kostas Papadimas +Date: 2009-11-01 + + Updated Greek translation + +M po/el.po + +commit a16d73fa256e7bcf15f36136dea2bec7b37aefaf +Author: Gintautas Miliauskas +Date: 2009-10-30 + + Updated Lithuanian translation. + +M po/lt.po + +commit d727babc5ebbc7d282d80fbace69a7401eb3795e +Author: Gintautas Miliauskas +Date: 2009-10-25 + + Updated Lithuanian translation. + +M po/lt.po + +commit bf8571a78f1f8c73ea449e56fa413abb3f40b91c +Author: Cosimo Cecchi +Date: 2009-10-25 + + Move functions outside of #ifdefs (#599290) + + This unbreaks the build if you compile without EXIF/EXEMPI. + +M src/nemo-image-properties-page.c + +commit ec8b2f666d175860b36a29870160a41446e0c160 +Author: drtvasudevan +Date: 2009-10-23 + + Updated Tamil translation + +M po/ta.po + +commit 04025fea82e720c6704da76c5e4d786775a7fb00 +Author: Tomas Bzatek +Date: 2009-10-20 + + Handle failed connection to tracker daemon 0.7 series + + Also, consolidate string memory management, to be consistent and clear + on a first sight. + + Related to changes in bug 596082. + +M libnemo-private/nemo-search-engine-tracker.c + +commit 9be1fc059a2f7ce429592be5a6e2a56e7a36a8d7 +Author: Jorge González +Date: 2009-10-20 + + Updated Spanish translation + +M po/es.po + +commit fe2d7c35cc4f35c2dfd3e9345e354bd388fceca8 +Author: Reşat SABIQ +Date: 2009-10-20 + + Another minor update for Crimean Tatar (Crimean Turkish) translation + +M po/crh.po + +commit ed199bbd9762a248d9b5036b7130d8965d13dfb9 +Author: Reşat SABIQ +Date: 2009-10-19 + + Update for Crimean Tatar (Crimean Turkish) translation + +M po/crh.po + +commit 7f3453af4c59331e77dc09f07fdd9b24d533620a +Author: Cosimo Cecchi +Date: 2009-10-18 + + Use separate labels for attributes (#598545). + + This is useful so that we can easily select the text for each + attribute. + +M src/nemo-image-properties-page.c + +commit 67d827e10e34186b4d3c1410817a5f7aac507b14 +Author: Kjartan Maraas +Date: 2009-10-17 + + Updated Norwegian nynorsk translation and fixed a typo. Closes bug + #598607 reported by Torstein A. W. + +M po/nn.po + +commit f2ab25b7705e4f320e0fdb33a8ad8f302cb1cf0d +Author: Sveinn í Felli +Date: 2009-10-16 + + Updated Icelandic translation + +M po/is.po + +commit 006abaefbb5d30718678a212cd595a8a7d436d58 +Author: Anna Jonna Ármannsdóttir +Date: 2009-10-02 + + Updated Icelandic translation + +M po/is.po + +commit d1f92784496217f82c4f38b64f51b6820efc6fba +Author: Nguyễn Thái Ngọc Duy +Date: 2009-10-13 + + po/vi.po: update translation of "Places" + +M po/vi.po + +commit 16226ab944780b9b5a65fe2a38e02f4bcf470254 +Author: Jorge González +Date: 2009-10-11 + + Updated Spanish translation + +M po/es.po + +commit 3b96ca69946453a4744a58f997289b86f7d41d5d +Author: drtvasudevan +Date: 2009-10-10 + + Updated Tamil translation + +M po/ta.po + +commit 23278532505862816bd5c8c0ab7d17f7a07b4790 +Author: Cosimo Cecchi +Date: 2009-10-09 + + Always check if the drag dest supports the source. + + In the "drag-motion" callback, make sure we check for target != + GDK_NONE + before getting non-existent data for it. + +M libnemo-private/nemo-dnd.c +M src/nemo-places-sidebar.c + +commit 8ef1a18f81a588525fe2cf069ecc9f58a8b6b6ba +Author: Ivar Smolin +Date: 2009-10-10 + + Updating Estonian translation + +M po/et.po + +commit a2e04a10329f5391b968f82b6110112de0dc2fad +Author: Stephen Cook +Date: 2009-10-07 + + Remove very old unnecessary FIXMEs. + + Closes bug #41245. + +M libnemo-private/nemo-global-preferences.c +M src/nemo-navigation-window.c +M src/nemo-window.c + +commit af9f607c258270cd08e3b994017bc1ca134099fc +Author: A. Walton +Date: 2009-10-07 + + Bug 589375 - Crashes with empty location in edit bookmarks + + Check that the length of the text in the entry is non-NULL. + +M src/nemo-bookmarks-window.c + +commit 488a462382bd43a0ad04e274441537d508669c8a +Author: Matthias Clasen +Date: 2009-10-07 + + Remove an ugly hack to detect KDE desktop (#564208). + +M src/nemo-application.c + +commit f28404dd6af7e95c8038e9f73a31f19398b148c2 +Author: Xu Li +Date: 2009-07-17 + + correct the value of GtkRecentData.app_exec in + nemo_recent_add_file() + +M libnemo-private/nemo-recent.c + +commit 1dd60a63b0048e093da2e2f710bca6a922e4029e +Author: Frédéric Péters +Date: 2009-08-22 + + Remove deprecated Encoding key from desktop files + +M data/nemo-autorun-software.desktop.in.in +M data/nemo-browser.desktop.in.in +M data/nemo-computer.desktop.in.in +M data/nemo-file-management-properties.desktop.in.in +M data/nemo-folder-handler.desktop.in.in +M data/nemo-home.desktop.in.in +M data/nemo.desktop.in.in +M src/network-scheme.desktop.in + +commit cbec5342514b7f52bf654fff418f10bea3aac7ca +Author: Nelson Benítez León +Date: 2009-05-01 + + Avoid crash when holding space bar on focused navigation buttons + + Fixes bgo#580926 + +M src/nemo-navigation-window-menus.c +M src/nemo-window-menus.c + +commit 370ebf572e4e8d401f65fa7b575899e82fc9dfa7 +Author: Cosimo Cecchi +Date: 2009-10-07 + + Use the right GConf key for the disable_tabs setting (#580220). + +M libnemo-private/nemo-global-preferences.h + +commit 3ef9873b86ec14ccd33680acb232fa0df0eb11ce +Author: Cosimo Cecchi +Date: 2009-10-07 + + Chain up to the parent handler if we click outside any row. + + By doing so, the tree view widget will gain focus anyway. + Fix bug #589088. + +M src/file-manager/fm-list-view.c + +commit f29571245545750e26ae84b3b383ab7619ea10bc +Author: Marcus Carlson +Date: 2009-10-06 + + Show tooltips in places sidebar + + https://bugzilla.gnome.org/show_bug.cgi?id=595616 + +M src/nemo-places-sidebar.c + +commit 3966879080237672d41e2aab0499a5852ef00ea9 +Author: Marcus Carlson +Date: 2009-10-03 + + Make changing visible columns instant. Wasn't like always like this + before because nemo-vfs-file.c saved metadata async. + + https://bugzilla.gnome.org/show_bug.cgi?id=597227 + +M src/file-manager/fm-list-view.c + +commit 143fd025cc20423cc9eb8b3a255b4a102a58efce +Author: Marcus Carlson +Date: 2009-10-03 + + Adds a "Copy Anyway" option when copying files and disk space is + not enough + + https://bugzilla.gnome.org/show_bug.cgi?id=324361 + +M libnemo-private/nemo-file-operations.c + +commit c7bfedfbf8883ddeacfdd0818d7c1af9530c4f52 +Author: Marcus Carlson +Date: 2009-10-06 + + Select all on F2 in rename mode + + This is a another quick way to switch from not selecting extension + to selecting everything (in addition to the existing shift-F2 combo). + +M libnemo-private/nemo-icon-container.c +M src/file-manager/fm-list-view.c + +commit 56f33af7601fb8a1ce28a953ae7516eb7e46c7a5 +Author: Jochen Skulj +Date: 2009-10-05 + + Updated German translation + +M po/de.po + +commit 7bff0191b0c94c6570c5ffd3d34e8b1cf30da408 +Author: Denis ARNAUD +Date: 2009-10-05 + + Updated breton translation + +M po/br.po + +commit 58a073303977708516d3a1ff4528a7ef7ace7f26 +Author: Marcus Carlson +Date: 2009-09-29 + + Adds an option to select the application to open an unkown file type + upon error opening the file. + + https://bugzilla.gnome.org/show_bug.cgi?id=92497 + +M libnemo-private/nemo-mime-actions.c + +commit d013bf32daa0db99693bc86b6930b56c3d59b42a +Author: Kostas Papadimas +Date: 2009-09-29 + + Updated Greek translation. + +M po/el.po + +commit 3dd2ddccb759b41762026de8c3f82b0257a73ff8 +Author: Jennie Petoumenou +Date: 2009-09-29 + + Updated Greek translation + +M po/el.po + +commit 8fe1a569690abd8a472041886b883b55852d445f +Author: Marcus Carlson +Date: 2009-09-29 + + Add multiselect capability to list view + + Use Ctrl+shift to do multiple range selects (#410497) + +M src/file-manager/fm-list-view.c + +commit 0b8af64dc9ca5994215362f163e2c09a2d79e9bd +Author: Jorge González +Date: 2009-09-28 + + Updated Spanish translation + +M po/es.po + +commit 6abf7ba3b026306493ee40f8164e7f632f5c5265 +Author: Marcus Carlson +Date: 2009-09-28 + + Add checkbox for not associating a filetype on open with + + https://bugzilla.gnome.org/show_bug.cgi?id=92497 + +M libnemo-private/nemo-open-with-dialog.c + +commit b6112210f2b4c26951c4104a5d46d5b54ec58e2b +Author: Alexander Larsson +Date: 2009-09-28 + + Bump version to 2.29.1 on master + +M configure.in + +commit 80e87af1b4956e0c1dcb252564a71cf51286ab3f +Author: A +Date: 2009-09-28 + + Fix Bug 593523 - Typo in nemo volume mgmt. + +M src/file-manager/fm-directory-view.c + +commit 08e6114dbdf4553b4bcc12a38b0955da153c8efe +Author: Jürg Billeter +Date: 2009-09-23 + + Update tracker support for version 0.7 + + Fixes bug 596082. + +M configure.in +M libnemo-private/nemo-search-engine-tracker.c + +commit a2a7f3a2a7909824c7a2643d9251c0e74f17b548 +Author: Timo Jyrinki +Date: 2009-09-25 + + Update Finnish translation (transition from ”taltio” to + ”asema”) + +M po/fi.po + +commit 541c225fea1d616d01862d0f6b0ff9086317540a +Author: Tomas Bzatek +Date: 2009-09-24 + + Don't rely on activation_uri when detecting mounts + + We test for the activation_uri + (i.e. G_FILE_ATTRIBUTE_STANDARD_TARGET_URI) + which is usually not exposed from computer:// items until the item + is mounted + (and that's up to particular gvfs volume monitor). + + Simply don't test for activation_uri, file type of + G_FILE_TYPE_MOUNTABLE + should be enough. + + This fixes https://bugzilla.redhat.com/show_bug.cgi?id=518570 + +M libnemo-private/nemo-directory-async.c + +commit e15707648d6d92abe455107718a1e0a440c7fe1f +Author: Christian Neumair +Date: 2009-09-24 + + Correctly position icons for text, netscape URI and URI list drops + + When dropping text, a netscape URI or a URI list to the desktop, + remember + the position where the drop happened and position the created icon + accordingly. + Fixes #350022. + +M src/file-manager/fm-directory-view.c + +commit 069494e971bba9bfad5cd6997ecf9138677a9bc0 +Author: Takayuki KUSANO +Date: 2009-09-23 + + Fix Japanese translation + +M po/ja.po + +commit 6fec4348ef56f1df6f7609f9632a5bf4c6512e4d +Author: Takayuki KUSANO +Date: 2009-09-23 + + Updated Japanese translation + +M po/ja.po + +commit 1055993807fe882a3588f59fe0d93b0b0bb063d8 +Author: Alexander Larsson +Date: 2009-09-21 + + Post release version bump + +M configure.in + +commit c3b8ec1d6927ccc743e57c315cc2a3ba007ec769 +Author: Alexander Larsson +Date: 2009-09-21 + + Update for 2.28.0 release + +M NEWS +M configure.in + +commit 9fc52ea33822f02e2b5ab876f7ae3ddbcea67523 +Author: Shankar Prasad +Date: 2009-09-21 + + Updated Kannada(kn) translation + +M po/kn.po + +commit 0cdc94d5345c17e2e929dbd18290ad3e933eb3e5 +Author: Petr Kovar +Date: 2009-09-20 + + Updated Czech translation by Lucas Lommer + + Thanks goes to Tomas Bzatek. + +M po/cs.po + +commit cd62ad01e18c0b3b0932af4a9262da1906f2f63a +Author: Amitakhya Phukan +Date: 2009-09-20 + + Updating Assamese translations + +M po/as.po + +commit 40df45a49785a31c2bdbafef3c8a99766333c5a1 +Author: A S Alam +Date: 2009-09-19 + + Updating Translation for Punjabi by A S Alam + +M po/pa.po + +commit 8823a3815e0dfcdf92059140d72556ab3acd3b8e +Author: Theppitak Karoonboonyanan +Date: 2009-09-19 + + Updated Thai translation. + +M po/th.po + +commit 0f075e8e97ad070796584d086678c0e1ad539188 +Author: Takayuki KUSANO +Date: 2009-09-19 + + Updated Japanese translation + +M po/ja.po + +commit 752e68860bd37941c5fdef3ae29113d12f8dc195 +Author: Manoj Kumar Giri +Date: 2009-09-18 + + Upadated Oriya Translation + +M po/or.po + +commit 7242f95d083cebfff768d693d2ebf4282154d508 +Author: Matej Urbančič +Date: 2009-09-18 + + Updated Slovenian translation + +M po/sl.po + +commit a728376835fdd39fa505acb84584f7d2600801f2 +Author: Luca Ferretti +Date: 2009-09-18 + + Updated Italian translation + +M po/it.po + +commit a8097e57788ad735227489e6c51d06bedc796889 +Author: Alexander Larsson +Date: 2009-09-18 + + Don't load files for thumbnailing that we can't thumbnail anyway + + When zooming out we read the real image and use that as the thumbnail. + However, we should only do this for files gdk-pixbuf can read as other + things can't be read anyway and may potentially be very large (such as + videos) since the thumbnail size limit only applies for images. + +M libnemo-private/nemo-file.c +M libnemo-private/nemo-thumbnails.c +M libnemo-private/nemo-thumbnails.h + +commit 4a88ecde61a52ac058999d95388ade9f668482d4 +Author: Maxim V. Dziumanenko +Date: 2009-09-17 + + Added Ukrainian translation + +M po/uk.po + +commit 51a2a0abd0bd3f6f36737b5afef3ff49a7fa602c +Author: Denis ARNAUD +Date: 2009-09-17 + + Updated breton translation + +M po/br.po + +commit 5d641153c201f4cbc4d62ac10eb2437a8be5fb78 +Author: Mohammad Anwari +Date: 2009-09-16 + + Updated Indonesian translation by Andika Triwidada + +M po/id.po + +commit adc53a499c5c143612d7e9b22340efc38240da1d +Author: Ilkka Tuohela +Date: 2009-09-15 + + Updated Finnish translation + +M po/fi.po + +commit b5af4e6c9c6af492210514af922aa0ed4029dce6 +Author: Ilkka Tuohela +Date: 2009-09-15 + + Updated Finnish translation + +M po/fi.po + +commit 8da7fdac2375f5b5d0354926b6c130ced602aaaa +Author: Rajesh Ranjan +Date: 2009-09-15 + + hindi update by Rajesh Ranjan + +M po/hi.po + +commit ba75188ad883fc3be36ebad0740512b03a6e373c +Author: Sweta Kothari +Date: 2009-09-15 + + Updated Gujarati Translations + +M po/gu.po + +commit 43275654dc3b762841339f2771137d8013f0fe43 +Author: Astur +Date: 2009-09-14 + + Updated Asturian translation + +M po/ast.po + +commit bd87d7555759021a012691d59d8707c4118a17c7 +Author: Gil Forcada +Date: 2009-09-14 + + Minor fix to Catalan translation + +M po/ca.po + +commit 96781b9d29259e175f73b87a30eaadf1e12c7490 +Author: Carles Ferrando +Date: 2009-09-14 + + Updated Catalan (Valencian) translation + +M po/ca@valencia.po + +commit d6b8cb28c7208e0776bb483cde464472249c73ba +Author: Alexander Larsson +Date: 2009-09-14 + + Avoid refing NULL icons + +M src/file-manager/fm-directory-view.c + +commit eb05225a794de9c7b9326d1e1c56f54902bb6bb5 +Author: Kjartan Maraas +Date: 2009-09-14 + + Update Norwegian bokmål translation. + +M po/nb.po + +commit 58a9e227e519369bca5c7c9897e386110bdda242 +Author: Ani +Date: 2009-09-14 + + Updaeted Malayalam Translations + +M po/ml.po + +commit 4fb28a5541e564adff7f3a03582c2cb7ed4e294f +Author: Lucian Adrian Grijincu +Date: 2009-09-14 + + Updated Romanian translation + +M po/ro.po + +commit 979be859028ba20384eee4f907fc647a060cb9fc +Author: Ilkka Tuohela +Date: 2009-09-13 + + Updated Finnish translation + +M po/fi.po + +commit 78244d5d698786a98d00ef1513e8294825b8813c +Author: Bruce Cowan +Date: 2009-09-12 + + Updated British English translation + +M po/en_GB.po + +commit e8610aaf1e276993a9942697decc4dc81a5c0168 +Author: Ask H. Larsen +Date: 2009-09-12 + + Updated Danish translation + +M po/da.po + +commit da24fa0b829c31c4417fed03374b4ad4f63392e8 +Author: Reinout van Schouwen +Date: 2009-09-12 + + * 2009-09-12 Reinout van Schouwen + + - po/nl.po: Updated Dutch translation + +M po/nl.po + +commit 48744242700d5dc9de21ef6c33df8eedb757b715 +Author: Miloš Popović +Date: 2009-09-11 + + Fixes in Serbian translation + +M po/sr.po +M po/sr@latin.po + +commit 02ea89fd4f92faade026de9463aca4171f4c04d1 +Author: Gabor Kelemen +Date: 2009-09-11 + + Updated Hungarian translation + +M po/hu.po + +commit 8c636df9374993990ba8a23bbcb986e572508510 +Author: Žygimantas Beručka +Date: 2009-09-10 + + Updated Lithuanian translation + +M po/lt.po + +commit 46aefc46372624957509f971a325e06fe8249c21 +Author: Alexander Larsson +Date: 2009-09-10 + + Make the desktop window native so the backing pixmap is drawn by X + + Without this X draws the toplevel window background and then the + real background is drawn from exposes, which doesn't look nice. + Fixes bug #593658 + +M libnemo-private/nemo-icon-container.c + +commit 594f76e9231eeadfc7972560cf162e921d66aac6 +Author: Denis ARNAUD +Date: 2009-09-09 + + Updated breton translation + +M po/br.po + +commit d67e3e2377229e19128a2405b70580448fc5e487 +Author: Sweta Kothari +Date: 2009-09-09 + + Updated Gujarati Translations + +M po/gu.po + +commit b6e45ba165064f508aedad4212759700f0b99f7d +Author: A S Alam +Date: 2009-09-09 + + Updaitng for Punjabi + +M po/pa.po + +commit 714e8534c90addab5b795cc39c98142ddea17242 +Author: Piotr Drąg +Date: 2009-09-09 + + Updated Polish translation + +M po/pl.po + +commit e6e10b6facdd8a7058fa5c283462c9f4777a1079 +Author: Sandeep Shedmake +Date: 2009-09-08 + + Updated Marathi Translations + +M po/mr.po + +commit 21e5e7d3898764a8d493dede40606a9b9e6aa7aa +Author: Alexander Larsson +Date: 2009-09-08 + + Free get_types_table internal hashtable on exit + +M libnemo-private/nemo-thumbnails.c + +commit 5b075cfa665d07ee6c57e68f6f67aaca76a3b308 +Author: Alexander Larsson +Date: 2009-09-08 + + Fix minor leak + +M src/nemo-application.c + +commit d442315c303db2def885a00d0abed257156185ce +Author: Alexander Larsson +Date: 2009-09-08 + + Free return value from nemo_file_get_metadata_list + +M src/file-manager/fm-list-view.c + +commit 75298a3ded74e42b047f95f0746ea3dca8e0a6b7 +Author: Alexander Larsson +Date: 2009-09-08 + + Print leaked unique eel_ref_str:s at exit + +M eel/eel-string.c + +commit b698cf1932da077f07d99966a4c61568a1ae081e +Author: Alexander Larsson +Date: 2009-09-08 + + Fix threadsafety issue in eel_ref_str_unref + + Its not safe to just decrement count if we didn't read a 1, as we + could race with another decrement. + +M eel/eel-string.c + +commit 26714114eefe841c4b3eaa5a3a93b50ec69f76a8 +Author: Alexander Larsson +Date: 2009-09-08 + + Don't leak list of gconf entries + +M libnemo-private/nemo-desktop-directory-file.c + +commit 2434bd43cd43eb8ba97b1a956e4b3cd734cf2a91 +Author: Alexander Larsson +Date: 2009-09-07 + + Fix usage of sink, fixing many recently introduced leaks. + + The conversion away from gtk_object_sink was done wrongly + causing lots of leaks. fix this. + +M eel/eel-background.c +M eel/eel-gtk-extensions.c +M libnemo-private/nemo-dnd.c +M src/file-manager/fm-list-view.c +M src/file-manager/fm-tree-view.c +M src/nemo-emblem-sidebar.c +M src/nemo-history-sidebar.c +M src/nemo-information-panel.c +M src/nemo-notes-viewer.c +M src/nemo-places-sidebar.c +M src/nemo-spatial-window.c + +commit b4cd0d66db105822bfa5531a146428b548aff369 +Author: Alexander Larsson +Date: 2009-09-07 + + Update to latest foocanvas + + This has some cleanups and fixes a memory leak that was introduced + in the eel copy by removing gtk_object_sink. + +M eel/eel-canvas-rect-ellipse.c +M eel/eel-canvas-rect-ellipse.h +M eel/eel-canvas-util.c +M eel/eel-canvas.c +M eel/eel-canvas.h + +commit b17f8f7995aa1ba2b62d8272436d761bc1600bb1 +Author: Alexander Larsson +Date: 2009-09-07 + + Don't leak file metadata + +M libnemo-private/nemo-file.c + +commit 7c2c5f904d183d510e9fb4f4ac07fe7660274692 +Author: Alexander Larsson +Date: 2009-09-07 + + Free "remaining" returned from GOption + +M src/nemo-main.c + +commit 26a91c8e225f01363976485c782840135d50e6d8 +Author: Alexander Larsson +Date: 2009-09-07 + + Centralize extra view ref and sink if required + + Doing this in only one place makes sense as its clearer. + Previously we ref:ed one extra time for the window->view ref but left + the floating ref to be taked when adding the widget to a parent. + This breaks when we free the view before adding it to a parent, so + we need to properly sink it. + +M libnemo-private/nemo-view-factory.c +M src/file-manager/fm-desktop-icon-view.c +M src/file-manager/fm-empty-view.c +M src/file-manager/fm-icon-view.c +M src/file-manager/fm-list-view.c + +commit c302620c144c7968c7ae35b45ab55a3124fd2923 +Author: Alexander Larsson +Date: 2009-09-07 + + post release version bump + +M configure.in + +commit d0a6955e983ba112a65140ce3b55a7dd953fd8e8 +Author: Alexander Larsson +Date: 2009-09-07 + + Update NEWS + +M NEWS + +commit bd108f3700594e5c859d89287a59733a5585e4d9 +Author: Padraig O'Briain +Date: 2009-09-07 + + Don't crash on NULL gconf value + + This fixes bug #589520 + +M libnemo-private/nemo-desktop-directory-file.c + +commit 02a7a84229063f329731d3db61184207a91bf12e +Author: Chao-Hsiung Liao +Date: 2009-09-06 + + Updated Traditional Chinese translation(Hong Kong and Taiwan) + +M po/zh_HK.po +M po/zh_TW.po + +commit 3af7944871692b9e0c0754ed5351ac24d2a6f9ff +Author: Khaled Hosny +Date: 2009-09-05 + + Updated Arabic translation + +M po/ar.po + +commit 41a15a48a2d452078ae7845374ad9577b30e8155 +Author: Ivar Smolin +Date: 2009-09-05 + + Updating Estonian translation + +M po/et.po + +commit 7553bdccaddb56be2b156dfcd1e409ea30b870a7 +Author: Mario Blättermann +Date: 2009-09-04 + + Updated German translation + +M po/de.po + +commit 13ecc3e0eef4d9267f9919cd79180c0ed4ce4bbf +Author: Duarte Loreto +Date: 2009-09-04 + + Updated Portuguese translation + +M po/pt.po + +commit 2a562f03810a31a0cd2be36faff5059dab2b8fe2 +Author: Miloš Popović +Date: 2009-09-01 + + Updated Serbian translation + +M po/sr.po +M po/sr@latin.po + +commit 3901a97853dad9bf2d586e401a2542aa86703e65 +Author: Kjartan Maraas +Date: 2009-09-01 + + Update Norwegian bokmål translation. + +M po/nb.po + +commit 40164f40de5bcfec618da3f200eff5d2371f4bde +Author: Shankar Prasad +Date: 2009-09-01 + + Updated Kannada(kn) translation + +M po/kn.po + +commit e9b017891f7ab2586b92f4111637b2d02b0f4a51 +Author: krishnababu k +Date: 2009-08-31 + + Updated Telugu Translations + +M po/te.po + +commit 2cf936c4105f88a953f91c8bdf37d65553681684 +Author: Joan Duran +Date: 2009-08-30 + + Updated Catalan translation + +M po/ca.po + +commit 4d9e7a5bf3d180ae47b789b90ee56fc2cbde24c3 +Author: Baris Cicek +Date: 2009-08-30 + + Updated Turkish translation. + +M po/tr.po + +commit cf32d3a9429a08fa5fd9557c57e896d85064e9da +Author: Inaki Larranaga Murgoitio +Date: 2009-08-29 + + Updated Basque language + +M po/eu.po + +commit bd4180156f506861b335a71a4d6e54886a237527 +Author: Bruno Brouard +Date: 2009-08-28 + + Updated French translation + +M po/fr.po + +commit 04e3be13647469de3fe97c15b2fab28eb1cdd81c +Author: Inaki Larranaga Murgoitio +Date: 2009-08-27 + + Updated Basque language + +M po/eu.po + +commit 542f56ecb2af09c78dd7507d6e9f10b96d4d2e34 +Author: Runa Bhattacharjee +Date: 2009-08-27 + + Updated Bengali India Translations + +M po/bn_IN.po + +commit e6ef2d96f6adc507425123716961aa48281af83d +Author: A +Date: 2009-08-27 + + Fix test in uninhibit code + +M libnemo-private/nemo-file-utilities.c + +commit bf6bfde36bcadf43a39fb095650b7fc78741d62a +Author: Matthias Clasen +Date: 2009-08-26 + + Fix a duplicate id in a .ui file + + This caused nemo-file-management-properties to crash. + +M src/nemo-file-management-properties.ui + +commit 064086ef68a0692ac9050b7a0d3ded4a836c8180 +Author: Marcus Carlson +Date: 2009-08-26 + + Always show app icon for open-with in the popup menu as in the + normal menu + + Fixes bug #591663. + +M src/file-manager/fm-directory-view.c + +commit 3bd3f5f4d7a8ef10c6133c5957025df1560e9185 +Author: ifelix +Date: 2009-08-26 + + Updated Tamil Translations + +M po/ta.po + +commit b151573894ee19b4c13f3d35ac5cac7660caee63 +Author: Henrique P Machado +Date: 2009-08-24 + + Updated Brazilian Portuguese translation. + +M po/pt_BR.po + +commit 324e267fc916d5f16e505c2f57a69c271c1388ee +Author: Alexander Larsson +Date: 2009-08-24 + + Post release version bump + +M configure.in + +commit c685eae6206409ca4bbcec4c74367e5295f40461 +Author: Alexander Larsson +Date: 2009-08-24 + + Update NEWS + +M NEWS + +commit c1755706945092334af274f3a88049976baa4763 +Author: Alexander Larsson +Date: 2009-08-24 + + Bump version to 2.27.91 + +M configure.in + +commit d8337a4b7969b43bf5712cd5e85dc5f936ed5044 +Author: Ryan Lortie +Date: 2009-08-22 + + Cancel audio preview when deleting the file + + Fixes #137500. + +M src/file-manager/fm-icon-view.c + +commit b9cd9a5810e044c9351d2408186fb135f4452635 +Author: Jamil Ahmed +Date: 2009-08-24 + + Updated Bengali translation + +M po/bn.po + +commit 8ddb1d53eaa01f4c076c4d96e8da1a9a812e303b +Author: Changwoo Ryu +Date: 2009-08-23 + + Update Korean translation + +M po/ko.po + +commit da36928ac4d0989d2b6c3d54f7dc522fca7491ab +Author: Seán de Búrca +Date: 2009-08-22 + + Updated Irish translation + +M po/ga.po + +commit 97915f97bcbd047de2a5fd4b6bf25b01436085d3 +Author: Alexander Shopov +Date: 2009-08-22 + + Updated Bulgarian translation + +M po/bg.po + +commit 4a7af52ab6f964b9174b59e3f71252447158ffa4 +Author: Antón Méixome +Date: 2009-08-19 + + Updated Galician Translation + +M po/gl.po + +commit 72f65592a84cb8e9ad2ccaa6bbfd7fe4fbe7371b +Author: Alexander Larsson +Date: 2009-08-18 + + Migrate old nemo metadata to gvfs on startup + + If ~/.nemo/metadata/migrated-to-gvfs doesn't exist, migrate and + create it. + +M src/Makefile.am +M src/nemo-application.c + +commit 1d14824dc8ab6f1f8573b07c11ce437ae22dc77b +Author: Alexander Larsson +Date: 2009-08-17 + + Add nemo-convert-metadata tool + + This can be used to convert old-style nemo metafiles to gvfs + metadata. + +M src/Makefile.am +A src/nemo-convert-metadata.c + +commit a557cf30fe1f3761901a7248106840add2c1d105 +Author: Alexander Larsson +Date: 2009-08-18 + + Move NEMO_DESKTOP_METADATA_GCONF_PATH to nemo-metadata.h + + Need this in the metadata conversion code + +M libnemo-private/nemo-desktop-directory-file.c +M libnemo-private/nemo-metadata.h + +commit 7c316ae074658c8927e48ea00f4305767ea9f7dd +Author: A. Walton +Date: 2009-08-13 + + Bug 587316 – Truncate file names when deleting + + Files with extremely long file names could cause the dialog box to + become wider than the screen. Based on a patch contributed by + Marcus Carlson. + +M libnemo-private/nemo-file-operations.c + +commit ce36628b3d615204eebd60a9df67b88857321965 +Author: Yaron Shahrabani +Date: 2009-08-14 + + Updated Hebrew translation + +M po/he.po + +commit e0446d33be8ce22d1925c60db6a9b26c232020a8 +Author: Jochen Skulj +Date: 2009-08-13 + + Updated German translation + +M po/de.po + +commit 39b18f636baddcc3de5866ef3dbb6d66dc344a37 +Author: Rajesh Ranjan +Date: 2009-08-13 + + Updated Hindi Translations + +M po/hi.po + +commit bbdb3b31455d462c18afa3764293f06fb81df54b +Author: Daniel Nylander +Date: 2009-08-13 + + Updated Swedish translation + +M po/sv.po + +commit 477fdafe22aa0e3cb78ab73c7ec4e205468c0a75 +Author: Matthias Clasen +Date: 2009-08-12 + + Fix a typo + +M libnemo-private/apps_nemo_preferences.schemas.in + +commit e8f0c90ab9444511311f300f6b0596df01c38f1e +Author: Seán de Búrca +Date: 2009-08-11 + + Updated Irish translation + +M po/ga.po + +commit 13b85463fb7b9af0faac01b30e8459545e87b6f0 +Author: Mattias Põldaru +Date: 2009-08-11 + + Updating Estonian translation + +M po/et.po + +commit fdb2ccedb2bfd3b2d6dfd5759913875b8d93834a +Author: A. Walton +Date: 2009-08-10 + + Fix unintiallized GError in power management + +M libnemo-private/nemo-file-utilities.c + +commit f77c52ec952f25170338e6e896af035b4ef55cfe +Author: Jorge González +Date: 2009-08-10 + + Updated Spanish translation + +M po/es.po + +commit 37e7ceca45aea48129cf55ea2583f23330d26b91 +Author: A. Walton +Date: 2009-08-10 + + Bug 334806 – Inhibit power-manager when copying files + + Introduces code to inhibit GNOME power manager + whenever a file operation which may not complete + quickly is running. + +M libnemo-private/nemo-file-operations.c +M libnemo-private/nemo-file-utilities.c +M libnemo-private/nemo-file-utilities.h + +commit 4dd0fdef1d77cb6b9be83348ff5c00293e14a991 +Author: Ivar Smolin +Date: 2009-08-10 + + Updating Estonian translation + +M po/et.po + +commit fa1d8989b1b3e4d18c3f4c097d57c76ff86a7387 +Author: Luca Ferretti +Date: 2009-08-09 + + Remove unused variable to fix the build + +M src/nemo-navigation-window-menus.c + +commit 3c5be2ea6403ad071da5e350332e2890d9d53994 +Author: Khaled Hosny +Date: 2009-08-08 + + Updated Arabic translation + +M po/ar.po + +commit eb585679b6e4fad7d252a7458177c4e0a8468298 +Author: Matthias Clasen +Date: 2009-08-08 + + Always show icons in places menu in spatial mode. + + Part of bug #590647. + +M src/nemo-spatial-window.c + +commit 826d5237d2ea179006b62def4db376544e74d764 +Author: Marcus Carlson +Date: 2009-08-08 + + Always show icons in the history and go menu. + + Part of bug #590647. + +M src/nemo-navigation-window-menus.c +M src/nemo-window-menus.c + +commit 9cba51e5cb8827997eb4203c6eed4614efa34aaa +Author: Marcus Carlson +Date: 2009-08-08 + + Always show application icons in popup menus. + + Part of bug #590647. + +M src/file-manager/fm-directory-view.c + +commit 1604ee0ceb8026aff744981b893d8fc8da25ec6c +Author: Seán de Búrca +Date: 2009-08-06 + + Updated Irish translation + +M po/ga.po + +commit 339017547f1aa41d90cf31a6b985588f3ff64e4a +Author: Antón Méixome +Date: 2009-08-06 + + Updated Galician Translation + +M po/gl.po + +commit 47af29868f527a93acb1822b6bdb2537253a387e +Author: Kjartan Maraas +Date: 2009-08-06 + + Updated Norwegian bokmål translation. + +M po/nb.po + +commit a0b11f325a221c7ca46811ada00bad1035e4857a +Author: Khaled Hosny +Date: 2009-08-06 + + Misc. fixes to Arabic translation + +M po/ar.po + +commit 85bb10a2b4f7230e7a0aa5b9945d155c1a21b2b4 +Author: Khaled Hosny +Date: 2009-08-05 + + Updated Arabic translation + +M po/ar.po + +commit f8f6a95bc05353b4a68c07fc710742b9bcdc7d0d +Author: A. Walton +Date: 2009-08-03 + + Fix crash in connect server dialog + + Under custom locations, entering no URI will crash. + +M src/nemo-connect-server-dialog.c + +commit cfa61d576da08590bec118ce1ed03e7189a974b2 +Author: A. Walton +Date: 2009-08-03 + + Reorder assignments in mime application chooser + + Writing over toggle_renderer with the wrong cell renderer. + +M libnemo-private/nemo-mime-application-chooser.c + +commit a8ca44f54aea29ccb2eb0163f8ffe670fd6761b1 +Author: A. Walton +Date: 2009-08-03 + + Reverse back/forward mouse button sense. + + Be consistent with Firefox, etc. + +M libnemo-private/apps_nemo_preferences.schemas.in +M libnemo-private/nemo-global-preferences.c +M src/nemo-navigation-window.c + +commit aa5dbe04bc2d92e2603b34d44f486fd2bae95169 +Author: Seán de Búrca +Date: 2009-07-31 + + Updated Irish translation + +M po/ga.po + +commit 6d648632b8978590befcd867bd2c9920b6aa49ff +Author: Alan Monfort +Date: 2009-07-31 + + Updated breton translation + +M po/br.po + +commit 838d31d11e3fed0d98642397c9d986ddd5bea390 +Author: Denis Arnaud +Date: 2009-07-30 + + Updated breton translation + +M po/br.po + +commit e7d2f70203673d9a294460df164aec295db17234 +Author: Denis Arnaud +Date: 2009-07-30 + + Updated breton translation + +M po/br.po + +commit 97d348f792a2659fbb88de17d25e83c93b14414c +Author: Vincent Untz +Date: 2009-07-28 + + Respect /desktop/gnome/lockdown/disable_command_line + + We need to show/hide the "New Launcher" menu item in the context + menu, depending on this gconf key. + +M libnemo-private/nemo-global-preferences.c +M libnemo-private/nemo-global-preferences.h +M src/file-manager/fm-actions.h +M src/file-manager/fm-desktop-icon-view.c +M src/file-manager/fm-directory-view.c + +commit 359fa218a1a890bb87fb331acc30d62b57bc7c61 +Author: Ivar Smolin +Date: 2009-07-27 + + Updating Estonian translation + +M po/et.po + +commit aac26f4c0fce20e7cac87ca51c0629458e804ee8 +Author: Mattias Põldaru +Date: 2009-07-22 + + Updating Estonian translation + +M po/et.po + +commit 44c05bbc866fb4430a16b169aa3854bab1af6555 +Author: drtvasudevan +Date: 2009-07-21 + + Updated Tamil translation + +M po/ta.po + +commit c0c9bbc96228a8864eda9d0b7f4c82c7d1c0dba4 +Author: Ivar Smolin +Date: 2009-07-20 + + Updating Estonian translation + +M po/et.po + +commit 2a94803b44010e3c47a9f7b94894fab8d6062abc +Author: Jaap A. Haitsma +Date: 2009-07-18 + + Fix handling of small images/icons + + Small images with an alpha plane don't get a frame + Use different scaling strategy for small images. Small images/icons + won't get up scaled in default zoom view. They are shown in their + actual + Fixes bug #585186 + +M libnemo-private/nemo-file.c + +commit a8f82a8a00f672a3111d97070c3a6f34e2b46c90 +Author: Chao-Hsiung Liao +Date: 2009-07-18 + + Updated Traditional Chinese translation(Hong Kong and Taiwan) + +M po/zh_HK.po +M po/zh_TW.po + +commit bd6db659cb232d8b8f81a9ada748025aa1d16fff +Author: Alexander Larsson +Date: 2009-07-14 + + Clean up metadata key names now that they are public + + Prefix all internal keys with "nemo-". + Use dash, not underscore as delimitor (this is what gio file + attrs use) + Rename "keyword" to "emblems" + Rename "default_component" to "nemo-default-view" + +M libnemo-private/nemo-file.c +M libnemo-private/nemo-metadata.c +M libnemo-private/nemo-metadata.h +M src/nemo-window-manage-views.c + +commit c2951134aac83f4e8194e7cb71a92b5f9d273100 +Author: Sweta Kothari +Date: 2009-07-14 + + Updated Gujarati Translations + +M po/gu.po + +commit 53bcaac5fd2cf03f686f19dbdc9d889480cd8709 +Author: Cosimo Cecchi +Date: 2009-07-14 + + Post-release version bump + +M configure.in + +commit 608b7f5c2ab1c6e9c0d011e3fef3b506afa5f8ba +Author: Cosimo Cecchi +Date: 2009-07-14 + + Update for 2.27.4 + +M NEWS +M configure.in + +commit e4b5573bec0215006201b9a0dda60888a32debe6 +Author: Cosimo Cecchi +Date: 2009-07-14 + + Comment out the metadata tests for now + +M libnemo-private/nemo-directory.c + +commit 91cec6f5e6bbc672d2cebef162ea797eb5e9d55d +Author: Sweta Kothari +Date: 2009-07-13 + + Updated Gujarati Translations + +M po/gu.po + +commit 9ca82f0443f49bb80beb050f1d1bb3ef2a338698 +Author: Maxim V. Dziumanenko +Date: 2009-07-09 + + Updated Ukrainian translation + +M po/uk.po + +commit 3bd36d1a3b6f576e124a41800d7138cbfa34782f +Author: Maxim V. Dziumanenko +Date: 2009-07-09 + + Updated Ukrainian translation + +M po/uk.po + +commit fd9df908248be20bc5f79def1dd96a45bb9f56c8 +Author: Cosimo Cecchi +Date: 2009-07-09 + + Don't force no horizontal scrollbar in the note viewer + + This causes issues with long words in the notes viewer, as the window + will grow bigger along with the word. + Patch by Luke Symes, fix bug #399018. + +M src/nemo-notes-viewer.c + +commit c1b58565da21a6d9e95dc920afd632da6e906fc9 +Author: drtvasudevan +Date: 2009-07-09 + + Updated Tamil translation + +M po/ta.po + +commit 560e736891e9268c73171ef3afbbc5c2bde819b9 +Author: Jorge González +Date: 2009-07-08 + + Updated Spanish translation + +M po/es.po + +commit 72a17d86468291eb64fdc549753836e76e3add6a +Author: Daniel Nylander +Date: 2009-07-08 + + Updated Swedish translation + +M po/sv.po + +commit 2eb7e673837b32fe8c7d9b4431fd76213a908a3a +Author: Wang Yan +Date: 2009-07-04 + + Don't display the timeout dialog with broken launchers + + Don't display the timed wait dialog if we're already reporting + a broken + link to the user. Fix bug #579165. + + Signed-off-by: Wang Yan + +M libnemo-private/nemo-mime-actions.c + +commit 45c928d3cf112f22d69b25299898301c54d9e961 +Author: Cosimo Cecchi +Date: 2009-07-08 + + Use application icons in the context menu + + If it's possibile, use the application icons in the open with submenu. + This also removes quotation marks and useless duplicate "Open With" + strings from the submenu. + Patch by Marcus Carlson, fixes bug #587533 and #546916. + +M src/file-manager/fm-directory-view.c + +commit 4b434c4f73b56a92ff4bf50435487357719eebaf +Author: Cosimo Cecchi +Date: 2009-07-08 + + [build] bump up the required version of GLib + +M configure.in + +commit cf5538067776605cb031a58ce2f77271375db498 +Author: David Zeuthen +Date: 2009-06-30 + + Bug 587486 – Pass GMountOperation to unmount/eject/stop ops + + - Port everything to use _with_operation() variants of unmount/eject + methods + + - This includes changing the NemoFile a bit; see the patch + for details + + - Add support for g_drive_can_start_degraded() so we offer + to start (degraded) drives even when g_drive_can_start() + returns FALSE + + - Also add support for new mountable::* attributes so we can + have "Detect Media" items in the context menu when right-clicking + mounts/volumes/drives in computer:/// and on the desktop + +M libnemo-private/nemo-desktop-icon-file.c +M libnemo-private/nemo-file-operations.c +M libnemo-private/nemo-file-private.h +M libnemo-private/nemo-file.c +M libnemo-private/nemo-file.h +M libnemo-private/nemo-vfs-file.c +M src/file-manager/fm-actions.h +M src/file-manager/fm-directory-view.c +M src/file-manager/nemo-directory-view-ui.xml +M src/nemo-application.c +M src/nemo-places-sidebar.c + +commit 8b7599a8897e5f5314b8637e7523f35285db118c +Author: Daniel Nylander +Date: 2009-07-07 + + Updated Swedish translation + +M po/sv.po + +commit 547fa8e9f8fe654b92d5b8b0f2dcc074a7ad91d8 +Author: Claude Paroz +Date: 2009-07-07 + + Updated French translation + + Contributed by Laurent Coudeur and Claude Paroz + +M po/fr.po + +commit 9da3dacb61a5f70b0b5a62c57f3278169fdea56a +Author: Jorge González +Date: 2009-07-07 + + Updated Spanish translation + +M po/es.po + +commit f24c7689e1efb27dd2953bdee7de8c02f183d9be +Author: Alexander Larsson +Date: 2009-06-30 + + Properly escape names used as gconf keys + +M libnemo-private/nemo-desktop-directory-file.c + +commit b8995fce159472dac07666dfb4d7e3ff1412403a +Author: Alexander Larsson +Date: 2009-06-29 + + Support metadata for the virtual desktop icons + +M libnemo-private/nemo-desktop-directory-file.c +M libnemo-private/nemo-desktop-directory-file.h +M libnemo-private/nemo-desktop-icon-file.c +M libnemo-private/nemo-global-preferences.c + +commit 02f908f3d864f1f3bf0729158907f312e0306c05 +Author: Alexander Larsson +Date: 2009-06-29 + + Move metadata setting to a NemoFile vfunc + + This allows non-vfs backends to implement metadata + +M libnemo-private/nemo-file-private.h +M libnemo-private/nemo-file.c +M libnemo-private/nemo-file.h +M libnemo-private/nemo-vfs-file.c + +commit 28d5e790dbe7752de156e01610c3e5c354064192 +Author: Mattias Põldaru +Date: 2009-06-26 + + Updating Estonian translation + +M po/et.po + +commit 65425491f90194e3034b5b49e0e333b5717d1776 +Author: Alexander Larsson +Date: 2009-06-26 + + Forgot to remove some references to removed symbols + +M libnemo-private/nemo-file-changes-queue.c + +commit 7874f2d9422618107edabd7056b7167844c389ca +Author: Alexander Larsson +Date: 2009-06-25 + + Support unsetting metadata + +M libnemo-private/nemo-file.c + +commit 99b68670ad94bfb5db1b162ae0d84e27f226d18f +Author: Mattias Põldaru +Date: 2009-06-25 + + Updating Estonian translation + +M po/et.po + +commit 22a457fd40d09139e5d7bbe6404006d0e091bc15 +Author: drtvasudevan +Date: 2009-06-24 + + Updated Tamil translation + +M po/ta.po + +commit 37be3809bc0d25d28298b38bc0b893a6fd3a665f +Author: Alexander Larsson +Date: 2009-06-23 + + Remove all traces of former nemo metadata code + +M libnemo-private/Makefile.am +M libnemo-private/nemo-directory-async.c +M libnemo-private/nemo-directory-background.c +D libnemo-private/nemo-directory-metafile.c +D libnemo-private/nemo-directory-metafile.h +M libnemo-private/nemo-directory-private.h +M libnemo-private/nemo-directory.c +M libnemo-private/nemo-file-attributes.h +M libnemo-private/nemo-file-changes-queue.c +M libnemo-private/nemo-file-changes-queue.h +M libnemo-private/nemo-file-operations.c +M libnemo-private/nemo-file-utilities.c +M libnemo-private/nemo-file.c +M libnemo-private/nemo-file.h +M libnemo-private/nemo-link.c +D libnemo-private/nemo-metafile.c +D libnemo-private/nemo-metafile.h +M libnemo-private/nemo-mime-actions.c +M src/file-manager/fm-directory-view.c +M src/file-manager/fm-properties-window.c +M src/nemo-main.c +M src/nemo-notes-viewer.c +M src/nemo-sidebar-title.c +M src/nemo-window-manage-views.c +M test/test-nemo-directory-async.c + +commit fc4e74e6763000bac2a459e83811cf01e6cb7720 +Author: Alexander Larsson +Date: 2009-06-23 + + Use gvfs based metadata + +M libnemo-private/Makefile.am +M libnemo-private/nemo-file-private.h +M libnemo-private/nemo-file.c +M libnemo-private/nemo-file.h +A libnemo-private/nemo-metadata.c +M libnemo-private/nemo-metadata.h +M src/file-manager/fm-list-view.c + +commit c7b6875c98ecd25dc26853b783e1a4ffe96fab36 +Author: Alexander Larsson +Date: 2009-06-23 + + Add eel_g_strv_equal + +M eel/eel-glib-extensions.c +M eel/eel-glib-extensions.h + +commit ffc93d52d4650e63e01b488ef582983919c89de3 +Author: A. Walton +Date: 2009-06-22 + + Another missed FreeBSD build fix. + +M libnemo-private/nemo-metafile.c + +commit 08144422c582077664b878fecc9878fc785b94df +Author: Petr Kovar +Date: 2009-06-21 + + Fixed Czech translation by Lucas Lommer + + Thanks goes to Vladimir Burian. + +M po/cs.po + +commit 22c5e7beacd28a64b4ff82ad20df0c954128ba46 +Author: Jorge Gonzalez +Date: 2009-06-21 + + Updated Spanish translation + +M po/es.po + +commit 104557839d2cfb375e5729e17c3fba3810f538e7 +Author: Ivar Smolin +Date: 2009-06-19 + + Updating Estonian translation + +M po/et.po + +commit dec816b65de82e832e29c0cea1a8c330ffa5954a +Author: A. Walton +Date: 2009-06-19 + + Fix the build. + + self_start_stop_type uninitialized in fm-directory-view.c + +M src/file-manager/fm-directory-view.c + +commit bcf5f921cda6f582230d3d0707f93172c3fa65e6 +Author: A. Walton +Date: 2009-06-19 + + Bug 586346 – Build failure on FreeBSD + + Wasn't the wrong number of arguments, it was the wrong + type of argument (time_t, not long). So we add a cast + to make it more explicit to the compiler there. + +M libnemo-private/nemo-file.c + +commit 0fe78fa2ae3d1a1e46996cc27c66421965bce57c +Author: A. Walton +Date: 2009-06-19 + + Bug 586346 – Build failure on FreeBSD + + Use g_snprint() instead of snprintf(). + +M libnemo-private/nemo-file.c + +commit 66b53e82aa5d45cec89c99ab74e86caf2c49df00 +Author: David Zeuthen +Date: 2009-06-17 + + Bug 585591 – Starting/stopping drives + + This is the Nemo user for the new GIO API for starting/stopping + drives. See + + http://bugzilla.gnome.org/show_bug.cgi?id=585591 + + for details. + +M libnemo-private/nemo-file-private.h +M libnemo-private/nemo-file.c +M libnemo-private/nemo-file.h +M libnemo-private/nemo-mime-actions.c +M libnemo-private/nemo-vfs-file.c +M src/file-manager/fm-actions.h +M src/file-manager/fm-directory-view.c +M src/file-manager/nemo-directory-view-ui.xml +M src/nemo-places-sidebar.c + +commit 3af5d8c5bf61bdf206b9c79df0c27c0152b46496 +Author: Mattias Põldaru +Date: 2009-06-18 + + Updating Estonian translation + +M po/et.po + +commit 9ff24d6790da178fb8cba9c3c150a04ff4afea74 +Author: Ivar Smolin +Date: 2009-06-17 + + Updating Estonian translation + +M po/et.po + +commit 06e4eb732621b01c624b0e2665de523396e99f2f +Author: Vincent Untz +Date: 2009-06-17 + + Use gtk_cell_layout_get_cells instead of deprecated API + +M src/nemo-places-sidebar.c + +commit a2c338278cb82c4a2d8c4175d1db9ca7d7985d43 +Author: A. Walton +Date: 2009-06-17 + + Revert last commit as discussion in #gnome-hackers + + Turns out, g_app_info_should_show() is really broken, as this hides + some apps we shouldn't be hiding. Wondering how we can unbreak this.. + +M libnemo-private/nemo-open-with-dialog.c + +commit e9d7b28a49d2afa5d67a34ef568a9e390df9a052 +Author: A. Walton +Date: 2009-06-17 + + Bug 586040 – "Open With" dialog duplicates + + Turns out, Nemo was showing GAppInfo's which shouldn't be + shown in the UI. + +M libnemo-private/nemo-open-with-dialog.c + +commit b800160b430c17ddae5621a9af8b498d9092883d +Author: A. Walton +Date: 2009-06-16 + + Bug 563906 – Grammatical Error in String + + Fixes this bug. + +M src/nemo-window-manage-views.c + +commit 41975360a57115b5223e3466517df66b45c3fb63 +Author: Alexander Larsson +Date: 2009-06-15 + + Call g_reload_user_special_dirs_cache() when xdg-user-dirs change + + This means we will get the new special file icon for the changed + files. + + Also, invalidate the file when we change it ourself so that the icon + change is picked up. + +M libnemo-private/nemo-file-utilities.c + +commit a1ea86bd6c3d1123463e377e362dfffd047ef6a5 +Author: Alexander Larsson +Date: 2009-06-15 + + Post release version bump + +M configure.in + +commit e524b867b2653f6f92c8fb44f4b347b5fbc23c2c +Author: Alexander Larsson +Date: 2009-06-15 + + Update NEWS for 1.3.1 + +M NEWS + +commit b3f20601fe476d0af7b1175b14d9cb6729b96795 +Author: Daniel Nylander +Date: 2009-06-13 + + Updated sv translation (Daniel Nylander) + +M po/sv.po + +commit 5abcdbd43ef07460970ff2080dae121d908a0432 +Author: A. Walton +Date: 2009-06-12 + + Bug 547749 – "Open with" Applications not sorted. + + Use a sort model and add a sortable column to sort the application + by name. + +M libnemo-private/nemo-open-with-dialog.c + +commit 932fa70aade6c12b1ef7a0158c0247e79546452c +Author: Jorge Gonzalez +Date: 2009-06-11 + + Updated Spanish translation + +M po/es.po + +commit 7ef11edc4d1819fe40b9c238e4d4ed31c07a9f0e +Author: Manoj Kumar Giri +Date: 2009-06-10 + + Added entries for Hindi Translation updated by Rajesh Ranjan + +M po/ChangeLog + +commit c0a359c656280dc504ea138b9e52763852ea202a +Author: Manoj Kumar Giri +Date: 2009-06-10 + + Updated Hindi Translation on behalf of Rajesh Ranjan + +M po/hi.po + +commit 4cf7e22dc55b37e5678ff69ac02d4acc5ac989fa +Author: Kjartan Maraas +Date: 2009-06-10 + + Updated Norwegian bokmål translation. + +M po/nb.po + +commit 2316b80240b7b3c4e9627f31779b31d31cb1418d +Author: Ivar Smolin +Date: 2009-06-09 + + Updating Estonian translation + +M po/et.po + +commit 8db758307d49bf94c6e379b4439bb1fc61b7e28a +Author: Cosimo Cecchi +Date: 2009-06-08 + + Use a better string for schemas (#585134) + +M libnemo-private/apps_nemo_preferences.schemas.in + +commit 73443aae586eb99e6ca4406a03d91544def77968 +Author: Runa Bhattacharjee +Date: 2009-06-08 + + Updated Bengali India Translation + +M po/bn_IN.po + +commit 03e8e436fe57369ee1d28cfef77791dc258e8f22 +Author: Mattias Põldaru +Date: 2009-06-08 + + Updating Estonian translation + +M po/et.po + +commit 26d6ec74a5ebac6fb64e6ce0484ed96eefa7a78f +Author: Petr Kovar +Date: 2009-06-07 + + Fixed Czech translation by Lucas Lommer + + Thanks goes to Kamil Paral. + +M po/cs.po + +commit 437b01afc7ee7325ec8ba65bea05a13ef072063a +Author: A. Walton +Date: 2009-06-05 + + Bug 583214 – Nemo aborts when giving an empty dest. + + Follow up commit which fixes the code formatting and + ensures the 'Open' button is insensitive when the entry + is empty. + +M src/nemo-location-dialog.c + +commit 7b7a40130eb556fc7f32fb21a73c6437b29b0c73 +Author: Christian Persch +Date: 2009-06-04 + + Correct "srdcir" typo to "srcdir" + +M Makefile.am + +commit aa1afee5cc5b96161b6bb7c1639a180a39850653 +Author: Theppitak Karoonboonyanan +Date: 2009-06-04 + + Updated Thai translation. + +M po/th.po + +commit c0aa87793104abbea45fb1791a1a1cbb771f8b99 +Author: Ask H. Larsen +Date: 2009-05-30 + + Updated Danish translation + +M po/da.po + +commit 5bff677a0dc3ab5d5c68a2ef107cdbb34f133b34 +Author: Cosimo Cecchi +Date: 2009-05-28 + + Remove useless statfs/statvfs checks + + Those checks are now obsoletes. This also fixes bug #583264. + +M configure.in +M src/file-manager/fm-properties-window.c + +commit 0133e979531cd41ca7f1d76ff5adf66ddfa7d67a +Author: Cosimo Cecchi +Date: 2009-05-28 + + Clear text in the location entry + + Add a clear text icon in the location entry, now that the icon + entry is + available in GTK+ 2.16 (#145732). + +M src/nemo-connect-server-dialog.c +M src/nemo-location-entry.c + +commit 7b86b78e2ff6a0f1b45ac8f8a9c30cf3d0c6ae96 +Author: Cosimo Cecchi +Date: 2009-05-28 + + Emit APPEARANCE_CHANGED when setting the bg color + + Emit the APPEARANCE_CHANGED signal when we're setting the color, as + we're ignoring the pending changes after the backgorund is realized, + and + thus we're not getting color updates (#578136). + +M eel/eel-background.c + +commit 518a1ae6ba0a3e09236f944ee655334087d5ddee +Author: Cosimo Cecchi +Date: 2009-05-28 + + Display information about the selected object + + Display information about the selected object in the "Information" + sidebar, using thumbnails if possible. + Also, remove the "Open with" buttons there for directories. + Fix bug #122045, thanks to Amos Brocco. + +M src/nemo-information-panel.c +M src/nemo-sidebar-title.c + +commit 4bb61206b7dd4a3510ab15e8df0288e670f816d6 +Author: Alexander Larsson +Date: 2009-05-27 + + Dist COPYING.EXTENSIONS + +M Makefile.am + +commit 7d9b6812d006d9aeecfb33d072cb382184fb901b +Author: Alexander Larsson +Date: 2009-05-27 + + Add COPYING.EXTENSIONS clarifying some extension license issues + +A COPYING.EXTENSIONS + +commit 74782b711adccfb85273ac38484e4adac8e010b4 +Author: Jorge Gonzalez +Date: 2009-05-26 + + Updated Spanish translation + +M po/es.po + +commit 152b56a058dfd0c57cdc267a63fb3099c0c74e0c +Author: Yaron Shahrabani +Date: 2009-05-25 + + Updated Hebrew translation + +M po/he.po + +commit 5fc840a5f089c627b4e38e2cf99f907ad8abb1a6 +Author: drtvasudevan +Date: 2009-05-25 + + Updated Tamil translation + +M po/ta.po + +commit 3d8011ca8c095be884b603ccea261b955fa6518b +Author: JF Ding +Date: 2009-05-25 + + Support daemon mode (exit_with_last_window preference) + + This can be used if you want to run nemo just to handle volume + monitoring, etc. + +M libnemo-private/apps_nemo_preferences.schemas.in +M libnemo-private/nemo-global-preferences.c +M libnemo-private/nemo-global-preferences.h +M src/nemo-main.c + +commit b49db4e5c9a3d21d3bc20c075e76b98b9977eedf +Author: drtvasudevan +Date: 2009-05-23 + + Updated Tamil translation + +M po/ta.po + +commit 7ea93ff768efdbc106407719b96a46fc34227273 +Author: Ivar Smolin +Date: 2009-05-19 + + Updating Estonian translation + +M po/et.po + +commit 2a005bc2c308e3960e723ed5cc8748f168acda17 +Author: A. Walton +Date: 2009-05-19 + + Bug 583214 – Nemo aborts when giving an empty dest. + + Fixes crash caused by passing a null path. + +M src/nemo-location-dialog.c + +commit 2eb9e588f954f8700d143fdb9d6d1e33318d9a33 +Author: Alexander Shopov +Date: 2009-05-19 + + Updated Bulgarian translation + +M po/bg.po + +commit d850d4742f41957506500c290c2756193c2a776f +Author: Jorge Gonzalez +Date: 2009-05-17 + + Updated Spanish translation + +M po/es.po + +commit 9af920dc7ab772c134ecd754be89b5d2b1aab5e0 +Author: Petr Kovar +Date: 2009-05-17 + + Fixed Czech translation by Lucas Lommer + + Phase two. + +M po/cs.po + +commit 173731a6dae993b5f15e334f1ebfa4756302efb8 +Author: Petr Kovar +Date: 2009-05-17 + + Updated Czech translation by Lucas Lommer + +M po/cs.po + +commit de14cf64ec9179a32617b1b26ce28d47aea2d8d9 +Author: Matej Urban +Date: 2009-05-15 + + Updated Slovenian translation + +M po/sl.po + +commit 1aba1feef00ad87da6e6e775568d3d8fea371576 +Author: Matej Urban +Date: 2009-05-15 + + Updated Slovenian translation + +M po/sl.po + +commit 776823f11bc40d78d17db36a303d69de0363d090 +Author: Matej Urban +Date: 2009-05-15 + + Updated Slovenian translation + +M po/sl.po + +commit 5fde2c7156b5bb8c0411bdbe649dd08172853d3a +Author: Alexander Larsson +Date: 2009-05-13 + + Don't crash if parent button_press_event is NULL (#582457) + + This fixes a crash when you press on the empty area of the toolbars. + +M src/nemo-navigation-window.c + +commit 24d9d3715194ff1145550a7fe3e9b8414ca568d2 +Author: Holger Berndt +Date: 2009-04-29 + + Allow users to define shortcuts for extension menu items + +M src/nemo-window-menus.c + +commit a2ab15477e2e2d13642567316788e12b5ace8504 +Author: Tomas Bzatek +Date: 2009-05-11 + + Properly include m4 macros + + fixes error messages like: + ./configure: line 19939: syntax error near unexpected token `m4,' + ./configure: line 19939: `SHAVE_INIT(m4, enable)' + +M Makefile.am + +commit e595852237c70e56c9d56688e2729eb59f6268fb +Author: A. Walton +Date: 2009-05-11 + + Bug 549437 – ctrl + dnd file duplication in list view + + Fixes bug #549437. Patch provided by "logari81". + +M libnemo-private/nemo-tree-view-drag-dest.c + +commit 9d618732420d6d2ae9f666bbb78ee486746c7940 +Author: A. Walton +Date: 2009-05-10 + + Update About dialog for 2009. + +M src/nemo-window-menus.c + +commit bf1fe66266c96139138908c1f1e1b1cc48f2bd4a +Author: Marios Zindilis +Date: 2009-05-10 + + Updated Greek translation + +M po/el.po + +commit aeda70b4fa90990a538d37122d88f0a82d0578f5 +Author: Simos Xenitellis +Date: 2009-05-09 + + Updated Greek translation + +M po/el.po + +commit f7d425f9045dae6d1d79328e66019c3ce18b1f19 +Author: Simos Xenitellis +Date: 2009-05-09 + + Updated Greek translation + +M po/el.po + +commit 35be2bdcd58e20422d2c8f0cf61b6d2a027dfd93 +Author: Marios Zindilis +Date: 2009-05-09 + + Updated Greek translation + +M po/el.po + +commit a9d7dfc3efb948a88cb5acfce3db8891e3297499 +Author: Christian Kirbach +Date: 2009-05-06 + + Updated German translation. + +M po/de.po + +commit 8d3525a3c3d414fe67f8f8b3c183c95e1282bce1 +Author: Cosimo Cecchi +Date: 2009-05-05 + + Post release version bump to 2.27.2 + +M configure.in + +commit 956bf2c75079003c91774a675091f7133cc8be35 +Author: Cosimo Cecchi +Date: 2009-05-05 + + Prepare for 2.27.1 release + +M NEWS +M configure.in + +commit ec4ce1431bda72fc66ace675d860e7c2bb3bc3e6 +Author: Cosimo Cecchi +Date: 2009-05-05 + + Fix distcheck + +M Makefile.am +M data/Makefile.am +M src/nemo-main.c + +commit 057dabdd59a24d863d8b10dca336a3ca2bf8609f +Author: Shankar Prasad +Date: 2009-05-04 + + Updated the Kannda translations + +M po/kn.po + +commit 0a6012a48bd71c20d7cd32c05e1976f1127ce230 +Author: Jorge Gonzalez +Date: 2009-05-03 + + Updated Spanish translation + +M po/es.po + +commit a6f87ffe8133a4f9205dd1ab1d441fa06c40b497 +Author: Ivar Smolin +Date: 2009-05-02 + + Updating Estonian translation + +M po/et.po + +commit 86cacc2fd60dbed4397567edd08021513c1a60ae +Author: Jorge Gonzalez +Date: 2009-05-01 + + Updated Spanish translation + +M po/es.po + +commit bcbbc3f7853ab1a3a0f2b226312a41d5987e1d5a +Author: Vladimir Melo +Date: 2009-05-01 + + Updated Brazilian Portuguese translation. + +M po/pt_BR.po + +commit d6fa64ab439ac900a92a0467f39cdf72afa5870f +Author: Cosimo Cecchi +Date: 2009-05-01 + + Add building tips link + + Mention http://live.gnome.org/Nemo/Development/Nemo in the + README file. + +M README + +commit 1a8adc87b49603cf14ce139e66bde0fe7bddec8e +Author: Cosimo Cecchi +Date: 2009-05-01 + + Remove a reference to SVN + + Also, update the GIT info page link. + +M HACKING + +commit 7e17224a1e68bb755bd281d46e0533b1dcff52d8 +Author: Claude Paroz +Date: 2009-04-30 + + Updated French translation + +M po/fr.po + +commit c51ac9926e012267d305711b949a937d917f075b +Author: Gabor Kelemen +Date: 2009-04-30 + + Mark strings as translatable, fix bug #579769 + +M src/nemo-file-management-properties.ui + +commit 23ff2a21d2925945dde6e04a47190ebfa27ae8c7 +Author: Gabor Kelemen +Date: 2009-04-30 + + Update POTFILES.*, close bug #580784 + +M po/POTFILES.in +M po/POTFILES.skip + +commit a1a501224999d7abda06e9a2f7eb6da64c17d089 +Author: Shankar Prasad +Date: 2009-04-30 + + Updated Kannada translation + +M po/kn.po + +commit 90e5e1720d09188f3eabb67e502272a549c63dec +Author: Maxim V. Dziumanenko +Date: 2009-04-28 + + Updated Ukrainian translation + +M po/uk.po + +commit 48ed43f32668e5615ac64a3de55ec7ab2f254ef7 +Author: Cosimo Cecchi +Date: 2009-04-27 + + Reverse the order for folder icons overrides + + Use the correct order for folder icons overrides, so that we can + keep track of things like "folder-visiting" or "folder-drag-accept". + Patch by Krzysztof Kosiński (#567254). + +M libnemo-private/nemo-file.c + +commit 43c9802d618bcb0d035b4fb0dea4807367d893ea +Author: Cosimo Cecchi +Date: 2009-04-27 + + Don't display accelerators in Tabs menu + + Set use_underline == FALSE for items in the "Tabs" menu, so that + folders with underscores in their names will be displayed properly + in the menu items (#580392). + +M src/nemo-navigation-window-menus.c + +commit 9c0dddfbaddfe251814ff473d9f0a734c385d931 +Author: Cosimo Cecchi +Date: 2009-04-27 + + Display the application icon in the popup menu + + If available, display the application icon next to the "Open with" + item in the file manager window menus (#546916). + +M src/file-manager/fm-directory-view.c + +commit fe4ca76584061215547edb55b8a0bab4cdb8e034 +Author: Cosimo Cecchi +Date: 2009-04-27 + + Fix DOAP file + + Add "mailto:" prefixes to email addresses in the DOAP file. + +M nemo.doap + +commit 7f404a39f63ceb8d906809c2092cecca7b785574 +Author: Ivar Smolin +Date: 2009-04-25 + + Updating Estonian translation + +M po/et.po + +commit cffb9cf70254086a3737b37e8fad786a6e6de414 +Author: Cosimo Cecchi +Date: 2009-04-23 + + Don't show autorun hints for Win32 software media + + Now that shared-mime-info supports "x-content/win32-software" vs + "x-content/unix-software", use this distinction to inhibit autorun + prompts/hints for media containing Win32 software (#524270). + +M libnemo-private/nemo-autorun.c +M src/nemo-window-manage-views.c + +commit 7f74d06e270d89b6de1a3f23fe3388830f2c25ab +Author: Olav Vitters +Date: 2009-04-23 + + doap: Add desktop category + +M nemo.doap + +commit 9f1c7d03c45298701320f5503e8ba1afec9fb523 +Author: Cosimo Cecchi +Date: 2009-04-23 + + Add shave to the autotools setup + + Use shave to have some more meaningful build messages. + It can be turned off by using 'make V=1'. + +M Makefile.am +M configure.in +A m4/Makefile.am +A m4/shave-libtool.in +A m4/shave.in +A m4/shave.m4 + +commit 06dda37076c6e5b222f868a46fe84c070a04d680 +Author: Cosimo Cecchi +Date: 2009-04-23 + + Move desktop files into data/ + + Move desktop files into data/ subdirectory, so that they not clutter + the top source dir. + +M Makefile.am +M configure.in +M data/Makefile.am +R100 nemo-autorun-software.desktop.in.in +data/nemo-autorun-software.desktop.in.in +R100 nemo-browser.desktop.in.in +data/nemo-browser.desktop.in.in +R100 nemo-computer.desktop.in.in +data/nemo-computer.desktop.in.in +R100 nemo-file-management-properties.desktop.in.in +data/nemo-file-management-properties.desktop.in.in +R100 nemo-folder-handler.desktop.in.in +data/nemo-folder-handler.desktop.in.in +R100 nemo-home.desktop.in.in data/nemo-home.desktop.in.in +R100 nemo.desktop.in.in data/nemo.desktop.in.in + +commit dd10aa3618b195a127014ba033eb522f907077a1 +Author: Cosimo Cecchi +Date: 2009-04-23 + + Fix typo in ChangeLog generation script + + Set the right name for the start tag in the ChangeLog + generation script. + +M Makefile.am + +commit c0b27cce8d33ea8220434cf59b1e504fc9d2bcea +Author: Matej Urban +Date: 2009-04-22 + + Updated Slovenian translation + +M po/sl.po + +commit 9826f177cb72fc9f595356b773f51059bef6cd1e +Author: Andrew Walton +Date: 2009-04-22 + + Let forward/back mouse buttons work + + Install a handler to link forward/back mouse buttons to + forward/back actions in NemoNavigationWindow, with a preference + to set the right X button number in GConf. + + Signed-off-by: Cosimo Cecchi + +M libnemo-private/apps_nemo_preferences.schemas.in +M libnemo-private/nemo-global-preferences.c +M libnemo-private/nemo-global-preferences.h +M src/nemo-navigation-window.c + +commit b02ef0a7ec2d0de3064d322f5da103a8dfd492d3 +Author: Cosimo Cecchi +Date: 2009-04-22 + + Remove useless function + + Remove nemo_has_valid_failed_thumbnail(), as that's not used + anymore after the last commit. + +M libnemo-private/nemo-thumbnails.c +M libnemo-private/nemo-thumbnails.h + +commit 20f4389f7cd22bd001ebf17c0c3c459cca5483ad +Author: Matthias Clasen +Date: 2009-04-22 + + Avoid duplicate function call + + Don't call nemo_has_valid_failed_thumbnail, as + nemo_can_thumbnail will eventually call the same gnome_desktop + function (#574205). + + Signed-off-by: Cosimo Cecchi + +M libnemo-private/nemo-file.c + +commit 3ffebcdbf5b5ba7e6b018f542fdc39522a42d1b2 +Author: Cosimo Cecchi +Date: 2009-04-22 + + Remove some more GTK+ deprecated macros + + Remove some other bits (hopefully the last) of deprecated GTK+ macros. + +M src/nemo-history-sidebar.c + +commit c308f7f3e96094c4d5077655960a0910dbaa605c +Author: Cosimo Cecchi +Date: 2009-04-22 + + Remove other deprecated GTK+ symbols + + There were still some references to deprecated GTK+ symbols in some + files, or in some comments. Let's drop them all. + +M eel/eel-editable-label.c +M eel/eel-gdk-pixbuf-extensions.c +M libnemo-private/nemo-cell-renderer-text-ellipsized.h +M libnemo-private/nemo-directory.h +M libnemo-private/nemo-file.h +M libnemo-private/nemo-saved-search-file.h +M libnemo-private/nemo-undo-signal-handlers.c +M src/file-manager/fm-empty-view.c +M src/file-manager/fm-empty-view.h +M test/test-eel-background.c + +commit 4485d32d41f1519313ad49d43914bbd0b78d104b +Author: Jorge Gonzalez +Date: 2009-04-21 + + Updated Spanish translation + +M po/es.po + +commit 7da1601ba6288e48dc6ed3023de03fff04d20b2d +Author: Cosimo Cecchi +Date: 2009-04-21 + + Check for NULL when sorting columns + + Check for a NULL value of the order array when sorting the columns. + This might help when dealing with strange GConf setup issues + (#524341). + +M libnemo-private/nemo-column-utilities.c + +commit 3b5af96a5f41640d447f7215a758d4de4c0220fb +Author: Cosimo Cecchi +Date: 2009-04-21 + + Update EggSMClient from libegg + + Re-apply the reverted string freeze break commit now that we branched. + Don't check if the desktop file exists ourselves, as the Egg code will + take care of that itself. + Thanks to Christian Persch (#576619). + +M cut-n-paste-code/libegg/eggsmclient.c +M src/nemo-main.c + +commit 60e58366e06f42b03072e06a19f8adeece0ded6a +Author: Nelson Benitez +Date: 2009-04-21 + + Use g_timeout_add_seconds where appropriate + + Use g_timeout_add_seconds instead of g_timeout_add where appropriate. + Fix bug #574033. + + Signed-off-by: Cosimo Cecchi + +M libnemo-private/nemo-icon-container.c +M libnemo-private/nemo-thumbnails.c +M libnemo-private/nemo-tree-view-drag-dest.c +M libnemo-private/nemo-users-groups-cache.c +M src/file-manager/fm-desktop-icon-view.c +M src/file-manager/fm-icon-view.c +M src/file-manager/fm-list-view.c +M src/nemo-notes-viewer.c +M src/nemo-spatial-window.c + +commit 99e66a93605e056c80cebb4c3ac9b6b58167ad1c +Author: Matthias Clasen +Date: 2009-04-21 + + Avoid delays in background switching + + Don't delay background switching, so that users will immediately see + it changing when browsing the background list (#330168). + + Signed-off-by: Cosimo Cecchi + +M libnemo-private/nemo-directory-background.c + +commit 979d877c1803034be8a3ff69437974a1cfdbff30 +Author: Cosimo Cecchi +Date: 2009-04-21 + + Enforce {GDK,GTK}_DISABLE_DEPRECATED cflags + + Now that we build cleanly without deprecated symbols, widen the + deprecated check policy to GDK/GTK+. + +M configure.in + +commit b695c970182bbf19f2c38bf7405db506e7c23bb0 +Author: Cosimo Cecchi +Date: 2009-04-21 + + Remove deprecated GDK/GTK+ symbols + + Remove all uses of deprecated GDK and GTK+ symbols, replacing them + with the currently supported equivalents. + Based on a patch from Tal Benavidor (#565038). + +M eel/eel-background-box.h +M eel/eel-background.c +M eel/eel-background.h +M eel/eel-canvas-rect-ellipse.h +M eel/eel-canvas.c +M eel/eel-canvas.h +M eel/eel-debug-drawing.c +M eel/eel-editable-label.c +M eel/eel-editable-label.h +M eel/eel-gtk-extensions.c +M eel/eel-gtk-extensions.h +M eel/eel-gtk-macros.h +M eel/eel-image-table.c +M eel/eel-image-table.h +M eel/eel-labeled-image.h +M eel/eel-stock-dialogs.c +M eel/eel-types.c +M eel/eel-wrap-table.c +M eel/eel-wrap-table.h +M libnemo-private/nemo-autorun.c +M libnemo-private/nemo-bookmark.h +M libnemo-private/nemo-cell-renderer-pixbuf-emblem.h +M libnemo-private/nemo-clipboard-monitor.h +M libnemo-private/nemo-column-chooser.h +M libnemo-private/nemo-desktop-directory-file.h +M libnemo-private/nemo-desktop-directory.h +M libnemo-private/nemo-desktop-icon-file.h +M libnemo-private/nemo-desktop-link-monitor.h +M libnemo-private/nemo-desktop-link.h +M libnemo-private/nemo-directory.h +M libnemo-private/nemo-dnd.c +M libnemo-private/nemo-entry.h +M libnemo-private/nemo-file.h +M libnemo-private/nemo-horizontal-splitter.h +M libnemo-private/nemo-icon-canvas-item.h +M libnemo-private/nemo-icon-container.h +M libnemo-private/nemo-keep-last-vertical-box.h +M libnemo-private/nemo-merged-directory.h +M libnemo-private/nemo-metafile.h +M libnemo-private/nemo-open-with-dialog.c +M libnemo-private/nemo-progress-info.c +M libnemo-private/nemo-search-directory-file.h +M libnemo-private/nemo-search-directory.h +M libnemo-private/nemo-trash-monitor.h +M libnemo-private/nemo-undo-manager.h +M libnemo-private/nemo-undo-transaction.h +M libnemo-private/nemo-vfs-directory.h +M libnemo-private/nemo-vfs-file.h +M src/file-manager/fm-desktop-icon-view.c +M src/file-manager/fm-desktop-icon-view.h +M src/file-manager/fm-directory-view.c +M src/file-manager/fm-directory-view.h +M src/file-manager/fm-icon-container.h +M src/file-manager/fm-icon-view.c +M src/file-manager/fm-icon-view.h +M src/file-manager/fm-list-model.h +M src/file-manager/fm-list-view.c +M src/file-manager/fm-list-view.h +M src/file-manager/fm-properties-window.c +M src/file-manager/fm-properties-window.h +M src/file-manager/fm-tree-model.h +M src/file-manager/fm-tree-view.c +M src/file-manager/fm-tree-view.h +M src/nemo-application.h +M src/nemo-bookmark-list.h +M src/nemo-desktop-window.h +M src/nemo-emblem-sidebar.c +M src/nemo-emblem-sidebar.h +M src/nemo-history-sidebar.c +M src/nemo-history-sidebar.h +M src/nemo-image-properties-page.h +M src/nemo-information-panel.c +M src/nemo-information-panel.h +M src/nemo-location-bar.h +M src/nemo-location-entry.h +M src/nemo-navigation-bar.h +M src/nemo-navigation-window.h +M src/nemo-notes-viewer.c +M src/nemo-notes-viewer.h +M src/nemo-places-sidebar.c +M src/nemo-places-sidebar.h +M src/nemo-property-browser.h +M src/nemo-query-editor.h +M src/nemo-search-bar.c +M src/nemo-search-bar.h +M src/nemo-side-pane.h +M src/nemo-sidebar-title.h +M src/nemo-spatial-window.c +M src/nemo-spatial-window.h +M src/nemo-throbber.h +M src/nemo-window-menus.c +M src/nemo-window.h +M src/nemo-zoom-control.h +M test/test-nemo-directory-async.c +M test/test.c + +commit e2f711533e1008b62c9db70fb3bcf877191866d4 +Author: Alexander Larsson +Date: 2009-04-20 + + Fix broken pofile + + Lots of duplicated strings that makes msgfmt -c check fail. + +M po/ha.po + +commit 42bea16f00e93441a601f3279702d1bd60f07592 +Author: Alexander Larsson +Date: 2009-04-20 + + Comment out invalid pofile strings + + msgfmt -c bs.po said: + bs.po:3783: number of format specifications in 'msgid' and 'msgstr[0]' + does not match msgfmt: found 1 fatal error + which meant branching was impossible + +M po/bs.po + +commit f9585e4f4825ab1114cd4185ec8cdca9360da3c9 +Author: Jonathon Jongsma +Date: 2009-04-20 + + Allow shift+return during typeahead find + + Allow shift+rename to close parent + open when typeahead find window + is active. (#579551) + +M libnemo-private/nemo-icon-container.c + +commit 1f9ed9598a3324278eaef2153b95f22962dd2558 +Author: Khaled Hosny +Date: 2009-04-17 + + Updated Arabic translation + +M po/ar.po + +commit 9c4c0254d4788ac1d7e10df30fc74cc2d64c5d09 +Author: Alexander Larsson +Date: 2009-04-17 + + Preload /desktop/gnome/background from gconf + + We'll be reading a lot of background settings, so we want to preload + (and thus also add_dir) the gconf directory. (Fixes #578993) + +M libnemo-private/nemo-global-preferences.c + +commit e61a17f3445be7c77f092b717f1e64a1231e01c0 +Author: Cosimo Cecchi +Date: 2009-04-17 + + Fix a copy/paste typo. + +M README.commits + +commit bad7749c6cc88009ba5e0f9f96f9ab418a1f7193 +Author: Alexander Larsson +Date: 2009-04-17 + + Add .gitignore files + +A .gitignore +A data/.gitignore +A docs/reference/.gitignore +A docs/reference/libnemo-extension/.gitignore +A +docs/reference/libnemo-extension/libnemo-extension-overrides.txt +A +docs/reference/libnemo-extension/libnemo-extension-sections.txt +A eel/.gitignore +A libnemo-private/.gitignore +A po/.gitignore +A src/.gitignore + +commit 8acf8338c97387af3b93793760a3b1d64e752a2c +Author: Alexander Larsson +Date: 2009-04-17 + + Add makefile rules to generate ChangeLog + +M Makefile.am + +commit 3f4a5c97a23acbca33836d14edb2b5c8798a6dc5 +Author: Alexander Larsson +Date: 2009-04-17 + + Add doap file with name, description and developer info + +A nemo.doap + +commit a867c35e835128647396ad5b2df498c189944ca4 +Author: Alexander Larsson +Date: 2009-04-17 + + Add README.commits, update HACKING for git + +M HACKING +M Makefile.am +A README.commits + +commit 4a78eabc71df08bdf3d71877c3b3cb62d1b80bff +Author: Alexander Larsson +Date: 2009-04-17 + + Move ChangeLog to ChangeLog-20090417 + + With the switch to git we're moving to an autogenerated ChangeLog. + +R099 ChangeLog ChangeLog-20090417 +M Makefile.am + +commit 6a8673c7806ad7a014feb9bc780e0dfcadb5d71c +Author: Alexander Larsson +Date: 2009-04-16 + + Reversed check in last commit, fixed. + + 2009-04-16 Alexander Larsson + + * configure.in: + Reversed check in last commit, fixed. + + + + svn path=/trunk/; revision=15188 + +M ChangeLog +M configure.in + +commit ab550c223368c4d0bb9b7133e477430a38fe96d6 +Author: Alexander Larsson +Date: 2009-04-16 + + Bug 578983 – set_more_warnings check of WARNING_CFLAGS doesn't work + + 2009-04-16 Alexander Larsson + + Bug 578983 – set_more_warnings check of WARNING_CFLAGS + doesn't work + + * configure.in: + Actually check the options. + + + svn path=/trunk/; revision=15187 + +M ChangeLog +M configure.in + +commit 9870d42d6709fea0fd3c50d00f5a491902be27e5 +Author: Alexander Larsson +Date: 2009-04-16 + + Set typeahead column to the name column. + + 2009-04-16 Alexander Larsson + + * src/nemo-places-sidebar.c (nemo_places_sidebar_init): + Set typeahead column to the name column. + + + svn path=/trunk/; revision=15186 + +M ChangeLog +M src/nemo-places-sidebar.c + +commit 3125825a1cb10f38779b926050d4030f45a6003a +Author: Alexander Larsson +Date: 2009-04-16 + + Bug 578468 – Change of font DPI setting does not effect desktop + icons + + 2009-04-16 Alexander Larsson + + Bug 578468 – Change of font DPI setting does not effect + desktop icons + + * libnemo-private/nemo-icon-canvas-item.c: + (nemo_icon_canvas_item_invalidate_label_size): + Invalidate pango layouts since the context could have changed + For instance the font DPI. + + + + svn path=/trunk/; revision=15185 + +M ChangeLog +M libnemo-private/nemo-icon-canvas-item.c + +commit 4323f9b47229312a60093587724e1aa102a8c926 +Author: Alexander Larsson +Date: 2009-04-16 + + Bug 579086 – Excessive white-space on right-hand side in icon view + + 2009-04-16 Alexander Larsson + + Bug 579086 – Excessive white-space on right-hand side in + icon view + + * libnemo-private/nemo-icon-container.c: + (nemo_icon_container_update_scroll_region): + When using at allocation->width, take zoom into account + + + svn path=/trunk/; revision=15184 + +M ChangeLog +M libnemo-private/nemo-icon-container.c + +commit 649c39c7d8f6b3162e6f9142f3201eb254f26c8f +Author: Alexander Larsson +Date: 2009-04-13 + + Post release version bump + + 2009-04-13 Alexander Larsson + + * configure.in: + Post release version bump + + === nemo 2.26.2 === + + + svn path=/trunk/; revision=15183 + +M ChangeLog +M configure.in +M eel/ChangeLog +M po/ChangeLog diff --git a/src/nemo-statusbar.c b/src/nemo-statusbar.c index 3664ea5a26..cf98ee92ec 100644 --- a/src/nemo-statusbar.c +++ b/src/nemo-statusbar.c @@ -33,6 +33,7 @@ enum { enum { PROP_WINDOW = 1, + PROP_PANE, NUM_PROPERTIES }; @@ -57,11 +58,16 @@ bar_get_slot (NemoStatusBar *bar) } /* Return the sidebar_id this bar should reflect. - * Both per-pane bars reflect the same global sidebar type (only the content - * differs between the two sidebars). */ + * When locked to a pane, inspect that pane's actual sidebar widget type so the + * toggle buttons show the correct state even when the two panes have different + * sidebar types. */ static const gchar * bar_get_sidebar_id (NemoStatusBar *bar) { + if (bar->locked_pane != NULL) { + return nemo_window_get_pane_sidebar_type (NEMO_WINDOW (bar->window), + bar->locked_pane); + } return nemo_window_get_sidebar_id (NEMO_WINDOW (bar->window)); } @@ -91,6 +97,9 @@ nemo_status_bar_set_property (GObject *object, case PROP_WINDOW: self->window = g_value_get_object (value); break; + case PROP_PANE: + self->locked_pane = g_value_get_pointer (value); + break; default: G_OBJECT_WARN_INVALID_PROPERTY_ID (object, arg_id, pspec); break; @@ -109,6 +118,9 @@ nemo_status_bar_get_property (GObject *object, case PROP_WINDOW: g_value_set_object (value, self->window); break; + case PROP_PANE: + g_value_set_pointer (value, self->locked_pane); + break; default: G_OBJECT_WARN_INVALID_PROPERTY_ID (object, arg_id, pspec); break; @@ -133,14 +145,30 @@ nemo_status_bar_dispose (GObject *object) static void action_places_toggle_callback (GtkButton *button, NemoStatusBar *bar) { - nemo_window_set_sidebar_id (NEMO_WINDOW (bar->window), NEMO_WINDOW_SIDEBAR_PLACES); + if (bar->locked_pane != NULL) { + /* Per-pane mode: only change THIS pane's sidebar, not the global type */ + nemo_window_set_pane_sidebar_type (NEMO_WINDOW (bar->window), + bar->locked_pane, + NEMO_WINDOW_SIDEBAR_PLACES); + } else { + nemo_window_set_sidebar_id (NEMO_WINDOW (bar->window), + NEMO_WINDOW_SIDEBAR_PLACES); + } nemo_status_bar_sync_button_states (bar); } static void action_treeview_toggle_callback (GtkButton *button, NemoStatusBar *bar) { - nemo_window_set_sidebar_id (NEMO_WINDOW (bar->window), NEMO_WINDOW_SIDEBAR_TREE); + if (bar->locked_pane != NULL) { + /* Per-pane mode: only change THIS pane's sidebar, not the global type */ + nemo_window_set_pane_sidebar_type (NEMO_WINDOW (bar->window), + bar->locked_pane, + NEMO_WINDOW_SIDEBAR_TREE); + } else { + nemo_window_set_sidebar_id (NEMO_WINDOW (bar->window), + NEMO_WINDOW_SIDEBAR_TREE); + } nemo_status_bar_sync_button_states (bar); } @@ -156,7 +184,7 @@ action_hide_sidebar_callback (GtkButton *button, NemoStatusBar *bar) NemoWindow *win = NEMO_WINDOW (bar->window); if (bar->locked_pane != NULL) { - GList *panes = win->details->panes; + GList *panes = nemo_window_get_panes (win); if (panes != NULL && bar->locked_pane == (NemoWindowPane *) panes->data) { /* pane1 bar: hiding sidebar turns off the whole sidebar, @@ -290,8 +318,14 @@ nemo_status_bar_constructed (GObject *object) g_signal_connect_object (NEMO_WINDOW (bar->window), "notify::show-sidebar", G_CALLBACK (sidebar_state_changed_cb), bar, G_CONNECT_AFTER); - g_signal_connect_object (NEMO_WINDOW (bar->window), "notify::sidebar-view-id", - G_CALLBACK (sidebar_type_changed_cb), bar, G_CONNECT_AFTER); + /* The global sidebar-view-id notify fires when the user changes type via the + * View menu or a non-locked statusbar. Locked bars don't need this signal — + * their type changes are driven by nemo_window_set_pane_sidebar_type() which + * calls sync_button_states directly, never touching sidebar-view-id. */ + if (bar->locked_pane == NULL) { + g_signal_connect_object (NEMO_WINDOW (bar->window), "notify::sidebar-view-id", + G_CALLBACK (sidebar_type_changed_cb), bar, G_CONNECT_AFTER); + } g_signal_connect (GTK_RANGE (zoom_slider), "value-changed", G_CALLBACK (on_slider_changed_cb), bar); @@ -331,6 +365,13 @@ nemo_status_bar_class_init (NemoStatusBarClass *status_bar_class) G_PARAM_CONSTRUCT_ONLY | G_PARAM_STATIC_STRINGS); + properties[PROP_PANE] = g_param_spec_pointer ("locked-pane", + "Locked NemoWindowPane", + "Pane this bar is locked to, or NULL for global", + G_PARAM_READWRITE | + G_PARAM_CONSTRUCT_ONLY | + G_PARAM_STATIC_STRINGS); + g_object_class_install_properties (oclass, NUM_PROPERTIES, properties); } @@ -355,16 +396,12 @@ nemo_status_bar_new (NemoWindow *window) GtkWidget * nemo_status_bar_new_for_pane (NemoWindow *window, NemoWindowPane *pane) { - NemoStatusBar *bar; - - bar = NEMO_STATUS_BAR ( - g_object_new (NEMO_TYPE_STATUS_BAR, - "orientation", GTK_ORIENTATION_HORIZONTAL, - "spacing", 0, - "window", window, - NULL)); - bar->locked_pane = pane; - return GTK_WIDGET (bar); + return g_object_new (NEMO_TYPE_STATUS_BAR, + "orientation", GTK_ORIENTATION_HORIZONTAL, + "spacing", 0, + "window", window, + "locked-pane", pane, + NULL); } GtkWidget * diff --git a/src/nemo-window-private.h b/src/nemo-window-private.h index 636fe805d4..9f10a0f661 100644 --- a/src/nemo-window-private.h +++ b/src/nemo-window-private.h @@ -116,6 +116,11 @@ struct NemoWindowDetails /* pane1 statusbar container (the original nemo_status_bar moved into pane1 col) */ GtkWidget *statusbar1_eb; /* event-box wrapper used in pane1 col */ GtkWidget *statusbar1_sep; /* separator above statusbar1 in pane1 col */ + /* global statusbar outer wrappers — stored so we can hide/show them + * without touching nemo_status_bar's visible property (which is bound + * to GSettings and would corrupt the floating-bar visibility logic) */ + GtkWidget *statusbar_global_eb; /* event-box wrapping nemo_status_bar */ + GtkWidget *statusbar_global_sep; /* separator above the global statusbar */ gboolean disable_chrome; diff --git a/src/nemo-window-slot.c b/src/nemo-window-slot.c index 86ba9920b0..cc96a1fa54 100644 --- a/src/nemo-window-slot.c +++ b/src/nemo-window-slot.c @@ -689,7 +689,12 @@ real_slot_set_short_status (NemoWindowSlot *slot, "disable-chrome", &disable_chrome, NULL); - if (status == NULL || show_statusbar || disable_chrome) { + /* Also suppress the floating bar when per-pane statusbars are active — + * each pane has its own real statusbar so the floating overlay is redundant. */ + NemoWindow *win = nemo_window_slot_get_window (slot); + gboolean per_pane_statusbar = (win->details->nemo_status_bar2 != NULL); + + if (status == NULL || show_statusbar || disable_chrome || per_pane_statusbar) { gtk_widget_hide (slot->floating_bar); return; } diff --git a/src/nemo-window.c b/src/nemo-window.c index af71564fbf..10ab6e4107 100644 --- a/src/nemo-window.c +++ b/src/nemo-window.c @@ -817,6 +817,12 @@ nemo_window_constructed (GObject *self) gtk_container_add (GTK_CONTAINER (grid), eb); gtk_widget_show (eb); + /* Store outer wrappers so per-pane statusbar code can hide/show the + * global statusbar without touching nemo_status_bar's visible property + * (which is bidirectionally bound to GSettings). */ + window->details->statusbar_global_eb = eb; + window->details->statusbar_global_sep = sep; + window->details->statusbar = nemo_status_bar_get_real_statusbar (NEMO_STATUS_BAR (nemo_statusbar)); window->details->help_message_cid = gtk_statusbar_get_context_id (GTK_STATUSBAR (window->details->statusbar), "help_message"); @@ -2931,29 +2937,40 @@ nemo_window_refresh_sidebar_colours (NemoWindow *window) * widget references stay valid). * --------------------------------------------------------------------------- */ -/* Walk up from pane widget to find its direct-child-of-paned container - * (either the bare pane or the content_vbox wrapping it). */ -static GtkWidget * -find_content_vbox_for_pane (NemoWindow *window, NemoWindowPane *pane) -{ - GtkWidget *w = GTK_WIDGET (pane); - while (w != NULL) { - GtkWidget *p = gtk_widget_get_parent (w); - if (p == NULL) - return NULL; - if (GTK_IS_PANED (p)) - return w; /* direct child of a Paned — that is the content vbox */ - w = p; - } - return NULL; -} +/* --------------------------------------------------------------------------- + * Per-pane status bars — layout + * + * The statusbar must span the FULL width of each pane column, i.e. below both + * the sidebar and the content area. The per-pane column is currently: + * + * split_view_hpane + * child1: pri_paned (HPaned) sidebar1 | content_vbox1 + * child2: sec_paned (HPaned) sidebar2 | content_vbox2 + * + * We wrap each xpaned in a new outer VBox and append the statusbar there: + * + * split_view_hpane + * child1: outer_vbox1 (VBox) + * pri_paned (expanding) + * ── separator ── + * statusbar_eb1 + * child2: outer_vbox2 (VBox) + * sec_paned (expanding) + * ── separator ── + * statusbar_eb2 + * + * On teardown we unwrap: pull the xpaned back out of the outer_vbox and + * put it back as a direct child of split_view_hpane, then destroy the vbox. + * --------------------------------------------------------------------------- */ static void nemo_window_set_up_per_pane_statusbars (NemoWindow *window) { NemoWindowPane *pane1, *pane2; - GtkWidget *vbox1, *vbox2; GList *last; + GtkPaned *split_hpane; + GtkWidget *pri_paned, *sec_paned; + GtkWidget *outer_vbox1, *outer_vbox2; if (window->details->nemo_status_bar2 != NULL) return; /* already set up */ @@ -2968,21 +2985,41 @@ nemo_window_set_up_per_pane_statusbars (NemoWindow *window) pane1 = (NemoWindowPane *) window->details->panes->data; pane2 = (NemoWindowPane *) last->data; - /* Per-pane statusbars require the sidebar column VBoxes to exist. */ + /* Per-pane statusbars require the sidebar column HPaneds to exist. */ if (window->details->primary_pane_content_paned == NULL || window->details->secondary_pane_content_paned == NULL) return; - vbox1 = find_content_vbox_for_pane (window, pane1); - vbox2 = find_content_vbox_for_pane (window, pane2); + pri_paned = window->details->primary_pane_content_paned; + sec_paned = window->details->secondary_pane_content_paned; + split_hpane = GTK_PANED (window->details->split_view_hpane); + + /* ---- wrap pri_paned in outer_vbox1 ---- */ + g_object_ref (pri_paned); + gtk_container_remove (GTK_CONTAINER (split_hpane), pri_paned); - if (vbox1 == NULL || vbox2 == NULL) - return; + outer_vbox1 = gtk_box_new (GTK_ORIENTATION_VERTICAL, 0); + gtk_widget_show (outer_vbox1); + gtk_box_pack_start (GTK_BOX (outer_vbox1), pri_paned, TRUE, TRUE, 0); + g_object_unref (pri_paned); + + gtk_paned_pack1 (split_hpane, outer_vbox1, TRUE, FALSE); + + /* ---- wrap sec_paned in outer_vbox2 ---- */ + g_object_ref (sec_paned); + gtk_container_remove (GTK_CONTAINER (split_hpane), sec_paned); + + outer_vbox2 = gtk_box_new (GTK_ORIENTATION_VERTICAL, 0); + gtk_widget_show (outer_vbox2); + gtk_box_pack_start (GTK_BOX (outer_vbox2), sec_paned, TRUE, TRUE, 0); + g_object_unref (sec_paned); - /* ---- statusbar for pane1 ---- */ + gtk_paned_pack2 (split_hpane, outer_vbox2, TRUE, FALSE); + + /* ---- statusbar for pane1 (appended to outer_vbox1) ---- */ { GtkWidget *sep = gtk_separator_new (GTK_ORIENTATION_HORIZONTAL); - gtk_box_pack_end (GTK_BOX (vbox1), sep, FALSE, FALSE, 0); + gtk_box_pack_end (GTK_BOX (outer_vbox1), sep, FALSE, FALSE, 0); gtk_widget_show (sep); window->details->statusbar1_sep = sep; @@ -2992,7 +3029,7 @@ nemo_window_set_up_per_pane_statusbars (NemoWindow *window) g_signal_connect_object (eb, "button-press-event", G_CALLBACK (on_button_press_callback), window, 0); gtk_container_add (GTK_CONTAINER (eb), sb); - gtk_box_pack_end (GTK_BOX (vbox1), eb, FALSE, FALSE, 0); + gtk_box_pack_end (GTK_BOX (outer_vbox1), eb, FALSE, FALSE, 0); gtk_widget_show (eb); window->details->statusbar1_eb = eb; @@ -3000,10 +3037,10 @@ nemo_window_set_up_per_pane_statusbars (NemoWindow *window) nemo_status_bar_sync_button_states (NEMO_STATUS_BAR (sb)); } - /* ---- statusbar for pane2 ---- */ + /* ---- statusbar for pane2 (appended to outer_vbox2) ---- */ { GtkWidget *sep = gtk_separator_new (GTK_ORIENTATION_HORIZONTAL); - gtk_box_pack_end (GTK_BOX (vbox2), sep, FALSE, FALSE, 0); + gtk_box_pack_end (GTK_BOX (outer_vbox2), sep, FALSE, FALSE, 0); gtk_widget_show (sep); window->details->statusbar2_sep = sep; @@ -3016,7 +3053,7 @@ nemo_window_set_up_per_pane_statusbars (NemoWindow *window) g_signal_connect_object (eb, "button-press-event", G_CALLBACK (on_button_press_callback), window, 0); gtk_container_add (GTK_CONTAINER (eb), sb); - gtk_box_pack_end (GTK_BOX (vbox2), eb, FALSE, FALSE, 0); + gtk_box_pack_end (GTK_BOX (outer_vbox2), eb, FALSE, FALSE, 0); gtk_widget_show (eb); window->details->statusbar2_eb = eb; @@ -3024,41 +3061,109 @@ nemo_window_set_up_per_pane_statusbars (NemoWindow *window) nemo_status_bar_sync_button_states (NEMO_STATUS_BAR (sb)); } - /* Hide the global statusbar (outer NemoStatusBar widget). - * Its event-box wrapper stays in the grid so existing bindings remain valid. */ - gtk_widget_hide (window->details->nemo_status_bar); + /* Hide the global statusbar by hiding its outer event-box and separator. + * We must NOT touch nemo_status_bar's own visible property because it is + * bidirectionally bound to NEMO_WINDOW_STATE_START_WITH_STATUS_BAR — + * hiding it would write false to GSettings and make the floating-bar + * "selected items" text appear over the content pane. */ + if (window->details->statusbar_global_eb != NULL) + gtk_widget_hide (window->details->statusbar_global_eb); + if (window->details->statusbar_global_sep != NULL) + gtk_widget_hide (window->details->statusbar_global_sep); } - static void nemo_window_tear_down_per_pane_statusbars (NemoWindow *window) { - /* Destroy pane1 statusbar widgets */ + GtkPaned *split_hpane; + GtkWidget *outer_vbox1, *outer_vbox2; + GtkWidget *pri_paned, *sec_paned; + + /* Disconnect window notify signals from both per-pane bars BEFORE + * destroying any widgets, to prevent sidebar_type_changed_cb / + * sidebar_state_changed_cb from firing on a partially-destroyed bar. */ if (window->details->statusbar1_eb != NULL) { - gtk_widget_destroy (window->details->statusbar1_eb); - window->details->statusbar1_eb = NULL; + GList *ch = gtk_container_get_children ( + GTK_CONTAINER (window->details->statusbar1_eb)); + if (ch != NULL && NEMO_IS_STATUS_BAR (ch->data)) { + g_signal_handlers_disconnect_by_data (window, ch->data); + } + g_list_free (ch); } - if (window->details->statusbar1_sep != NULL) { - gtk_widget_destroy (window->details->statusbar1_sep); - window->details->statusbar1_sep = NULL; + if (window->details->statusbar2_eb != NULL) { + GList *ch = gtk_container_get_children ( + GTK_CONTAINER (window->details->statusbar2_eb)); + if (ch != NULL && NEMO_IS_STATUS_BAR (ch->data)) { + g_signal_handlers_disconnect_by_data (window, ch->data); + } + g_list_free (ch); } - /* Destroy pane2 statusbar widgets (nemo_status_bar2 is inside statusbar2_eb) */ - if (window->details->statusbar2_eb != NULL) { - gtk_widget_destroy (window->details->statusbar2_eb); - window->details->statusbar2_eb = NULL; + /* Unwrap outer_vbox1 / outer_vbox2 from split_view_hpane, restoring the + * pri_paned / sec_paned as direct children. This must happen before we + * destroy the vboxes so the paneds survive. */ + split_hpane = (window->details->split_view_hpane != NULL) + ? GTK_PANED (window->details->split_view_hpane) : NULL; + + if (split_hpane != NULL && + window->details->primary_pane_content_paned != NULL) { + + pri_paned = window->details->primary_pane_content_paned; + outer_vbox1 = gtk_widget_get_parent (pri_paned); /* the wrapper VBox */ + + if (outer_vbox1 != NULL && + gtk_widget_get_parent (outer_vbox1) == GTK_WIDGET (split_hpane)) { + + g_object_ref (pri_paned); + gtk_container_remove (GTK_CONTAINER (outer_vbox1), pri_paned); + + /* Remove and destroy the outer vbox (statusbar1_eb and sep are + * children of it and will be destroyed with it). */ + gtk_container_remove (GTK_CONTAINER (split_hpane), outer_vbox1); + + gtk_paned_pack1 (split_hpane, pri_paned, TRUE, FALSE); + g_object_unref (pri_paned); + } } - if (window->details->statusbar2_sep != NULL) { - gtk_widget_destroy (window->details->statusbar2_sep); - window->details->statusbar2_sep = NULL; + /* Clear sep/eb pointers — already destroyed with outer_vbox1 */ + window->details->statusbar1_eb = NULL; + window->details->statusbar1_sep = NULL; + + if (split_hpane != NULL && + window->details->secondary_pane_content_paned != NULL) { + + sec_paned = window->details->secondary_pane_content_paned; + outer_vbox2 = gtk_widget_get_parent (sec_paned); + + if (outer_vbox2 != NULL && + gtk_widget_get_parent (outer_vbox2) == GTK_WIDGET (split_hpane)) { + + g_object_ref (sec_paned); + gtk_container_remove (GTK_CONTAINER (outer_vbox2), sec_paned); + + gtk_container_remove (GTK_CONTAINER (split_hpane), outer_vbox2); + + gtk_paned_pack2 (split_hpane, sec_paned, TRUE, FALSE); + g_object_unref (sec_paned); + } } + /* Clear sep/eb/bar2 pointers — already destroyed with outer_vbox2 */ + window->details->statusbar2_eb = NULL; + window->details->statusbar2_sep = NULL; window->details->nemo_status_bar2 = NULL; - window->details->statusbar2 = NULL; + window->details->statusbar2 = NULL; /* Restore the global statusbar — guard against being called during window * destruction when the widget may no longer be valid. */ if (window->details->nemo_status_bar != NULL && GTK_IS_WIDGET (window->details->nemo_status_bar)) { - gtk_widget_show (window->details->nemo_status_bar); + + /* Show the outer wrappers — do NOT touch nemo_status_bar visible */ + if (window->details->statusbar_global_eb != NULL && + GTK_IS_WIDGET (window->details->statusbar_global_eb)) + gtk_widget_show (window->details->statusbar_global_eb); + if (window->details->statusbar_global_sep != NULL && + GTK_IS_WIDGET (window->details->statusbar_global_sep)) + gtk_widget_show (window->details->statusbar_global_sep); /* Sync the restored global bar */ nemo_status_bar_sync_zoom_widgets ( @@ -3067,7 +3172,6 @@ nemo_window_tear_down_per_pane_statusbars (NemoWindow *window) NEMO_STATUS_BAR (window->details->nemo_status_bar)); } } - static void dual_pane_prefs_changed (gpointer callback_data) { @@ -3353,6 +3457,109 @@ nemo_window_get_sidebar_id (NemoWindow *window) return window->details->sidebar_id; } +/* Swap the sidebar widget inside the sidebar box that is paired with @pane, + * without touching the global sidebar_id or triggering side_pane_id_changed. + * Only used by per-pane statusbar buttons when separate-sidebar is active. */ +void +nemo_window_set_pane_sidebar_type (NemoWindow *window, + NemoWindowPane *pane, + const gchar *id) +{ + GtkWidget *sidebar_box; + GList *children; + GtkWidget *old_widget; + GtkWidget *new_widget; + GList *panes; + gboolean is_pane1; + + if (!id) return; + + /* Determine which sidebar box to update */ + panes = window->details->panes; + is_pane1 = (panes != NULL && pane == (NemoWindowPane *) panes->data); + + if (is_pane1) { + sidebar_box = window->details->sidebar; + } else { + sidebar_box = window->details->sidebar2; + } + + if (sidebar_box == NULL) return; + + /* Remove the existing sidebar widget from the box */ + children = gtk_container_get_children (GTK_CONTAINER (sidebar_box)); + if (children != NULL) { + /* Skip any top-separator we may have added (pane-wrapper-top-sep) */ + GList *l; + for (l = children; l != NULL; l = l->next) { + GtkWidget *w = GTK_WIDGET (l->data); + if (GTK_IS_SEPARATOR (w)) + continue; + old_widget = w; + gtk_container_remove (GTK_CONTAINER (sidebar_box), old_widget); + break; + } + g_list_free (children); + } + + /* Create and pack the new sidebar widget locked to this pane */ + if (g_strcmp0 (id, NEMO_WINDOW_SIDEBAR_PLACES) == 0) { + new_widget = nemo_places_sidebar_new_for_pane (window, pane); + } else if (g_strcmp0 (id, NEMO_WINDOW_SIDEBAR_TREE) == 0) { + new_widget = nemo_tree_sidebar_new_for_pane (window, pane); + } else { + return; + } + + gtk_box_pack_start (GTK_BOX (sidebar_box), new_widget, TRUE, TRUE, 0); + /* Keep below any top-separator by reordering if present */ + { + GtkWidget *sep = g_object_get_data (G_OBJECT (sidebar_box), + "pane-wrapper-top-sep"); + if (sep != NULL) { + gtk_box_reorder_child (GTK_BOX (sidebar_box), new_widget, 1); + } + } + gtk_widget_show (new_widget); +} + +/* Query the current sidebar type for a per-pane sidebar by inspecting which + * widget type is inside the sidebar box. */ +const gchar * +nemo_window_get_pane_sidebar_type (NemoWindow *window, + NemoWindowPane *pane) +{ + GtkWidget *sidebar_box; + GList *children; + GList *l; + const gchar *result = NULL; + + GList *panes = window->details->panes; + gboolean is_pane1 = (panes != NULL && pane == (NemoWindowPane *) panes->data); + + sidebar_box = is_pane1 ? window->details->sidebar + : window->details->sidebar2; + + if (sidebar_box == NULL) + return nemo_window_get_sidebar_id (window); + + children = gtk_container_get_children (GTK_CONTAINER (sidebar_box)); + for (l = children; l != NULL; l = l->next) { + GtkWidget *w = GTK_WIDGET (l->data); + if (GTK_IS_SEPARATOR (w)) + continue; + if (NEMO_IS_PLACES_SIDEBAR (w)) { + result = NEMO_WINDOW_SIDEBAR_PLACES; + } else { + result = NEMO_WINDOW_SIDEBAR_TREE; + } + break; + } + g_list_free (children); + + return result ? result : nemo_window_get_sidebar_id (window); +} + void nemo_window_set_show_sidebar (NemoWindow *window, gboolean show) diff --git a/src/nemo-window.h b/src/nemo-window.h index bb6a4d05ab..2a6185d2be 100644 --- a/src/nemo-window.h +++ b/src/nemo-window.h @@ -166,6 +166,17 @@ void nemo_window_set_sidebar_id (NemoWindow *window, const gchar * nemo_window_get_sidebar_id (NemoWindow *window); +/* Change the sidebar type for a single per-pane sidebar without affecting the + * global sidebar_id or triggering a full side_pane_id_changed rebuild. */ +void nemo_window_set_pane_sidebar_type (NemoWindow *window, + NemoWindowPane *pane, + const gchar *id); + +/* Query the current sidebar type for a per-pane sidebar box. + * Returns NEMO_WINDOW_SIDEBAR_PLACES, NEMO_WINDOW_SIDEBAR_TREE, or NULL. */ +const gchar * nemo_window_get_pane_sidebar_type (NemoWindow *window, + NemoWindowPane *pane); + void nemo_window_set_show_sidebar (NemoWindow *window, gboolean show); diff --git a/test/test-dual-pane-integration.py b/test/test-dual-pane-integration.py new file mode 100644 index 0000000000..723629e2e3 --- /dev/null +++ b/test/test-dual-pane-integration.py @@ -0,0 +1,809 @@ +#!/usr/bin/env python3 +""" +test-dual-pane-integration.py +============================== +Integration tests for Nemo dual-pane enhancements. + +These tests launch a real Nemo process (the installed binary or the one +given by NEMO_BINARY), drive preferences via gsettings, and verify that +Nemo behaves correctly and does not crash. + +Requirements +------------ + - A running X display (or set DISPLAY before running; Xvfb works fine) + - The nemo binary must be runnable (installed or pointed to by NEMO_BINARY) + - python3, gsettings, xdotool (optional but gives richer window checks) + +Usage +----- + # Basic run against installed nemo: + python3 test/test-dual-pane-integration.py + + # Against a locally built nemo: + NEMO_BINARY=./build/src/nemo \ + GSETTINGS_SCHEMA_DIR=./build/test \ + python3 test/test-dual-pane-integration.py + + # With Xvfb (headless): + xvfb-run python3 test/test-dual-pane-integration.py + + # Verbose output: + python3 test/test-dual-pane-integration.py -v + +Exit codes +---------- + 0 all tests passed + 1 one or more tests failed +""" + +import os +import sys +import time +import signal +import shutil +import subprocess +import argparse +import textwrap +from typing import Optional + +# --------------------------------------------------------------------------- +# Configuration +# --------------------------------------------------------------------------- + +SCHEMA = "org.nemo.preferences" +STATE_SCHEMA = "org.nemo.window-state" +NEMO_BINARY = os.environ.get("NEMO_BINARY", "nemo") +SCHEMA_DIR = os.environ.get("GSETTINGS_SCHEMA_DIR", "") + +# How long to wait for nemo to finish starting up / settling after a +# gsettings change (seconds). Increase on slow machines. +STARTUP_DELAY = 2.0 +SETTLE_DELAY = 0.8 + +# Keys we touch — all get saved at startup and restored at exit. +PREF_KEYS = [ + "start-with-dual-pane", + "dual-pane-vertical-split", + "dual-pane-separate-sidebar", + "dual-pane-separate-nav-bar", +] +STATE_KEYS = [ + "start-with-sidebar", +] + +# --------------------------------------------------------------------------- +# Helpers +# --------------------------------------------------------------------------- + +_verbose = False + +def log(msg: str) -> None: + if _verbose: + print(f" {msg}", flush=True) + + +def gsettings(*args) -> str: + """Run gsettings and return stdout, raising on failure.""" + env = dict(os.environ) + if SCHEMA_DIR: + env["GSETTINGS_SCHEMA_DIR"] = SCHEMA_DIR + result = subprocess.run( + ["gsettings", *args], + capture_output=True, text=True, env=env + ) + if result.returncode != 0: + raise RuntimeError( + f"gsettings {' '.join(args)} failed:\n{result.stderr.strip()}" + ) + return result.stdout.strip() + + +def set_pref(key: str, value: bool, schema: str = SCHEMA) -> None: + val = "true" if value else "false" + log(f"gsettings set {schema} {key} {val}") + gsettings("set", schema, key, val) + time.sleep(SETTLE_DELAY) + + +def get_pref(key: str, schema: str = SCHEMA) -> bool: + val = gsettings("get", schema, key) + return val.strip() == "true" + + +def reset_pref(key: str, schema: str = SCHEMA) -> None: + gsettings("reset", schema, key) + + +def xdotool_available() -> bool: + return shutil.which("xdotool") is not None + + +def nemo_window_count() -> int: + """Return number of visible Nemo windows via xdotool, or -1 if unavailable.""" + if not xdotool_available(): + return -1 + try: + result = subprocess.run( + ["xdotool", "search", "--classname", "nemo"], + capture_output=True, text=True, timeout=5 + ) + lines = [l for l in result.stdout.strip().splitlines() if l.strip()] + return len(lines) + except Exception: + return -1 + + +# --------------------------------------------------------------------------- +# NemoProcess: context manager that launches and tears down a nemo instance +# --------------------------------------------------------------------------- + +class NemoProcess: + """ + Launches a Nemo window and keeps it alive for the duration of a test. + Uses --no-default-window then opens a window via nemo so we + control exactly one window. + """ + + def __init__(self, extra_env: Optional[dict] = None): + self.proc: Optional[subprocess.Popen] = None + self.extra_env = extra_env or {} + + def start(self) -> "NemoProcess": + if not shutil.which(NEMO_BINARY) and not os.path.isfile(NEMO_BINARY): + raise AssertionError( + f"nemo binary not found: {NEMO_BINARY!r} — " + "set NEMO_BINARY env var to the path of the nemo executable" + ) + env = dict(os.environ) + if SCHEMA_DIR: + env["GSETTINGS_SCHEMA_DIR"] = SCHEMA_DIR + env.update(self.extra_env) + + # Open nemo on /tmp so we don't trigger any slow VFS mounts + cmd = [NEMO_BINARY, "/tmp"] + log(f"Launching: {' '.join(cmd)}") + self.proc = subprocess.Popen( + cmd, env=env, + stdout=subprocess.DEVNULL, + stderr=subprocess.DEVNULL, + ) + time.sleep(STARTUP_DELAY) + return self + + def alive(self) -> bool: + if self.proc is None: + return False + return self.proc.poll() is None + + def returncode(self) -> Optional[int]: + if self.proc is None: + return None + return self.proc.poll() + + def stop(self) -> int: + """Terminate nemo gracefully, return exit code.""" + if self.proc is None: + return 0 + if self.proc.poll() is None: + self.proc.terminate() + try: + self.proc.wait(timeout=5) + except subprocess.TimeoutExpired: + self.proc.kill() + self.proc.wait(timeout=3) + rc = self.proc.returncode + self.proc = None + return rc + + def __enter__(self): + return self.start() + + def __exit__(self, *_): + self.stop() + + +# --------------------------------------------------------------------------- +# Test framework +# --------------------------------------------------------------------------- + +_results: list[tuple[str, bool, str]] = [] + +def run_test(name: str, fn) -> bool: + """Run a single test function, record pass/fail.""" + print(f" {'·'} {name} ... ", end="", flush=True) + try: + fn() + _results.append((name, True, "")) + print("PASS") + return True + except AssertionError as e: + msg = str(e) or "(assertion failed)" + _results.append((name, False, msg)) + print(f"FAIL\n {msg}") + return False + except Exception as e: + msg = f"{type(e).__name__}: {e}" + _results.append((name, False, msg)) + print(f"ERROR\n {msg}") + return False + + +def assert_alive(nemo: NemoProcess, context: str = "") -> None: + ctx = f" ({context})" if context else "" + assert nemo.alive(), f"Nemo process died unexpectedly{ctx}" + + +def assert_pref(key: str, expected: bool, schema: str = SCHEMA) -> None: + actual = get_pref(key, schema) + assert actual == expected, ( + f"Pref {key!r}: expected {expected}, got {actual}" + ) + + +# --------------------------------------------------------------------------- +# Saved state — restore everything on exit +# --------------------------------------------------------------------------- + +_saved_prefs: dict[str, str] = {} +_saved_state: dict[str, str] = {} + +def save_prefs() -> None: + for key in PREF_KEYS: + _saved_prefs[key] = gsettings("get", SCHEMA, key) + for key in STATE_KEYS: + _saved_state[key] = gsettings("get", STATE_SCHEMA, key) + log(f"Saved prefs: {_saved_prefs}") + log(f"Saved state: {_saved_state}") + + +def restore_prefs() -> None: + for key, val in _saved_prefs.items(): + gsettings("set", SCHEMA, key, val) + for key, val in _saved_state.items(): + gsettings("set", STATE_SCHEMA, key, val) + log("Prefs restored to original values") + + +def reset_all_dual_pane_prefs() -> None: + """Reset all dual-pane prefs to schema defaults before each test.""" + for key in PREF_KEYS: + reset_pref(key) + time.sleep(0.2) + + +# --------------------------------------------------------------------------- +# GROUP 1: Schema / gsettings — no running nemo needed +# --------------------------------------------------------------------------- + +def test_schema_keys_exist(): + """All four dual-pane keys exist in the schema.""" + for key in PREF_KEYS: + val = gsettings("get", SCHEMA, key) + assert val in ("true", "false"), \ + f"Key {key!r} returned unexpected value: {val!r}" + + +def test_schema_defaults_are_false(): + """All three new dual-pane keys default to false.""" + new_keys = [ + "dual-pane-vertical-split", + "dual-pane-separate-sidebar", + "dual-pane-separate-nav-bar", + ] + for key in new_keys: + reset_pref(key) + val = gsettings("get", SCHEMA, key) + assert val == "false", \ + f"Key {key!r} default should be false, got {val!r}" + + +def test_start_with_dual_pane_still_exists(): + """Regression: start-with-dual-pane key was not removed when we moved it in the UI.""" + val = gsettings("get", SCHEMA, "start-with-dual-pane") + assert val in ("true", "false"), \ + f"start-with-dual-pane missing or invalid: {val!r}" + + +def test_prefs_roundtrip(): + """Each new dual-pane key can be set to true and back to false.""" + keys = [ + "dual-pane-vertical-split", + "dual-pane-separate-sidebar", + "dual-pane-separate-nav-bar", + ] + for key in keys: + set_pref(key, True) + assert_pref(key, True) + set_pref(key, False) + assert_pref(key, False) + reset_pref(key) + + +def test_prefs_are_independent(): + """Setting one dual-pane key does not affect the others.""" + set_pref("dual-pane-vertical-split", True) + set_pref("dual-pane-separate-sidebar", False) + set_pref("dual-pane-separate-nav-bar", False) + + assert_pref("dual-pane-vertical-split", True) + assert_pref("dual-pane-separate-sidebar", False) + assert_pref("dual-pane-separate-nav-bar", False) + + set_pref("dual-pane-vertical-split", False) + set_pref("dual-pane-separate-sidebar", True) + set_pref("dual-pane-separate-nav-bar", False) + + assert_pref("dual-pane-vertical-split", False) + assert_pref("dual-pane-separate-sidebar", True) + assert_pref("dual-pane-separate-nav-bar", False) + + # Cleanup + for key in ["dual-pane-vertical-split", "dual-pane-separate-sidebar", + "dual-pane-separate-nav-bar"]: + reset_pref(key) + + +# --------------------------------------------------------------------------- +# GROUP 2: Process health — nemo stays alive through pref changes +# --------------------------------------------------------------------------- + +def test_nemo_starts_and_exits_cleanly(): + """Nemo starts up and terminates without crashing.""" + reset_all_dual_pane_prefs() + with NemoProcess() as n: + assert_alive(n, "after startup") + # nemo should exit cleanly (0 or -15 for SIGTERM, both are fine) + # We just verify it didn't crash with SIGSEGV etc. + + +def test_nemo_starts_with_all_prefs_off(): + """Baseline: nemo starts fine with all new prefs at defaults (off).""" + reset_all_dual_pane_prefs() + with NemoProcess() as n: + assert_alive(n, "all prefs off") + + +def test_vertical_split_toggle_does_not_crash(): + """Toggling vertical-split while nemo is running does not crash it.""" + reset_all_dual_pane_prefs() + # Start with dual pane so there's actually something to orient + set_pref("start-with-dual-pane", True) + try: + with NemoProcess() as n: + assert_alive(n, "before vertical toggle") + + set_pref("dual-pane-vertical-split", True) + assert_alive(n, "after vertical=true") + + set_pref("dual-pane-vertical-split", False) + assert_alive(n, "after vertical=false") + + set_pref("dual-pane-vertical-split", True) + assert_alive(n, "after second vertical=true") + finally: + reset_all_dual_pane_prefs() + + +def test_separate_sidebar_toggle_does_not_crash(): + """Toggling separate-sidebar while nemo is running does not crash it.""" + reset_all_dual_pane_prefs() + set_pref("start-with-dual-pane", True) + set_pref("dual-pane-vertical-split", True) + try: + with NemoProcess() as n: + assert_alive(n, "before sidebar toggle") + + set_pref("dual-pane-separate-sidebar", True) + assert_alive(n, "after separate-sidebar=true") + + set_pref("dual-pane-separate-sidebar", False) + assert_alive(n, "after separate-sidebar=false") + + # Toggle again — this is the cycle that previously caused doubling + set_pref("dual-pane-separate-sidebar", True) + assert_alive(n, "after second separate-sidebar=true") + + set_pref("dual-pane-separate-sidebar", False) + assert_alive(n, "after second separate-sidebar=false") + finally: + reset_all_dual_pane_prefs() + + +def test_separate_nav_bar_toggle_does_not_crash(): + """Toggling separate-nav-bar while nemo is running does not crash it.""" + reset_all_dual_pane_prefs() + set_pref("start-with-dual-pane", True) + set_pref("dual-pane-vertical-split", True) + try: + with NemoProcess() as n: + assert_alive(n, "before nav-bar toggle") + + set_pref("dual-pane-separate-nav-bar", True) + assert_alive(n, "after separate-nav-bar=true") + + # This previously caused the toolbar to disappear permanently + set_pref("dual-pane-separate-nav-bar", False) + assert_alive(n, "after separate-nav-bar=false") + + set_pref("dual-pane-separate-nav-bar", True) + assert_alive(n, "after second separate-nav-bar=true") + + set_pref("dual-pane-separate-nav-bar", False) + assert_alive(n, "after second separate-nav-bar=false") + finally: + reset_all_dual_pane_prefs() + + +def test_all_prefs_on_does_not_crash(): + """All three new prefs ON simultaneously: nemo stays alive.""" + reset_all_dual_pane_prefs() + set_pref("start-with-dual-pane", True) + try: + with NemoProcess() as n: + assert_alive(n, "before enabling all prefs") + + set_pref("dual-pane-vertical-split", True) + set_pref("dual-pane-separate-sidebar", True) + set_pref("dual-pane-separate-nav-bar", True) + assert_alive(n, "all three prefs on") + finally: + reset_all_dual_pane_prefs() + + +def test_all_prefs_on_then_off_does_not_crash(): + """All three new prefs turned on then individually turned off: no crash.""" + reset_all_dual_pane_prefs() + set_pref("start-with-dual-pane", True) + try: + with NemoProcess() as n: + set_pref("dual-pane-vertical-split", True) + set_pref("dual-pane-separate-sidebar", True) + set_pref("dual-pane-separate-nav-bar", True) + assert_alive(n, "all on") + + set_pref("dual-pane-separate-sidebar", False) + assert_alive(n, "sidebar off") + + set_pref("dual-pane-separate-nav-bar", False) + assert_alive(n, "nav-bar off") + + set_pref("dual-pane-vertical-split", False) + assert_alive(n, "vertical off") + finally: + reset_all_dual_pane_prefs() + + +def test_rapid_pref_toggling_does_not_crash(): + """Rapidly toggling prefs back and forth does not crash nemo.""" + reset_all_dual_pane_prefs() + set_pref("start-with-dual-pane", True) + try: + with NemoProcess() as n: + set_pref("dual-pane-vertical-split", True) + assert_alive(n, "vertical on") + + for i in range(5): + set_pref("dual-pane-separate-sidebar", True) + assert_alive(n, f"sidebar on cycle {i}") + set_pref("dual-pane-separate-sidebar", False) + assert_alive(n, f"sidebar off cycle {i}") + finally: + reset_all_dual_pane_prefs() + + +def test_nav_bar_off_toolbar_still_running(): + """ + Regression: turning separate-nav-bar OFF must not make nemo + appear broken. Previously the shared toolbar was hidden and never + re-shown, effectively breaking the UI. We verify nemo stays alive + and does not exit on its own after the toggle. + """ + reset_all_dual_pane_prefs() + set_pref("start-with-dual-pane", True) + try: + with NemoProcess() as n: + set_pref("dual-pane-vertical-split", True) + set_pref("dual-pane-separate-nav-bar", True) + assert_alive(n, "nav-bar on") + + set_pref("dual-pane-separate-nav-bar", False) + # Give nemo time to process and potentially crash + time.sleep(SETTLE_DELAY * 2) + assert_alive(n, "after nav-bar turned off — toolbar must still work") + finally: + reset_all_dual_pane_prefs() + + +# --------------------------------------------------------------------------- +# GROUP 3: Start-up state tests +# --------------------------------------------------------------------------- + +def test_start_with_dual_pane_vertical(): + """Nemo starts correctly with dual-pane + vertical-split pre-set.""" + reset_all_dual_pane_prefs() + set_pref("start-with-dual-pane", True) + set_pref("dual-pane-vertical-split", True) + try: + with NemoProcess() as n: + assert_alive(n, "startup with vertical dual-pane") + finally: + reset_all_dual_pane_prefs() + + +def test_start_with_all_dual_pane_prefs(): + """Nemo starts correctly with all dual-pane prefs pre-enabled.""" + reset_all_dual_pane_prefs() + set_pref("start-with-dual-pane", True) + set_pref("dual-pane-vertical-split", True) + set_pref("dual-pane-separate-sidebar", True) + set_pref("dual-pane-separate-nav-bar", True) + try: + with NemoProcess() as n: + assert_alive(n, "startup with all dual-pane prefs on") + finally: + reset_all_dual_pane_prefs() + + +def test_start_with_separate_sidebar_no_vertical(): + """ + Regression guard: separate-sidebar without vertical-split must not + crash nemo at startup (the feature requires vertical, so it should + simply be inactive but harmless). + """ + reset_all_dual_pane_prefs() + set_pref("start-with-dual-pane", True) + set_pref("dual-pane-separate-sidebar", True) + # vertical-split is still FALSE + try: + with NemoProcess() as n: + assert_alive(n, "startup: separate-sidebar without vertical") + finally: + reset_all_dual_pane_prefs() + + +def test_start_with_separate_nav_bar_no_vertical(): + """ + Regression guard: separate-nav-bar without vertical-split must not + crash nemo at startup. + """ + reset_all_dual_pane_prefs() + set_pref("start-with-dual-pane", True) + set_pref("dual-pane-separate-nav-bar", True) + # vertical-split is still FALSE + try: + with NemoProcess() as n: + assert_alive(n, "startup: separate-nav-bar without vertical") + finally: + reset_all_dual_pane_prefs() + + +# --------------------------------------------------------------------------- +# GROUP 4: Sidebar hide/show regression +# --------------------------------------------------------------------------- + +def test_sidebar_on_off_with_separate_sidebar(): + """ + Turning the sidebar off and on while separate-sidebar is active + must not crash nemo. + """ + reset_all_dual_pane_prefs() + set_pref("start-with-dual-pane", True) + set_pref("dual-pane-vertical-split", True) + set_pref("dual-pane-separate-sidebar", True) + try: + with NemoProcess() as n: + assert_alive(n, "separate-sidebar active") + + # Hide sidebar (View → Sidebar → None equivalent via state key) + gsettings("set", STATE_SCHEMA, "start-with-sidebar", "false") + time.sleep(SETTLE_DELAY) + assert_alive(n, "sidebar hidden") + + gsettings("set", STATE_SCHEMA, "start-with-sidebar", "true") + time.sleep(SETTLE_DELAY) + assert_alive(n, "sidebar restored") + finally: + reset_all_dual_pane_prefs() + gsettings("reset", STATE_SCHEMA, "start-with-sidebar") + + +def test_separate_sidebar_off_restores_global_sidebar(): + """ + Regression: turning separate-sidebar OFF must not leave nemo with + a broken/missing global sidebar. Nemo must remain alive and not + exit spontaneously after several seconds. + """ + reset_all_dual_pane_prefs() + set_pref("start-with-dual-pane", True) + set_pref("dual-pane-vertical-split", True) + set_pref("dual-pane-separate-sidebar", True) + try: + with NemoProcess() as n: + assert_alive(n, "separate-sidebar on") + + set_pref("dual-pane-separate-sidebar", False) + # Wait longer than normal — a crashed nemo due to bad widget + # teardown might not die immediately + time.sleep(SETTLE_DELAY * 3) + assert_alive(n, "after separate-sidebar turned off — global sidebar must be restored") + finally: + reset_all_dual_pane_prefs() + + +# --------------------------------------------------------------------------- +# GROUP 5: Multiple windows +# --------------------------------------------------------------------------- + +def test_two_windows_independent_prefs(): + """ + Nemo is single-instance: a second invocation forwards its open + request to the primary instance and exits immediately, causing the + primary to open a second window. We launch the primary, wait for + it to settle, trigger a second window, then toggle prefs and verify + the primary process stays alive throughout. + """ + reset_all_dual_pane_prefs() + env = dict(os.environ) + if SCHEMA_DIR: + env["GSETTINGS_SCHEMA_DIR"] = SCHEMA_DIR + + with NemoProcess() as primary: + assert_alive(primary, "primary window started") + + # Open a second window in the same nemo instance by invoking nemo + # with a different path. The launcher exits immediately after + # forwarding to the primary — that is expected and not a failure. + subprocess.Popen( + [NEMO_BINARY, os.path.expanduser("~")], + env=env, stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL + ) + time.sleep(STARTUP_DELAY) + + # Primary must still be alive with two windows open + assert_alive(primary, "after second window opened") + + set_pref("dual-pane-vertical-split", True) + assert_alive(primary, "after vertical-split toggle with two windows") + + set_pref("dual-pane-separate-sidebar", True) + assert_alive(primary, "after separate-sidebar toggle with two windows") + + set_pref("dual-pane-separate-sidebar", False) + assert_alive(primary, "after separate-sidebar off with two windows") + + set_pref("dual-pane-vertical-split", False) + assert_alive(primary, "after vertical-split off with two windows") + + reset_all_dual_pane_prefs() + + +# --------------------------------------------------------------------------- +# Main +# --------------------------------------------------------------------------- + +GROUPS = [ + ("Schema / gsettings (no running nemo)", [ + ("schema keys exist", test_schema_keys_exist), + ("schema defaults are false", test_schema_defaults_are_false), + ("start-with-dual-pane still exists", test_start_with_dual_pane_still_exists), + ("pref keys round-trip correctly", test_prefs_roundtrip), + ("pref keys are independent", test_prefs_are_independent), + ]), + ("Process health — pref toggles", [ + ("nemo starts and exits cleanly", test_nemo_starts_and_exits_cleanly), + ("nemo starts with all prefs off", test_nemo_starts_with_all_prefs_off), + ("vertical-split toggle does not crash", test_vertical_split_toggle_does_not_crash), + ("separate-sidebar toggle does not crash", test_separate_sidebar_toggle_does_not_crash), + ("separate-nav-bar toggle does not crash", test_separate_nav_bar_toggle_does_not_crash), + ("all three prefs on does not crash", test_all_prefs_on_does_not_crash), + ("all three prefs on then off does not crash", test_all_prefs_on_then_off_does_not_crash), + ("rapid pref toggling does not crash", test_rapid_pref_toggling_does_not_crash), + ("nav-bar off: nemo stays alive (toolbar bug regression)", + test_nav_bar_off_toolbar_still_running), + ]), + ("Start-up state", [ + ("start with dual-pane + vertical", test_start_with_dual_pane_vertical), + ("start with all dual-pane prefs on", test_start_with_all_dual_pane_prefs), + ("separate-sidebar without vertical: no crash",test_start_with_separate_sidebar_no_vertical), + ("separate-nav-bar without vertical: no crash",test_start_with_separate_nav_bar_no_vertical), + ]), + ("Sidebar hide/show regression", [ + ("sidebar hide/show with separate-sidebar", test_sidebar_on_off_with_separate_sidebar), + ("separate-sidebar off restores global sidebar",test_separate_sidebar_off_restores_global_sidebar), + ]), + ("Multiple windows", [ + ("two windows stay alive through pref toggle", test_two_windows_independent_prefs), + ]), +] + + +def main() -> int: + global _verbose + + parser = argparse.ArgumentParser( + description="Nemo dual-pane integration tests", + formatter_class=argparse.RawDescriptionHelpFormatter, + epilog=textwrap.dedent(""" + Environment variables: + NEMO_BINARY path to nemo executable (default: nemo) + GSETTINGS_SCHEMA_DIR path to compiled schemas (default: system) + """) + ) + parser.add_argument("-v", "--verbose", action="store_true", + help="Print detailed progress") + parser.add_argument("--group", metavar="N", type=int, + help="Run only test group N (1-based)") + args = parser.parse_args() + _verbose = args.verbose + + # Check nemo binary — only required for groups that launch nemo (2+) + nemo_available = shutil.which(NEMO_BINARY) is not None or os.path.isfile(NEMO_BINARY) + if not nemo_available: + if args.group is not None and args.group == 1: + pass # Group 1 (schema tests) never needs the binary + else: + print(f"WARNING: nemo binary not found: {NEMO_BINARY!r}", file=sys.stderr) + print("Set NEMO_BINARY to the path of the nemo executable.", file=sys.stderr) + print("Groups 2-5 will be skipped or will fail.", file=sys.stderr) + + # Check display + if not os.environ.get("DISPLAY") and not os.environ.get("WAYLAND_DISPLAY"): + print("WARNING: No DISPLAY or WAYLAND_DISPLAY set. " + "Process-health tests will fail without a display.", file=sys.stderr) + + print(f"\nNemo dual-pane integration tests") + print(f" Binary : {NEMO_BINARY}") + print(f" Schema : {SCHEMA_DIR or '(system default)'}") + print() + + # Save current prefs so we can restore them after tests + try: + save_prefs() + except Exception as e: + print(f"ERROR: Could not read gsettings: {e}", file=sys.stderr) + return 1 + + total_pass = 0 + total_fail = 0 + + try: + groups = GROUPS + if args.group is not None: + idx = args.group - 1 + if idx < 0 or idx >= len(GROUPS): + print(f"ERROR: Group {args.group} does not exist " + f"(1–{len(GROUPS)})", file=sys.stderr) + return 1 + groups = [GROUPS[idx]] + + for group_name, tests in groups: + print(f"── {group_name}") + for test_name, test_fn in tests: + ok = run_test(test_name, test_fn) + if ok: + total_pass += 1 + else: + total_fail += 1 + print() + + finally: + restore_prefs() + + print(f"Results: {total_pass} passed, {total_fail} failed " + f"out of {total_pass + total_fail} tests") + + if total_fail > 0: + print("\nFailed tests:") + for name, ok, msg in _results: + if not ok: + print(f" ✗ {name}") + if msg: + print(f" {msg}") + return 1 + + print("\nAll tests passed.") + return 0 + + +if __name__ == "__main__": + sys.exit(main()) diff --git a/test/test-meson.build b/test/test-meson.build new file mode 100644 index 0000000000..49d486f4ac --- /dev/null +++ b/test/test-meson.build @@ -0,0 +1,143 @@ + +test('Search Engine test', + executable('test-nemo-search-engine', + [ 'test-nemo-search-engine.c' ], + include_directories: [ rootInclude, ], + dependencies: [ gtk, nemo_private ], + ), + args: [] +) + +test('Directory Async test', + executable('test-nemo-directory-async', + [ 'test-nemo-directory-async.c' ], + include_directories: [ rootInclude, ], + dependencies: [ gtk, nemo_private ], + ), + args: [] +) + +test('Copy test', + executable('test-nemo-copy', + [ 'test-copy.c', 'test.c' ], + include_directories: [ rootInclude, ], + dependencies: [ gtk, nemo_private ], + c_args: nemo_definitions, + ), + args: [] +) + +# --------------------------------------------------------------------------- +# Dual-pane schema tests +# --------------------------------------------------------------------------- +# Compile our schema + any installed nemo/cinnamon schemas into the test +# build dir so GSETTINGS_SCHEMA_DIR points at a valid gschemas.compiled. +# Outputs land in meson.current_build_dir() (i.e. build/test/). +nemo_compiled_schemas = custom_target('nemo-compiled-schemas', + output: 'gschemas.compiled', + input: join_paths(meson.project_source_root(), 'libnemo-private', 'org.nemo.gschema.xml'), + command: [ + find_program('sh'), '-c', + 'set -e; D="@OUTDIR@";' + + 'cp /usr/share/glib-2.0/schemas/org.nemo*.xml "$D/" 2>/dev/null || true;' + + 'cp /usr/share/glib-2.0/schemas/org.cinnamon*.xml "$D/" 2>/dev/null || true;' + + 'cp /usr/share/glib-2.0/schemas/org.gtk.*.xml "$D/" 2>/dev/null || true;' + + 'cp @INPUT0@ "$D/org.nemo.gschema.xml";' + + 'glib-compile-schemas "$D"', + ], + build_by_default: false, +) + +# Schema unit tests — no display, no D-Bus, no session required. +# Tests that our new preference keys exist with correct defaults. +# This is the authoritative automated test for the dual-pane feature's schema. +test('Dual Pane schema test', + executable('test-dual-pane-schema', + [ 'test-dual-pane-schema.c' ], + include_directories: [ rootInclude, ], + dependencies: [ glib, gobject, gio ], + c_args: nemo_definitions, + ), + args: [], + suite: [ 'dual-pane' ], + depends: [ nemo_compiled_schemas ], + env: [ 'GSETTINGS_SCHEMA_DIR=' + meson.current_build_dir() ], + timeout: 30, +) + +# --------------------------------------------------------------------------- +# Dual-pane widget tests +# --------------------------------------------------------------------------- +# These tests exercise the full GTK widget hierarchy — NemoWindow, panes, +# sidebars, and toolbars — verifying both pre-existing split-view behaviour +# and all new dual-pane preferences. +# +# Requirements: +# - A running display (real or Xvfb) +# - A D-Bus session bus (dbus-run-session or an existing session) +# - GVfs daemon reachable +# - GSETTINGS_SCHEMA_DIR pointing at a compiled schema that includes +# the three new dual-pane keys (built by nemo_compiled_schemas above) +# +# Run manually: +# xvfb-run dbus-run-session -- \ +# meson test -C build --suite dual-pane-widget --print-errorlogs +# +# The test suite covers 7 groups: +# 1. Existing split-view behaviour (regression guards, all new prefs OFF) +# 2. Vertical split orientation pref +# 3. Separate sidebar per pane +# 4. Separate nav bar per pane +# 5. All three new prefs on simultaneously +# 6. Active pane tracking through layout changes +# 7. Pref idempotency (setting same value twice must be a no-op) +test('Dual Pane widget test', + executable('test-dual-pane', + [ 'test-dual-pane.c' ], + include_directories: [ rootInclude ], + dependencies: [ nemo_common_dep ], + c_args: nemo_definitions, + ), + args: [], + suite: [ 'dual-pane-widget' ], + depends: [ nemo_compiled_schemas ], + env: [ 'GSETTINGS_SCHEMA_DIR=' + meson.current_build_dir() ], + timeout: 120, + # Requires display + D-Bus — excluded from the default 'meson test' run. + # Set is_parallel: false because tests share dconf state via GSettings. + is_parallel: false, +) + +# --------------------------------------------------------------------------- +# Dual-pane integration tests +# --------------------------------------------------------------------------- +# Python-based black-box tests that launch a real Nemo process, drive +# preferences via gsettings, and verify Nemo does not crash. +# +# Requirements: a running X display (or xvfb-run), the nemo binary, python3. +# +# Run manually: +# xvfb-run python3 test/test-dual-pane-integration.py +# +# Or via meson: +# xvfb-run meson test -C build --suite dual-pane-integration --print-errorlogs +# +# The NEMO_BINARY env var can point at a locally built binary: +# NEMO_BINARY=./build/src/nemo xvfb-run meson test -C build \ +# --suite dual-pane-integration + +python3_prog = find_program('python3') +nemo_bin = join_paths(meson.project_build_root(), 'src', 'nemo') + +test('Dual Pane integration test', + python3_prog, + args: [ files('test-dual-pane-integration.py') ], + suite: [ 'dual-pane-integration' ], + depends: [ nemo_compiled_schemas ], + env: [ + 'GSETTINGS_SCHEMA_DIR=' + meson.current_build_dir(), + 'NEMO_BINARY=' + nemo_bin, + ], + timeout: 300, + is_parallel: false, +) From 75623d754246706ae4311b7e8affe9df9b6bd66c Mon Sep 17 00:00:00 2001 From: Grover Jackson <135006+cdmdotnet@users.noreply.github.com> Date: Mon, 16 Mar 2026 20:25:48 +1300 Subject: [PATCH 4/5] Address warnings in build --- ChangeLog | 63 ++++++++++++++++++++++++++++++++++++++++++++++++ debian/changelog | 2 +- 2 files changed, 64 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 67adbf3c05..204f777c69 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,66 @@ +commit 99b3cba71b7a364cb495e10496de9e184a1fcd70 +Author: Nemo Developer +Date: 2025-01-01 + + dual-pane: add vertical split, separate sidebars, nav bars, and statusbars + + Extend the dual-pane feature with four new user-configurable options, + all found in Preferences → Behaviour → Dual Pane: + + "Show panes vertically – one above the other" (default: off) + Adds a VPaned orientation for split-view in addition to the existing + side-by-side HPaned layout. The split_view_hpane is recreated with + the appropriate GtkOrientation when the preference changes. + + "Separate sidebar per pane" (default: off, requires vertical split) + In vertical split mode each pane column gets its own independent + sidebar (places or tree) locked to that pane's navigation so + browsing in one pane does not move the other pane's sidebar. + Implemented by wrapping pane1 in a new inline HPaned + (primary_pane_content_paned) and adding a second sidebar box + (sidebar2 / secondary_pane_content_paned) for pane2. + + "Separate Path Bar/Location Entry per pane" (default: off, requires vertical split) + Embeds a full toolbar (path bar / location entry) directly inside + each pane column so each pane tracks its own navigation history + independently without sharing the window-level toolbar. + + "Separate statusbar per pane" (default: off, requires vertical split + separate sidebar) + Adds a full-width NemoStatusBar below each pane column (spanning + both the sidebar and content area). The global statusbar is hidden + by concealing its outer event-box wrapper rather than changing its + visible property, preserving the GSettings binding that controls the + floating-bar "selected items" overlay. Each per-pane bar is locked + to its pane via a new PROP_PANE construct property so its zoom + slider and sidebar buttons operate on that pane only. The places / + tree toggle buttons call the new nemo_window_set_pane_sidebar_type() + helper which swaps the sidebar widget in-place without firing the + global notify::sidebar-view-id signal, keeping each pane's sidebar + type independent. + + Modified files: + src/nemo-window.c + src/nemo-window.h + src/nemo-window-private.h + src/nemo-window-slot.c + src/nemo-statusbar.c + src/nemo-statusbar.h + src/nemo-file-management-properties.c + gresources/nemo-file-management-properties.glade + libnemo-private/nemo-global-preferences.h + libnemo-private/org.nemo.gschema.xml + +M src/nemo-window.c +M src/nemo-window.h +M src/nemo-window-private.h +M src/nemo-window-slot.c +M src/nemo-statusbar.c +M src/nemo-statusbar.h +M src/nemo-file-management-properties.c +M gresources/nemo-file-management-properties.glade +M libnemo-private/nemo-global-preferences.h +M libnemo-private/org.nemo.gschema.xml + commit 16763a8b828387930641d69c04451e02d67cadd6 Author: Cosimo Cecchi Date: 2012-05-14 diff --git a/debian/changelog b/debian/changelog index 3dc1c1ea94..204f777c69 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,4 +1,4 @@ -commit 0000000000000000000000000000000000000001 +commit 99b3cba71b7a364cb495e10496de9e184a1fcd70 Author: Nemo Developer Date: 2025-01-01 From 2e55fac9d753f712bd2eaae4c71b459f52355324 Mon Sep 17 00:00:00 2001 From: Grover Jackson <135006+cdmdotnet@users.noreply.github.com> Date: Mon, 16 Mar 2026 20:51:50 +1300 Subject: [PATCH 5/5] Fixed incorrect format for debian changelog. --- debian/changelog | 37588 +++------------------------------------------ 1 file changed, 2370 insertions(+), 35218 deletions(-) diff --git a/debian/changelog b/debian/changelog index 204f777c69..e008f71ec2 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,35940 +1,3092 @@ -commit 99b3cba71b7a364cb495e10496de9e184a1fcd70 -Author: Nemo Developer -Date: 2025-01-01 - - dual-pane: add vertical split, separate sidebars, nav bars, and statusbars - - Extend the dual-pane feature with four new user-configurable options, - all found in Preferences → Behaviour → Dual Pane: - - "Show panes vertically – one above the other" (default: off) - Adds a VPaned orientation for split-view in addition to the existing - side-by-side HPaned layout. The split_view_hpane is recreated with - the appropriate GtkOrientation when the preference changes. - - "Separate sidebar per pane" (default: off, requires vertical split) - In vertical split mode each pane column gets its own independent - sidebar (places or tree) locked to that pane's navigation so - browsing in one pane does not move the other pane's sidebar. - Implemented by wrapping pane1 in a new inline HPaned - (primary_pane_content_paned) and adding a second sidebar box - (sidebar2 / secondary_pane_content_paned) for pane2. - - "Separate Path Bar/Location Entry per pane" (default: off, requires vertical split) - Embeds a full toolbar (path bar / location entry) directly inside - each pane column so each pane tracks its own navigation history - independently without sharing the window-level toolbar. +nemo (6.6.4) zena; urgency=medium - "Separate statusbar per pane" (default: off, requires vertical split + separate sidebar) - Adds a full-width NemoStatusBar below each pane column (spanning - both the sidebar and content area). The global statusbar is hidden - by concealing its outer event-box wrapper rather than changing its - visible property, preserving the GSettings binding that controls the - floating-bar "selected items" overlay. Each per-pane bar is locked - to its pane via a new PROP_PANE construct property so its zoom - slider and sidebar buttons operate on that pane only. The places / - tree toggle buttons call the new nemo_window_set_pane_sidebar_type() - helper which swaps the sidebar widget in-place without firing the - global notify::sidebar-view-id signal, keeping each pane's sidebar - type independent. + [ cdmdotnet Limited ] + * dual-pane: add vertical split, separate sidebars, nav bars, and statusbars + + -- cdmdotnet Limited Tue, 16 Mar 2026 07:29:12 +0000 + +nemo (6.6.3) zena; urgency=medium + + [ Michael Webster ] + * nemo-blank-desktop-window.c: Fix potential crash when actions are updates. + * nemo-blank-desktop-window.c: Make sure there's a menu available at startup. + * search: Restore implied 'AND' behavior in non-regex file match mode (#3659) + * nemo-places-sidebar.c: Restore visibility of mounts with no (#3670) + + -- Clement Lefebvre Thu, 08 Jan 2026 13:29:12 +0000 + +nemo (6.6.2) zena; urgency=medium + + [ Cobinja ] + * Fix for progress handling (#3651) + + [ Michael Webster ] + * templates: Improve invalid XDG_TEMPLATES_DIR handling. + + -- Clement Lefebvre Tue, 16 Dec 2025 15:23:49 +0000 - Modified files: - src/nemo-window.c - src/nemo-window.h - src/nemo-window-private.h - src/nemo-window-slot.c - src/nemo-statusbar.c - src/nemo-statusbar.h - src/nemo-file-management-properties.c - gresources/nemo-file-management-properties.glade - libnemo-private/nemo-global-preferences.h - libnemo-private/org.nemo.gschema.xml +nemo (6.6.1) zena; urgency=medium -M src/nemo-window.c -M src/nemo-window.h -M src/nemo-window-private.h -M src/nemo-window-slot.c -M src/nemo-statusbar.c -M src/nemo-statusbar.h -M src/nemo-file-management-properties.c -M gresources/nemo-file-management-properties.glade -M libnemo-private/nemo-global-preferences.h -M libnemo-private/org.nemo.gschema.xml + [ Michael Webster ] + * nemo-action.c: Fix issues in the recent:// folder. + + -- Clement Lefebvre Wed, 10 Dec 2025 14:26:56 +0000 -commit 16763a8b828387930641d69c04451e02d67cadd6 -Author: Cosimo Cecchi -Date: 2012-05-14 +nemo (6.6.0) zena; urgency=medium - release: prepare for 3.4.2 + [ Jeffrey Knockel ] + * nemo-view.c: fix crash after some shortcuts (#3525) -M NEWS -M configure.in + [ Michael Webster ] + * search: Remove unused search history code. + * search: Allow regular expression filename matching, improve editor. + * nemo-file-management-properties.glade: Add translation comments for tooltip options. + * list-view: Don't show folder expanders by default. + * nemo-list-view.c: Ignore expander size for click position calculations if expanders are disabled. + * nemo-window.c: Remember the second pane's location until the remaining pane's location changes. + * nemo-query-editor.c: Don't use new glib function. -commit 0e08c9938a4e3557f9519aa52f2f488a99e28e97 -Author: Praveen Illa -Date: 2012-05-14 + [ Josh Ellithorpe ] + * Add Matcha to Supported Theme Hints (#3573) - Updated Telugu Translations + [ Michael Webster ] + * preferences: Remove scripts widget from Plugins. + * preferences: Add templates to plugins tab. + * Action layout editor: put direction buttons in a more traditional location, make the editor launcher button more prominent in Nemo's preferences. + * nemo-template-config-widget.c: Don't use g_strv_builder_take(). + * nemo-template-config-widget: Allow editing of a template. -M po/te.po + [ Zariep ] + * add --select compatibility flag (#3589) -commit 10a15760f0ba7d1b0a65693caf47a9b080742ed3 -Author: Cosimo Cecchi -Date: 2012-05-08 + [ Michael Webster ] + * nemo-action.c: Fix loading of absolute icon paths. + * nemo-action.c: Support icons provided by Spices. + * nemo-search-engine-advanced.c: Support wildcard mimetypes. + * nemo-search-engine-advanced.c: Allow multiple helpers to run on the same file type. + * Search: Allow disabling of search helpers via gsettings. + * nemo-action-manager.c: Don't randomize action names when rebuilding. + * nemo-action-menager.c: Use a basic Gio file monitor to watch for action directory changes. + * actions: Sort actions consistently. + * file operations: Implement pause/resume. + * nemo-file-management-properties.glade: Improve behavior tab layout. + * file operations: Fix some memory leaks. + * nemo-action-layout-editor: UI improvement for enabling/disabling actions. + * nemo-file.c: Allow files with backend-provided previews to be thumbnailed, even if their filesystem forbids it. + * nemo-toolbar.c: Just use a single change handler for toolbar settings. + * toolbar: Add 'toggle-extra-pane' button. + * navigation: Allow click event handling into an inactive pane if that pane has no selected files. + * nemo-tree-sidebar.c: disconnect handlers from the correct instance. + (Closes: #3615) + * nemo-tree-sidebar-model.c: Use g_clear_object instead of custom function. + * nemo-places-sidebar.c: Don't show shadowed mounts, or mounts without volumes. - window-manage-views: don't call methods on a NULL NemoFile + [ Clement Lefebvre ] + * Prefix symbolic icons + * Switch to XApp symbolic icons + * Switch to xapp-symbolic-icons (XSI) - In got_file_info_for_view_selection_callback(), we unconditionally try - to fetch information for the parent directory in case the selection - is a - regular file, but we should avoid doing that when the file has no - parent, such as when it's the root of a web server. + [ Cobinja ] + * Fix an icon name (#3635) - https://bugzilla.gnome.org/show_bug.cgi?id=675259 + [ jralo7 ] + * Add option to allow expanders in empty folders (#3593) -M src/nemo-window-manage-views.c + [ Michael Webster ] + * list-view: Fix change handler, improve preferences description and behavior. + * nemo-file-management-properties.glade: Fix icon names. -commit c92532c8808815a776e377bf208bc194f077b169 -Author: Cosimo Cecchi -Date: 2012-05-07 + [ George Katevenis ] + * toolbar/terminal: Open in selected sub-folder, in expanded list-view (#3616) - x-content-bar: pack the media label in the content area + [ Michael Webster ] + * icons: Drop nemo-bookmark-not-found-symbolic. Replace with xsi-folder-warning-symbolic. + * sidebar icons: Fix bookmark icons when creating a new bookmark, use a difference recent icon. + * nemo-list-view.c: Disconnect some leftover signal handlers. + * Fix some translation issues. + * nemo-query-editor.c: Don't translate an empty string. - Instead of just packing it into the GtkInfoBar's box, since that will - put it after the buttons of the action area. + [ Clement Lefebvre ] + * Revert "add --select compatibility flag (#3589)" + * Revert "Add option to allow expanders in empty folders (#3593)" + * templates: Rephrase hint in templates folder - https://bugzilla.gnome.org/show_bug.cgi?id=670129 + [ Michael Webster ] + * preferences: Move document templates to its own tab. -M src/nemo-x-content-bar.c + [ Clement Lefebvre ] + * preferences: Add some borders to pages + * l10n: Update files + * l10n: Update POT -commit 7e90dabb2f38539173970fb715a53b355fb44e1c -Author: Cosimo Cecchi -Date: 2012-05-07 + [ Michael Webster ] + * preferences: Add some spacing between rows of the actions and templates lists. - places-sidebar: disallow context menus for sidebar headings + -- Clement Lefebvre Tue, 25 Nov 2025 17:05:20 +0000 - We already make them non-selectable - there's no point in having - a menu - for headings here. +nemo (6.4.5) xia; urgency=medium - https://bugzilla.redhat.com/show_bug.cgi?id=819404 + [ Michael Webster ] + * layout editor: Don't use gettext.install to set up the locale. + * nemo-places-sidebar.c: Fix query-tooltip callback. + * nemo-style-fallback-mandatory.css: Add fallback support for the floating status bar. -M src/nemo-places-sidebar.c + -- Clement Lefebvre Mon, 24 Feb 2025 15:23:49 +0000 -commit 4e59e4cfc7bc68534664d9f72d0c7ea680b79db3 -Author: Cosimo Cecchi -Date: 2012-05-04 +nemo (6.4.4) xia; urgency=medium - places-sidebar: don't double unref GMount objects + [ Michael Webster ] + * nemo-places-sidebar.c: Remove delete key action for removing bookmarks. + * nemo-places-sidebar.c: Fix bookmark renaming. - Fixes a lot of reported crashers with NFS/Samba volumes. + -- Clement Lefebvre Fri, 07 Feb 2025 18:33:25 +0000 - https://bugzilla.gnome.org/show_bug.cgi?id=674659 +nemo (6.4.3) xia; urgency=medium -M src/nemo-places-sidebar.c + * l10n: generate additional files -commit c5b336f62e4d5efb330306cf9a905e70e7553171 -Author: Kjartan Maraas -Date: 2012-04-30 + -- Clement Lefebvre Thu, 05 Dec 2024 11:51:27 +0000 - Added Norwegian bokmål translation +nemo (6.4.2) xia; urgency=medium -M po/nb.po + [ ltsdw ] + * nemo-window-manage-views: fix null pointer dereference (#3492) -commit fd7f5be8da08bf18d5d60314940491ff4f7fd99c -Author: Åsmund Skjæveland -Date: 2012-04-29 + -- Clement Lefebvre Tue, 03 Dec 2024 10:14:00 +0000 - Updated Norwegian Nynorsk translation +nemo (6.4.1) xia; urgency=medium -M po/nn.po + [ Michael Webster ] + * Fix inhibit name so nemo's desktop file is discovered by cinnamon- session for the logout dialog. -commit dad5031da0fc176ec27dcbb3a7057cc41aee399b -Author: Sebastien Bacher -Date: 2012-04-27 + [ Bobby Rong ] + * Remove unused libxml headers. (#3490) - update ZERO_OR_THREE_DIGITS define to work as intended + -- Clement Lefebvre Mon, 02 Dec 2024 16:44:26 +0000 - https://bugzilla.gnome.org/show_bug.cgi?id=674924 +nemo (6.4.0) xia; urgency=medium -M libnemo-private/nemo-icon-canvas-item.c + [ Michael Webster ] + * Fix blocking when listing or entering a network location with an inaccessible host. + * Remove obsolete libxml dependency. + * NemoAction: Add support for keyboard shortcuts. + * layout editor: Add support for accelerator keys. + * Clean up gresource file. + * makepot: Fix some warnings + * places sidebar: Improve eject icon behavior. + * places-sidebar: Remove some obsolete code. + * Guard against gdkx11 calls in a Wayland session. + * nemo-places-sidebar.c: Only register the special eject icon size once. + * actions: Cancel action update idle callbacks during dispose for non-NemoView types. + * Add setting to disable auto-expanding of treeview rows during drag-and-drop operations. -commit f5b824abf3f3b9304d7a63fd52d3f96036dc91ff -Author: Cosimo Cecchi -Date: 2012-04-24 + [ Rick Calixte ] + * action_i18n_strings.py & add-desklets.nemo_action.in: Fix spelling error (#3430) - editable-label: fix selection color in backdrop state + [ Michael Webster ] + * search: Replace third-party OpenDocument search helper. + * search: Improve logging when loading search helpers. - Don't set the ACTIVE flag if we don't have focus, it just doesn't make - sense. + [ patlefort ] + * tree-sidebar: Add missing properties menu item. (#3476) -M eel/eel-editable-label.c + [ Clement Lefebvre ] + * extract_action_strings: Don't use datetime + * extract_action_strings: Sort files + * makepot: Fix sorting and moved filename + * nemo_action_layout_editor.py: Fix non-initialized variable + * l10n: Avoid use of pango tags in msgids + * l10n: Update POT + * nemo-actions/merge_action_strings: Sort by locale + * l10n: generate additional files -commit dd0223773a818de92c71f119e1b42bae5157bdad -Author: Djavan Fagundes -Date: 2012-04-23 + -- Clement Lefebvre Wed, 27 Nov 2024 11:30:53 +0000 - Fixed a string in Brazilian Portuguese translation +nemo (6.2.8) wilma; urgency=medium -M po/pt_BR.po + [ Michael Webster ] + * Remove .nemo_action language files from files/usr, they're already being installed from data/. -commit 6b692bcaa4577aa811a18ba38ecce0d925e7613d -Author: Yuri Myasoedov -Date: 2012-04-23 + [ Rick Calixte ] + * Remove gtk-layer-shell (#3443) - Updated Russian translation + [ Michael Webster ] + * Fix some codespell complaints. -M po/ru.po + -- Clement Lefebvre Thu, 08 Aug 2024 16:25:53 +0100 -commit 9684ae22e4b4e02d8dc0b944d956ac7f7b8863f4 -Author: Charles Kerr -Date: 2012-04-18 +nemo (6.2.7) wilma; urgency=medium - link: plug a memory leak + [ Michael Webster ] + * actions: Add better documentation, fix misleading warning message. + (closes: #3437) - https://bugzilla.gnome.org/show_bug.cgi?id=674087 + -- Clement Lefebvre Sun, 04 Aug 2024 14:01:25 +0100 -M libnemo-private/nemo-link.c +nemo (6.2.6) wilma; urgency=medium -commit c016565b17b2a94a1e2c7bbab9b5ae284110e578 -Author: Charles Kerr -Date: 2012-04-18 + [ Michael Webster ] + * nemo-action-manager.c: Generate unique names for actions when they're loaded. - desktop-metadata: plug some memory leaks + -- Clement Lefebvre Sun, 21 Jul 2024 11:31:31 +0100 - https://bugzilla.gnome.org/show_bug.cgi?id=674086 +nemo (6.2.5) wilma; urgency=medium -M libnemo-private/nemo-desktop-metadata.c + * action-layout-editor: Translate action names -commit 8118406d63b317c18cf52313a55c0f4b17093af3 -Author: Cosimo Cecchi -Date: 2012-04-18 + -- Clement Lefebvre Sat, 20 Jul 2024 09:55:59 +0100 - list-view: don't treat clicks as on an empty area if the row is - selected +nemo (6.2.4) wilma; urgency=medium - When the row is selected, and we right click on it, make sure we popup - its context menu and not its parent's, since the selection is - a stronger - indication of intent. + [ Leigh Scott ] + * Update meson.build (#3431) - https://bugzilla.gnome.org/show_bug.cgi?id=674245 + [ Michael Webster ] + * nemo-view.c: Don't create a zero-length Empty Document. -M src/nemo-list-view.c + -- Clement Lefebvre Wed, 17 Jul 2024 15:48:14 +0100 -commit 2f2180c7a1e6203b3dfd9d926795aac180869fb3 -Author: Christian Kirbach -Date: 2012-04-18 +nemo (6.2.3) wilma; urgency=medium - Updated German translation (Bug #674093) + [ Michael Webster ] + * Fix handling of actions that are not part of the layout. + * nemo-icon-container.c: Don't tie the interactive search box with the window's lifetime. + * nemo-action-layout-editor.glade: Set a translation domain. -M po/de.po + -- Clement Lefebvre Fri, 05 Jul 2024 20:58:12 +0100 -commit ae6beb8030e3045b8bea3330e7b0507904a22e74 -Author: Cosimo Cecchi -Date: 2012-04-16 +nemo (6.2.2) wilma; urgency=medium - release: prepare for 3.4.1 + [ Michael Webster ] + * layout editor: Update the disabled list immediately when an action is toggled. -M NEWS -M configure.in + -- Clement Lefebvre Sun, 30 Jun 2024 11:37:53 +0100 -commit bc3f1d8ffff2b3ca6336cef2bd5304c3f12b7418 -Author: Cosimo Cecchi -Date: 2012-04-13 +nemo (6.2.1) wilma; urgency=medium - undo: use g_file_info_get_attribute_byte_string for trash::orig-path + [ Michael Webster ] + * layout editor: Don't allow duplicate uuids when saving the layout. - Since that's what GVfs sets. + [ Rick Calixte ] + * eel-gnome-extensions.c: Set GNOME Terminal to FALSE (#3421) - https://bugzilla.gnome.org/show_bug.cgi?id=673776 + -- Clement Lefebvre Tue, 18 Jun 2024 18:49:10 +0100 -M libnemo-private/nemo-file-undo-operations.c +nemo (6.2.0) wilma; urgency=medium -commit 17d765a598e85eaeb785938e896d1fd44abc481a -Author: Milo Casagrande -Date: 2012-04-06 + [ Clement Lefebvre ] + * packaging: Forbid compilation if the symbols file is outdated - [l10n] Updated Italian translation + [ zsugabubus ] + * nemo-action-manager.c: Fix order of actions + * nemo-action-manager.c: Do not reinvent strcmp -M po/it.po + [ Michael Webster ] + * mimetype defs: Add missing key names. + * nemo-list-view.c: Add a permanent bottom margin when overlay scrolling is enabled. + * Implement submenus for actions. + * nemo-action.c: Add Locations and Files fields. -commit 0531db12b0a929fca139a3fde0846d31b602d922 -Author: Abderrahim Kitouni -Date: 2012-03-24 + [ Matt Turnbull ] + * Make wayland dependency optional (#3347) - file-operations: don't mix character and byte lengths + [ Michael Webster ] + * nemo-action.c: Allow absolute path pattern matching for File and Location filters. + * all: Stop using g_slice, fix a leak and remove an obsolete workaround. + * actions: Fix build for non-debug builds, remove a stray debug line. - Otherwise untitled files end up with a (possibly) corrupt part of the - name appended. + [ Lorenzo Colitti ] + * Support drawing the desktop on wayland using gtk-layer-shell. (#3349) - https://bugzilla.gnome.org/show_bug.cgi?id=672761 + [ Michael Webster ] + * meson.build: Build even if gtk-layer-shell's version is too low. + * Fix builds with gtk_layer_shell=false or omitted. + * meson.build: Show gtk-layer-shell status in the build summary. -M libnemo-private/nemo-file-operations.c + [ Merlijn ] + * nemo-dnd: Have the drag and drop text data not be uris but plain paths. (#3356) -commit ba04ec0e7435b21d492a39e0bafc167ba24e0f49 -Author: Ryan Lortie -Date: 2012-04-05 + [ Michael Webster ] + * org.nemo.root.policy.in: Allow escalation for remote users. - NemoFile: keep free space information directly + [ Sertonix ] + * nemo-desktop: use app_id as .desktop file name (#3340) - There were previously some tricks in nemo to this effect: + [ Michael Webster ] + * Rename initial desktop file to match final name, clean up some build files. + * nemo-thumbnails.c: Always have at least 1 thumbnail thread. - - when you call nemo_file_get_volume_free_space() on a - NemoFile, the return result is NULL at first and later you - get a - "changed" signal on the file after the value is filled in + [ Leigh Scott ] + * file: default to not being able to trash (#3381) - - the value is being stored inside the NemoDirectory equivalent - for - the file that is created when the call is first performed and kept - around until after the change signal fires (so that the person - receiving the change signal can still get the data). This is - done to - save space by not expanding NemoFile. + [ Michael Webster ] + * nemo-view.c: Fix a build warning. + * actions: Refactor some code to reduce duplication. + * nemo-action-layout-editor.py: Enable save after drag-and-drop. + * polkit: Go back to using auth_admin_keep. - The NemoDirectory is then dropped after the change signal - is done - firing. + [ Clement Lefebvre ] + * Revert "Rename initial desktop file to match final name, clean up some" + * Revert "nemo-desktop: use app_id as .desktop file name (#3340)" - - the nemo properties window has a 200ms timeout after changes to - files being reported before it re-queries the properties + [ Michael Webster ] + * nemo-action.c: Fix regression when processing desktop actions. + * Set a log domain to allow restricting debug output to Nemo only. + * nemo-file.c: Update default date-time formats to adapt to GDateTime change. + * application: Guard a new GLib log function with a version check. + * nemo-thumbnails.c: Always respect the thumbnail thread count if the user sets it explicitly. - The end result is that the NemoDirectory (which holds the - information about the free space) is already freed by the time the - properties window tries to update the free space display. - This results - in the directory being recreated and the process starting over again. - The end result is that we never get the free space shown in the dialog - and instead we have an infinite loop of CPU usage (fortunately - repeating - only every 200ms, so you get ~5% CPU usage instead of 100%). + [ Rick Calixte ] + * nemo-view.c & nemo-window-menus.c: Add support for terminals with whitespace in the exec (#3379) - We can solve the problem by just storing the free space information - directly in the NemoFile details structure and dropping the dance - with NemoDirectory; nothing in NemoDirectory is actually using - that information anyway. + [ Bobbe ] + * Fix confusing NEMO_LIST_ICON_SIZE_ definitions (#3407) - https://bugzilla.gnome.org/show_bug.cgi?id=673550 + [ Michael Webster ] + * nemo-view.c: Use an actual timeout duration when updating the status bar/floater while loading a directory. + * nemo-desktop-main.c: Add missing include. -M libnemo-private/nemo-directory-private.h -M libnemo-private/nemo-directory.c -M libnemo-private/nemo-file-private.h -M libnemo-private/nemo-file.c + [ Rick Calixte ] + * eel-gnome-extensions.c: Support whitespace in execution commands (#3413) -commit 07f22b823cb75fc0da5dc9bc8c3805766d8baa15 -Author: Praveen Illa -Date: 2012-04-05 + [ Michael Webster ] + * Update makepot, fix some strings in the layout editor. + * nemo-config-base-widget.c: Accommodate wider enable/disable buttons in certain languages. - Updated Telugu Translation + [ Aliaksandr Kulinkovich ] + * Update README.md with details about history and features. (#3390) -M po/te.po + [ Michael Webster ] + * nemo-action-layout-editor: Refactor to allow importing the editor widget separately from the default window. + * Update README.md + * layout-editor: Add a label to explain the editor. -commit ae375b34c28c157950069e8bae8e033f5c12a556 -Author: Nelson Benitez Leon -Date: 2012-04-03 + [ Clement Lefebvre ] + * layout-editor: Simplify UI/labels, center dialog + * l10n: Update POT - list-view: don't handle extra mouse buttons events + [ Michael Webster ] + * Remove Edit->Plugins. + * nemo-action-layout-editor: Add up/down arrows as an alternative to drag-and-drop. - Don't handle extra mouse button events so they can bubble up - through GtkTreeview till NemoWindow where they are handled - to navigate the view forward and backward. + [ Clement Lefebvre ] + * l10n: Update POT - Part of bug 660006 + -- Clement Lefebvre Thu, 13 Jun 2024 09:53:46 +0100 - Signed-off-by: Nelson Benitez Leon +nemo (6.0.2) virginia; urgency=medium -M src/nemo-list-view.c + [ Michael Webster ] + * nemo-file.c: Escape tooltip text for markup before adding any search result snippet. -commit 3deb33d449f293b8e2597ccd7cc3bacec7b40ca2 -Author: Nelson Benitez Leon -Date: 2012-03-29 + -- Clement Lefebvre Thu, 28 Dec 2023 12:23:39 +0000 - eel-canvas: ignore extra mouse button events +nemo (6.0.1) virginia; urgency=medium - Ignore button press/release events for mouse buttons greater - than 5 so allowing forward and backward mouse buttons to work - over icons. + [ Leigh Scott ] + * Remove nemo-convert-metadata tool (#3335) - Part of bug 660006 + [ Michael Webster ] + * nemo-icon-canvas-item.c: Fix the state check to see if a surface can be re-used. - Signed-off-by: Nelson Benitez Leon + -- Clement Lefebvre Tue, 19 Dec 2023 12:25:11 +0000 -M eel/eel-canvas.c +nemo (6.0.0) virginia; urgency=medium -commit 49c753b1e2adaf7803b2fd4f1685f859d979ff74 -Author: Cosimo Cecchi -Date: 2012-04-02 + [ Michael Webster ] + * debian: use buildtype=debugoptimized, use buildtype instead of an option for frame-pointers. + * nemo-window-slot.c: Update the drop zone target each time the location changes, not just when the view type changes. + * Fix some leaks, g_object_unref safety. - file-operations: fix off-by-one error in copied files count + [ Guldoman ] + * Use `activation_uri` as a second choice in `nemo_file_get_local_uri` (#3269) - TransferInfo->num_files counts from zero, so we have to increment - it by - one when formatting it into a string. + [ Michael Webster ] + * nemo-desktop-link.c: Fix warning when toggling the Trash icon in desktop settings. + * Fix some style/icon problems. + * search: Relax folder restrictions to allow gvfs locations. + * compact view: Improve text and selection highlight alignment. + * eel-gtk-extensions.c: (Wayland) Fix menu popup positioning, popup (#3281) - https://bugzilla.gnome.org/show_bug.cgi?id=673345 + [ marcus125 ] + * nemo-file.c: Update hard-coded value for size of thumbnails. (#3278) -M libnemo-private/nemo-file-operations.c + [ Michael Webster ] + * Update issue template with a link to open and closed issues. + * eel-gtk-extensions: Make wayland display check reusable. + * nemo-view.c: Use an admin:/// uri for the 'Open as Root' action when running under Wayland. + * nemo-window-slot: Set up dnd against the slot itself instead of updating the target data each time the location changes. -commit 9b762008cf6417f1691bd94dd99c583d4e7a2c26 -Author: Cosimo Cecchi -Date: 2012-04-01 + [ Edgar ] + * Fix issue when generating video thumbnails from network shares (#3265) - link: remove unused code + [ Michael Webster ] + * nemo-thumbnails: Use g_file_peek_path to simplify network-to-local uri conversion. + * Emphasize checking for duplicate existing issues in the bug report form. + * nemo-window-slot.c: Disable drop bar, until circular reference can be resolved. + * nemo-window.c: Don't update saved window state if the window is tiled when closing it. - nemo_link_local_get_additional_text() is now unused. + [ Pedro Montes Alcalde ] + * Fix trying the same filename when moving a file with duplicate name (#3299) -M libnemo-private/nemo-link.c -M libnemo-private/nemo-link.h + [ Lars Mueller ] + * Fix thumbnail creation for local files -commit afc9a8196ce9a94b900f532c3b7d433ef9641569 -Author: Cosimo Cecchi -Date: 2012-04-01 + [ Michael Webster ] + * file ops: Use symbolic tray icons. - icon-container: don't show comment field for desktop files + [ Rick Calixte ] + * nemo-view.c: Show detailed actions for some selection types (#3307) + * Fix meson.build deprecations up to 0.56.0 (#3316) - This fixes a regression introduced in commit - 5a47a484e45218e83202c508b421b1a2707af270 + [ Michael Webster ] + * nemo-pathbar.c: Remove unnecessary g_object_unref. + * nemo-desktop.c: Use Gtk to set the desktop window hint + * nemo-desktop: Add csd-background to ignored-desktop-handlers. + * list-view: Remove remaining unused 'drop zone' code. + * nemo-list-view: Restrict drag-into-folder actions to be triggered only over text-covered regions of a given row. + * nemo-list-view.c: Don't apply column-expand test unless there is a drag operation active. - https://bugzilla.gnome.org/show_bug.cgi?id=673316 + [ Clement Lefebvre ] + * l10n: Remove unnecessary msgid + * l10n: Update POT + * l10n: Update files -M src/nemo-icon-view-container.c + -- Clement Lefebvre Sun, 19 Nov 2023 14:05:19 +0000 -commit 3525ec8ec6b382a04affa0d02bf8ba1a1929f89b -Author: Alexander Shopov -Date: 2012-04-01 +nemo (5.8.4) victoria; urgency=medium - Updated Bulgarian translation + [ Michael Webster ] + * search: Fix search directory view selection. + * nemo-search-directory.c: Don't restart the search if the query hasn't changed. + * advanced search: Fix path handling to prevent symbolic links escaping into forbidden locations. + * Fix some leaks. -M po/bg.po + [ marcus125 ] + * nemo-style-fallback-mandatory.css: Fix styling on inactive pane (#3261) -commit c2ab193ea26c67d6031fce7fe389b3832c37cc80 -Author: Piotr Drąg -Date: 2012-03-31 + [ Michael Webster ] + * nemo-window.c: Fix crash when unmounting a network location. + * nemo-places-sidebar.c: Remove extra reference to selected sidebar file when using the popup menu. + * nemo-file-utilities.c: Simplify symbolic device icon lookup. - Updated Polish translation + -- Clement Lefebvre Fri, 07 Jul 2023 15:26:24 +0200 -M po/pl.po +nemo (5.8.3) victoria; urgency=medium -commit ce15200eb252536bf95c0a37939b883320f851c7 -Author: Piotr Drąg -Date: 2012-03-29 + [ Michael Webster ] + * Revert "nemo-list-view.c: Fix some tooltip markup warnings." + * Disable view selection when viewing search results. + * search: Fix tracker search, which was broken by 3c691a8e0e80b5. + * nemo-search-directory: Unset the search_running flag when the search completes. + * search view: Fix sort column/direction not being remembered. + * nemo-list-view.c: Don't try to work out a monospace font to use if no font family is set. + * nemo-places-sidebar.c: Allocate extra space for the eject button when overlay-scrollbars are enabled. - Added Tibetan translation to LINGUAS + -- Clement Lefebvre Mon, 26 Jun 2023 10:47:56 +0200 -M po/LINGUAS +nemo (5.8.2) victoria; urgency=medium -commit a08f87e8fe5522dbd58573a73d3e7aac70d80cff -Author: tennom YK -Date: 2012-03-29 + [ Michael Webster ] + * nemo-file.c: Don't try to get a 'local uri' for psuedo-files on the desktop. - Added Tibetan translation + -- Clement Lefebvre Wed, 14 Jun 2023 09:25:47 +0200 -A po/bo.po +nemo (5.8.1) victoria; urgency=medium -commit 963ee1bd9ba64d88272bd264d76eff6846e24c7c -Author: Daniel Mustieles -Date: 2012-03-27 + [ Michael Webster ] + * nemo-list-view.c: Reset dynamic bottom margin when loading a new location. - Updated Spanish translation + [ Clement Lefebvre ] + * l10n: Generate additional files -M po/es.po + -- Clement Lefebvre Thu, 08 Jun 2023 13:00:41 +0100 -commit 67b2499fc0ea6ba08063adea535a1d3529ff3053 -Author: Mantas Kriaučiūnas -Date: 2012-03-26 +nemo (5.8.0) victoria; urgency=medium - Updated Lithuanian translation + [ Michael Webster ] + * nemo-view-dnd.c: Fix the check for a web link's title, and use the url if it's missing. + * nemo-mime-actions.c: Prioritize an http link to open in a browser, regardless of the mimetype of the link's target. + * nemo-file-management-properties.glade: Re-save under glade 3.38. + * preferences: Allow displaying dates using the system's current monospace font. + * Reduce timeout delay for the click-to-rename feature. + * thumbnails: Use multiple threads for generating thumbnails. + * nemo-thumbnails: Restore compatibility with older glib versions, move all mutex locks off of the UI thread, clean up when nemo exits. + * nemo-icon-container.c: Fix thumbnail prioritization in the icon, compact views. + * Remove _prioritize_thumbnailing vfuncs in the icon containers. + * Clean up nemo-thumbnails.c, add some thread/queue debugging. + * nemo-thumbnails.c: Use LIFO sort for the thumbnailing thread. + * nemo-thumbnails.c: Fix thread count when the setting is a positive value (specific count desired instead of automatic). -M po/lt.po + [ kain ] + * Fix for List View thumbnail scaling at HiDPI (#3187) -commit b6972a97ab14dc86c2e5130feda39d3bc5c7a355 -Author: Cosimo Cecchi -Date: 2012-03-26 + [ Michael Webster ] + * thumbnails: Ignore operations if the thumbnailer isn't running. + * list-view: Scale the thumbnail correctly when applying emblems, and fix the emblem sanity checks everywhere. - release: prepare for 3.4.0 + [ Oliver Kästner ] + * Fix memleaks (#3131) -M NEWS -M configure.in + [ Michael Webster ] + * file info: Use generic methods for attributes that aren't guaranteed to be supported by the filesystem. + * Fix some more GFileInfo getter problems. -commit c1551dfcfa9c92bf43c57b219535f63a9fecdad4 -Author: Cosimo Cecchi -Date: 2012-03-26 + [ GNL10 ] + * Stop "Searching..." pop-up button from disappearing when opening a file (#3177) - view: ensure we show "Open with..." entries for folders + [ Michael Webster ] + * Implement a dynamic margin at the end of the file list in the list view. + * window-slot: Update status bar selection info when a location is still loading. - This is a regression from commit - b9c51fd4eb84a9f52ee4be1bf183fc516984130b + [ kain ] + * Icon frame only for non-transparent large icons (#3189) - https://bugzilla.gnome.org/show_bug.cgi?id=672809 + [ Michael Webster ] + * search: increase performance, reduce memory use. + * Use GRefString instead of eel_ref_str for ref-counted strings. + * Fix some memory leaks. + * nemo-list-view.c: Fix some tooltip markup warnings. + * Use fast-content-type when normal content-type lookup fails. -M src/nemo-view.c + [ Guldoman ] + * Use local URIs for drag&drop, copy/paste operations (#3220) -commit d64698322ea64fed050bd82de545e678d557f85c -Author: Reşat SABIQ -Date: 2012-03-26 + [ Michael Webster ] + * i18n: Add rtl versions of directional icons. + * places-sidebar: Render disk-full bars correctly in RTL languages. - Updated Crimean Tatar (Crimean Turkish) translation + [ Oliver Kästner ] + * properties-window: split dir elem count and size (#3225) -M po/crh.po + [ Michael Webster ] + * Add a 'drop zone' to the list view. This allows drag-and-drop into the current folder even when only folders are visible in the view. + * nemo-application.c: Update the custom css provider when the system theme changes. + * nemo-list-view.c: Remove stray debug line. + * github workflow: Add optional ssh session. + * actions: Make NemoActionManager more efficient, and skip invalid directories. + * Update bug/feature templates. -commit 440d5bb1693d32a7d4fb8ef16002c130b600eb80 -Author: Jiro Matsuzawa -Date: 2012-03-25 + -- Clement Lefebvre Thu, 01 Jun 2023 16:21:09 +0100 - Updated Japanese translation. +nemo (5.6.3) vera; urgency=medium -M po/ja.po + [ Michael Webster ] + * nemo-window-menus.c: Recalculate extension/action items at an earlier stage in opening the file manu. + * nemo-extensions-list.c: Add a note regarding a memory leak. -commit 70b70e316cf4930036759581a935ab19475835e3 -Author: Praveen Arimbrathodiyil -Date: 2012-03-24 + -- Clement Lefebvre Wed, 18 Jan 2023 16:11:34 +0000 - Malayalam translation updated by Aslam +nemo (5.6.2) vera; urgency=medium -M po/ml.po + [ Clement Lefebvre ] + * l10n: Update POT -commit afe92aa3ea0fdd988dd3bfe5851032843e6d808b -Author: Sasi Bhushan -Date: 2012-03-24 + [ Michael Webster ] + * nemo-places-sidebar.c: Get the expander width from the current theme instead of hard-coded. - Updated Telugu translation + [ Bobby Rong ] + * nemo-action: readlink before populate + * nemo-script-config-widget: monitor correct path for setup-dir-monitors -M po/te.po + [ Michael Webster ] + * nemo-window-pane.c: Use the button-release event for showing the current location entry. + * Run generate_additional_file to populate desktop/action files with new translations. -commit 0d165b3e0b874263e6f52127194b6e9f47ea4a1b -Author: Rajesh Ranjan -Date: 2012-03-23 + -- Clement Lefebvre Sat, 07 Jan 2023 15:53:11 +0000 - hindi translation by Chandan Kumar +nemo (5.6.1) vera; urgency=medium -M po/hi.po + [ Michael Webster ] + * pathbar/entry: Give entry-preferred mode the same persistent behavior as pathbar-preferred. -commit adb6a12a7b0b08cfd441e4a75857797dc9875a43 -Author: Timo Jyrinki -Date: 2012-03-23 + -- Clement Lefebvre Tue, 13 Dec 2022 15:14:28 +0000 - Updated Finnish translation by Jiri Grönroos +nemo (5.6.0) vera; urgency=medium -M po/fi.po + [ veractor ] + * Actions: Escape device paths also (#3057) -commit 982ce96d810795dd30d50cb2ff8e622fcb9ff4d6 -Author: Praveen Illa -Date: 2012-03-23 + [ Michael Webster ] + * Use Github actions instead of CircleCI. - Updated Telugu Translation + [ veractor ] + * Actions: Escape path spaces when they are unquoted + * eel: Merge shell character escape functions -M po/te.po + [ Clement Lefebvre ] + * icon view: don't highlight selected icons + * nemo-desktop: Rename new-launcher -> 90_new-launcher + * nemo-desktop: Add Desktop Settings action + * l10n: Update POT and files -commit a6cb9e4697d904390cf54fdd19aa556b78bf98c0 -Author: Kristjan SCHMIDT -Date: 2012-03-22 + [ Michael Webster ] + * search: Perform deep counts on a search directories full file list, instead of the directory itself, when opening properties. + * nemo-search-directory-file.c: Add a missing NemoDirectory method. + * location bar: Add an option to always switch back to the pathbar (breadcrumbs) widget after entering a location or otherwise using the location entry. + * Prevent interactive search from interfering with keystrokes intended for the window handler (for focusing the location entry). - Updated Esperanto translation + [ Oliver Kästner ] + * debian/control(nemo-dbg): priority extra->optional -M po/eo.po + [ Michael Webster ] + * Remove custom btime (creation time) code. + * Add support for file creation time via GFileInfo. + * Add ability to display date columns in a monospaced font. + * nemo-file-operations.c: Fix null pointer error. + * nemo-file-operations.c: Handle a couple more potential problems with g_file_get_basename(). -commit a5914993f533ceeef84d2d7000c64160b68d2cfb -Author: Ibrahim Saed -Date: 2012-03-21 + [ Clement Lefebvre ] + * list view: Do show dates in monospace font by default - Updated Arabic translation + [ Michael Webster ] + * Change location entry/pathbar behavior. + * Fix build on LMDE. + * Toolbar: Use actions to control the location/path bar switching. + * toolbar: Hide the location entry toggle when not needed, and limit its shortcut to making sure the entry is focused. + * pathbar/entry: Fix a couple of issues when changing pathbar/entry preference. -M po/ar.po + -- Clement Lefebvre Mon, 21 Nov 2022 10:36:27 +0000 -commit 8d0c374a46fd90f82dea80c7d19fd8800fa67154 -Author: Duarte Loreto -Date: 2012-03-21 +nemo (5.4.3) vanessa; urgency=medium - Updated Portuguese translation + [ Fabio Fantoni ] + * fix spelling error spotted by lintian -M po/pt.po + [ veractor ] + * App chooser: Quote custom executable file paths (#3041) -commit 040ee44c68efb7120e9a86f56c6e325052d42a8f -Author: Automatic Mirroring -Date: 2012-03-21 + -- Clement Lefebvre Sat, 13 Aug 2022 12:30:16 +0200 - Update Simplified Chinese translation. +nemo (5.4.2) vanessa; urgency=medium -M po/zh_CN.po + [ veractor ] + * Actions: Escape quoted content in paths (#3026) -commit ef3a663a6e25040e1e96d3225654a0c774b1a823 -Author: YunQiang Su -Date: 2012-03-21 + [ Bobby Rong ] + * libnemo-private: add missing gio-unix-2.0 dependency (#3028) - update Simplified Chinese (zh_CN) translation + [ Michael Webster ] + * nemo-view.c: Use a shorter menu update delay when the update has been triggered by a selection change. -M po/zh_CN.po + -- Clement Lefebvre Thu, 21 Jul 2022 11:11:21 +0200 -commit 4229689853639bce00b4a8dab7f7312aafb7da32 -Author: Cosimo Cecchi -Date: 2012-03-19 +nemo (5.4.1) vanessa; urgency=medium - release: prepare for 3.3.92 + [ Jeremy7701 ] + * Add epub search helper (#2867) -M NEWS -M configure.in + [ Michael Webster ] + * Fix installation of epub search helper. -commit a60e9887eebb8973c48c0151981a26cce7cc8793 -Author: Cosimo Cecchi -Date: 2012-03-19 + [ Joshua Peisach ] + * icon-container: Don't free a pointer after it has already been freed - places-sidebar: add support for the "network" volume class identifier + [ veractor ] + * Actions: Escape tabs and newlines in paths + * Actions: Escape backslashes in paths + * Actions: Escape number signs in paths (#3022) - If a GVolume has a class identifier of "network", put it (and - its mount) - in the Network section. This fixes e.g. NFS mounts showing in - the wrong - section. + -- Clement Lefebvre Fri, 15 Jul 2022 15:18:56 +0200 -M src/nemo-places-sidebar.c +nemo (5.4.0) vanessa; urgency=medium -commit a06988aefdf6cf147936737e48005170410046b2 -Author: Cosimo Cecchi -Date: 2012-03-19 + [ Michael Webster ] + * nemo-list-model.c: Fix crash/inconsistent model when expanding an unmonitored directory that no longer has any children. + * nemo-list-view.c: Use the original button-press coordinates when deciding on dnd vs rubberbanding. + * nemo-action.c: Handle get_device_path() failing more gracefully. + * nemo-window-manage-views.c: Only close a window when its location is deleted if its immediate parent was the desktop and the window also has no backward history. + * progress handler: Tell the wm that the progress window is a dialog. + * menus: when activating File->New Window in a search results view, open a new window using the original uri instead of the virtual search results location. + * Don't allow toolbar buttons to gain input focus. - places-sidebar: focus the first non-heading row on focus-in + [ okaestne ] + * port from libnotify to GNotification + * build: remove dependency on libnotify - Instead of giving the focus to the heading, which would end up in - getting stuck there, since headings are not supposed to be actionable. + [ Jeffrey Knockel ] + * Add !NEMO_IS_DESKTOP_WINDOW() guards to callbacks - https://bugzilla.gnome.org/show_bug.cgi?id=672002 + [ Leigh Scott ] + * Add native exfat renaming support (#2967) + * Sync sort-directories-first with gtk file chooser (#2971) -M src/nemo-places-sidebar.c + [ patlefort ] + * Add option to disable or enable content type detection of mounted media. (#2913) -commit 003b8773399de836e11c725f24c8a1f668a29adf -Author: Cosimo Cecchi -Date: 2012-03-19 + [ Clement Lefebvre ] + * CI: Update targets + * l10n: Update POT - places-sidebar: use gtk_tree_view_set_cursor() to move selection + [ Michael Webster ] + * Add symbols file for the extension library. - This will also move the scrolled window up/down when we navigate - the places - sidebar with keyboard. + [ Yofenry ] + * added nemo github url in THANKS -M src/nemo-places-sidebar.c + -- Clement Lefebvre Fri, 10 Jun 2022 15:58:12 +0200 -commit 429d3548b72b5a29e8c0e31304db3cd51e25fcbf -Author: Cosimo Cecchi -Date: 2012-03-19 +nemo (5.2.4) una; urgency=medium - places-sidebar: make find_prev_or_next_row() start from the passed - iter + [ Michael Webster ] + * nemo-file.c: Remove a file's 'failed thumbnail' marker when refreshing, if it has one. - This will be useful for the next commits. + -- Clement Lefebvre Tue, 11 Jan 2022 16:05:44 +0000 -M src/nemo-places-sidebar.c +nemo (5.2.3) una; urgency=medium -commit 5d2471aff8033fc319957273cf20d33420c5a6f7 -Author: Carles Ferrando -Date: 2012-03-19 + [ Michael Webster ] + * nemo-file-operations.c: Initialize 'auto_rename' before using it. + * nemo-query-editor.c: Fix editor issue when using tabs. - [l10n]Updated Catalan (Valencian) translation + -- Clement Lefebvre Fri, 31 Dec 2021 11:17:39 +0000 -M po/ca@valencia.po +nemo (5.2.2) una; urgency=medium -commit 3ea1074b29d7d25c7c087eeeece215a057ab3fbd -Author: Joan Duran -Date: 2012-03-19 + [ Michael Webster ] + * Fix mistake in shortcuts window. - [l10n] Updated Catalan translation + [ Clement Lefebvre ] + * l10n: Generate files + * l10n: Update POT -M po/ca.po + -- Clement Lefebvre Thu, 16 Dec 2021 10:14:04 +0000 -commit 63b59332d15139bd43504e0192a169cd5f924bf5 -Author: Mario Blättermann -Date: 2012-03-18 +nemo (5.2.1) una; urgency=medium - [l10n] Updated German translation + [ Michael Webster ] + * search: Use the python xlrd module to read .xls files. -M po/de.po + -- Clement Lefebvre Thu, 09 Dec 2021 11:23:52 +0000 -commit f8f4f5a241dd99c04be8f327aed3316c9d87f1b2 -Author: Cosimo Cecchi -Date: 2012-03-16 +nemo (5.2.0) una; urgency=medium - icon-container: set a range base selection icon on _set_selection() + [ Michael Webster ] + * nemo-desktop-overlay.glade: Fix label marked untranslatable. + * makepot: Add shortcuts ui file. + * nemo-view.c: Follow the same invocation rules for bulk renaming as we do for normal renaming. + * Install language definitions to gtksourceview-4. + * nemo-file.h: Use the correct icon names for read-only and unreadable emblems. + * mount-archive.nemo_action: Use gnome-disk-image-mounter instead of gvfsd-archive. + * debian/control: Add gnome-disk-utility to recommends (for image mount action). + * Add a manpage for nemo-desktop and clean up nemo's a bit. - If the selection we set if just one item (as it is in the case when - we're going back/forward in the history), set that item as a base for - range selection too, instead of just selecting it. + [ JosephMcc ] + * nemo-toolbar.c: Use flat button style - https://bugzilla.gnome.org/show_bug.cgi?id=672127 + [ Joshua Peisach ] + * extension gir: Export 'libnemo-extension' to the gir -M libnemo-private/nemo-icon-container.c + [ Michael Webster ] + * actions: Refactor to remove unnecessary methods. + * actions: Add new conversion token for a file's parent uri (with selection_count > 0) and location uri (selection_count == 0). + * actions: Add UriScheme specifier in the action definition. + * nemo-window-manager-views.c: When removing a folder, don't close the entire window if that folder is open on another tab. + * nemo-window.c: Don't ignore tab events when renaming. + * nemo-directory-async.c: Don't write the entire buffer into the pixbuf loader all at once. + * copy/paste: Make the clipboard contents persist after the process ends. + * nemo-search-engine-advanced.c: Ensure a path before using it as a key in the skip table - g_str_hash cannot be NULL. -commit ba281e27b804b1c61c715f4371f352b04e9d76ad -Author: Cosimo Cecchi -Date: 2012-03-16 + [ Isaac Carter ] + * search: Update tooltip text (#2810) - eel: delete unused code + [ Minabsapi ] + * file operations: Add duplicate button (#2841) - We don't use EelDPoint/EelIPoint anymore; other functions here - are just - unused. + [ Clement Lefebvre ] + * file-operations: Rename button label in previous commit + * l10n: Generate files + * l10n: Update POT -M eel/eel-art-extensions.c -M eel/eel-art-extensions.h -M eel/eel-self-checks.c -M eel/eel-self-checks.h + -- Clement Lefebvre Mon, 15 Nov 2021 14:25:48 +0000 -commit 8e43d841355b6cd82af730bc2357f9ac1ed7c638 -Author: Cosimo Cecchi -Date: 2012-03-16 +nemo (5.0.3) uma; urgency=medium - icon-container: avoid using EelDPoint + [ Michael Webster ] + * search: Use untex instead of detex to search latex files. + * search: Fix build from previous commit. + * nemo-search-engine-advanced.c: Also match \r (carriage return) in the newline filter. + * nemo-blank-desktop-window.c: Don't try to open a nonexistent menu. - It's going away. + -- Clement Lefebvre Fri, 02 Jul 2021 10:49:34 +0100 -M libnemo-private/nemo-icon-canvas-item.c -M libnemo-private/nemo-icon-canvas-item.h -M libnemo-private/nemo-icon-container.c +nemo (5.0.2) uma; urgency=medium -commit 0832acdb4371fc7de957303e220e899c8fdcdf5c -Author: Cosimo Cecchi -Date: 2012-03-16 + [ Michael Webster ] + * settings: Make the default search button states match the old search behavior. + * nemo-search-engine-advanced.c: Escape paths properly before passing them to search helpers. + * nemo-query-editor.c: Don't show the bar separator if the search box isn't being shown. + * Search: Allow TryExec to be a list of programs. + * Search: Update search README.md for TryExec changes. + * search-helpers/nemo-mso-to-txt.c: Refactor and improve error handling. + * Search: Add .doc, .xls and .tex helpers. + * Search: Add .ppt helper. + * debian/control: Make search helper programs dependencies instead of recommends. + * nemo-mime-actions.c: Only add entire view file list to an image viewer launch if its commandline supports multiple files. + * nemo-search-engine-advanced.c: Ensure that the final snippet endpoint is no greater than the original endpoint. + * nemo-search-engine-advanced.c: a couple fixes. + * search: Disable content search for some special folders. + * nemo-view.c: Update context menu item visibility from preferences after updating the menu items from any extensions. + * nemo-view.c: Clear extension menu items during real_update_menus. + * nemo-view.c: Move call added to last commit to nemo_view_stop_loading. - icon-view: fix wheel scrolling for compact view + -- Clement Lefebvre Fri, 25 Jun 2021 16:58:08 +0100 - If the smooth scroll event we get is an emulated scroll wheel, we have - to emulate a right/left scroll, like we do for regular UP/DOWN events. +nemo (5.0.1) uma; urgency=medium - https://bugzilla.gnome.org/show_bug.cgi?id=672185 + [ Michael Webster ] + * nemo-search-engine-advanced.c: Convert input data to utf8, and manipulate match snippets as utf8 to ensure they display correctly in the tooltip. + * nemo-list-view.c: Fix a memory leak. -M src/nemo-icon-view.c + [ Eli Schwartz ] + * make ps2txt search helper work on non-debianlike distros -commit 8dcf1625bb5e38c865ebe01f53275b579093663c -Author: Reinout van Schouwen -Date: 2012-03-16 + [ Michael Webster ] + * toolbar: Fix updating the state of the "Up" button. - 2012-03-16 Reinout van Schouwen + [ Clement Lefebvre ] + * l10n: Fix msgid + * l10n: Remove msgids + * l10n: Update POT - - nl.po: Fixed typo + [ Michael Webster ] + * search: Add a readme for search helpers, move third-party helpers into the search-helpers directory, clean up search logging a bit. + * search helpers: Change the group name, follow my own rules for mimetype list termination, improve readme. + * nemo-window-menus.c: Update extension and action entries in the File menu when it is shown. + * nemo-tree-sidebar.c: Fix states for pin/unpin and create-folder menu items. + * toolbar: Disable the 'create-folder' button in non-writable locations. + + -- Clement Lefebvre Thu, 10 Jun 2021 14:01:43 +0100 + +nemo (5.0.0) uma; urgency=medium + + [ icarter09 ] + * Issue 1881. Adds keyboard shortcut for Same Location as other pane. Adds shortcut to shorcut UI. + * Issue 1263. Enables F6 to immediately toggle between panes. + + [ Michael Webster ] + * nemo-shortcuts.ui: Add a new section for dual-pane and put related shortcuts there. + + [ Eric ] + * Added option to toggle sorting favorites before other files + * Fixed whitespace + + [ Michael Webster ] + * nemo-main-application.c: Remove 30s inactivity timeout. + * nemo-menu-provider.c: Don't request menu items for selections if there is no selection - not all extensions guard against this. + * nemo-view.c: Partially revert b4d0318b318f4f4f20cbd8e89c7859f69aeb6214 + + [ John Lindgren ] + * Fix segfault when g_file_info_get_symlink_target() returns "". + + [ Steven Xu ] + * feat: added the `--existing-window` flag to open URLs in an existing window, cf https://github.com/linuxmint/nemo/issues/2674 + * feat: use `gtk_window_present_with_time()` instead of `gtk_window_present()`, otherwise the window manager will ignore this window's focus request and try to just mark it urgent instead (flashing in the window list for example) -M po/nl.po + [ icarter09 ] + * Fixes 2696. Detects if Trash is supported. -commit 136a20daeef2568776a1c239bac9cb66a1f66efc -Author: Reinout van Schouwen -Date: 2012-03-16 + [ Michael Webster ] + * nemo-places-sidebar.c: Fix bookmark separator positioning to account for conditionally hidden immovable elements. + * nemo-desktop-application.c: Remove root check. + * nemo-view.c: Hide trash menu item when trash is not supported. + * Add option to treat root as normal. + * actions: Implement passing the active window xid to exec strings. + * nemo-window-menus.c: hide gvfs locations based on their actual availability, not strictly on the process uid. + * nemo actions: Implement reverse dependencies. + * nemo-view.c: Only update the context menu when it's about to be shown. - 2012-03-16 Reinout van Schouwen + [ Steven Xu ] + * docs: added docs for the `--existing-window` flag - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Cerulean ] + * Allow images to be viewed in supported image viewers in the same order as they are shown in the current nemo view (directory or search). + * Remove g_list_insert_before_link call for compatibility with older glib versions. + + [ Michael Webster ] + * Revert "nemo-view.c: Only update the context menu when it's about to be" + * nemo-view.c: Delay actions and extension menu providers from updating until the menu is requested. + + [ Joshua Peisach ] + * bookmark-list: Clean up and close memory leak General cleanup. Use NemoBookmarkList instead of casting itself every line. + + [ kysrpex ] + * Prevent the menu bar from disappearing when some of its elements is currently selected. + * Remove the menu bar inmediately after selecting an item (if configured to auto-hide). + + [ Michael Webster ] + * nemo-directory.c: Fix memory leak. + * nemo-directory.c: Fix previous commit which altered potential behavior more than necessary. - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ icarter09 ] + * Issue 541. Removes spaces from Samba drive paths in location bar. - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Michael Webster ] + * nemo-list-view.c: Implement 'double-click blank area to go up one (#2646) - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ icarter09 ] + * Fixes #2244. Adds logic to strip leading whitespace and checks for absolute path when copy/pasting value. - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Isaac Carter ] + * Fixes Issue #2415. Removes nemo self checks (#2439) - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Michael Webster ] + * nemo-places-sidebar.c: Sort all devices in the sidebar. + * nemo-location-entry.c: Don't modify a string we don't own. + * Implement Content search. + * Add a search helper for Open XML (MS Office). - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + -- Clement Lefebvre Mon, 31 May 2021 12:21:41 +0100 - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen +nemo (4.8.5) ulyssa; urgency=medium - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Michael Webster ] + * nemo-file-operations.c: re-add favorite removal during a delete operation. + * nemo-view.c: Hide favorites and pinning menu items when in the trash folder. + * nemo-view.c: Don't allow trash/delete to work inside the favorites view. + * nemo-view.c: Don't show favorite/pinning items in menubar->edit when there is no selection. + * nemo-file-operations.c: When trashing (not deleting) a folder, check favorites and remove any descendents of the toplevel. + * nemo-file-operations.c: Update favorites when moving files from their real location. + * nemo-file.c: Don't try to set metadata on a null file when adding or removing favorites. - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Leigh Scott ] + * Fix desktop bold fonts - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Michael Webster ] + * nemo-icon-canvas-item.c: restore the style context after drawing any caption text. + * nemo-list-view.c: Fix NemoFile leaks. + * nemo-properties-window.c: Fix leak. nemo-directory-async.c: remove extra g_object_unref. + * nemo-file: Add a convenience macro to print file uris. + * nemo-view.c: Fix leak when generating extension menu items, nemo- menu.c: Free list of menu items during finalize, not just the list itself. + * nemo-places-sidebar.c: Use a safer function to check for favorite and recent support. - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Lars Mueller ] + * nemo-file-operations.c: Fix #2075 - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Michael Webster ] + * nemo-list-view.c: Only allow double-clicks with the primary and middle buttons. - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ icarter09 ] + * Fixes #2239. The value for customizing the desktop layout for Sort items was not being saved. - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Michael Webster ] + * nemo-directory-async.c: Fix favorite check callback arguments, remove unnecessary g_free(). - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ icarter09 ] + * Issue 1908: Sets correct values for x and y for file->details->cached_position. + * Issue 2666. Blocks emoji chooser from breaking Nemo + * Issue 591. Increases emit time of change for progress update. - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + -- Clement Lefebvre Fri, 26 Feb 2021 11:37:53 +0000 - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen +nemo (4.8.4) ulyssa; urgency=medium - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Michael Webster ] + * nemo-tree-sidebar.c: Use correct icon for favorites. - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + -- Clement Lefebvre Sun, 03 Jan 2021 11:32:36 +0000 - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen +nemo (4.8.3) ulyssa; urgency=medium - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Leigh Scott ] + * file-operation: Prevent recursion to speed up emptying trash + * file-operations: auto-escape filenames on native ntfs mounts + * file-operations: auto-escape filenames on fuseblk mounts + * file-operations: don't auto-escape semicolon + * Clean up - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Michael Webster ] + * nemo-file-operations: Remove a toplevel folder from favorites during a delete operation. + * nemo-file.c: Check if a favorite:///file is a symbolic link before trying to look up its target uri. + * nemo-file.c: nemo_file_set_is_favorite - always set metadata, not just when a file is a symlink. + * nemo-file.c: nemo_file_is_local - Use the target file uri to decide if a file in the favorites:/// view should be considered local. + * nemo-view.c: Hide the 'move to trash' menu items for recent and favorites, and hide the 'delete' item in favorites. + * nemo-view.c: Fix visibility check for the trash menu item. + * favorites: Accept dnd to places-sidebar item to add favorites, refactor existing dnd in list and icon views. + * nemo-file.c: Check for a broken symbolic link before trying to get a favorite's target uri. + * nemo-file-conflict-dialog.c: Fix hidpi scaling of the file icons. + * nemo-file.c: Allow the favorites folder to better respect the various thumbnailing settings. - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Bill Doyle ] + * Add escaping for percent sign in action Exec - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Érico Rolim ] + * build: fix typelibdir in libnemo-extension/meson.build. - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Michael Webster ] + * nemo-desktop-manager.c: Recreate the desktop when the primary monitor's scale factor changes. - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + -- Clement Lefebvre Sat, 02 Jan 2021 18:29:32 +0000 - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen +nemo (4.8.2) ulyssa; urgency=medium - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Michael Webster ] + * Fix some leaks revealed by valgrind. + * nemo-directory-async.c: Fix an issue with the idle favorite check. + * nemo-places-sidebar.c: Remove favorites signal listener when the sidebar is destroyed. - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + -- Clement Lefebvre Tue, 08 Dec 2020 12:57:48 +0000 - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen +nemo (4.8.1) ulyssa; urgency=medium - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ icarter09 ] + * Removed unused variable + * nemo-window.c: Blocks operations while renaming. Fixes #1854 - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Michael Webster ] + * build: Update some dependencies. - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ NikoKrause ] + * change favorites icon - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ icarter09 ] + * Fixes 276. Remove type-ahead search on mouse click - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Isaac Carter ] + * Remove Send by Email action (#2574) + * Hide some menu items when running as root (#2582) - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + -- Clement Lefebvre Tue, 08 Dec 2020 10:30:16 +0000 - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen +nemo (4.8.0) ulyssa; urgency=medium - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Soapux ] + * Misc cleanup - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Oliver Smith ] + * data/nemo.desktop.in: fix icon - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ romovs ] + * Add option to preview files up to 64GB - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Fabio Fantoni ] + * Drop Debian menu file - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ btryba ] + * Fixed small copy-paste bug. - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Fabio Fantoni ] + * debian: Bump debhelper compat level to 12 + * small improves to debian/copyright and debian/not-installed + * debian/rules: Drop no longer neede installmime call + * debian/rules: Drop dh_makeshlibs override, no longer needed + * debian/rules: Enable hardening bindnow + * debian: readd dh-python + * fix lmde4 build - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Michael Webster ] + * debian/control: Remove unused build dependencies. - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ btryba ] + * Removed unused variables in pathbar function (#2549) - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ okaestne ] + * Remove uft8 colon-like char in datetime strings - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Michael Webster ] + * Add XAppFavorites support. + * .gitignore: Change the build directory name. - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ icarter09 ] + * Fix for #2513. Avoid single quote escape by checkng for QUOTE_TYPE_SINGLE and QUOTE_TYPE_DOUBLE. - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Michael Webster ] + * nemo-action.c: Fix build from previous commit typo. - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Fabio Fantoni ] + * make sure pango development files are installed - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ icarter09 ] + * Fixes #942. Uses g_content_type_get_description for when mime type is NULL. - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ btryba ] + * Fixing small memory leak. Freeing volume_monitor per GIO documentation. - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ icarter09 ] + * Fixes #2499. Changes the option from -x to -- when using gnome-terminal - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Isaac Carter ] + * nemo-connect-dialog: Remove Help button (#2562) + * nemo-mime-actions.c: Don't show mime button if the activation URI is null (#2559) - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Clement Lefebvre ] + * l10n: Update POT + * l10n: Generate files - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + -- Clement Lefebvre Thu, 26 Nov 2020 13:54:02 +0000 - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen +nemo (4.6.5) ulyana; urgency=medium - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Michael Webster ] + * nemo-window-pane.c: Only show the active window-pane's toolbar when toggling toolbar visiblity. + * nemo-view.c: Don't cache the selection, this has been broken by deferred attribute loading. + * debian/rules: Set buildtype to 'debug'. + * nemo-bookmark-list.c: Don't get bookmark icon property notifications. - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + -- Clement Lefebvre Tue, 11 Aug 2020 12:32:30 +0100 - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen +nemo (4.6.4) ulyana; urgency=medium - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Ԝеѕ ] + * display last modified date property on directories - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Michael Webster ] + * nemo-places-sidebar.c: Fix regression with using the icon-name property in GtkCellRendererPixbuf. + * nemo-directory: Improve visual performance in smaller folders. - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + -- Clement Lefebvre Sun, 21 Jun 2020 13:39:41 +0100 - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen +nemo (4.6.3) ulyana; urgency=medium - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Michael Webster ] + * icon view: Fix additional line calculation for labels, and tweak spacing between icons. + * nemo-icon-canvas-item.c: Only show full label text when an item is hovered over, but not if it is merely selected. + * nemo-file-management-properties.glade: Add the modal flag to the window and increase vertical size slightly. - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Soapux ] + * meson: Remove a workaround for old meson versions - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Fabio Fantoni ] + * use debhelper 11 for integrated meson support - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Clement Lefebvre ] + * CI: Use explicit tags - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + -- Clement Lefebvre Sat, 06 Jun 2020 14:52:58 +0100 - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen +nemo (4.6.2) ulyana; urgency=medium - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Michael Webster ] + * nemo-bookmarks-window.c: Refactor to improve reliability. + * Defer extension-provided file attributes until the file is made visible in a view. + * nemo-progress-ui-handler.c: Use XAppStatusIcon. + * nemo-list-view.c: Cancel the visible files callback when the view is cleared or destroyed. + * nemo-file.c: Only show the 'icon loading' icon when an icon is actually loading. - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + -- Clement Lefebvre Wed, 27 May 2020 12:34:09 +0100 - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen +nemo (4.6.1) ulyana; urgency=medium - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Michael Webster ] + * nemo-file.c: Fix refresh removing existing thumbnails. + * Fix new build warnings. + * i18n: Localize the mimetype definitions. + * debian/control: Add itstool build dependency. + * nemo-icon-container.c: Set a transient parent on the interactive search popup. - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Clement Lefebvre ] + * l10n: Update POT - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Michael Webster ] + * all: Fix some memory leaks + * icon view: Use a fixed vertical spacing in the normal icon view. + * nemo-thumbnails.c: Use the default idle priority for starting the thumbnail thread. + * thumbnails: generate/load thumbnails on visible items only, and drop background loading. - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Clement Lefebvre ] + * CI: Target Mint 20 and LMDE 4 - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + -- Clement Lefebvre Thu, 21 May 2020 11:19:42 +0100 - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen +nemo (4.6.0) ulyana; urgency=medium - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Michael Webster ] + * nemo-window.c: Monitor and react to scale-factor changes. + * nemo-icon-container.c: clear any existing drag info when the icon view's location changes. - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Leigh Scott ] + * nemo-file-operations.c: Copy file and keep timestamps of original file including remotes - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Michael Webster ] + * control: Remove python2 dependencies - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ leigh123linux ] + * nemo-global-preferences: use 'extern' properly - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Michael Webster ] + * meson.build: Don't be confusing when pango 1.44.0 isn't found. - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ worldofpeace ] + * build: use define_variable for typelib directory - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Michael Webster ] + * Fix mistake in --help output. - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Daniel Clarke ] + * Fallback to uri when path is null in title - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Luke Scott ] + * Sort nemo actions menu alphabetically - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ J. Luke Scott [thinkpad] ] + * linter fix for previous - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ sidorsett ] + * Update nemo-view.c - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ JosephMcc ] + * nemo-notebook: Add a minimum width for the tab labels - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Kamil Chojnowski ] + * Add %e action token - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Michael Webster ] + * nemo-global-preferences.c: Fix base-2-full size format display. - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Timothy Arceri ] + * Remove .hidden file code now that gio does if for us - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ NikoKrause ] + * nemo action: use different icons for pin/unpin - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Michael Webster ] + * nemo-tree-sidebar.c: Allow using separate icons for pin and unpin, and use the new xapp icons from the previous commit. - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ JosephMcc ] + * settings: Set the default width of the sidebar to 170 - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Ján Jančár ] + * Add tracker support (#2334) - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Clement Lefebvre ] + * l10n: Update POT + * l10n: Generate files - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + -- Clement Lefebvre Wed, 13 May 2020 14:00:42 +0100 - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen +nemo (4.4.2) tricia; urgency=medium - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ leigh123linux ] + * meson.build: Disable GLib deprecation warnings - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Leigh Scott ] + * file-operations: fix copying from the trash - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Michael Webster ] + * list view: Don't remove the dummy (Loading) entry except during post-loading updates. + * nemo-tree-sidebar.c: Don't free the NemoFile after setting up the context menu for showing, it is owned by the tree model. - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ leigh123linux ] + * Remove tracker - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Leigh Scott ] + * nemo-icon-canvas-item.c: Don't hyphenate long filenames + * eel-editable-label.c: Don't hyphenate long filenames - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Michael Webster ] + * nemo-program-choosing.c: Remove unused variable that was causing a warning during the build. - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Leigh Scott ] + * Use meson for pango-1.44 check - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + -- Clement Lefebvre Thu, 12 Dec 2019 11:43:40 +0000 - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen +nemo (4.4.1) tricia; urgency=medium - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Michael Webster ] + * nemo-desktop-metadata.c: Remove a key when the metadata string is null instead of attempting to set the key to null (which doesn't work for GKeyfiles). + * nemo-window.c: Disconnect thumbnail settings handlers when the window is destroyed. - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + -- Clement Lefebvre Thu, 28 Nov 2019 20:00:39 +0000 - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen +nemo (4.4.0) tricia; urgency=medium - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Michael Webster ] + * nemo-query-editor.c: Don't allow activation when there is no valid search string. + * nemo-window-slot.c: Don't try to set anything on query if it's NULL. + * nemo-main-application.c: when parsing options, don't try to use part of an array that has already been freed, make a copy instead. + * nemo-main-application.c: Fix variable name for consistency and spelling. + * nemo-program-choosing.c: Update how desktop files are launched - launch_uris_as_manager does a better job, and this also replaces a previous patch for a pkexec issue in desktop files, and is a more complete fix. + * preferences: Reveal the default sort direction setting. - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ AO-LocLab ] + * Correction to the French translations (#2228) - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Michael Webster ] + * context menu: Make individual menu item visibility configurable in preferences, and eliminate the simple/complex menu option. + * gsettings: re-add old context menu entry to prevent crashes with old nemo-fileroller verions. - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Clement Lefebvre ] + * l10n: Fix some msgids + * l10n: Update POT + * l10n: Generate files - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + -- Clement Lefebvre Sat, 16 Nov 2019 15:34:24 +0100 - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen +nemo (4.2.2) tina; urgency=medium - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Clement Lefebvre ] + * l10n: Update POT - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Michael Webster ] + * nemo-desktop-link.c: Don't allow an attempt to rename mounts. - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + -- Clement Lefebvre Thu, 25 Jul 2019 10:28:21 +0200 - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen +nemo (4.2.1) tina; urgency=medium - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Clement Lefebvre ] + * l10n: Fix msgid + * l10n: Fix msgids - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ gm10 ] + * Fix nemo_global_preferences_get_size_prefix_preference getting set to the wrong value (#2165) - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Michael Webster ] + * nemo-file-operations.c: Add comment for unused singular translation, make the string obviously unused. + * nemo-view.c: Always show the pin/unpin actions. + * various: Fix a couple leaks + * nemo-list-model.c: When the last child of a node is removed, Handle re-adding a dummy row (or not) in the file removed handler, instead of always adding one, then removing it on parent's subsequent changed call. + * nemo-list-view.c: When triggering a rename using the 'slow double click' trigger, check whether the file is a folder to determine whether to select all or only non-extension text. + * nemo-view.c: Use the stack for running the action visiblity cycle. + * nemo-*-view.c: Update the selection info when a view has finished loading. - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Clement Lefebvre ] + * Toolbar: Don't show thumbnail button by default - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + -- Clement Lefebvre Wed, 10 Jul 2019 12:10:27 +0200 - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen +nemo (4.2.0) tina; urgency=medium - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Michael Webster ] + * nemo-view.c: Don't ignore non-symbolic extension menu icons. + * nemo-icon-view.c: Don't apply the 'ignore metadata' mode to the desktop, this prevents the icon size from loading or saving properly when that setting is active. + * nemo-icon-info: Use different text widths for the desktop than for windowed mode. - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Leigh Scott ] + * Update URL (#2045) - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Michael Webster ] + * nemo-query-editor.c: Ignore leading and trailing whitespace in search query text. + * misc: Fix some memory leaks revealed by valgrind. + * Add keyboard shortcuts page + * nemo-bookmarks-window.c: Fix support for Computer/Bookmarks section separator. + * nemo-bookmarks-window: Remove help button, fix some breakpoint accounting during dnd. + * nemo-view.c: Never have more than one connection to an action's 'activate' signal. + * actions: Monitor gsettings condition changes and trigger menu updates when these or any dbus conditions change. + * application: Add debug flag to command line options, remove environment variable-based verbose mode for actions. + * nemo-action: Cleanup + * nemo-blank-desktop-window.c: Fix initial popup menu failure due to a not-fully-initialized action manager. + * nemo-action.c: Allow discovery of tokens in any order in an action line. + * nemo-action.c: Queue gsettings condition updates (same as dbus updates). This should have been done in 92c58403f12436c65a1c. - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ JosephMcc ] + * Update nemo-style-fallback-mandatory.css - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ devlearner ] + * Add Move to Trash confirmation option - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Michael Webster ] + * nemo-file-operations.c: Remove unused translatable string. - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Max Sistemich ] + * nemo-window-manage-views.c: ignore cache when thumbnails are disabled - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Michael Webster ] + * nemo-window-manage-views.c: add a weak pointer to the window slot's bad cache bar when spawned. + * preferences: Finalize our settings instances using the eel_call_at_shutdown function. This occurs at a point closer to exit, and allows handlers to disconnect cleanly. - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Lars Mueller ] + * Reimplement thumbnailing-per-folder and add inheritance for view type + * A couple of bugfixes - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Michael Webster ] + * nemo-main-application.c: Make sure any command-line geometry option takes precedence over the saved window geometry. - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Clement Lefebvre ] + * nemo-window-slot: Remove trailing spaces + * Navigation: Fix go to parent action for Samba - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Michael Webster ] + * nemo-window-slot.c: Use GString for manipulating samba uris, it makes what's being done to the uri a bit more explicit. + * nemo-window-slot.c: (samba) When navigating up from a host, load network:/// instead of smb:///. + * nemo-icon-container.c: Wait to un-freeze canvas updates until the renaming operation has completed. + * nemo-file.c: Check for NULL when converting the raw file timestamp to a GDateTime. - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ JosephMcc ] + * desktop-prefs: Change to match the new cinnamon settings style - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Michael Webster ] + * nemo-desktop-overlay.glade: Update to match new settings format. (mostly) - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ steve ] + * Nemo desktop entry - ensure caret-color matches text color - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ okaestne ] + * nemo-mime-application-chooser.c: escape file names in Open With tab - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Tcc100 ] + * nemo-view.c: Open Terminal in parent if a file is selected - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Clement Lefebvre ] + * Start implementing exec support + * Optimize nemo_action_get_visibility() - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Michael Webster ] + * nemo-action.c: Support multiple selection and action path for exec condition checks. + * nemo-action.c: Support tokens in exec condition calls. + * sample action: Update to include exec conditions, new correct method to enable debugging. + * Revert "nemo-file-operations.c: Remove unused translatable string." + * Remove some unused code, optimize some frequently-used settings. + * nemo-view.c: Clear a source id at the end of the rename delay callback. + * Remove the context menu toggle (the +/- button) for displaying additional menu items. + * Add a mechanism for pinning a file to the top of a view. + * Improve pin icon. + * pinned emblem: try to improve (again) + * icon view: Use bold text instead of an emblem for pinned files. + * nemo-places-sidebar.c: Workaround incorrectly-sized popup menus when right- clicking on a currently-unselected item. - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Simon Brown ] + * move code after early return statements where possible (#2149) - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Clement Lefebvre ] + * l10n: Update POT + * l10n: Generate additional files - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Clement Masci ] + * Option to open uri in tabs at startup + + [ Clement Lefebvre ] + * l10n: Update POT + + -- Clement Lefebvre Sun, 23 Jun 2019 17:20:47 +0200 + +nemo (4.0.6) tessa; urgency=medium + + [ Clement Lefebvre ] + * Packaging: Depend on cinnamon-l10n + + [ Michael Webster ] + * nemo-program-choosing.c: add a wrapper for simple .desktop files that invoke pkexec. + * nemo-desktop-overlay.c: Don't respond to slider value-changed signals when syncing *from* the view. + * nemo-list-view.c: Always display at the default list view zoom level during a search. + * nemo-icon-view.c: Don't rely on the default icon zoom level for the grid desktop, hardcode to normal instead. + + -- Clement Lefebvre Sat, 15 Dec 2018 14:00:23 +0000 + +nemo (4.0.5) tessa; urgency=medium + + [ Michael Webster ] + * nemo-icon-view.c: Correctly initialize to the default view zoom level when ignore-metadata mode is active. + * per-folder thumbnails: Remove toolbar thumbnail button preference, instead base visibility on the show-image-thumbnails preference. + + -- Clement Lefebvre Tue, 11 Dec 2018 11:26:20 +0000 + +nemo (4.0.4) tessa; urgency=medium + + [ Michael Webster ] + * nemo-window.c: Fix hidden menu alt-key activation. + * nemo-places-sidebar.c: Keep the selected bookmark scrolled into view when a selection is made on a bookmark. + * nemo-list-view.c: Ignore triple-clicks and reset the double-click last_click_time when the current double-click succeeds. + * nemo-extension-config-widget.c: Allow description to be multi-line instead of reverting to a horizontal scroll bar. + * nemo-list-view.c: Don't use fixed-height mode, it does not work well with zoom changes. + + -- Clement Lefebvre Thu, 06 Dec 2018 13:18:32 +0000 + +nemo (4.0.3) tessa; urgency=medium + + [ Michael Webster ] + * nemo-action.c: Don't include previously inserted characters/text in subsequent token matching - skip ahead based on the inserted text length, so we avoid potentially parsing escape codes that are part of a file's uri. + * places and tree sidebars: Listen for action manager reloads, rebuild popup menus when needed. + * places sidebar: Enable actions to work properly even when the item being right-clicked/context-menu'd is not the currently loaded view. + * nemo-tree-sidebar.c: Fix memory leak. + + -- Clement Lefebvre Tue, 27 Nov 2018 17:20:40 +0000 + +nemo (4.0.2) tessa; urgency=medium + + [ Michael Webster ] + * nemo-file-management-properties.c: Don't drop builder object ref until the window is closed, as callbacks to setting changes refer to it still. + + [ itzexor ] + * desktop/extension config: remove incorrect tooltips + + [ Michael Webster ] + * nemo-desktop-overlay.c: Don't use g_clear_pointer to destroy a widget, this causes build warnings in newer glib. + * nemo-properties-window.c: If the icon picker is spawned on a file that has an existing custom icon name or path, display it initially in the picker. + * nemo-window-manage-views.c: When clearing thumbnails for a view refresh, drop the NemoIconInfo cache as well. + + -- Clement Lefebvre Mon, 19 Nov 2018 09:51:30 +0000 + +nemo (4.0.1) tessa; urgency=medium + + [ Michael Webster ] + * nemo-application.c: Check for "nemo" in the current theme, instead of "nemo-window". Remove unintentional additions to nemo-style- application.css which were made in 21a960712bf4d7688. + * nemo-desktop: Simplify view layout preferences, other changes. + * desktop overlay: Use normal window hints instead of hidden. Allow resizing, assign an icon (and use XAppGtkWindow so the icon isn't blurry). Make sure all the action names are not marked as translate. Show the monitor plug name and dimensions when displaying view settings. + + [ Clement Lefebvre ] + * l10n: Update POT + + -- Clement Lefebvre Mon, 12 Nov 2018 15:10:50 +0000 + +nemo (4.0.0) tessa; urgency=medium + + [ Michael Webster ] + * Version bump for dev. + * libnemo-extension: Refactor a bit, replace a lot of boilerplate with macros, simplify doc generation. Documentation needs more work at some point. + * nemo-file.c: Do a better job of figuring out the mimetype for empty files. + * Add creation time (btime) support. + * preferences window: Add toggle for creation date in tooltips. + * nemo-file-info.h: Don't use G_DECLARE_INTERFACE - it doesn't allow us to properly use NemoFile for its vtable - it works but throws a ton of build warnings and isn't safe. + * misc: Clean up build warnings + * icon view: remove some deprecated paths (gtk doesn't return anything useful anymore.) + * nemo-icon-canvas-item.c: Insert some space between the icon and label bounds in compact view. + * nemo-statusbar.c: Remove custom scroll handler. The gtk one works correctly now. + * menus: Respect the gtk-menu-images preference for the primary 'open/ open-with' menu item. + * meson.build: Add option to disable omit-frame-pointers from build (useful for perf profiling.) + * icon container: Generate tooltips for icon items on-demand, instead of when the view loads. + * meson.build: show profiling flag status in config summary. + * nemo-icon-info: Optimize icon lookups by GIcon. + * search: Respect the current state of the 'show hidden files' setting when calculating results. + * nemo-query-editor.c: don't intercept keys when hidden. + * nemo-view.c: Decrease minimum update interval. + * nemo-view: Optimize *_get_selection(), don't create deep copies when not necessary. + * nemo-file: Remove pixbuf cached in NemoFile. + * nemo-list-model.c: Improve accounting for dummy expander row, so it more reliably removes the expander for empty folders. + * nemo-file.c: Cache some heavily used values from date construction, particularly caching of the GTimeZone object for use in GDateTime construction. + * icon view: Remove "tighter layout" option. + * nemo-icon-info: don't implement as a gobject. + * nemo-mime-actions.c: Don't offer the 'Make executable and run' option by default. + * nemo-mime-application-chooser.c: Remove hacks for file-picker button. + * nemo-icon-canvas-item: Remove some unused code for embedded text + * Icon containers: Improve spacing, increase icon sizes. + * nemo-icon-view-container.c: Connect the tooltip signal per container instance, rather than once overall. + * nemo-icon-info.h: Tweak text width a bit for the zoom levels. + * nemo-icon-container.c: Turn on hover prelight by default. This helps label text overlapping adjacent items (during hover) to have a clean background for better legibility. + * emblems: Use cached parent pointers when checking for can't-write emblem condition, instead of looking it up for each file. + * nemo-file.c: Load file-roller mimetype cache upon first demand, instead of at startup. This has a noticeable impact on startup time. + * nemo-list-model.c: Reduce number of icon info lookups when creating icon surfaces for the model. + * preferences: Use the new XApp sidebar switcher, and use an ordinary GtkWindow instead of a GtkDialog to clean up the look. This includes removing the close button as well (we already don't use one in the plugins window.) + * preferences: Add the plugin manager as a preferences page. Refactor to remove unnecessary code and allow the prefs window to open on a particular page. + * preferences: Use togglebuttons instead of checkbuttons for toolbar button switches, and show the action's icon in the button. + * nemo-icon-container: Remove some unused code. + * eel-graphic-effects.c: Lessen the effect eel_create_spotlight_pixbuf. + + [ JosephMcc ] + * prefs: Restyle the visible buttons page a bit + * prefs: Move the custom icons to xapps + + [ Michael Webster ] + * meson_update_icon_cache.py: Print the icon cache folder when running. + * nemo-widget-menu-item.c: Fix allocation warnings. + * nemo-extension-config-widget.c: Improve look of extension list. + * nemo-places-sidebar.c: Fix a few issues with mounting/ejecting - some incorrect _finish functions and some assumptions of error always being set. + * nemo-thumbnails.c: Generate large thumnails to accomodate the larger icon sizes we have now. + * nemo-list-view.c: use the subclass selection changed callback instead of NemoView's directly - this makes sure the cached selection list is up-to-date before triggering view/menu updates. + + [ Germán Franco ] + * Add some keywords to the desktop entry (#1939) + + [ Michael Webster ] + * nemo-window-menus.c: Block split pane view in desktop windows. + * nemo-action.c: g_file_test here should be checking the *dependency* path, not the path to the action file. + + [ Clement Lefebvre ] + * Preferences: Remove separators + + [ Michael Webster ] + * nemo-thumbnails.c: Use GTask. + * nemo-list-view.c: Start using GtkTreeView's fixed height mode. + * meson.build: Remove gthread dependency (no longer used). + * nemo-list-model.c: Check for unreadable folders and remove the expander when one is discovered during the async count job. + * nemo-icon-container.c: Don't recalculate the layout while renaming a file. + * nemo-application.c: Add minimally necessary theme elements to the current theme if they appear to be missing. + + [ Leigh Scott ] + * Fix meson warnings (#1920) + + [ Tom Schuster ] + * Prefer XDS Protocol Type over _NETSCAPE_URL to make DnD work in Firefox. + + [ Lars Mueller ] + * Add option for thumbnails per folder + + [ Soapux ] + * Fix some issues with pkgconfig file + + [ Michael Webster ] + * desktop: Add overlay window for configuring individual monitor views as well as global desktop preferences. + * nemo-icon-dnd.c: Fix warning when initiating a drag from a normal windowed icon view. + * Remove desktop settings action (replaced by 'Customize' fixed entry). + * nemo-desktop-window.c: Fix build warning (unused variable). + * nemo-desktop: Add smaller and larger icon sizes. The smaller is useful for low res monitors and the larger one will be useful for those using physically large 4k monitors (that do not qualify as hidpi). + * nemo-properties-window.c: Use XAppIconChooserDialog to select custom icons. + * Update libxapp dependency for icon chooser. + + [ Clement Lefebvre ] + * l10n: Update POT and additional files + + -- Clement Lefebvre Thu, 01 Nov 2018 13:29:54 +0000 + +nemo (3.8.5) tara; urgency=medium + + [ Michael Webster ] + * eel-gtk-extensions.c: Fix menu popups when a valid event is not provided. + + -- Clement Lefebvre Tue, 17 Jul 2018 09:43:41 +0200 + +nemo (3.8.4) tara; urgency=medium + + [ Michael Webster ] + * nemo-progress-info.c: Emit signals in proper order to prevent an unmatched g_application_hold/release in nemo-progress-ui-handler.c. + * eel-gtk-extensions.c: use gtk_menu_popup_at_pointer instead of plain gtk_menu_popup, which is deprecated (and causes a lot of warnings under wayland. Functionality under x11 is unchanged. + * nemo-file.c: fix a couple pixbuf leaks, invalidate thumbnails internally when a force refresh is commanded. + * various: fix some memory leaks discovered by valgrind. + + -- Clement Lefebvre Thu, 05 Jul 2018 11:39:39 +0200 + +nemo (3.8.3) tara; urgency=medium + + [ Michael Webster ] + * trash: Show the correct icon in the pathbar, and fix activation uri for folders located in the trash. + * icons: Fix pathbar display of recent and network locations. + * Run merge_action_strings (updated icons names) + * nemo-query-editor.c: Ignore modifiers (such as numlock) during the favorites menu popup event. + * nemo-query-editor.c: use get_default_mod_mask for button state check instead of hardcoded mask. + * mounts: Force reload when navigating to a new mount from the sidebar. + * thumbnails: Make debug spam a runtime choice, not buildtime. + + [ NikoKrause ] + * Change polkit policy message to "Files" (#1875) + + -- Clement Lefebvre Fri, 08 Jun 2018 11:54:40 +0100 - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen +nemo (3.8.2) tara; urgency=medium - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Michael Webster ] + * nemo-places-sidebar.c: Fix potential divide by 0 (found in virtualbox, guest additions CD returns a GFileInfo, but the size fields we use for calculating disk full % come back all 0's.) + * nemo-places-sidebar.c: Fix some leaks - GFiles must be unreffed. + * nemo-list-view.c: Fix list view column ordering for LMDE (fixes segfault in Gtk 3.22.11) + * nemo-icon-container.c: chain the button release event up when ending a rubberband selection. This allows the canvas to 'pick' the icon the release is over, and not cause the background context menu to be used (and all items get deselected) if the very next event is a right-click. - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Soapux ] + * Make exempi and libexif dependencies optional (#1849) + * Update style of meson build options (#1850) - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Michael Webster ] + * Disallow bookmarking of search result views. - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ NikoKrause ] + * add symbolic for usb and replace bookmark-not-found (#1852) - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Germán Franco ] + * Fix some compiler warnings (#1851) - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + -- Clement Lefebvre Sun, 06 May 2018 15:31:26 +0100 - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen +nemo (3.8.1) tara; urgency=medium - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Fabio Fantoni ] + * update debian/copyright (#1831) + + [ Eli Schwartz ] + * meson: don't install libnemo-private.a + + [ Clement Lefebvre ] + * l10n: Fix typo + + [ Michael Webster ] + * symbolic control icons: Use icon names rather than gicons. The gicon api does not support inherited icon themes. + + [ NikoKrause ] + * Use symbolic icons in nemo-desktop actions + * add mount archive symbolic, fix bookmark icon + + [ Michael Webster ] + * mime actions: Fix use of gvfs admin backend. + * nemo-view.c: Disallow creation of folders or files in admin:// - it does not properly set file permissions (the same reason copy/paste is not allowed either.) + * nemo-file-utilities.c: Improve symbolic icon logic for mounts, drives and volumes. For mounts and volumes, check for too-generic icons and use the backing GDrive's icon instead. + * nemo-places-sidebar.c: Handle missing file info more gracefully. Some mounted devices (for example, phones,) don't support GFileInfo. + + [ NikoKrause ] + * fix symbolic for desktop action (#1842) + + [ Maximiliano Curia ] + * Revert license tweak done by db6414a (#1843) + + [ Salamandar ] + * Fix build with old meson (#1844) + + -- Clement Lefebvre Mon, 30 Apr 2018 15:23:58 +0100 + +nemo (3.8.0) tara; urgency=medium + + [ Tobias Göbel ] + * also use exec-arg from org.cinnamon.desktop.default-applications.terminal when using "open in terminal" + + [ Michael Webster ] + * nemo-icon-view-grid-container.c: add missing position shift prior snapping a semi-positioned icon. This was causing the free position check to potentially check the wrong grid spot, causing shifting positions. + * nemo-icon-dnd.c: when calculating drop position, use the overall canvas item's y center, rather than just the icon's center. This is makes the final aligned position more closely match the drag actor's apparent position. + * nemo-desktop-manager: scale the window x and y positions, as well as size when retrieving geometry from cinnamon. + * nemo-icon-dnd.c: fix missing semicolon + * nemo-icon-view-grid-container.c: Don't allow the vertical adjustment to calculate out to more than half of the grid snap height, this will cause grid checks to evaluate incorrectly. + * nemo-icon-container: only mark (pseudo)-desktop icons as transient if keep_align is active. This restores reasonable behavior for non-keep-aligned desktops, and prevents icon movement when refreshing and during startup. + + [ Jason Hicks ] + * Fix left pane in dual pane mode reverting to minimum width + * Add g_return_val_if_fail to the beginning of reposition_paned + + [ Bilal Elmoussaoui ] + * Rename Nemo icon from places to nemo (#1687) + + [ Michael Webster ] + * debian/control: remove python3-polib from build deps, no longer needed. + * nemo-window.c: listen for a position change on the split-view paned widget when adding a new pane. When GtkPaned's position property hasn't been explicitly set, it auto-adjusts to keep panes equal-sized. + * nemo-places-sidebar-.c: Get rid of old hack for the sidebar. It was intended originally to make sure enough vertical height was given to the scrolled container children in their various states (collapsed categories.) It does not appear to be necessary any more, and now causes gtk theme issues. + + [ Clement Lefebvre ] + * Add CI configuration + + [ Simon Brown ] + * nemo-directory-async: correct some signed/unsigned warnings (#1698) + * eel-editable-label: remove indentation warning (#1695) + * nemo-list-view: remove indentation warnings (#1697) + * nemo-list-model: silence indentation warning (#1696) + * nemo-bookmarks-window: rename some shadowed variables (#1694) + * nemo-file-operations: rename some shadowed variables causing warnings (#1693) + * nemo-query-editor: resolve shadow variable and signed/unsigned warnings (#1700) + * nemo-script-config-widget: correct some signed/unsigned warnings (#1701) + * nemo-action-manager: remove redundant redeclarations (#1702) + * nemo-cell-renderer-disk: remove redundant redeclaration (#1703) + * nemo-file: fix a couple of signed/unsigned warnings (#1704) + + [ Naman Kanakiya ] + * Add options to preview thumbnails for up to 16GB and 32GB (#1707) + + [ Simon Brown ] + * nemo-icon-info: correct various compiler warnings (#1716) + * nemo-navigation-action: stop compile warnings from switch statements (#1715) + * nemo-window-pane: correct some indentation causing a warning message (#1709) + * remove some redundant redeclarations causing warnings (#1708) + * nemo-view: remove some compile warnings (#1710) + * correct some signed/unsigned compiler warnings (#1711) + * nemo-icon-dnd: add default cases to remove compile warnings (#1712) + * nemo-file-management-properties: rename shadow variable (#1717) + * change some old style function definitions to avoid warnings (#1718) + * nemo-bookmark: remove compile warnings (#1719) + + [ Michael Webster ] + * nemo-places-sidebar.c, nemo-action.c: Replace g_drive_is_media_removable with g_drive_is_removable. + + [ Simon Brown ] + * remove some signed/unsigned compiler warnings (#1720) + * nemo-desktop-metadata correct wrong type of variable passed as parameter (#1721) + * nemo-search-engine-simple: resolve a couple of compile warnings (#1722) + * nemo-job-queue: resolve some compiler warnings (#1741) + * nemo-undo-signal-handlers: resolve a couple of compiler errors (#1740) + * eel-gtk-extensions: resolve signed/unsigned compile warnings (#1739) + * nemo-file-utilities: remove a couple of const compile warnings (#1736) + * nemo-icon-canvas-item: treat switch compiler warnings (#1735) + * nemo-tree-view-drag-dest: Fix some compile warnings (#1734) + * nemo-pathbar: resolve various compile warnings (#1733) + * nemo-query-editor: resolve some const compile warnings (#1732) + * nemo-list-model.c: resolve various compiler warnings (#1731) + * nemo-list-view: resolve some compiler warnings (#1729) + * nemo-file: resolve a number of compiler warnings (#1738) + * nemo-connect-server-dialog resolve various compiler warnings (#1724) + * nemo-window-menus resolve a signed/unsigned warning (#1725) + * nemo-desktop-icon-grip-view Treat switch and const warnings (#1726) + * nemo-extension-config-widget: resolve some signed/unsigned warnings (#1727) + * nemo-icon-view: resolve various compiler warnings (#1728) + * nemo-icon-container -remove some switch warnings (#1723) + * resolve some const compiler warnings (#1742) + * nemo-view: resolve some const warning messages (#1743) + * remove a couple of unused variables causing warnings (#1744) + * nemo-properties-window: resolve a couple of compile warnings (#1745) + * nemo-vfs-file: add default to switch to avoid warning (#1746) + + [ Michael Webster ] + * nemo-window-slot.c: remove padding from extra_location_widgets box. + + [ Simon Brown ] + * nemo-desktop-icon-view: resolve some const warnings (#1757) + * nemo-file-changes-queue: resolve a switch warning (#1756) + * nemo-desktop-link-monitor: resolve a switch warning (#1753) + * nemo-places-sidebar: resolve various compile warnings (#1754) + * nemo-mime-application-chooser: resolve misleading indentation warning (#1749) + * nemo-file-operations: resolve some switch warnings (#1747) + * nemo-tree-sidebar: correct an int to an unsigned (#1752) + * nemo-monitor: resolve some switch compiler warnings (#1751) + * nemo-icon-view-container: resolve a couple of compile warnings (#1758) + * nemo-icon-view-grid-container: resolve a couple of compiler warnings (#1759) + * add some default switch statements to avoid warnings (#1760) + * resolve some signed/unsigned warnings (#1761) + + [ JosephMcc ] + * [gtk3.22] Pathbar style (#1765) + + [ Germán Franco ] + * Use symbolic icons (#1764) + + [ Simon Brown ] + * nemo-window-slow-dnd: resolve a couple of const warnings (#1763) + * nemo-interesting-folder: add additional case to switch to avoid warning (#1762) + * nemo-window: check for an active slot when updating cursor (#1767) + * nemo-properties-window: use utility functions if available (#1768) + * nemo-properties-window: use gdk_pixbuf_scale_simple () (#1766) + * eel-vfs-extensions: update filename extensions (#1769) + + [ JosephMcc ] + * nemo-places-sidebar: Cleanup spacing (#1664) + + [ Félix Piédallu ] + * Add Meson Build System support * Modify Autotools build for icons + * New debian/rules meson-enabled + * Fix sources: use other version macro, fix fn call + + [ Michael Webster ] + * meson: some cleanup, fixes, organizing. + * actions: fully support all system data paths, but respect the install prefix for looking up fixed resources. + * Fix lmde3 build, don't build empty view by default. + + [ Leigh Scott ] + * Make the libExecPath usable + * Fix libexec path + * Fix path + * Remove hardcoded path + + [ Michael Webster ] + * Fix libdir location to match autotools build (usr/lib), but make sure typelib still goes where it belongs. + + [ Clement Lefebvre ] + * Revert "also use exec-arg from org.cinnamon.desktop.default-applications.terminal when using "open in terminal"" + * Fix thumbmails generation + + [ Simon Brown ] + * nemo-file-operations: revert a change that might be backfiring (#1774) + + [ Michael Webster ] + * nemo-view.c: Don't try to update undo menu items in a non-active slot. + + [ Mochamad Arifin ] + * fix open as root error + + [ Michael Webster ] + * debian: Move build dir to debian/build + * nemo-list-view.c: Don't clear the editable on focus-out, this will get done properly when we chain up. We need to propagate the focus-out-event signal, which the callback wasn't doing. + * Don't build/install gtkdocs by default + * oops - gtk_doc option should only affect the reference folder.. + * nemo-icon-dnd.c: Fix segfault when dragging from nemo to nemo-desktop + * search: Use newer GtkEntry method for focusing search box, remove custom code. + * nemo-window-menus.c: Ignore 'go home' shortcut on the desktop. + * nemo-view.c: Allow view display of files to commence even while loading is ongoing, instead of waiting until files are entirely finished loading. + * eel-editable-label.c: Don't queue a redraw on unrealized labels. + * nemo-icon-container.c: Don't perform relayouts on an unrealized container. + * nemo-list-view.c: Remove and re-add columns rather than moving them. This prevents negative allocation warnings during the move calls. + * eel-canvas.c: Don't update the scroll region when clearing the canvas to destroy it. + * query editor: Simplify, remove additional filters, just a simple filename search. + * nemo-window.c: Go back to explicitly setting half the width for the split-pane's position property, rather than counting on it to fall that way naturally. The natural position can be affected by sizing demands of the panes' children. + * search: Add a more convenient way for saving searches. + * nemo-file.c: Avoid recursion when updating symbolic links that point to each other. See inline notes. + * nemo-file.c: Small fix and optimization for 40dc6ae1ed9d24b0c - return the full link_file list as before if the target file is not a link, and only check if the file is a link one time. + * libnemo-extension: Remove custom enum code for NemoOperationResult - it's not necessary in modern builds due to introspection. + * info provider extensions: Improvements to info provider extension operations. + * nemo-query-editor.c: Add mnemonic to popup search keys for quick selection. + * nemo-query-editor.c: Inhibit faves popup if the list is empty, filter out typical keyboard modifiers during clicks on the favorite icon. + * nemo-desktop-application.c: Allow nemo-desktop to provide coverage for the org.freedesktop.FileManager1 dbus interface. + * nemo-icon-view.c: Be more selective when updating the scroll region. + * refresh/reload: When reacting to a user-initiated view refresh, regenerate any thumbnails as well. + + [ JosephMcc ] + * nemo-properties-window: Stop using stock buttons (#1800) + * prefs-window: Don't use stock buttons (#1801) + * menus: Convert most icons to symbolic versions (#1798) + + [ Michael Webster ] + * nemo-list-view.c: Re-apply right-click column handler when reloading column settings (see inline notes, this only affects certain Gtk versions.) + * nemo-view.c: Add label to directory menu Cut and Copy (needed now that we are no longer using GTK_STOCK_* + * nemo-view.c: make mnemonics for Cut, Copy, Paste match Gtk's. + + [ Mike Tzou ] + * Fix function argument order (#1791) + + [ Michael Webster ] + * Check for realized instead of mapped/visible to prevent needless resize calculations (and associated warnings.) + * nemo-file-management-properties: Fix 2px border width surrounding content (see comments.) + * Use symbolic icons for the places sidebar + * places-sidebar.c: Use symbolic for eject button + * More symbolic conversion + * nemo-trash-monitor.c: Add a new path for the symbolic icon. Our file views need a non-symbolic icon. + * More symbolic fixes, cleanup in pathbar. + * Missed a few trash icons... + * extensions: Show symbolic icons properly, hide the icon if it's not a symbolic name. + * Add rubber-band selection to the list view. + * nemo-places-sidebar.c: remove vertical padding for headers. This is unnecessary, and looks bad when a theme has increased spacing between all rows. + * go menu, bookmarks menu: respect the menu-images setting. + * nemo-trash-monitor.c: Fix copy-paste typo. + * nemo-icon-info.c: Stop using gtk_icon_theme_has_icon() - it returns false negative when attempting to check for icons that have been added using gtk_icon_theme_append_search_path(). This entire branch of functionality is considered 'legacy' and not recommended, but for dropbox emblems, where more than one package may attempt to provide them, putting them in the (recommended) hicolor icon folder won't work. + + [ NikoKrause ] + * Use media-mount icon for right-click action (#1813) + * Eject/unmount icon & new folder icon (#1811) + + [ Fabio Fantoni ] + * debian: wrap-and-sort -bst + * update debian/copyright + * improve debian/control + * Bump debhelper build-dep and compat to 10 + * debian: try to restore multiarch with meson without debhelper 11 + * add debian/not-installed + * Force UTF8 to workaround build error + * debian: add missed part of multiarch restore + * debian: add a nemo lintian override + * debian/rules: list missed files in dh_install + * circleci: remove mint18 job + * debian/control: remove very old breaks + + [ Clement Lefebvre ] + * l10n: Update POT file and generate files + + -- Clement Lefebvre Fri, 20 Apr 2018 12:17:46 +0100 + +nemo (3.6.5) sylvia; urgency=medium + + [ Michael Webster ] + * nemo-desktop-manager.c: Add null checks for GErrors - it seems as though g_dbus calls are not guaranteed to fill the error slot (which seems like a Gio bug to me, but there's no reason to crash here regardless because of a null error.) + * nemo-window - Restore inadvertantly removed menu actions for view type selection (and their corresponding shortcuts,) using methods and practices more consistent with currently maintained code. + * nemo-window-menus.c: Add a couple guards for the previous commit's view actions for when the window is a NemoDesktopWindow + + -- Clement Lefebvre Mon, 18 Dec 2017 12:37:52 +0000 + +nemo (3.6.4) sylvia; urgency=medium + + [ Michael Webster ] + * nemo-window: Restore initial syncing of view buttons. This was inadvertantly removed in d23762640b48d8 while getting rid of some actual unused code related to an old way view types used to be selected. + + -- Clement Lefebvre Mon, 20 Nov 2017 10:10:17 +0000 + +nemo (3.6.3) sylvia; urgency=medium + + [ Michael Webster ] + * nemo-desktop-manager.c: Account for scale factor when using cinnamon- supplied monitor info. Cinnamon runs at a scale factor of 1 always, and things are scaled internally. + * dnd: Make sure to clear any source_fs pointers after dnd operations. + + -- Clement Lefebvre Fri, 27 Oct 2017 11:03:15 +0100 + +nemo (3.6.2) sylvia; urgency=medium + + [ Leigh Scott ] + * add xapps version to configure.ac (#1626) + + -- Clement Lefebvre Tue, 24 Oct 2017 12:25:45 +0100 + +nemo (3.6.1) sylvia; urgency=medium + + [ Ingo Lafrenz ] + * send by mail nemo action (#1625) + + [ Clement Lefebvre ] + * Fix permissions on files/usr/share/nemo/actions/send-by-mail.py + + -- Clement Lefebvre Tue, 24 Oct 2017 10:58:34 +0100 + +nemo (3.6.0) sylvia; urgency=medium + + [ brownsr ] + * eel_g_list_str_copy: replace contents with g_list_copy_deep May improve performance somewhat for very high volume file copies though I have no way to test with the volumes reported here https://bugs.launchpad.net/linuxmint/+bug/1663186 + + [ Michael Webster ] + * nemo-main-application.c: try to start as a service first, then a client. This allows nemo to be started via dbus (which requires it be run with the G_APPLICATION_IS_SERVICE flag) as well as being able to connect to an already-running instance as we can now. + * nemo-main-application.c: Re-add "no-desktop" command line option. We don't use it anymore, but some programs apparently hardcode nemo with this flag rather than use xdg-open or mimetype activation. This allows them to continue working as before. + * nemo-view.c: Fix "follow link to original file" action when the link is on the desktop. In these cases, we need to launch a folder handler and pass it the full file name (which for most file managers should open the folder and select the file.) + * nemo-query-editor.c: Use a copy of the query text to check if the query is empty (or all spaces.) The function g_strstrip modifies the string in-place, and passing the modified query text causes issues when typing multiple words (separated by spaces) in the query. - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ leigh123linux ] + * Configure: disable tracker for default - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Michael Webster ] + * actions: Escape single and double quotes that are part of a file path. Add "Terminal" key in the nemo_action file, to execute the Exec line in a terminal window. + * actions: Update sample action for Terminal keyword, update nemo_action sourceview files. + * actions: Only use nemo_launch_application_from_command_array() when Terminal=true. This ensures compatibility with existing actions, which will continue to use g_spawn_async(). + * nemo-desktop-icon-grid-view.c: Store layout timestamps any time the layout is changed by a user action. + * Desktop: Remove metadata for pseudo-files on the desktop such as Computer and Home when they're removed via preferences. This simulates their deletion with respect to how metadata timestamps are tracked and validated. + * nemo-icon-view-grid-container.c: mark the sort as dirty any time a file is added or removed (this determines whether and when the sort direction indicator is shown in the context menu when auto-arrange is not active. + * nemo-icon-info.h: Use standard icon sizes for the desktop. - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ brownsr ] + * nemo-action.c: fixup a few compiler warnings + * nemo-icon-private.h: avoid memory padding save a little memory use by rearranging the fields to avoid memory padding in structures + * eel-editable-label.h: Avoid memory padding move fields in a structure to avoid memory padding made padding explicit to avoid warning messages if the padding compiler warnings are on - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Michael Webster ] + * nemo-file-undo-operations.c: Use GQueue instead of GList for our undo file pair lists. + * nemo-file-operations.c: use g_remove for native (path-reachable) files. Allowing the normal g_file_delete involves gvfs whether the file is native or not. + * nemo.desktop: Remove DBusActivatable line - we don't actually support it yet, it was an unnecessary change in ad5fcfc747466715d. This ends up just causing issues with getting nemo to launch in more up-to-date distributions. + * nemo-icon-container.c: Always treat desktop pseudo-files as semi-placed icons - that is, they can have their positions stored, then restored later, but their position can be adjusted upon placement if their previously stored position is now occupied. + * nemo-progress-ui-handler.c: Use XAppGtkWindow for the progress window, so we can pass progress info to Cinnamon. - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Jeremy Bicha ] + * Add translatable files to POTFILES.in (#1584) - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Michael Webster ] + * nemo-desktop-manager: Refactor and expand to integrate better with cinnamon. + * plugin manager: allow launching of an extension's config program from the plugin window, rather than having it in the main menu. + * desktop: Handle blank desktop windows properly during monitor change events. + * nemo-desktop-manager.c: Don't just try to resize existing desktops if the number of monitors has changed. In this case, do a full re-layout. + * nemo-progress-ui-handler.c: Don't update the status icon if it's not being shown. + * nemo-file-operations.c: Reduce progress ui update frequency during file operations. - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Leigh Scott ] + * update man page for nemo (#1600) - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Alexei Sorokin ] + * Fix some warnings in libnemo-private (#1482) - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Michael Webster ] + * nemo-desktop-manager.c: Don't run on_run_state_changed() during the init phase when it's a fallback session as it can cause a nasty recursion problem resulting in a crash. + * nemo-directory-async.c: hold the directory alive for the duration of an extension provider job, to ensure clean termination to the job when async info providers are used. + * dbus services: normalize file names. + * Remove some dead code. + * desktop: Don't show the "Show hidden files" menu item. We never show hidden files on the desktop, so having this is misleading. - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ alexnch ] + * Add .rar and .7z to archive mounting action (#1621) - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ John Callerame ] + * When activating files on the desktop (only), deselect them after activating them (#1608) - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Ján Jančár ] + * nemo-toolbar.c: Add option to hide elevated privileges warning. (#1610) - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Clement Lefebvre ] + * Rename show-superuser-toolbar into show-root-warning + + [ Björn Esser ] + * file: Let renames work on Google Drive Renaming an item on Google Drive does not change the actual GVfs path because the path is made up of document-ids, which do not change. A rename operation only affects the title of the entry. In GIO terms, only the standard::display-name changes, but the standard::name remains the same. + * file, file-undo-operations: Let renames on Google Drive be undone We really should be using standard::display-name when renaming files - g_file_get_basename is simply not the right thing to use. Moreover, in case of Google Drive, the URI might not change with the display name and we can not get the old display name from the old GFile. + * debian: Set version for min. needed libglib2 + + [ Fabio Fantoni ] + * update debian/copyright + * debian: remove unneeded postrm + + [ Clement Lefebvre ] + * l10n: Generate additional files + * l10n: Update POT file + + -- Clement Lefebvre Tue, 24 Oct 2017 10:44:41 +0100 + +nemo (3.4.6) sonya; urgency=medium + + [ Michael Webster ] + * nemo-icon-view-grid-container.c: Reset lazy flag when the icon position is stored in auto-layout mode. + * nemo-file.c: Don't check for valid thumbnails if thumbnailing is disabled. + * nemo-action.c: Use non-blocking checks for a directory. + * css: Treat NemoBlankDesktopWindow the same as NemoDesktopWindow with regards to themes, add a couple fixes to our app css to prevent background issues with certain themes (Blackmate, Ambiance) + * Add github issue template + * move-to/copy-to dialogs - allow remote locations in the sidebar. + + -- Clement Lefebvre Thu, 06 Jul 2017 11:21:28 +0200 + +nemo (3.4.5) sonya; urgency=medium + + [ Michael Webster ] + * search (ctrl-f): Don't search for an empty string. If the user wants to search for every file, they can use the wildcard (*). + * nemo-application: Only check/create the config dir at startup for nemo, and have nemo-desktop check both config and Desktop directories. + * nemo-window-menus.c: Fix control-n (new window) action callback when used from the desktop process - it should launch the preferred file manager instead of attempting to spawn a window itself. + * configure.ac: suppress deprecated warnings + * Add --enable-silent-rules to debian/rules, quiet C90 warnings. + + [ Clement Lefebvre ] + * l10n: Generate desktop files + + -- Clement Lefebvre Mon, 26 Jun 2017 12:14:28 +0200 + +nemo (3.4.4) sonya; urgency=medium + + [ Michael Webster ] + * nemo-icon-view-grid-container.c: skip default placement if we're in auto-layout mode. We get false lazy flags on new icons since the original desktop did not use auto-layout. We need to handle this because we both store layout timestamps and provide auto-layout. + * nemo-window-slot.c: Initialize cache_bar to NULL, this is checked for in nemo-window-manage-views (nemo_window_slot_check_bad_cache_bar) + + -- Clement Lefebvre Thu, 22 Jun 2017 15:00:12 +0200 + +nemo (3.4.3) sonya; urgency=medium - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ leigh123linux ] + * Remove decoration from desktop window (shows in weston) - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Michael Webster ] + * Desktop: Relax control of positioning for placed icons. At startup, they are loaded and set to their stored position, but not force-aligned, allowing the layout to ignore fluctuations in the work area during system startup. Fix some logic around 'orphan' icons as well to prevent issues with icons not being shown due to being falsely classified as orphans. + * icon container: Be more specific about when to flag icons coming from a different monitor due to a desktop configuration change. (see previous commit) + * metadata: Add back cached position values in NemoFile. Be sure to clear the timestamp metadata on files being moved/copied to or from the desktop. This ensures the lazy flag operates correctly. With the desktop becoming a separate process, transfers that include position info need to be handled slightly differently, as the old way of just setting metadata and reacting to it from a new container won't work - the file gets debuted in the other process sooner than (or not reliably after, at least) the metadata is written, resulting in inconsistent positioning. + * Add gvfs-info action for inspecting file metadata (for purposes of debugging) - right-click a file and it will send gvfs-info output on that file to stdout. + * nemo-icon-view-grid-container.c: improve updates after thumbnail generation. - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + -- Clement Lefebvre Tue, 20 Jun 2017 15:43:53 +0200 - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen +nemo (3.4.2) sonya; urgency=medium - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Michael Webster ] + * nemo-icon-container.c: don't force a native window for the desktop - fixes prelight hover sticking on the desktop when leaving an icon to pass into another window. + * nemo-icon-view-grid-container: don't show bracketed empty spots, it's tacky. + * nemo-main.c: remove backend requirement (only needed for the desktop) + * icon view/desktop: Fix hidpi scaling on the desktop. This also fixes compact view mode in hidpi, which was semi-broken since hidpi was implemented, and very broken since the desktop grid was added. + * nemo-icon-dnd.c: depopulate the dnd grid of the selected icons so insertion marks aren't drawn in the icon's source position. + * nemo-window-manager-views.c: simple close the window if the current view has no backward history, instead of jumping home or to the parent folder. The most common time for this to occur is a folder opened from the desktop - if you delete that folder, the window showing it then shows the desktop in a folder, which doesn't make much sense. + * nemo-window-manage-views.c: invalidate file info before reloading the view, not after. This fixes mount permissions being incorrect. + * dnd: Restore capability of 'moving' files from and to the desktop via drag and drop. + * Fetch file-roller mimetype info from a GDesktopAppInfo at startup, instead of a static (and woefully out of date) list. + * nemo-file.c: followup to previous commit, retain the old mimetype list for fileroller in the event that, for some reason, there is no .desktop file installed for file-roller. Also added application/x-xz-compressed-tar to the static list. + * nemo-file.c: add EFAULT as a valid exception to the access_ok function. This can throw when the file has just been moved or is in the midst of being moved and the internal async updates have not completed yet (usually during a fairly large transfer.) As a result, the icon cache problem bar appears needlessly. + * desktop: size thumbnails more appropriately - scale them to our icon size in height only, and allow the width to increase as much as our max text width while maintaining the image aspect ratio. + * desktop thumbnails: Pad the thumbnail height when it ends up smaller than the desired height due to aspect ratio and width restrictions. This ensures a nice alignment when keep-aligned is active. + * nemo-icon-view-grid-container.c: highlight the current dnd rectangle in debug mode. + * desktop grid: use the layout size for determining constraint to the canvas bounds instead of max size - this prevents files with very long names from being pushed out of the grid alignment. + * misc: Clean up minor leaks, other issues. + * desktop grid: include additional text (Icon Captions) in calculations for the ellipsis limit, and update the desktop when these change - instead of forcing the user to reload or restart to see changes. + * cleanup some warnings from recent commits. + * nemo-style-application: Remove drop shadow from the selection and pre-light states of desktop icons. The shadows are drawn outside the calculated bounds of these items, and are problematic to account for without doing frequent full screen repaints (something I want to avoid) + * DnD: Draw the highlight box around the entire text when an item is prelit and highlighted as a drop target. The highlight box was only drawing as if to surround only the normal, ellipsized text, rather than the full, unellipsized height. + * Set a default font for the desktop - this is overridden by distros in most cases, but having something is better than leaving it blank - you could set it to "Unicorn poo 15" and it would still show the labels, even though you lack that actual font. + * Add a default to our theme - using the default font was always supposed to be a fallback option, however the check in various places for whether the gsettings key is empty or not is incorrect - g_settings_get_string will always return a string, never NULL, so we need to check if the string is not empty instead. (I left the null check also as a safety - it's possible during startup that this may be null prior to the setting being first fetched. + * desktop: Fix missing icons when 'show orphans' is disabled (we were incorrectly interpreting a monitor number of -1 (which means, no previous location) and a missing monitor. + * Fix visual sort function - sort function was incorrect for the new grid, and the new order was never set after a sort when running the alignment routine. - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ JosephMcc ] + * nemo-places-sidebar: Use folder-recents for the recent icon (#1502) - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Michael Webster ] + * grid view: Don't re-enable auto-arrange when changing zoom levels. + * desktop dnd - Use more sensible behavior when keep-aligned is active. + * Fix dnd for netscape url drops. + * nemo-file-operations: limit metadata setting to desktop location only (In a previous commit it was re-enabled, but has the potential to cause traffic jams in dbus during a long copy/move operation. + * nemo-mime-actions.c: Don't fail for non-local links (like dragged website links) - the check here is for the foreign url, not the local desktop file (link), so it will never succeed, and is not necessary. + * DnD: Fix some positioning issues with auto-align local moves, and non-local icon moves (like nemo->nemo-desktop transfers) + * nemo-icon-view-grid-container.c: keep the icon list synced with the visual order of the desktop. + * dnd: split out some container-specific code that had bled over a bit + * Fix application css - font was breaking Gtk 3.22 and is not needed. Change prelight to hover to fix deprecation warnings. - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ DaveBlack ] + * Modify desktop icon order (#1501) - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Michael Webster ] + * nemo-file-operations.c: store the desktop location during a duplicate job, to fix DnD duplicate positioning on the desktop. - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + -- Clement Lefebvre Tue, 23 May 2017 15:54:04 +0100 - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen +nemo (3.4.1) sonya; urgency=medium + + * Revert "split executables into separate packages." + + -- Clement Lefebvre Fri, 05 May 2017 17:24:21 +0100 + +nemo (3.4.0) sonya; urgency=medium + + [ Daniel Schürmann ] + * Nemo-Icon-View: Fix missing cast warning + * restore prototype lost in c5a513468ee8c3497f0673e3ca019ccd3f409f8b + * Add missing include + + [ Timothy Sharitt ] + * Fix quirks with tabs and search widgets + + [ leigh123linux ] + * Don't reload while a reload is ongoing + + [ Stefan-Olt ] + * wildcard search for search-engine-simple + + [ Daniel Schürmann ] + * Remove double definition + + [ JosephMcc ] + * Fix a crash when attempting to delete an empty selection on the desktop + + [ dg1727 ] + * Updated pkexec support + + [ JosephMcc ] + * Fix search never resolving + + [ Ulrik Sverdrup ] + * nemo-dbus-manager.c: Add MoveURIs method + + [ William Jon McCann ] + * Improve date display + * Use 24 hour date format when requested + + [ Frédéric Péters ] + * Translate date formats + + [ Carlos Soriano ] + * nautilus-file: implement smarter dates + * nautilus-list-view: add a modified column with time + * nautilus-file: Clarify translators comments + * nautilus-file: fix memory leak + * nautilus-file: fix code style + * nautilus-file: use const for the date format + + [ Khaled Hosny ] + * Mark time format with xgettext:no-c-format + + [ Carlos Soriano ] + * file: fix wrong date calculation + * file: fix previous commit + * file: use _() directly for date formatting + + [ Ernestas Kulik ] + * file: fix date string day difference calculation + + [ Daniel Schürmann ] + * Use long day and month names if space allows - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ leigh123linux ] + * Make libselinux dependency controllable by configure switch + * raise tracker version + * autogen.sh: don't run aclocal - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Daniel Schürmann ] + * location-bar: use a GFile in location-changed signal - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Clement Lefebvre ] + * l10n: Generate desktop file via generate_aditional_file + * Add Cinnamon panel shortcuts (trash, computer, etc.) to the launcher - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ leigh123linux ] + * Disable selinux for Debian rules - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Daniel Schürmann ] + * Fix compiler warnings in eel folder + * nemo-desktop-window: cleanup delete-event handling + * nemo-blank-desktop-window: cleanup delete-event handling + * window: make NemoWindow a GtkApplicationWindow - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ itzexor ] + * nemo-file-operations.c: use only template filename for new files - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Denis Golubev ] + * nemo-navigation-action.c: Add new_tab_action - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Michael Webster ] + * Fix merge fail in previous commit. + * configure.ac: Remove CFLAGS line - the optimization is dangerous, and the fatal warnings for unused stuff was just annoying when trying to refactor - warnings are enough. + * Use GTimer for tracking startup speed, and also use one to track view loads. + * nemo-view.c: Add idle timer for benchmarking. + * Split off desktop handling into new process + * Update .gitignore + * Split off old icon container into the existing subclass NemoIconViewContainer and set up a new subclass - NemoIconViewGridContainer to match with a new NemoDesktopIconGridView class. The old style is accessible via the org.nemo.desktop 'use-desktop-grid' setting. + * fix autostart file name so cinnamon session doesn't fail. + * split executables into separate packages. + * Remove a bunch of comments, fix auto-layout not sticking. + * nemo-icon-container: Move debug drawing to the grid container subclass. Trigger it using NEMO_DEBUG=Desktop when running nemo-desktop. + * Implement horizontal layout. + * General fixes, icons, metadata issues between monitors. Provide per-monitor metadata for desktop containers. + * Improve DND during keep-aligned, allow for insertion of items. Implement zoom scaling and allow adjustment. + * Improve highlighting of hovered items + * Fix desktop folder launching - xdg-open was never intended to be the final answer. + * Fix ellipses change listening - the is_desktop flag was being set too late in the view construction process to connect to the correct gsettings key. + * Fix regression causing metadata to be inconsistent in nemo client window when navigating to and away from the Desktop folder + * Add some gsettings listeners for grid stuff + * Fix dnd between monitors - clamp grid values, and ensure we have a grid on the target monitor. + * Fix zoom switching, dnd placement, snapping + * nemo-desktop-utils.c: Improve how we store the monitor number for a desktop window. + * Use black instead of theme color for pre-light label highlighting + * nemo-icon-canvas-item.c: extend redraw area slightly for canvas items. This ensures any small shadow we have is cleaned up after an item is de-selected. + * nemo-desktop-icon-grid-view.c: Don't trigger a real update while updating menus. + * Disable zoom for the desktop window (allow it only via context menu) + * nemo-desktop-application: cleanup some commented lines - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ leigh123linux ] + * fix desktop file error (#1477) - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Denis Golubev ] + * nemo-navigation-action.c: Extend, Fix Middle-Click (#1478) - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Clement Lefebvre ] + * l10n: Update POT file + * l10n: Generate additional files - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + -- Clement Lefebvre Thu, 04 May 2017 13:39:55 +0100 - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen +nemo (3.2.2) serena; urgency=medium - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + * l10n: Generate additional files - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + -- Clement Lefebvre Mon, 12 Dec 2016 14:25:13 +0000 - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen +nemo (3.2.1) serena; urgency=medium - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Tomasz Sterna ] + * Add missing "Desktop" DEBUG flag - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ leigh123linux ] + * Add space to Name[en_GB] + * file-operations: don't recurse for trash operations - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Clement Lefebvre ] + * l10n: Update POT file - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ leigh123linux ] + * Force X11 backend - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Michael Webster ] + * remove screen metadata (we only ever have one screen) + * nemo-file-operations.c: Don't update position metadata on most file operations - it's costly, and can cause lockups. - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + -- Clement Lefebvre Sat, 10 Dec 2016 12:19:48 +0000 - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen +nemo (3.2.0) serena; urgency=medium - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ leigh123linux ] + * fix GCC pointer signedness warnings - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ raveit65 ] + * add .view style class on icon view scrolled window - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ itzexor ] + * window: remove custom get_preferred_width/height implementation We already take care of the default size when we create the window, and these only break assumptions of the default GtkWindow's handlers. + * pathbar: avoid gtk+ warnings + * pathbar: remove hardcoded width for sliders - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Maximiliano Curia ] + * Close open_as_root child on child exit - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Michael Webster ] + * nemo-context-menu-menu-item.c: use correct grammar in the context menu toggle. - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ leigh123linux ] + * Fix GTK 3.21.3 desktop redraw issue (#1231) - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Maximiliano Curia ] + * Migrate away from gnome-common deprecated vars and macros - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ brownsr ] + * replace deprecated gtk_icon_info_free with g_object_unref + * remove deprecated and no longer necessary g_type_init - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ itzexor ] + * file-operations: reduce the time for reliable transfer rate + * remove "Show text in icon" preference - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Michael Webster ] + * nemo-view.c: unescape uris being passed to file-roller during drag-and-drop (replaces %20 with spaces). - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Chris Allan ] + * Expand grid width to canvas + * Minimum of one column - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ xenopeek ] + * Update nemo-file.c - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ leigh123linux ] + * trash-monitor: change trash monitoring process - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ lukefromdc ] + * Fix --geometry option when Nemo is already running - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Maximiliano Curia ] + * Keep warnings as warnings when building the packages - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Clement Lefebvre ] + * Clean up previous PR - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ JosephMcc ] + * nemo-file-management-properties: Fix an accidental removal - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ leigh123linux ] + * Add missing build dep - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Clement Lefebvre ] + * Fixed build - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Maximiliano Curia ] + * Make AX_ macros optional - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ itzexor ] + * nemo-window.c: save sidebar width 100ms after last change + * nemo-application.c: fix maximized window state preservation - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Daniel Schürmann ] + * Remove conditional ellipsis code for GTK < 3.12.0 builds. - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ darealshinji ] + * Add link to Launchpad translations to README - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ claudetete ] + * bind double left click on blank to go to parent folder + * add option to manage double cick in blank area (off by default) because it changes previous behavior - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Clement Lefebvre ] + * Rephrased feature introduced in previous commit and regenerated pot file - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Michael Webster ] + * nemo-file.c: Only append .desktop to desktop files when they actually need it. Trusted desktop files (ones that typically get made and placed on the desktop) don't show their extension, so when you try to rename them, the new name needs .desktop appended to it. + * nemo-file-management-properties.glade: improve the description of the click-to-rename feature. + * nemo-thumbnails.c: Don't set a stack size - see: + * nemo-application.c: Look for already-existing desktop windows before attempting to manage the desktop. + * desktop: Don't rebuild the desktop any time _NET_WORKAREA changes - this can happen fairly frequently in some situations, causing crashes due to the asynchronous nature of nemo's directory loading back-end. + * eel-gnome-extensions.c: Use preferred terminal emulator when using "Run in terminal" to execute something. This more or less reverts a75c26d50bba3fec1dc242b9efc03f37a06e7093 but simplifies it somewhat, adapting the function that is used in GDesktopAppInfo and adding a check for our user setting. + * nemo-desktop-manager.c: run layout_changed when the widget scale factor changes. This (hopefully) handles regressions with hidpi support due to https://github.com/linuxmint/nemo/commit/c5a513468ee8c3497f0673e3ca019ccd3f409f8b. - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ leigh123linux ] + * file-undo-operations: change trashed files matching condition - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Michael Webster ] + * icon view: Use the correct container size for applying margins to the icon container. Also, make sure icon data is fully loaded before positioning items - desktop pseudo-items don't necessarily have the correct bounding boxes defined by the time layout occurs. Load this data just before trying to position the icon, rather than just after. + * nemo-desktop-utils: Adjustments for Gtk 3.22 changes in monitor management. gdk_screen_get_monitor_workarea() no longer returns a valid workarea, it simply returns the geometry - see commit: + * nemo-desktop-manager.c: reload the desktop in an idle callback + * nemo-application.c: Add a whitelist for ignoring existing desktop handlers by WM_CLASS match. By default 'conky' is in the list - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Clement Lefebvre ] + * Generate additional files - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + -- Clement Lefebvre Mon, 07 Nov 2016 13:19:34 +0000 - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen +nemo (3.0.6) sarah; urgency=medium - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Clement Lefebvre ] + * Generate action files manually (as opposed to during the build) - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Michael Webster ] + * nemo-desktop-utils.c: return 0 for monitor index if a widget isn't realized (this can happen during configuration changes and during session startup). + * nemo-desktop-icon-view.c: disconnect from the same gsettings instance we connected to. + * nemo-desktop-manager, nemo-application: Fix some cleanup issues - disconnect from the correct objects when disposing of the desktop manager, and destroy the desktop manager earlier in nemo's destruction so there are no issues freeing the DesktopInfos. - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ leigh123linux ] + * notebook: removed unused ifdef code - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Michael Webster ] + * nemo-list-view.c: detach the column header menu from metadata when setting it up. Use the actual view's layout instead. When reacting to visible columns being changed, simplify things by iterating through the treeview column to build a new metadata list. + * nemo-list-view.c: Don't show trash-specific columns in the header menu. + * list view: Make changes to the search results view persistent. gvfs can't save metadata for the search 'folder' so we store it ourselves. + * eel-canvas.c: Fix touchscreen selection in icon views. - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + -- Clement Lefebvre Thu, 23 Jun 2016 13:32:32 +0100 - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen +nemo (3.0.5) sarah; urgency=medium - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ leigh123linux ] + * use g_hash_table_remove_all and get rid of some callbacks - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ JosephMcc ] + * Partially revert c082595 by limiting it to only affecting desktop items - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + -- Clement Lefebvre Tue, 31 May 2016 13:20:18 +0100 - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen +nemo (3.0.4) sarah; urgency=medium - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ raveit65 ] + * add standard settings for EelEditableLabel - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Clement Lefebvre ] + * Build-depend on cinnamon-l10n - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + -- Clement Lefebvre Tue, 31 May 2016 11:31:11 +0100 - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen +nemo (3.0.3) sarah; urgency=medium - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Clement Lefebvre ] + * Updated pot file - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Michael Webster ] + * nemo-places-sidebar.c: When gtk overlay scrolling is in effect, add some padding right of the sidebar eject icons, otherwise they are covered by the scrollbar when it pops up. - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + -- Clement Lefebvre Mon, 23 May 2016 12:52:58 +0100 - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen +nemo (3.0.2) sarah; urgency=medium - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Clement Lefebvre ] + * Fixed build - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Michael Webster ] + * debian/control: depend on python3-gi + * fix action i18n scripts to write utf-8 - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ itzexor ] + * nemo-icon-view: include nemo-application.h needed in nemo_icon_view_add_file for: nemo_application_set_cache_flag nemo_application_get_singleton + * nemo-pathbar: use gint for slider_width instead of gint16 silences an incorrect pointer type warning. - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Michael Webster ] + * nemo-list-view.c: don't explicitly unref columns anymore - they'll get handled when the tree view is destroyed. + * nemo-icon-container.c: Re-enable desktop type-to-select feature. Also make a couple fixes on the positioning logic for this little popup. Where possible, it will avoid overlapping panels. + * desktop windows: maximize instead of relying on gdk for monitor workarea - it's inaccurate for anything but the primary monitor. + * nemo-icon-container.c: special case desktop windows for search popup - now that we can rely on the window being the correct size to account for panels, we can reliably position this popup off of those panels. - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ JosephMcc ] + * prefs: Don't try to hardcode a minimum size for the preferences dialog - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Michael Webster ] + * Use g_themed_icon_new instead of g_themed_icon_new_with_default_fallbacks. + * nemo-window.c: As of 9cb9c48f59baa we maximize the desktop containers to make sure they use the correct work area as set by muffin. This started causing the window state 'maximized' key to be set to true when opening a new nemo window. This corrects that issue, using disable_chrome as an indicator to ignore the window - only the desktop windows set this true. + * nemo-window.c: fix formatting - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + -- Clement Lefebvre Fri, 20 May 2016 12:26:51 +0100 - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen +nemo (3.0.1) sarah; urgency=medium - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ JosephMcc ] + * pathbar: Always show the pathbar up and down arrows. Dynamically adding and removing these buttons was causing the visual style of buttons in the pathbar to break - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Igor ] + * Fix segfault on changing the number of colums when in list view + * Fix uninitialized is_desktop flag - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Michal Cyprian ] + * Port python scripts to Python 3 - /data/extract_action_strings - /data/merge_action_strings - /files/usr/share/nemo/actions/myaction.py - all Python 2-3 compatible - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Michael Webster ] + * nemo-list-view.c: Fix initial column sizing - expand the filename column only to fill available space. Other columns will start with their natural size. + * update m4 files - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ itzexor ] + * nemo-view: switch to nemo_get_file_by_uri so we don't get a NULL pointer if the file isn't already loaded internally. - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Michael Webster ] + * Add desktop settings action + * nemo-places-sidebar.c: ensure a minimum useable sidebar width when resizing windows or panes. - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Igor ] + * Set minimum size for File Management Preferences window + * Increase default width of File Management Preferences window - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Michael Webster ] + * nemo-list-view.c: Clean up column changes - only add columns and connect to them once, remove some unnecessary checks. + * nemo-list-view.c: give the name column a default width that the column-double-click autosize action can use. Otherwise it makes the name column as small as possible (the opposite what it's supposed to do, or what the other columns do) - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Igor ] + * Update suggested.gitignore - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + -- Clement Lefebvre Tue, 10 May 2016 16:36:23 +0100 - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen +nemo (3.0.0) sarah; urgency=medium - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ lukefromdc ] + * GTK 3.20-fix wrong desktop size - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Daniel Schürmann ] + * Added missing includes + * Fix pointer types, to avoid warning + * Respect dbus_satisfied flag for menu enties on blank desktops + * Fix printf format specifier + * Don't draw the desktop on a cloned monitor + * Fix some missing cast warnings - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Balló György ] + * Fix fallback style for GTK 3.20 - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ raveit65 ] + * add style class nemo-window-pane + * add style class nemo-properties-dialog to glade file - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Dustin Falgout ] + * add style class in nemo_desktop_window_init (same as nautilus) + * add style class to places sidebar + * add style class to nemo-window + * use more specific class name for places sidebar - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Michael Webster ] + * nemo-icon-info.c: remove invalid GTK_ICON_LOOKUP_GENERIC_FALLBACK flag (triggers warnings in gtk 3.20.x). (credit to @itzexor) - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ itzexor ] + * nemo-window: add new flag NEMO_WINDOW_OPEN_FLAG_SEARCH and use the same slot if this flag is passed to nemo_window_slot_open_location_full to avoid opening a new window (and a crash) when starting a search with the open in new window preference enabled + * fix typo - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Clement Lefebvre ] + * Updated makepot and pot file - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + -- Clement Lefebvre Sun, 24 Apr 2016 12:41:50 +0100 - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen +nemo (2.8.7) rosa; urgency=medium - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Michael Webster ] + * improve context menu toggle: - shows separate distinct regions of the menu item now - tooltip manifests as right-justified text next to the toggle icon - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ monsta ] + * use g_strcmp0 instead of unsafe strcmp - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ itzexor ] + * file: don't crash when the original file path has reserved characters https://git.gnome.org/browse/nautilus/commit/?id=d69885bd67edc1fae76c790f6162807817d63b2f + * file-operations: Make sure to use correct filename when restoring from Trash https://git.gnome.org/browse/nautilus/commit/libnautilus-private/nautilus-file-operations.c?id=ecee8be850b8342c804de2ecc3e613b99a20a010 + * file-utils: ensure directories exist before restoring from trash https://git.gnome.org/browse/nautilus/commit/?id=f1cb32831df32009f7e8bd5fcc35c5ccdf64eee4 - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + -- Clement Lefebvre Mon, 07 Mar 2016 17:19:06 +0000 - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen +nemo (2.8.6) rosa; urgency=medium - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Michael Webster ] + * nemo-view.c: Fix Open context menu entry not updating its label when a new selection is made. Also, fix tracking the context toggle when the menu has scroll bars. + * nemo-view: fix invalid View reference when view types change, and the tooltip is updated for the context menu toggle. - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + -- Clement Lefebvre Fri, 27 Nov 2015 09:59:44 +0000 - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen +nemo (2.8.5) rosa; urgency=medium - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Michael Webster ] + * list view, icon view: Don't trigger click-on-rename until button release, in order to preserve the possibility of dragging an already-selected single item. + * icon-view/container: fix click-to-rename issue where selection count was not up-to-date, requiring an extra click to trigger a rename after selecting a single icon from having no selection previously. + * bookmarks: Fix crashing and inconsistent behavior when working with remote bookmarks. + * nemo-icon-container: prevent interactive search on the desktop. - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + -- Clement Lefebvre Fri, 20 Nov 2015 17:27:57 +0000 - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen +nemo (2.8.4) rosa; urgency=medium - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Michael Webster ] + * nemo-file-operations.c: Handle NULL NemoFiles when deciding queue - this happens in both directions when dragging/copying files to and from a Virtualbox guest or host. - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Clement Lefebvre ] + * Removed context menu option from preferences - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + -- Clement Lefebvre Thu, 12 Nov 2015 09:38:15 +0000 - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen +nemo (2.8.3) rosa; urgency=medium - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Michael Webster ] + * Add control to context menu to toggle simple/complex menu + * nemo-list-view: Implement click-to-rename + * remove nemo-directory-view-ui-light.xml (no longer needed) - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Clement Lefebvre ] + * Updated pot file - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + -- Clement Lefebvre Wed, 11 Nov 2015 18:55:34 +0000 - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen +nemo (2.8.2) rosa; urgency=medium - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Michael Webster ] + * file operations queue: refactor slightly to make it easier to manage what gets queued and what gets started immediately. + * nemo-window-pane.c: prevent search from appearing on desktop + * preferences: move context menu toggle to the top of the Display page + * file operations window: raise the window when another operation is added, if the window is visible (not status-iconed). + * click-to-rename: move logic to earlier in the click event, in a way similar to how double-clicks are handled. Also, handle the preference change in nemo-view - this way it can be re-used later to handle list views as well. Also, this keeps us from interacting with GSettings so much. + * icon view: fetch click-to-rename preference when the view is loaded, don't allow click-to-rename on read-only files. + * thumbnails: detect and throttle back thumbnail generation for files that are being actively updated on disk. + * file queue: Add some additional checks for determining whether or not to start a file operation immediately. + * Add option to disable queueing + * job queue: Refactor to reduce duplication, add debugging info, add filesystem comparison to detect false "local" paths (local paths to non-local or non-native filesystems and mounts). + * nemo-query-editor: fix some casts to prevent build warnings. + * click-to-rename: Fix accidental rename triggering with multiple selection in icon view + * click-to-rename: Fix previous commit (broke double-click upon initial selection.) + * list view: Don't clear the rename widget twice - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Clement Lefebvre ] + * Fixed nemo crashing when quickly clicking on two unmounted volumes in the sidebar - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + -- Clement Lefebvre Mon, 09 Nov 2015 09:55:12 +0000 - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen +nemo (2.8.1) rosa; urgency=medium - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Michael Webster ] + * nemo-list-view.c: Fix editable not being destroyed after a canceled rename in certain instances. This would cause the action bindings for cut/copy not to be released from the text entry box, breaking cut/copy/paste until nemo was restarted. + * src/nemo-extension-config-widget.c: Make "No extensions found" un-clickable like the other two lists. (Would crash nemo when clicked) - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + -- Clement Lefebvre Mon, 26 Oct 2015 11:44:59 +0000 - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen +nemo (2.8.0) rosa; urgency=medium - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Daniel Schürmann ] + * pathbar: use a private struct and use use nemo_is_[home/root/desktop]_directory() + * Fix compile errors + * Don't use hardcoded script and action paths, remove unused sys script path + * Used definitions from nemo-global-preferences + * Moved action key definition to nemo-action.h to be external usable + * Show comment as tooltips for actions in action config, and improve comments for some actions. + * all: remove nemo_window_slot_go_to() + * Combine the search bar and query editor + * Added search_is_not_empty, to fixe a segfault in treelist - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Jonathan DePrizio ] + * Only include the domain if the method is SMB - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Monsta ] + * bumped some deps and build-deps - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ AlirezaNaghizadeh ] + * quick rename + * quick rename - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ pyecs ] + * Fix default sort order bug in list view - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Michael Webster ] + * nemo-places-sidebar.c: Fix a couple of drag-and-drop issues when there are no bookmarks, or when the xdg-bookmark area is empty. + * nemo-places-sidebar.c: Fix a memory leak. + * connect-to-server: remember the last connection type. + * nemo-list-view.c: Fix column sorting when default sort type is "Detailed type" + * nemo-connect-server-dialog.c: Fix previous commit. + * fix build warning, missing prototype. + * Fix some build warnings + * nemo-window-pane.c: Fix crash during location entry. + * fix indentation - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Clement Lefebvre ] + * Don't assign the position of the last closed window to the first opened window (it would be really confusing if it worked.. and it didn't really work since gtk_application_get_windows() seemed to also count the desktop window) + * Prefs: Rephrase quickrename option + * nemo-action-config-widget.c: Localize non-localized comment string + * Updated pot file - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Corbin ] + * Re-add revealer animation on search bar + * Fix Query Editor Row not displaying - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + -- Clement Lefebvre Tue, 20 Oct 2015 10:32:51 +0100 - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen +nemo (2.6.7) rafaela; urgency=medium - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Michael Webster ] + * progress window: simplify slightly, have info widgets manage themselves more, to prevent having a race condition at certain stages of the file operation. - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + -- Clement Lefebvre Mon, 22 Jun 2015 23:35:49 +0200 - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen +nemo (2.6.6) rafaela; urgency=medium - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Michael Webster ] + * Switch from .svg to .png format for the file operation tray icon. Scalable/symbolic isn't supported in gtk 3.12(+?) + * open-with dialog: Fix focus and user interaction issues - - Focus defaults to the custom entry box - Enter key (or double-clicking in the list) will now 'OK' the dialog, and open the file with either the selected program, or the custom command. - The ok button now greys out if there is an invalid custom entry - Removed misleading program-picker button label and image. + * preferences: tweak style a bit to match c-s + * nemo-extensions-list: Don't hardcode lib path + * nemo-view, nemo-sidebar: quiet warnings when looking for network locations - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + -- Clement Lefebvre Sun, 14 Jun 2015 12:42:06 +0200 - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen +nemo (2.6.5) rafaela; urgency=medium - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ leigh123linux ] + * add runtime requirement for libcinnamon-desktop4 - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ mtwebster ] + * Fix a couple build warnings + * nemo-application: register with org.gnome.SessionManager - this should fix the race condition where c-s-d dies before nemo does, causing all of our icons to revert to fallbacks briefly. - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + -- Clement Lefebvre Wed, 27 May 2015 10:25:57 +0200 - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen +nemo (2.6.4) rafaela; urgency=medium - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Michael Webster ] + * menus: Always show icons in Open With and Templates submenus. + * nemo-bookmark-list: make sure to keep the bookmarks file writable by the user (and not just root) when running nemo as root. + * fix build warning, fix prototype name. - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ leigh123linux ] + * Update version for cinnamon-desktop build dep - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + -- Clement Lefebvre Mon, 25 May 2015 10:40:14 +0200 - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen +nemo (2.6.3) rafaela; urgency=medium - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ leigh123linux ] + * update cinnamon-desktop min version + * bump it again - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + -- Clement Lefebvre Thu, 21 May 2015 12:44:03 +0200 - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen +nemo (2.6.2) rafaela; urgency=medium - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Clement Lefebvre ] + * Gettext fix: Due to genre/plural, in many languages, adjectives are not translatable on their own. They need to relate to a noun. + * Gettext: Simplified msgids in file operation queue to make them easier to translate + * Updated pot - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + [ Michael Webster ] + * Adapt Nemo to deal with problem situations with the user thumbnail cache: - Added --fix-cache command line option (must be run as root) - Added quick check at startup to detect major problems and disable thumbnailing until fixed. - Individual thumbnailed files are checked on the fly for permission issues. - When a problem is detected, an infobar appears, offering to fix the problem, or ignore it. + * Have 'dismiss' last for Nemo's lifespan. + * thumbnails: Remove an orphan comment from previous commits, fix wording of the --fix-cache command-line option. - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + -- Clement Lefebvre Thu, 21 May 2015 11:06:16 +0200 - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen +nemo (2.6.1) rafaela; urgency=medium - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + * Packaging: Fixed hardcoded gir typelib path - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + -- Clement Lefebvre Wed, 20 May 2015 09:26:24 +0200 - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen +nemo (2.6.0) rafaela; urgency=medium - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + * 2.6.0 - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + -- Clement Lefebvre Tue, 19 May 2015 17:34:50 +0200 - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen +nemo (2.5.1) unstable; urgency=medium - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + * 2.5.x - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + -- Clement Lefebvre Mon, 19 Jan 2015 16:55:00 +0100 - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen +nemo (2.4.4) rebecca; urgency=medium - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + * list-view: Don't reset zoom level when syncing statusbar zoom widget state. - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + -- Clement Lefebvre Mon, 24 Nov 2014 09:11:57 +0100 - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen +nemo (2.4.3) rebecca; urgency=medium - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + * Never allow root nemo to manage the desktop. - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + -- Clement Lefebvre Sat, 22 Nov 2014 17:17:30 +0100 - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen +nemo (2.4.2) rebecca; urgency=medium - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + * icon-container: Fix regression when renaming files in certain views - + * Revert "places sidebar: set cells to a fixed height, seems to prevent residual" - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + -- Clement Lefebvre Tue, 11 Nov 2014 22:35:46 +0100 - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen +nemo (2.4.1) rebecca; urgency=medium - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + * Show UP button by default in the toolbar + * Re-enabled the right click context menu on nemo toolbar navigation buttons + * Recent files: show same open-with entries as normal folders + * Sidebar: Fix expander state + * Sidebar: workaround for icon render issue. Don't allow the tree view to be unrestrained vertically. + * Places sidebar: set cells to a fixed height, seems to prevent residual render issues - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + -- Clement Lefebvre Tue, 11 Nov 2014 11:07:57 +0100 - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen +nemo (2.4.0) rebecca; urgency=medium - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + * 2.4.0 - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + -- Clement Lefebvre Fri, 31 Oct 2014 16:23:56 +0100 - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen +nemo (2.3.0) unstable; urgency=medium - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + * 2.3.0 - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + -- Clement Lefebvre Fri, 27 Jun 2014 14:44:35 +0100 - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen +nemo (2.2.3) qiana; urgency=medium - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + * Merging debian/patches + * Show unmount progress notifications when ejecting a drive + * Fix #627 - crash when unmounting archives. This is a temporary fix - pull request coming for permanent fix. + * places-sidebar: render eject icon correctly in hidpi + * Open-with dialog: Bugfix (Fixes #631) and a few improvements + * nemo-links: add desktop file hack for desktop session names. + * Fix sample nemo action to work with filenames with spaces. + * Really fix the sample action + * Clean up orphaned gtk bookmarks at startup. + * Revert "Clean up orphaned gtk bookmarks at startup." + * nemo-actions: Add flag to escape spaces in file paths. + * Use GtkRevealer for search bar. + * nemo-file: compare_by_display_name - handle null strings gracefully. - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + -- Clement Lefebvre Fri, 27 Jun 2014 14:43:10 +0100 - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen +nemo (2.2.2) qiana; urgency=medium - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + * 2.2.2 - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + -- Clement Lefebvre Wed, 21 May 2014 12:36:20 +0100 - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen +nemo (2.2.1) qiana; urgency=medium - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + * 2.2.1 - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + -- Clement Lefebvre Thu, 01 May 2014 14:35:34 +0100 - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen +nemo (2.2.0) qiana; urgency=medium - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + * 2.2.0 - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + -- Clement Lefebvre Sat, 12 Apr 2014 15:50:14 +0100 - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen +nemo (2.0.8) petra; urgency=low - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + * 2.0.8 - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + -- Clement Lefebvre Mon, 25 Nov 2013 18:37:31 +0000 - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen +nemo (2.0.7) petra; urgency=low - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + * 2.0.7 - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + -- Clement Lefebvre Sat, 23 Nov 2013 13:39:58 +0000 - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen +nemo (2.0.6) petra; urgency=low - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + * 2.0.6 - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + -- Clement Lefebvre Mon, 11 Nov 2013 13:42:09 +0000 - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen +nemo (2.0.5) petra; urgency=low - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + * 2.0.5 - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + -- Clement Lefebvre Sun, 03 Nov 2013 15:53:05 +0000 - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen +nemo (2.0.4) petra; urgency=low - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + * 2.0.4 - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + -- Clement Lefebvre Thu, 31 Oct 2013 13:32:20 +0000 - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen +nemo (2.0.3) petra; urgency=low - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + * 2.0.3 - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + -- Clement Lefebvre Tue, 29 Oct 2013 10:40:51 +0000 - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen +nemo (2.0.2) petra; urgency=low - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + * 2.0.2 - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + -- Clement Lefebvre Tue, 22 Oct 2013 14:20:41 +0100 - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen +nemo (2.0.1) petra; urgency=low - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + * 2.0.1 - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + -- Clement Lefebvre Fri, 18 Oct 2013 15:57:39 +0100 - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen +nemo (2.0.0) petra; urgency=low - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + * 2.0.0 - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + -- Clement Lefebvre Wed, 02 Oct 2013 16:36:43 +0100 - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen +nemo (1.9.1) petra; urgency=low - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + * 1.9.1 - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + -- Clement Lefebvre Mon, 30 Sep 2013 14:21:12 +0100 - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen +nemo (1.8.5) olivia; urgency=low - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + * 1.8.5 - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + -- Clement Lefebvre Tue, 20 Aug 2013 14:07:52 +0100 - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen +nemo (1.8.4) olivia; urgency=low - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + * 1.8.4 - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + -- Clement Lefebvre Tue, 09 Jul 2013 17:12:40 +0200 - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen +nemo (1.8.3) olivia; urgency=low - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + * 1.8.3 - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + -- Clement Lefebvre Sat, 01 Jun 2013 12:55:17 +0100 - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen +nemo (1.8.2) olivia; urgency=low - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + * 1.8.2 - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + -- Clement Lefebvre Sun, 19 May 2013 21:08:35 +0100 - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen +nemo (1.8.1) olivia; urgency=low - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + * 1.8.1 - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + -- Clement Lefebvre Thu, 09 May 2013 13:29:40 +0100 - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen +nemo (1.8.0) olivia; urgency=low - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + * 1.8.0 - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + -- Clement Lefebvre Sun, 05 May 2013 13:21:54 +0100 - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen +nemo (1.7.6) olivia; urgency=low - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + * 1.7.6 - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + -- Clement Lefebvre Fri, 03 May 2013 17:07:54 +0100 - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen +nemo (1.7.5) olivia; urgency=low - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + * 1.7.5 - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + -- Clement Lefebvre Tue, 30 Apr 2013 16:45:52 +0100 - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen +nemo (1.7.4) olivia; urgency=low - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + * 1.7.4 - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + -- Clement Lefebvre Sat, 27 Apr 2013 20:03:25 +0100 - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen +nemo (1.7.3) olivia; urgency=low - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + * 1.7.3 - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + -- Clement Lefebvre Mon, 15 Apr 2013 14:56:37 +0100 - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen +nemo (1.7.2) olivia; urgency=low - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + * 1.7.2 - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + -- Clement Lefebvre Fri, 22 Mar 2013 14:07:10 +0000 - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen +nemo (1.7.1) olivia; urgency=low - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + * 1.7.1 - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + -- Clement Lefebvre Tue, 19 Feb 2013 16:29:56 +0000 - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen +nemo (1.1.2) nadia; urgency=low - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + * 1.1.2 - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + -- Clement Lefebvre Wed, 14 Nov 2012 12:02:03 +0000 - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen +nemo (1.1.1) nadia; urgency=low - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + * 1.1.1 - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + -- Clement Lefebvre Tue, 06 Nov 2012 16:37:43 +0000 - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen +nemo (1.1.0) nadia; urgency=low - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + * 1.1.0 - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + -- Clement Lefebvre Mon, 05 Nov 2012 18:47:31 +0000 - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen +nemo (1.0.9) nadia; urgency=low - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + * 1.0.9 - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + -- Clement Lefebvre Fri, 02 Nov 2012 20:50:56 +0000 - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen +nemo (1.0.8) nadia; urgency=low - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + * 1.0.8 - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + -- Clement Lefebvre Thu, 01 Nov 2012 12:55:13 +0000 - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen +nemo (1.0.7) nadia; urgency=low - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + * 1.0.7 - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + -- Clement Lefebvre Sun, 28 Oct 2012 16:25:12 +0000 - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen +nemo (1.0.6) nadia; urgency=low - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + * 1.0.6 - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + -- Clement Lefebvre Tue, 23 Oct 2012 15:33:14 +0100 - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen +nemo (1.0.5) nadia; urgency=low - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + * nadia - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + -- Clement Lefebvre Sat, 20 Oct 2012 12:23:47 +0100 - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen +nemo (1.0.4) nadia; urgency=low - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + * 1.0.4 - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + -- Clement Lefebvre Thu, 18 Oct 2012 13:43:14 +0100 - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen +nemo (1.0.3) maya; urgency=low - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + * 1.0.3 - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + -- Clement Lefebvre Mon, 01 Oct 2012 15:22:23 +0100 - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen +nemo (1.0.2) maya; urgency=low - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + * 1.0.2 - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + -- Clement Lefebvre Thu, 27 Sep 2012 14:27:20 +0100 - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen +nemo (1.0.1) maya; urgency=low - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + * 1.0.1 - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + -- Clement Lefebvre Wed, 19 Sep 2012 10:32:29 +0100 - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen +nemo (1.0.0) maya; urgency=low - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen + * Initial version, based on nautilus 3.4.2-0ubuntu3 - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - 2012-03-16 Reinout van Schouwen - - - nl.po: Use ‘Standaard instellen’ instead of ‘Standaard - gebruiken’ - -M po/nl.po - -commit 9f6d1414dac34fef51616d7642fe52a2353d3c2b -Author: Krishnababu Krothapalli -Date: 2012-03-16 - - Translations Updated with FUEL - -M po/te.po - -commit 4273aa66a8e73e11cf3ad388bb53350c12b30e83 -Author: Krishnababu Krothapalli -Date: 2012-03-16 - - Translations Updated with FUEL - -M po/te.po - -commit 258628dbf02a540179488c94d0a6c1100ad12eab -Author: Anita Reitere -Date: 2012-03-14 - - Updated Latvian translation. - -M po/lv.po - -commit 3d275a971132a41809a3b1e5b8ac683d264d6c35 -Author: Stefano Facchini -Date: 2012-03-13 - - view: improve scroll-zooming for smooth scrolling devices - - Try to emulate a normal scroll event by adding deltas until the total - delta reaches +1 or -1. - -M src/nemo-view.c - -commit d865bc50459fb1349a761c3c7029bad7f13fc67c -Author: Cosimo Cecchi -Date: 2012-03-13 - - pathbar: make dragging from toolbar work again - - This was a regression from the recent refactorings in NemoPathbar. - Since we now have an event window, if we want button events to - reach the - parent toolbar, we have to select for such events when we realize the - event window. - -M src/nemo-pathbar.c - -commit f7b54cdba55a0856b201e62818059ac5007fac35 -Author: Cosimo Cecchi -Date: 2012-03-13 - - view: threshold the delta information when scroll-zooming - - We don't want to zoom for every single event, since in case the device - supports smooth scrolling, we will get a lot of small events. - Pointed out by Stefano Facchini. - -M src/nemo-view.c - -commit 45cb82857c9cef34952da4c0488780fd8b19a61b -Author: Jonh Wendell -Date: 2012-03-13 - - Updated Brazilian Portuguese translation - -M po/pt_BR.po - -commit df6a0a0a1e721142b1be5338fcad2cc0248fdf1e -Author: Cosimo Cecchi -Date: 2012-03-12 - - build: remove unused --enable-profiler build option - - It's unused. - - https://bugzilla.gnome.org/show_bug.cgi?id=661632 - -M configure.in - -commit d9c23d83fdb5e1178f2c2f97a57b937cdab1b251 -Author: Cosimo Cecchi -Date: 2012-03-12 - - properties-window: ellipsize the Type field - - Or the properties window won't shrink when the file type string - is long - (e.g. with Archive types). - - https://bugzilla.gnome.org/show_bug.cgi?id=671809 - -M src/nemo-properties-window.c - -commit 73588247787b408ec43dba4156cadac97fe2d6d6 -Author: Cosimo Cecchi -Date: 2012-03-12 - - pathbar: refresh label size request every time it changes - - Or we might end up with buttons having the wrong size if a folder - on the - pathbar changes name. - - https://bugzilla.gnome.org/show_bug.cgi?id=671865 - -M src/nemo-pathbar.c - -commit 389845f1f6e175212554aba7645ce728f0a8f7ec -Author: Cosimo Cecchi -Date: 2012-03-12 - - pathbar: don't set use-markup before resetting the label - - If the label contains markup text, setting use_markup before resetting - the text can spawn a warning (and we're resetting the label text right - afterwards anyway). - -M src/nemo-pathbar.c - -commit 799514c57003d174b466c1fbf262f1229cf9d9df -Author: Nilamdyuti Goswami -Date: 2012-03-12 - - Assamese translation completed - -M po/as.po - -commit e6a47735728f2e9e40b7c036d94b8c7e7c996ef6 -Author: Timo Jyrinki -Date: 2012-03-12 - - Finnish translation update from - http://l10n.laxstrom.name/wiki/Gnome_3.4 translation sprint - -M po/fi.po - -commit 269abde49580fe4ffa3ec0f31a4efa494860a1d5 -Author: Piotr Drąg -Date: 2012-03-10 - - Updated Polish translation - -M po/pl.po - -commit 6449cbff18611f8583f98a6ce4e97b66c9667d52 -Author: Seong-ho Cho -Date: 2012-03-10 - - Updated Korean translation - -M po/ko.po - -commit 376678e92a107703ba19dd34fc4012ef4f04cf8c -Author: Kristjan SCHMIDT -Date: 2012-03-10 - - Updated Esperanto translation - -M po/eo.po - -commit 878e2a4f7ada26bb7c106e5bbdbd8434acf86c77 -Author: Cosimo Cecchi -Date: 2012-03-08 - - view: fix zoom direction for smooth scrolling case - -M src/nemo-view.c - -commit 1a76e044a2c9b834d00c4ea30f1e3af3321d8cdd -Author: Cosimo Cecchi -Date: 2012-03-08 - - view: handle smooth scroll events for zooming - - Instead of reaching the g_assert_not_reached() and crash. - - https://bugzilla.gnome.org/show_bug.cgi?id=671650 - -M src/nemo-view.c - -commit 0d46b0620b3b120cde310cb2319c309d8f3e3b82 -Author: Cosimo Cecchi -Date: 2012-03-07 - - all: remove eel_g_hash_table_new_free_at_exit() - - Especially when references can be owned by non-resident modules, - this is - just too dangerous. - - https://bugzilla.gnome.org/show_bug.cgi?id=670989 - -M eel/eel-glib-extensions.c -M eel/eel-glib-extensions.h -M eel/eel-stock-dialogs.c -M eel/eel-string.c -M libnemo-private/nemo-directory-async.c -M libnemo-private/nemo-directory.c -M libnemo-private/nemo-file.c -M libnemo-private/nemo-signaller.c -M libnemo-private/nemo-thumbnails.c -M src/nemo-properties-window.c - -commit b9c51fd4eb84a9f52ee4be1bf183fc516984130b -Author: Cosimo Cecchi -Date: 2012-03-07 - - view: show applications for non launcher desktop files - - https://bugzilla.gnome.org/show_bug.cgi?id=319981 - -M src/nemo-mime-actions.c -M src/nemo-view.c - -commit 5a47a484e45218e83202c508b421b1a2707af270 -Author: Cosimo Cecchi -Date: 2012-03-07 - - link: fix code to parse additional description for links - - For some reason, this was ifdeffed out. - -M libnemo-private/nemo-link.c -M src/nemo-icon-view-container.c - -commit 9ff4e9194215cd955b952b1a82bd6a9d80e666cd -Author: Cosimo Cecchi -Date: 2012-03-07 - - link: remove obsolete check for application/x-gnome-app-info - - We stopped supporting this everywhere else ages ago. - -M libnemo-private/nemo-link.c - -commit 0ffe4ea4e0df9e5a186b3096bf1712011230a75b -Author: Cosimo Cecchi -Date: 2012-03-07 - - file-dnd: only accept launchers as DnD targets - - Not random desktop files. - -M libnemo-private/nemo-file-dnd.c - -commit b241fd28913e87fe01419e4922259949a11c973f -Author: Cosimo Cecchi -Date: 2012-03-07 - - file: don't consider all desktop files nemo links - - Only those which match application/x-desktop directly. - -M libnemo-private/nemo-file.c - -commit 1ef720295bc14630522f2496d194c7c43ccc016a -Author: Cosimo Cecchi -Date: 2012-03-07 - - directory-async: remove code that was never executed - - The ifdef is never defined, so we should just remove this code. - -M libnemo-private/nemo-directory-async.c - -commit b4877e5bb19d99936987dc9507fba273a55c3a5a -Author: Cosimo Cecchi -Date: 2012-03-07 - - properties-window: fix packing for desktop file properties box - - Fallout from GtkTable->GtkGrid migration. - -M src/nemo-properties-window.c - -commit cc05cdd37fa4e34164081222740c266ae5761508 -Author: Bruce Cowan -Date: 2012-03-07 - - Updated British English translation - -M po/en_GB.po - -commit aed94bad3ea8eaa6c603f8d85cbfb8cd1fd824fd -Author: Arash Mousavi -Date: 2012-03-06 - - Updated Persian Translation - -M po/fa.po - -commit 36b1557baf6ecc923e821d417531895640195c4f -Author: Bruno Brouard -Date: 2012-03-06 - - Updated French translation - -M po/fr.po - -commit 34e74c768d5f39a65056716429a84306c3901992 -Author: Matej Urbančič -Date: 2012-03-06 - - Updated Slovenian translation - -M po/sl.po - -commit b1c3776dd91c29e4e9c1f020c24bb039ef730962 -Author: Inaki Larranaga Murgoitio -Date: 2012-03-06 - - Updated Basque language - -M po/eu.po - -commit 7fdd100f259046f86500da3eb64cf10bceaba2bd -Author: Cosimo Cecchi -Date: 2012-03-05 - - build: bump required GTK version to 3.3.17 - - I.e. the current git master. - -M configure.in - -commit df2cf158aa93e2d395b57ce2a1bf4b89bac20709 -Author: Cosimo Cecchi -Date: 2012-03-05 - - release: prepare for 3.3.91 - -M NEWS -M configure.in - -commit ab5077e0bce77af4cad87a20fec8099e3db0bcc0 -Author: Michael Terry -Date: 2012-03-05 - - slot: don't ref the NemoWindowSlot when setting floating bar - timeout - - We cancel the timeout on destruction already, and if a destroy event - happens in between the timeout, this would break the assumption in - NemoWindowPane that all its slots were removed during its - destruction. - - https://bugzilla.gnome.org/show_bug.cgi?id=670591 - -M src/nemo-window-slot.c - -commit 819a5d14a33d95ba5ef25a3becec4ebccb93807b -Author: Michael Terry -Date: 2012-03-05 - - file-operations: use the right prototype for empty trash callback - - When unmounting, we might first prompt whether the trash should be - emptied or not on the target volume. If we do so, make sure the - callback - from the empty trash job has the right prototype, to avoid crashing - later trying to interpret a gboolean as a pointer to a data structure. - - https://bugzilla.gnome.org/show_bug.cgi?id=670595 - -M libnemo-private/nemo-file-operations.c - -commit 503443418709c9fb42af52c90c035b3957b0686e -Author: Cosimo Cecchi -Date: 2012-03-05 - - pathbar: copy implementation of an event window from the GTK copy - - In order to listen for scroll events on the whole pathbar area, - we need - to create an event window in realize(), created with GDK_SCROLL_MASK. - Copy the code from GtkPathBar that implements this. - -M src/nemo-pathbar.c -M src/nemo-pathbar.h - -commit 04116ab2876412445c788091be07d7f7321a4a94 -Author: Cosimo Cecchi -Date: 2012-03-05 - - pathbar: sync with GTK master to make scrolling work again - -M src/nemo-pathbar.c - -commit 4c83328a0ba2d511fea8cefe1464269fbaa1b35f -Author: Cosimo Cecchi -Date: 2012-03-05 - - Revert "Revert "Fix up accidental error in last commit"" - - Having people randomly commit unapproved controversial changes to - the UI - during UI freeze is so awesome... - - This reverts commit 50a174cfbf288f07d2f9bf44f31af41dc1535df8. - -M src/nemo-view.c - -commit 29a050d986bd5fd86ef522617966768c8c40beb7 -Author: Cosimo Cecchi -Date: 2012-03-05 - - Revert "Revert "Use ctrl-delete as the keyboard shortcut to trash - files"" - - Having people randomly commit unapproved controversial changes to - the UI - during UI freeze is so awesome... - - This reverts commit 6c21b39cd9d22de4c92ab214e647e65fbfdfe9ac. - -M src/nemo-view.c - -commit 6c66de56871a7201c6b0c13d216a237a2e4a4af3 -Author: Hannie Dumoleyn -Date: 2012-03-04 - - Updated Dutch translation - -M po/nl.po - -commit 24bbb0d39a285546538961d917a070f1ead27bed -Author: Arash Mousavi -Date: 2012-03-04 - - Updated Persian Translations - -M po/fa.po - -commit 4a0dcfa280ebf9ade975fbefc470f9d3334b1175 -Author: Nguyễn Thái Ngọc Duy -Date: 2012-03-04 - - Updated Vietnamese translation - -M po/vi.po - -commit 46ba80571e73335fa2fde48529e73b6f2b3f0453 -Author: Nguyễn Thái Ngọc Duy -Date: 2012-03-03 - - po/vi: import from Damned Lies - -M po/vi.po - -commit 55660df03074e3759a88fd5cf4a45d0a0ce8830a -Author: Gabor Kelemen -Date: 2012-03-04 - - Updated Hungarian translation - -M po/hu.po - -commit 2c289a073bd0ff4b779f70885566b0783534a1da -Author: Daniel Korostil -Date: 2012-03-02 - - Uploaded Ukranian - -M po/uk.po - -commit 202b772a7b6fcd7ac758011935cc0eb4eca8454e -Author: Mario Blättermann -Date: 2012-02-29 - - [l10n] Updated German translation - -M po/de.po - -commit 6c21b39cd9d22de4c92ab214e647e65fbfdfe9ac -Author: Xavier Claessens -Date: 2012-02-27 - - Revert "Use ctrl-delete as the keyboard shortcut to trash files" - - This reverts commit cce40272e35b20b4aaf5f93109a05b7bb89704d5. - -M src/nemo-view.c - -commit 50a174cfbf288f07d2f9bf44f31af41dc1535df8 -Author: Xavier Claessens -Date: 2012-02-27 - - Revert "Fix up accidental error in last commit" - - This reverts commit c6279ac229545d7f64b64212383df2753482e233. - -M src/nemo-view.c - -commit f8f2aa2c1caa6c3eb2ad801f9b1644b505ec1e3f -Author: Dr.T.Vasudevan -Date: 2012-02-26 - - updated Tamil translation - -M po/ta.po - -commit b1de3f789a3271d459815ec6d04ece342ebf8d1c -Author: Dr.T.Vasudevan -Date: 2012-02-26 - - updated Tamil translation - -M po/ta.po - -commit b4272502dbdb48656502679e364c25ea945e1945 -Author: Dr.T.Vasudevan -Date: 2012-02-26 - - updated Tamil translation - -M po/ta.po - -commit 9c0bf9befaa286a96b4300d462954de003708340 -Author: A S Alam -Date: 2012-02-26 - - update Punjabi Translation - -M po/pa.po - -commit 94463615ff55a9217470054084f4af8e819ee9c8 -Author: Abderrahim Kitouni -Date: 2012-02-23 - - Updated Arabic translation by Ibrahim Saed and Abderrahim Kitouni - -M po/ar.po - -commit 73929f70316bd2b120a67725fdd43bc5a996149b -Author: Mattias Põldaru -Date: 2012-02-22 - - [l10n] Updated Estonian translation - -M po/et.po - -commit ab0af563ecfd50632cbb8491e634282a0f15ea07 -Author: Mattias Põldaru -Date: 2012-02-22 - - [l10n] Updated Estonian translation - -M po/et.po - -commit fa8997416110581ed48979fdf873f8fe28fcf87b -Author: Ask H. Larsen -Date: 2012-02-20 - - Updated Danish translation - -M po/da.po - -commit b05d9fd27463054916f84626f4d1a8daf9543d18 -Author: Мирослав Николић -Date: 2012-02-20 - - Updated Serbian translation - -M po/sr.po -M po/sr@latin.po - -commit 30f1d93169661d1493ffca3baace20577bed4a3a -Author: Cosimo Cecchi -Date: 2012-02-20 - - release: prepare for 3.3.90 - -M NEWS -M configure.in - -commit 3da42acd7a4da971294708e683394a2292c54c12 -Author: Cosimo Cecchi -Date: 2012-02-20 - - build: link eel and libnemo-private to libm - -M eel/Makefile.am -M libnemo-private/Makefile.am - -commit 6fecf4844d5ae749c83a943af950ee594fc2e73d -Author: Cosimo Cecchi -Date: 2012-02-20 - - file: add a default empty implementation of set_metadata methods - - Otherwise we will segfault for subclasses of NemoFile that don't - override the method. - - https://bugzilla.gnome.org/show_bug.cgi?id=669735 - https://bugzilla.gnome.org/show_bug.cgi?id=669711 - -M libnemo-private/nemo-file.c - -commit 9fda64f91fdbd470e8a84991427dd1e9cb0b8ebf -Author: Ihar Hrachyshka -Date: 2012-02-20 - - Updated Belarusian translation. - -M po/be.po - -commit 67c5ba88c073c0a6620f22d7223d2bd3b450f499 -Author: Ihar Hrachyshka -Date: 2012-02-20 - - Updated Belarusian translation. - -M po/be.po - -commit f6f651bff8f5961ea4577c7aaa81ada8263a74da -Author: Kjartan Maraas -Date: 2012-02-20 - - Updated Norwegian bokmål translation - -M po/nb.po - -commit 448c7991f3c2fb7c2434cd7a2dab8dfae399f609 -Author: Adam Matoušek -Date: 2012-02-20 - - Updated Czech translation - -M po/cs.po - -commit c3f5c2afdd1f740576029544d21e732759e54ba0 -Author: Daniel Nylander -Date: 2012-02-19 - - Updated Swedish translation - -M po/sv.po - -commit 720b994d93d62f346e0cde181bdfc1817916f13c -Author: Yaron Shahrabani -Date: 2012-02-18 - - Updated Hebrew translation. - -M po/he.po - -commit 0d4de6246689ab67b40dad1d206114915589d18f -Author: Chao-Hsiung Liao -Date: 2012-02-18 - - Updated Traditional Chinese translation(Hong Kong and Taiwan) - -M po/zh_HK.po -M po/zh_TW.po - -commit ea10e1a45f11ea3771b92f411a0817fd9049fc88 -Author: Jiro Matsuzawa -Date: 2012-02-17 - - [l10n] Update Japanese translation - -M po/ja.po - -commit d5cc4631ee4366bcf7f33c78bf193eb0e1cbb8b0 -Author: Luca Ferretti -Date: 2012-02-16 - - l10n: Updated Italian translation - -M po/it.po - -commit 41106223c6124fb8b427810a3e9a5b9d270777fa -Author: Fábio Nogueira -Date: 2012-02-16 - - Updated Translator Credits in Brazilian Portuguese Translation - -M po/pt_BR.po - -commit 8b21dc1de851f4e49a791cb2d878570e26985975 -Author: Alexander Shopov -Date: 2012-02-16 - - Updated Bulgarian translation - -M po/bg.po - -commit 570266ce8c0ccd0e2382cd6cf5fdd59339b9a7c1 -Author: Yuri Myasoedov -Date: 2012-02-15 - - Updated Russian translation - -M po/ru.po - -commit a7843cb0d1bff3deafed93d9c9e2c7d8d6ebf458 -Author: Daniel Mustieles -Date: 2012-02-15 - - Updated Spanish translation - -M po/es.po - -commit 4421b79de801efd5fbd7d6ef6666e2b0e3b813f9 -Author: Fran Diéguez -Date: 2012-02-14 - - Updated Galician translations - -M po/gl.po - -commit 2c7b82f2d3712f08dc940828b7a4b4de55164621 -Author: Cosimo Cecchi -Date: 2012-02-14 - - undo: add ngettext plural forms for undo operation strings - - Even if we don't use those strings for singular cases, this is still - needed, since some languages might need to use the singular form for - e.g. the x1st item. - See: https://live.gnome.org/TranslationProject/DevGuidelines/Plurals - - https://bugzilla.gnome.org/show_bug.cgi?id=669889 - -M libnemo-private/nemo-file-undo-operations.c - -commit 01382c267728e2dd00cc8b48cd6024dbae183345 -Author: Cosimo Cecchi -Date: 2012-02-13 - - pane: don't make the toolbar for inactive pane insensitive - - At the same time, we have to listen for events on the toolbar items to - set the active pane. - -M src/nemo-search-bar.c -M src/nemo-search-bar.h -M src/nemo-window-menus.c -M src/nemo-window-pane.c - -commit 3787143f2bcf576a9b75600b40a324454b25beca -Author: Cosimo Cecchi -Date: 2012-02-13 - - pane: set a style class on the inactive window pane to style it - - Set a "nemo-inactive-pane" style class on the inactive - NemoWindowPane; this allows us to theme the inactive pane - state way - more easily and removes a bunch of setup code. - -M libnemo-private/nemo-icon-container.c -M libnemo-private/nemo-icon-container.h -M libnemo-private/nemo-icon-private.h -M src/nemo-icon-view.c -M src/nemo-list-view.c -M src/nemo-view.c -M src/nemo-view.h -M src/nemo-window-pane.c -M src/nemo-window-pane.h -M src/nemo-window.c - -commit 31dad6f9fa05dc64fc1ead54bdad9bbae4bfa713 -Author: Cosimo Cecchi -Date: 2012-02-13 - - icon-canvas-item: don't override parent container style flags - - When drawing the canvas item elements, don't override the parent - container style flags, so we don't lose e.g. backdrop information. - -M libnemo-private/nemo-icon-canvas-item.c - -commit 457c9ccaf17e34366ea4bacb7d3a1a72094fb8d7 -Author: Baurzhan Muftakhidinov -Date: 2012-02-12 - - [l10n] Updated Kazakh translation - -M po/kk.po - -commit 47778be25cf65fbcd0151093fc7e2b3aa14b229c -Author: Cosimo Cecchi -Date: 2012-02-11 - - floating-bar: add "floating-bar" style class - -M src/nemo-floating-bar.c - -commit ef34e92b4c685c25e36d67b8b266ac6bff1489f0 -Author: Yuri Myasoedov -Date: 2012-02-11 - - Updated Russian translation - -M po/ru.po - -commit 8d064c5e5782e98bb63836b92847ff1260f4b77f -Author: Tiffany Antopolski -Date: 2012-02-10 - - po: updated en_CA.po - -M po/en_CA.po - -commit cd497dd43fabc6b9aa679fd326bb0f16334dbd59 -Author: Cosimo Cecchi -Date: 2012-02-08 - - undo: fix a double free in the Create operation strings func - - https://bugzilla.gnome.org/show_bug.cgi?id=669691 - -M libnemo-private/nemo-file-undo-operations.c - -commit 071f40683bda36eb47df8a2c536da282b9fb04e6 -Author: Cosimo Cecchi -Date: 2012-02-06 - - release: prepare for 3.3.5 - -M NEWS -M configure.in - -commit b7a3fddf60aaeac95f85259b2d83fc3cde81959f -Author: Cosimo Cecchi -Date: 2012-02-06 - - places-sidebar: change the way we restore selection on update - - Instead of checking whether the URI of every item we add is a - candidate - for selection, cycle through all the added items after inserting. - This also fixes a bug where the GtkTreeIter we used for keeping - track of - the last added item was not up-to-date with the actual cell, since the - sort function we apply to the items will modify the position of - the item - in the tree itself, making the iter invalid. - - https://bugzilla.gnome.org/show_bug.cgi?id=668212 - -M src/nemo-places-sidebar.c - -commit 7e7a21daf15055aab8639ba684ce34a6683073fa -Author: Cosimo Cecchi -Date: 2012-02-06 - - places-sidebar: don't use an additional GtkTreeModelFilter - - We were using it just for GtkTreeDragSourceIface, which we can - implement - ourselves. - -M src/nemo-places-sidebar.c - -commit 7c5ebdbbd3c7778af230fc830b5bc6bd706f1d61 -Author: Cosimo Cecchi -Date: 2012-02-06 - - window-manage-views: fix a crash when middle-clicking desktop icons - - We were hitting an assertion when middle clicking a desktop icon, - since - we were trying to open it in a tab (same window), and we don't really - want to do that on the desktop. - - https://bugzilla.gnome.org/show_bug.cgi?id=655576 - -M src/nemo-window-manage-views.c - -commit 4abf11d07e8d8bc86523e105db9c6c76f29e9643 -Author: Cosimo Cecchi -Date: 2012-02-06 - - window: simplify code a bit - - Don't export nemo_window_update_split_view_actions_sensitivity(), - but alwauys call it from - nemo_window_update_show_hide_menu_items(), - since that's what the code always does. - - https://bugzilla.gnome.org/show_bug.cgi?id=669189 - -M src/nemo-window-menus.c -M src/nemo-window-private.h -M src/nemo-window.c - -commit 2626eacbd9883161d7d3b14f4e1c56a02e3eb7ce -Author: Cosimo Cecchi -Date: 2012-02-06 - - pane: don't forget to update the split view actions when closing - a slot - - In case a slot close is requested, we should still update the - split view - actions sensitivity/state. - - https://bugzilla.gnome.org/show_bug.cgi?id=669189 - -M src/nemo-window-pane.c - -commit e8c4685f033b11034fa24007c558b8fc347024d3 -Author: Cosimo Cecchi -Date: 2012-02-06 - - desktop-background: stop any pending crossfades on widget destruction - - Internally, GnomeBGCrossfade depends on the GdkWindow we pass on to - gnome_bg_crossfade_start() to be available during the whole crossfade. - If our widget is destroyed, we have to immediately stop the crossfade, - without waiting our finalization step, which happens after the widget - is already gone. - -M libnemo-private/nemo-desktop-background.c - -commit 91fc1674ae71d356b06b8b549e91782a2b06758a -Author: Cosimo Cecchi -Date: 2012-02-06 - - desktop-background: unref the GnomeBG on finalize - - This also prevents signals being emitted from it after our - destruction, - as in https://bugzilla.gnome.org/show_bug.cgi?id=665796 - -M libnemo-private/nemo-desktop-background.c - -commit 9d0f892656282519059d65f10db7504ad4910b22 -Author: Cosimo Cecchi -Date: 2012-02-06 - - pane: don't access invalid memory - - slot->pane is already cleared in nemo_window_slot_dispose(), which - will get called while the slot is destroyed; setting it here can cause - an invalid memory access. - -M src/nemo-window-pane.c - -commit 1bfe1dd449bdfb80e58f6f149d87c153f13962f2 -Author: Piotr Drąg -Date: 2012-02-04 - - Updated Polish translation - -M po/pl.po - -commit 6b2e19cb9957f0685eb561a6e22c1be6730e6fee -Author: Cosimo Cecchi -Date: 2012-01-31 - - undo: fix logic in the file operation callback - - This caused some actions not to be scheduled for redo. - -M libnemo-private/nemo-file-undo-operations.c - -commit c4099c1a20c0502dd7a12e0d1ffbfe70d4bf527a -Author: Cosimo Cecchi -Date: 2012-01-30 - - application: fix an unfortunate typo - - We were allocating the wrong size for the NemoApplication private - structure. - -M src/nemo-application.c - -commit d60b724d5ee183b1074a137d9cc24c22b3a2259d -Author: Cosimo Cecchi -Date: 2012-01-30 - - undo: fix Redo Trash not updating the trashed mtime - - When we redo a trash operation, we should make sure our trashed files - hash table stores the updated timestamp when we trashed the file - again, - or we won't be able to trash them again. - -M libnemo-private/nemo-file-undo-operations.c - -commit 2a02b02328e20ac66b8cb71140681fdd0ac384ff -Author: Cosimo Cecchi -Date: 2012-01-30 - - undo: make sure to correctly clear the undo state on operation finish - - Don't stack allocate the struct for the file operations return value, - and make sure we don't return success for a failed operation. - -M libnemo-private/nemo-file-undo-operations.c - -commit 2944be953ef54717bb24968b0eebe468c9705db4 -Author: Chao-Hsiung Liao -Date: 2012-01-29 - - Updated Traditional Chinese translation(Hong Kong and Taiwan) - -M po/zh_HK.po -M po/zh_TW.po - -commit 56a0b14e55239bf5076f1c73b30f534af1dd1a86 -Author: Matej Urbančič -Date: 2012-01-28 - - Updated Slovenian translation - -M po/sl.po - -commit f34c331ca81e4bafd6db4c6c36c7b3625c674278 -Author: Matej Urbančič -Date: 2012-01-28 - - Updated Slovenian translation - -M po/sl.po - -commit 3738ee50a11a2d3997c470cb19a23521c60c256e -Author: Yaron Shahrabani -Date: 2012-01-28 - - Updated Hebrew translation. - -M po/he.po - -commit 247a27a94b28304dbb0b4aaf2ff783d0d909a73c -Author: Timo Jyrinki -Date: 2012-01-24 - - Updated Finnish translation. - -M po/fi.po - -commit 9736b263c7830dad6c9de6b42f131395201b993b -Author: Cosimo Cecchi -Date: 2012-01-23 - - undo: remove some URI->GFile roundtrips in the trash undo operations - - We can just store GFiles directly in the hash table and use - g_file_hash() and g_file_equal() instead of parsing the URIs - ourselves. - -M libnemo-private/nemo-file-undo-operations.c - -commit 211d4429171e6d3e307cb175513077f61c86b640 -Author: Cosimo Cecchi -Date: 2012-01-23 - - undo: don't provide any free function for trashed hashtable values - - No need to call g_free() anymore. - -M libnemo-private/nemo-file-undo-operations.c - -commit 3c3096371bb8fda0766c59c9467eb8ed24ed67cf -Author: Arthur Taylor -Date: 2012-01-22 - - Make rubberband fade obey gtk animation setting. - - The rubberband fade-out effect should observe the gtk animation - setting, intened to make life easier for people running - resource contrained setups (like X11 over a network.) - - Signed-off-by: Arthur Taylor - -M libnemo-private/nemo-icon-container.c - -commit 125cc4026585b760071db630ffd6edcce1ad8c93 -Author: Kjartan Maraas -Date: 2012-01-23 - - Updated Norwegian bokmål translation - -M po/nb.po - -commit 7b74cfc6fd6279599753f777620e2537d1f23e61 -Author: Daniel Mustieles -Date: 2012-01-23 - - Updated Spanish translation - -M po/es.po - -commit 45a2f47e35002b316cb8ccb94073deaa6bb75850 -Author: Fran Diéguez -Date: 2012-01-22 - - Updated Galician translations - -M po/gl.po - -commit 362fb6464b62d6fed896d1bc53f6fc763f8fa6fb -Author: Cosimo Cecchi -Date: 2012-01-21 - - undo: rework undo for the trash operation to be asynchronous - - Also, make the mtime checks actually useful; we need to check the - trash::deletion-date attribute and match it with the time we - trashed the - file (which we can easily know using g_get_current_time()). - -M libnemo-private/nemo-file-operations.c -M libnemo-private/nemo-file-undo-operations.c -M libnemo-private/nemo-file-undo-operations.h - -commit c063418e66ed0fdc40b4fd48bc5bd29c0cbefa09 -Author: Cosimo Cecchi -Date: 2012-01-21 - - undo: fix undo move to trash - - We were querying the mtime of the trashed file after it was already - trashed, and we were also overflowing the guint64 assigning -1 to it. - -M libnemo-private/nemo-file-operations.c - -commit bf38d260d1011c08f5e36f3d7d78e10244627e16 -Author: Cosimo Cecchi -Date: 2012-01-21 - - undo: always complete the apply action in idle - - The action might be synchronous. - -M libnemo-private/nemo-file-undo-operations.c - -commit 89cc154cee3e64a771499d21f410854ecc5cd8ad -Author: Piotr Drąg -Date: 2012-01-21 - - Updated POTFILES.in - -M po/POTFILES.in - -commit f8e8507dcfa98e21a1454cb5290b071abec680e4 -Author: Daniel Mustieles -Date: 2012-01-21 - - Updated Spanish translation - -M po/es.po - -commit 5f338fc07e288dcc2ff6e141edc42aade01da284 -Author: Cosimo Cecchi -Date: 2012-01-20 - - undo: remove NemoFileUndoTypes - -M libnemo-private/Makefile.am -D libnemo-private/nemo-file-undo-types.h - -commit 3f45de05a6a87c8d432e94375f714c3da1f8fc34 -Author: Cosimo Cecchi -Date: 2012-01-20 - - view: use NemoFileUndoInfo directly - - Get the info object from the manager and use that to build menus. - -M src/nemo-view.c - -commit aac633c6d66d7dd9753b645e88657a7f6257e8eb -Author: Cosimo Cecchi -Date: 2012-01-20 - - file/file-operations: adapt to changes in file undo manager - - And fix some typos. - -M libnemo-private/nemo-file-operations.c -M libnemo-private/nemo-file-private.h -M libnemo-private/nemo-file.c - -commit 1f758301ee89b5f96bcb650f039696a7049fac44 -Author: Cosimo Cecchi -Date: 2012-01-20 - - file-undo-manager: use NemoFileUndoInfo - - Rework NemoFileUndoManager to use the new NemoFileUndoInfo - objects. - At the same time, make it use a single item instead of a queue, - turning - it into a state machine. This has various reasons; from a code - perspective, if we keep a stack of operations, we should also - keep track - and invalidate items in there when something changes on the - filesystem, - but this can be very expensive. - On the other hand in the UI we probably don't want to expose more than - one item anyway. - -M libnemo-private/nemo-file-undo-manager.c -M libnemo-private/nemo-file-undo-manager.h - -commit 69e79e2f9d3c8c2bbae4a0a32e58f42385c662b4 -Author: Cosimo Cecchi -Date: 2012-01-20 - - undo: turn NemoFileUndoData into NemoFileUndoInfo - - Make it a GObject with subclasses for each type of operations. - This allows for easy sharing of the base class object with the view as - well, for menu information, and provides an async API to the undo - manager for the file operation. - -M libnemo-private/nemo-file-operations.c -M libnemo-private/nemo-file-private.h -M libnemo-private/nemo-file-undo-operations.c -M libnemo-private/nemo-file-undo-operations.h -M libnemo-private/nemo-file-undo-types.h -M libnemo-private/nemo-file.c - -commit 44b695b9af6a26fbf2979a19fd638cc3682c89bb -Author: Cosimo Cecchi -Date: 2012-01-18 - - file-operations: first pass at passing on success information - - We want to know if a file operation failed for some reason, so that we - don't add it in the redo queue. - -M libnemo-private/nemo-file-operations.c -M libnemo-private/nemo-file-operations.h -M libnemo-private/nemo-file-undo-manager.c -M libnemo-private/nemo-file-undo-manager.h -M libnemo-private/nemo-file-undo-operations.c -M libnemo-private/nemo-file-undo-operations.h -M libnemo-private/nemo-file-undo-types.h -M src/nemo-places-sidebar.c -M src/nemo-properties-window.c -M src/nemo-tree-sidebar.c -M src/nemo-view.c -M test/test-copy.c - -commit f76844a3208033a97532222ce531bd9a04205871 -Author: Cosimo Cecchi -Date: 2012-01-16 - - undo: pass in a GtkWindow for undo operations - - So that dialogs triggered by the file operations can correctly be - parented. - -M libnemo-private/nemo-file-undo-manager.c -M libnemo-private/nemo-file-undo-manager.h -M libnemo-private/nemo-file-undo-operations.c -M libnemo-private/nemo-file-undo-types.h -M src/nemo-view.c - -commit dcf5d6796b5adc13a4b03d36f30d9f15025e9df9 -Author: Amos Brocco -Date: 2012-01-16 - - undo: introduce undo support - -M libnemo-private/Makefile.am -M libnemo-private/nemo-debug.c -M libnemo-private/nemo-debug.h -M libnemo-private/nemo-file-operations.c -M libnemo-private/nemo-file-private.h -A libnemo-private/nemo-file-undo-manager.c -A libnemo-private/nemo-file-undo-manager.h -A libnemo-private/nemo-file-undo-operations.c -A libnemo-private/nemo-file-undo-operations.h -A libnemo-private/nemo-file-undo-types.h -M libnemo-private/nemo-file.c -M src/nemo-directory-view-ui.xml -M src/nemo-shell-ui.xml -M src/nemo-view.c -M src/nemo-window-menus.c - -commit 88f18618ba15b952a739e410b910508f244b1fc3 -Author: Vincent Untz -Date: 2012-01-19 - - build: Support build against tracker 0.13/0.14 - - https://bugzilla.gnome.org/show_bug.cgi?id=667853 - -M configure.in - -commit b65b13f59e0bb20497751a5c13ea85ccb7ebb2ba -Author: Daniel Mustieles -Date: 2012-01-17 - - Updated Spanish translation - -M po/es.po - -commit 01a2c0affada3157cf5b7b8147e27d6a0a0151dc -Author: Fran Diéguez -Date: 2012-01-17 - - Updated Galician translations - -M po/gl.po - -commit 3795ec8883676e367be1d7f9d6314a1a7e781fd7 -Author: Cosimo Cecchi -Date: 2012-01-16 - - notebook: use a symbolic icon for the tab close image - -M src/nemo-notebook.c - -commit 1a5cc61ae329d3776e8d75fd46b0e9326f0e7654 -Author: Kjartan Maraas -Date: 2012-01-16 - - Updated Norwegian bokmål translation - -M po/nb.po - -commit 8ff0ae7d645b4c076977ab889b46a20392d3da25 -Author: Cosimo Cecchi -Date: 2012-01-16 - - release: prepare for 3.3.4 - -M NEWS -M configure.in - -commit 8c778211e5c826998890d2034b828928c693e4d9 -Author: Carlos Garnacho -Date: 2012-01-12 - - eel: Queue resizes on the canvas as elements change visibility - - Not queueing resizes may play oddly with the size request caches in - GTK+, resulting in gtk_widget_get_preferred_width/height returning - 0 even after the canvas was populated. - - https://bugzilla.gnome.org/show_bug.cgi?id=667831 - -M eel/eel-canvas.c - -commit f1bb90717ba78533905d3f532940a390371a979c -Author: Cosimo Cecchi -Date: 2012-01-16 - - build: add nemo.gresource.xml to EXTRA_DIST - - Fix distcheck. - -M src/Makefile.am - -commit 132bf6802d9e36354e89469f3ef0b5daa1082299 -Author: Cosimo Cecchi -Date: 2012-01-16 - - extension: doc cleanups - -M docs/reference/libnemo-extension/Makefile.am -M -docs/reference/libnemo-extension/libnemo-extension-docs.xml -M -docs/reference/libnemo-extension/libnemo-extension-sections.txt - -commit e79c28b48008ed5e94763417b4a68b86ffcfd919 -Author: Cosimo Cecchi -Date: 2012-01-16 - - extension: add some more missing gir annotations - -M libnemo-extension/nemo-column-provider.c -M libnemo-extension/nemo-menu-provider.c -M libnemo-extension/nemo-menu.c -M libnemo-extension/nemo-property-page-provider.c - -commit f04f79a424a03127c4d3ab44bd1363ff00ade212 -Author: Cosimo Cecchi -Date: 2012-01-16 - - build: update gitignore - -M data/.gitignore -M src/.gitignore - -commit 607c8a11f41d7f1a49f67421d4b98a6edbcbcee5 -Author: Cosimo Cecchi -Date: 2012-01-16 - - module: don't access the GModule if none was returned - - Before checking if the GModule pulls in ORBit, we should make sure - g_module_open() returned a non-NULL GModule. - -M libnemo-private/nemo-module.c - -commit 024381aac07aeb7ed161913e601fcefbf4e3f990 -Author: Marcus Carlson -Date: 2012-01-16 - - file-operations: show current file counter and total files - - Change the file operation strings so that both the current file - counter - and the total number of files are shown in the UI. - - https://bugzilla.gnome.org/show_bug.cgi?id=606955 - -M libnemo-private/nemo-file-operations.c - -commit e0b3e63b6fedb8bd056c80647c43f4f388c3b1ed -Author: Cosimo Cecchi -Date: 2012-01-16 - - build: require latest GLib and GTK+ - - This is needed for the new resources API. - -M configure.in - -commit 733c890a5d7e4615b754accc0c7906545b9a0b59 -Author: Alexander Larsson -Date: 2012-01-12 - - Move all ui files and icons into resources - -M icons/Makefile.am -M libnemo-private/nemo-file-utilities.c -M libnemo-private/nemo-file-utilities.h -M libnemo-private/nemo-icon-canvas-item.c -M libnemo-private/nemo-thumbnails.c -M libnemo-private/nemo-ui-utilities.c -M libnemo-private/nemo-ui-utilities.h -M src/Makefile.am -M src/nemo-bookmarks-window.c -M src/nemo-desktop-icon-view.c -M src/nemo-file-management-properties.c -M src/nemo-icon-view.c -M src/nemo-list-view.c -M src/nemo-toolbar.c -M src/nemo-view.c -M src/nemo-window-menus.c -A src/nemo.gresource.xml - -commit d6291d9ae62de65deaafd72cf9f5a5e22e627cf3 -Author: Yaron Shahrabani -Date: 2012-01-14 - - Updated Hebrew translation. - -M po/he.po - -commit 1df7de8a1ab643ebefe3d8df7ab0343f36687299 -Author: Martin Pitt -Date: 2012-01-05 - - Lazily initialize notification service - - Avoid spawning the notification daemon at startup through querying - server caps. - Instead, cache the result in server_has_persistence() and initialize - it lazily. - - https://bugzilla.gnome.org/show_bug.cgi?id=667342 - -M src/nemo-progress-ui-handler.c - -commit 6010f04793f926d2cc3c3533ce2f8de3f24eccc6 -Author: Og B. Maciel -Date: 2012-01-12 - - Fixes wrong translation on warning about long filename. BGO #667495. - -M po/pt_BR.po - -commit 69cb7b536c0df4331b7c36aca9f71e67c8b19009 -Author: Timo Jyrinki -Date: 2012-01-12 - - Updated Finnish translation. - -M po/fi.po - -commit 6003b063ee2af39644d4138e52ae93bd5b513ac1 -Author: Cosimo Cecchi -Date: 2012-01-09 - - extension: add some annotations - -M libnemo-extension/nemo-file-info.c -M libnemo-extension/nemo-location-widget-provider.c - -commit 0d0eb9b50e5fd24a09bc2b9c141950fb75d86db3 -Author: Cosimo Cecchi -Date: 2012-01-09 - - window: make nemo_window_prompt_for_location() private - -M src/nemo-window-menus.c -M src/nemo-window.c -M src/nemo-window.h - -commit d01abc43d6bf016b573cbd0d6b6d0dc1bd127873 -Author: Cosimo Cecchi -Date: 2012-01-09 - - window: remove unused view-as-changed signal - -M src/nemo-window.c - -commit 006e8207d13da318aa912a860930dd79f04fb085 -Author: Cosimo Cecchi -Date: 2012-01-09 - - window: remove unused zoom-changed signal - -M src/nemo-window.c - -commit d48669776205bf7732601d73d2fddec5b44a53ef -Author: Cosimo Cecchi -Date: 2012-01-09 - - pane: remove useless assertion - - Now that the slots are direct pages of the GtkNotebook, there's - no need - to ensure the slot is in the pane's list, since we already assert on - gtk_notebook_page_num(slot) >= 0. - -M src/nemo-window-pane.c - -commit ec391bf3de51ab4ee7f510ab6570fc240a7754c0 -Author: Cosimo Cecchi -Date: 2012-01-09 - - slot: make NemoWindowSlot a GtkBox - - Simplifies management of the slot quite a bit. - -M src/nemo-notebook.c -M src/nemo-window-manage-views.c -M src/nemo-window-manage-views.h -M src/nemo-window-pane.c -M src/nemo-window-pane.h -M src/nemo-window-slot.c -M src/nemo-window-slot.h - -commit 283c4903139dc08b7b69afa117870e143cc64137 -Author: Cosimo Cecchi -Date: 2012-01-09 - - notebook: remove unused defines - -M src/nemo-notebook.c - -commit 115c960e939a1c1fa6db97a105fe92d0b70ecde8 -Author: Cosimo Cecchi -Date: 2012-01-09 - - slot: remove unused cases for NemoLocationChangeType - -M src/nemo-window-manage-views.c -M src/nemo-window-slot.h - -commit 1cb66dfb4c3750a142dfd3130613b52b1d386eff -Author: Cosimo Cecchi -Date: 2012-01-07 - - search-bar: remove unused focus-in signal - -M src/nemo-search-bar.c -M src/nemo-search-bar.h - -commit f49a5b864058cc5bb4b1534ab03e89d1e9fdbc34 -Author: Cosimo Cecchi -Date: 2012-01-07 - - window: move nemo_window_update_up_button() to NemoWindow - -M src/nemo-window-manage-views.c -M src/nemo-window-manage-views.h -M src/nemo-window-pane.c -M src/nemo-window-private.h -M src/nemo-window.c - -commit 2705e8019c6f6b3714b679788827c5c297798cf9 -Author: Cosimo Cecchi -Date: 2012-01-07 - - pane: cleanup - -M src/nemo-properties-window.c -M src/nemo-window-manage-views.c -M src/nemo-window-menus.c -M src/nemo-window-pane.c -M src/nemo-window-types.h -M src/nemo-window.c -M src/nemo-window.h - -commit 1af49b5dd84e9127785f2c507940574d6f62ecbf -Author: Cosimo Cecchi -Date: 2012-01-07 - - window: use g_clear_object - -M src/nemo-window-manage-views.c -M src/nemo-window-menus.c - -commit 4d22ba9b6100556bf6f81f827b38dc9ad0626ac3 -Author: Cosimo Cecchi -Date: 2012-01-06 - - window: nuke unused functions - -M src/nemo-window-manage-views.c -M src/nemo-window-manage-views.h - -commit ed97a6ec6db1a618bc65705618e5b73748e4cd7e -Author: Cosimo Cecchi -Date: 2012-01-06 - - all: use nemo_window_slot_get_window() - -M src/nemo-window-manage-views.c -M src/nemo-window-pane.c -M src/nemo-window-slot.c -M src/nemo-window.c - -commit f1f7bf476b3c932d13927e55292e8bd8b77b29d8 -Author: Cosimo Cecchi -Date: 2012-01-06 - - application: remove useless assignment - -M src/nemo-application.c - -commit e83f6e0990971ea22275bd9cf877541b7824ab14 -Author: Cosimo Cecchi -Date: 2012-01-06 - - pane: refactor to make NemoWindow a GObject property - -M src/nemo-window-pane.c - -commit 93923f66225434e42ef6bb8588e7d3fbdb3409a4 -Author: Cosimo Cecchi -Date: 2012-01-06 - - window: fold nemo_window_allow_up() into its only caller - -M src/nemo-window-manage-views.c -M src/nemo-window.c -M src/nemo-window.h - -commit f5db1b3062a42a649fbc11e4272399cfa70dc772 -Author: Cosimo Cecchi -Date: 2012-01-06 - - window: remove unused nemo_window_allow_back/forward - -M src/nemo-window.c -M src/nemo-window.h - -commit f784b5b57503e58c49a1d55b0c664096951c9018 -Author: Cosimo Cecchi -Date: 2012-01-06 - - pane: use nemo_navigation_state_set_boolean() - -M src/nemo-window-pane.c - -commit f3eff82082f4ebd88e01d3efbe2631a15989cfa9 -Author: Cosimo Cecchi -Date: 2012-01-06 - - navigation-state: add API to sync a boolean value on a tracked action - -M src/nemo-navigation-state.c -M src/nemo-navigation-state.h - -commit 9384542c1821420c01962237d23e9716bc5a8404 -Author: Cosimo Cecchi -Date: 2012-01-06 - - window: add nemo_window_get_navigation_state() - -M src/nemo-window-menus.c -M src/nemo-window-pane.c -M src/nemo-window.c -M src/nemo-window.h - -commit f876211d2e318580d1f28c57e7f0182f7c5bfb3a -Author: Cosimo Cecchi -Date: 2012-01-06 - - window: add nemo_window_get_main_action_group() - -M src/nemo-desktop-window.c -M src/nemo-window-menus.c -M src/nemo-window.c -M src/nemo-window.h - -commit 419d49de7dd714095fbd63dd7093fec5c07a52fb -Author: Cosimo Cecchi -Date: 2012-01-06 - - slot: fold function into the only caller - - Also simplify its code a bit. - -M src/nemo-window-slot.c - -commit 7289cc044cfaa3eee69396805d4e6dd8644a9483 -Author: Cosimo Cecchi -Date: 2012-01-06 - - slot: cleanup NemoWindowSlot creation - -M src/nemo-window-pane.c -M src/nemo-window-slot.c -M src/nemo-window-slot.h - -commit b09427273f525753b4b792bfdfb333e28c2e0ea9 -Author: Cosimo Cecchi -Date: 2012-01-06 - - window: misc cleanups - -M src/nemo-window-bookmarks.c -M src/nemo-window-private.h -M src/nemo-window.c - -commit 33a79d4ca73be9b45b19ff28cd702103a40333c5 -Author: Cosimo Cecchi -Date: 2012-01-06 - - window: move nemo_window_open_slot to NemoWindowPane - - Where it should really belong. - -M src/nemo-window-manage-views.c -M src/nemo-window-pane.c -M src/nemo-window-pane.h -M src/nemo-window-private.h -M src/nemo-window.c - -commit 0d83fdffed7b3c8987e19f6e5ef6f304f5efdb9d -Author: Cosimo Cecchi -Date: 2012-01-06 - - slot: don't include gi18n.h in the header - -M src/nemo-bookmarks-window.c -M src/nemo-progress-ui-handler.c -M src/nemo-view-dnd.c -M src/nemo-window-pane.c -M src/nemo-window-slot.c -M src/nemo-window-slot.h - -commit ac606bd25e13914c28702a5099905ead4e1c1510 -Author: Cosimo Cecchi -Date: 2012-01-06 - - all: use nemo_window_get_active_pane() - -M src/nemo-window-manage-views.c -M src/nemo-window-menus.c -M src/nemo-window-pane.c -M src/nemo-window.c - -commit 455c8da5981db559d7d47d9f9fcb8dac8297d4ac -Author: Cosimo Cecchi -Date: 2012-01-06 - - all: use nemo_window_get_active_slot() - -M src/nemo-location-bar.c -M src/nemo-window-bookmarks.c -M src/nemo-window-manage-views.c -M src/nemo-window-menus.c -M src/nemo-window-pane.c -M src/nemo-window-private.h -M src/nemo-window-slot.c -M src/nemo-window.c - -commit cc151a40cebda4ba7d4adc40c702f0210614105f -Author: Cosimo Cecchi -Date: 2012-01-02 - - window: remove bookmark menu placeholder path from NemoWindowClass - - It's not used by the only subclass we have now. - -M src/nemo-window-bookmarks.c -M src/nemo-window.c -M src/nemo-window.h - -commit 6c8896cfc1a52b0eec31bec3090ee5661af1931e -Author: Cosimo Cecchi -Date: 2012-01-02 - - window: remove nemo_window_get_window_type() - - It's unused now. - -M src/nemo-desktop-window.c -M src/nemo-window.c -M src/nemo-window.h - -commit f167ba4f3f3d571169c07584528e748391c5a833 -Author: Cosimo Cecchi -Date: 2012-01-02 - - view: don't use nemo_window_get_window_type() - - Just check if the view is a NemoDesktopIconView instead. - -M src/nemo-view.c - -commit 6561bf66c37ffcff450c7880300661ee260ec5c7 -Author: Cosimo Cecchi -Date: 2012-01-02 - - window: remove unused code - -M src/nemo-window-private.h -M src/nemo-window.c -M src/nemo-window.h - -commit b5316226924feb948de5f372962c7174ff8fa10d -Author: Cosimo Cecchi -Date: 2012-01-02 - - window: remove nemo_window_show_window() - - Fold it into the only caller, and simplify its code. - -M src/nemo-window.c -M src/nemo-window.h - -commit 1d06cfcff92afc46bcaf5b313a604b93d76cbdd9 -Author: Cosimo Cecchi -Date: 2012-01-02 - - window: remove useless assignment - -M src/nemo-window.c - -commit d84023681be2f192ccbd4fe5c3b07631c683911f -Author: Cosimo Cecchi -Date: 2012-01-02 - - window: simplify code - - Fold function into the only caller. - -M src/nemo-window.c - -commit 00ad5bc605488e15a6877ce94cbd0e4b1f42cdb1 -Author: Ihar Hrachyshka -Date: 2012-01-10 - - Updated Belarusian translation. - -M po/be.po - -commit 7aff7fb6b0e5b7717e06944c09de734270d85ed8 -Author: Diego Escalante Urrelo -Date: 2011-12-29 - - floating-bar: misc indentation fixes - -M src/nemo-floating-bar.c - -commit 2cd406307863c268d045487daeedeb36e22a19bf -Author: Alexander Shopov -Date: 2012-01-08 - - Updated Bulgarian translation - -M po/bg.po - -commit 669ab8445bb33f00dfeb6584fdc431ea942fda79 -Author: Nguyễn Thái Ngọc Duy -Date: 2012-01-06 - - Updated Vietnamese translation - -M po/vi.po - -commit f4d439875b3a101fa195012fb8a6607542e69b9a -Author: Nguyễn Thái Ngọc Duy -Date: 2012-01-06 - - po/vi: import from Damned Lies - -M po/vi.po - -commit 02c0d8b671ee9cd61374b28d1627ab8edff7fe41 -Author: Mattias Põldaru -Date: 2012-01-02 - - [l10n] Updated Estonian translation - -M po/et.po - -commit a9627858a6b49e505b97c210e95f0bafa91e0a90 -Author: Jovan Naumovski -Date: 2012-01-01 - - Updated Macedonian translation. - -M po/mk.po - -commit 54dd59e149edcc6d744bba5cd7576526e9b52075 -Author: Wylmer Wang -Date: 2011-12-27 - - Update Simplified Chinese translation - -M po/zh_CN.po - -commit aacde57c44b1259ed476507b6288416d999832f9 -Author: Andreas N -Date: 2011-12-26 - - Updated Norwegian Nynorsk translation - -M po/nn.po - -commit 1a050ded4c3625c56022a1d50b856cf298d1f2c2 -Author: Xandru Armesto -Date: 2011-12-22 - - Updated asturian translation - -M po/ast.po - -commit c6510f6b07caeeffacbfa062660e4fca0219d958 -Author: Jürg Billeter -Date: 2011-12-20 - - build: Add gmodule as dependency - - With GLib 2.31.4 and later, linking against GIO no longer drags in - gmodule. - -M configure.in - -commit 54ae064f753582a8b0745110b45724b99eb913a4 -Author: Cosimo Cecchi -Date: 2011-12-19 - - release: prepare for 3.3.3 - -M NEWS -M configure.in - -commit 2de1c3a4a0294006bbcf950f7473ff962848dc1c -Author: Cosimo Cecchi -Date: 2011-12-19 - - fdo-dbus: dist the DBus interface XML file - - Fixes distcheck - -M data/Makefile.am - -commit 642835db7ab148e44733206a09bf55cd14660e5a -Author: Cosimo Cecchi -Date: 2011-12-19 - - fdo-dbus: don't dist generated dbus sources - - Use nodist_nemo_SOURCES, like the generated object manager for - org.Nemo.FileOperations - -M src/Makefile.am - -commit f35e710d3c31fc2af5ddce9c31a52d408e215276 -Author: Cosimo Cecchi -Date: 2011-12-19 - - fdo-dbus: use the right include for nemo-debug.h - - Fixes distcheck - -M src/nemo-freedesktop-dbus.c - -commit 85af4ef2e58b45dcd40f6ba692b12e73c6cf6ffd -Author: Pierre Wieser -Date: 2011-12-19 - - Set icons from extensions on the context menu GtkActions - - This way, if icons are set to display in e.g. menus, extensions - one will - be properly shown. - - https://bugzilla.gnome.org/show_bug.cgi?id=665822 - -M libnemo-private/nemo-ui-utilities.c -M libnemo-private/nemo-ui-utilities.h -M src/nemo-view.c - -commit 773fdc3e2ba7fef4bf824c865a0f3aba14fc785a -Author: Stefano Teso -Date: 2011-12-04 - - places-sidebar: make Desktop dir bookmarkable if not shown by default - - See: https://bugzilla.gnome.org/show_bug.cgi?id=663956 - -M src/nemo-places-sidebar.c - -commit 2ee1b4060b1d99c67e528d626514968384277af5 -Author: Nelson Benitez Leon -Date: 2011-12-13 - - Show background menu when clicking on blank space - - Fixes bug 94618 - -M src/nemo-list-view.c - -commit 73b2f5e9de469f7997c8ab4d12f1aa542a4e7e54 -Author: Nelson Benitez Leon -Date: 2011-12-14 - - Fix race condition when right-clicking after rubberbanding - - Fixes bug 662979 - -M libnemo-private/nemo-icon-container.c - -commit 1fbc4002d38f42a5e9536dc3f1b59438d362d94e -Author: Petr Kovar -Date: 2011-12-15 - - Fix Czech translation - -M po/cs.po - -commit 6ed0cae9df696b816309b6c6d8fdb2660c66b922 -Merge: 11fa184 f01e2e9 -Author: Federico Mena Quintero -Date: 2011-12-14 - - Merge branch 'freedesktop-dbus' - bgo#636269 - - This adds an implementation for the DBus interface - org.freedesktop.NemoFileManager1. - - This lets applications call the file manager to show a file within - a folder, - to show a folder's contents, or to show a file's properties. - - The main work behind this is by Akshay Gupta , - done during the Google Summer of Code 2011. - -commit f01e2e9b5fa6dcd0514bdf5efe5f76b4312f1fd3 -Author: Federico Mena Quintero -Date: 2011-12-14 - - Add an org.freedesktop.NemoFileManager1.service file for DBus - - Even though this registers a service for a freedesktop name with - a Gnome-specific - program (Nemo), we'll just do this for now. - - Later we can discuss in the DBus list how to launch services with - generic - interfaces, but specific implementations for each desktop environment. - - Signed-off-by: Federico Mena Quintero - -M data/Makefile.am -A data/org.freedesktop.NemoFileManager1.service.in - -commit 73e5a35efcd7607d6a3ee5e8bd5e8278a86d6705 -Author: Federico Mena Quintero -Date: 2011-12-14 - - Remove superfluous helper function - - Signed-off-by: Federico Mena Quintero - -M src/nemo-properties-window.c - -commit 371e178550587cad04941493c6129e8e454223ab -Author: Cosimo Cecchi -Date: 2011-12-14 - - Use a single method to create properties windows - - Make startup_id a param of nemo_properties_window_present(). - -M src/nemo-freedesktop-dbus.c -M src/nemo-places-sidebar.c -M src/nemo-properties-window.c -M src/nemo-properties-window.h -M src/nemo-tree-sidebar.c -M src/nemo-view.c - -commit 6e02005986b78879f4d3e23342c90accfa241745 -Author: Cosimo Cecchi -Date: 2011-12-14 - - properties-window: parent_widget and startup_id are not mutual - - Even though we don't (yet) use the same code path when building a - properties window for a parent widget and for a startup_id - (i.e. there's - no call that sets both), there's no reason to make them mutually - exclusive in code when creating the window. - -M src/nemo-properties-window.c - -commit 326f5d86a5650d201c48acacaf77752d544668da -Author: Cosimo Cecchi -Date: 2011-12-14 - - fdo-dbus: coding style cleanups - -M src/nemo-freedesktop-dbus.c - -commit c0752563fe6f2a0454069b93c9a29dae11a2e833 -Author: Cosimo Cecchi -Date: 2011-12-14 - - fdo-dbus: handle g_file_get_parent() failing - - g_file_get_parent() can return NULL if the file is a root element. - Handle that case gracefully in the code. - -M src/nemo-freedesktop-dbus.c - -commit 8aa21c333115cec5eab0cd3965684b9b09dc7fa3 -Author: Cosimo Cecchi -Date: 2011-12-14 - - application: streamline code for creating selection list - -M src/nemo-application.c - -commit 14f7dd8cdbbe04b84c2b8f75134cefd45aaf9c4b -Author: Federico Mena Quintero -Date: 2011-12-13 - - Pass the startup_id when creating the properties window - - This completes the implementation of the DBus interface. - - Signed-off-by: Federico Mena Quintero - -M src/nemo-freedesktop-dbus.c - -commit 625dac4492e7daf7fef46c8dc4990da5d786efad -Author: Federico Mena Quintero -Date: 2011-12-13 - - Add nemo_properties_window_present_with_startup_id() - - This lets us pass a startup_id string instead of a parent_widget; - this will - be used from the Freedesktop DBus interface. - - Signed-off-by: Federico Mena Quintero - -M src/nemo-properties-window.c -M src/nemo-properties-window.h - -commit 9868b796ec9d4761512d0a948bf0d6438be6702c -Author: Federico Mena Quintero -Date: 2011-12-13 - - Don't use nested if()s when a single one will do - -M src/nemo-properties-window.c - -commit ebc2d0728553cded8dcb5f65d0075e2e7c9d277e -Author: Federico Mena Quintero -Date: 2011-12-13 - - Use g_clear_object() instead of verbose code - -M src/nemo-freedesktop-dbus.c - -commit 08c2044e7056a9d6113dbf3613ea6303b6f0180d -Author: Federico Mena Quintero -Date: 2011-12-13 - - Implement ShowItems() vs. ShowFolders() from the DBus interface - - We use the new nemo_application_open_location() to do this; - now we can distinguish 'open a location and select something - inside it', - vs. 'show a location'. - - Signed-off-by: Federico Mena Quintero - -M src/nemo-freedesktop-dbus.c - -commit 29ecfd7fb83c57289fc5e46a05cbead958f4b1ef -Author: Federico Mena Quintero -Date: 2011-12-13 - - Add nemo_application_open_location() - - This is a convenience function so that NemoFreedesktopDBus - can cause - the application to open a location and optionally select an item - within that location. - - Signed-off-by: Federico Mena Quintero - -M src/nemo-application.c -M src/nemo-application.h - -commit 3a899726ac482ae90f1b8fb52657ee80fef3a7fe -Author: Federico Mena Quintero -Date: 2011-12-13 - - Turn NemoFreeDesktopDBus into a GObject internally - - This is to match NemoDBusManager. - - Signed-off-by: Federico Mena Quintero - -M src/nemo-freedesktop-dbus.c - -commit 11fa1848dca3af78cd0f984f7c84f2214140f023 -Author: Rudolfs Mazurs -Date: 2011-12-13 - - Updated Latvian translation - -M po/lv.po - -commit 5294105677f371998043dde98a94847a1246c421 -Author: Ryan Lortie -Date: 2011-12-13 - - nemo application: use GActionMap - - g_application_set_action_group() is deprecated for favour of - GActionMap, - so use that instead. - - Bump the glib version dependency for GActionMap. - -M configure.in -M src/nemo-application.c - -commit 33ca9cd5b0be3dcf092b7174591ede34edf2346d -Author: Cosimo Cecchi -Date: 2011-12-08 - - eel: remove unused eel_accessibility_set_name/description - -M eel/eel-accessibility.c -M eel/eel-accessibility.h - -commit f78dee9affd9c88ce410c42cbf9c1118839d33d7 -Author: Cosimo Cecchi -Date: 2011-12-08 - - view: use ATK API directly to set accessible name/description - -M src/nemo-view.c -M src/nemo-window-manage-views.c - -commit c76dc41521c9327a7aa121f35e68e10b6783f740 -Author: Cosimo Cecchi -Date: 2011-12-07 - - application: add a compatibility dummy --browser cmdline option - - External scripts or desktop files from previous might still call - nemo with the --browser option, and it's bad to just fail in that - case. Add a dummy (and hidden) cmdline option that does nothing for - --browser. - - https://bugzilla.gnome.org/show_bug.cgi?id=665700 - -M src/nemo-application.c - -commit 4b497142b1c2361cf38c0804a283b8b419c3b623 -Author: Cosimo Cecchi -Date: 2011-12-07 - - man: remove reference to --browser option from the manual - - The option is not supported anymore since 3.0. - - https://bugzilla.gnome.org/show_bug.cgi?id=665700 - -M docs/nemo.1 - -commit ecf70ad6a66cc1450935e54ebffd95660ebc05a4 -Author: Akshay Gupta -Date: 2011-12-06 - - Implement ShowItemProperties() - -M src/nemo-freedesktop-dbus.c - -commit f65bd26d6f3691006c291f88e6c3b1add349d985 -Author: Federico Mena Quintero -Date: 2011-12-06 - - Allow creating a properties window with a NULL parent widget - - When the ShowItemProperties() DBus call comes in, it doesn't come from - a parent widget. Instead, it has a startup ID. So, we need - to be able to pass a NULL parent_widget to the properties window. - - Signed-off-by: Federico Mena Quintero - -M src/nemo-properties-window.c - -commit 5f3b0071d11cc864d135f35b7b85b07a5395f97a -Author: Akshay Gupta -Date: 2011-12-06 - - Implement ShowFolders() - - NemoApplication doesn't make a distinction between showing files - and showing folders, so for now we'll use the same implementation. - -M src/nemo-freedesktop-dbus.c - -commit 08b590a4c6014d6a91a525b3183d3266788703a4 -Author: Akshay Gupta -Date: 2011-12-06 - - Implement ShowItems() - - Unfortunately g_application_open() and NemoApplication don't - actually - use the startup_id. We will have to pass this in another fashion - later. - -M src/nemo-freedesktop-dbus.c - -commit e7dc7a27001dcadb8f7a2cafb26bbb3be724d801 -Author: Federico Mena Quintero -Date: 2011-12-06 - - Initialize the freedesktop DBus manager from NemoApplication - - Signed-off-by: Federico Mena Quintero - -M src/nemo-application.c - -commit e1a2bcecf4d4dea845194c943f82c60f8c6c6d36 -Author: Federico Mena Quintero -Date: 2011-12-06 - - Pass the NemoApplication to the freedesktop DBus manager - - Signed-off-by: Federico Mena Quintero - -M src/nemo-freedesktop-dbus.c -M src/nemo-freedesktop-dbus.h - -commit 456afcbb6042c8f1ab73f240e5be5eabd681e090 -Author: Federico Mena Quintero -Date: 2011-12-06 - - DBus boilerplate for handling the org.freedesktop.NemoFileManager1 service - - Signed-off-by: Federico Mena Quintero - -M src/Makefile.am -A src/nemo-freedesktop-dbus.c -A src/nemo-freedesktop-dbus.h - -commit aa01e30c0d3d585bd808ed1ab53c5ca396371cd1 -Author: Federico Mena Quintero -Date: 2011-12-06 - - Generate the org.freedesktop DBus code - - Signed-off-by: Federico Mena Quintero - -M src/.gitignore -M src/Makefile.am - -commit a3c387089e3bb9eaafe8b033bd334d151ccebe06 -Author: Akshay Gupta -Date: 2011-12-06 - - Add declaration for the org.freedesktop.NemoFileManager1 DBus interface - - This is not in dbus-interfaces.xml as that one has a different - namespace (org.gnome.Nemo), and that makes the generated - code from gdbus-codegen really ugly. By keeping a separate - file for this interface, we can get pretty generated code. - -A data/freedesktop-dbus-interfaces.xml - -commit 40be4b85f51fc7b192ef7421b2ede27954997cc8 -Author: Nelson Benitez Leon -Date: 2011-12-02 - - Make 'next row' behaviour work again by making it general According - to feedback on a11y list this should not hurt a11y. Fixes bug 660881 - -M libnemo-private/nemo-icon-container.c - -commit 2721796f86efd1e7e118c9531657e815bd1e0c60 -Author: Cosimo Cecchi -Date: 2011-12-05 - - idle-queue: remove unused NemoIdleQueue - -M libnemo-private/Makefile.am -M libnemo-private/nemo-directory-private.h -D libnemo-private/nemo-idle-queue.c -D libnemo-private/nemo-idle-queue.h - -commit 896a9cf4bbadfc19c6d69fa53bd9ea46cb81989c -Author: Rui Matos -Date: 2011-12-02 - - icon-container: use a threshold to start scrolling while rubberbanding - - This allows us to scroll while rubberbanding when the window is - maximized and - thus the pointer can't possibly leave the widget area. - - https://bugzilla.gnome.org/show_bug.cgi?id=665383 - -M libnemo-private/nemo-icon-container.c - -commit cdf858fbfccdbca7bd8fc27f0f85e815177ee8c6 -Author: Stefano Teso -Date: 2011-11-30 - - Avoid deprecate gtk_widget_get_pointer(). - -M libnemo-private/nemo-icon-container.c - -commit 0a5838004030f64d9f27c55a3f2f49275b82b79f -Author: Cosimo Cecchi -Date: 2011-12-02 - - properties-window: initiate a new row when no sibling is provided - - This was the original intent of this code. - -M src/nemo-properties-window.c - -commit 098aa9334123334d500c166f13dc47f5f110cd8a -Author: Cosimo Cecchi -Date: 2011-12-02 - - window: explicitly destroy the sidebar in _destroy() - - When the nemo window is destroyed, make sure to explicitly destroy - the sidebar before the panes. - Destroying all the panes can trigger a callback back into the sidebar, - which would then try to access the window pane list from the callback. - The pane list was already destroyed and cleared at that point though, - and we would segfault. - - https://bugzilla.gnome.org/show_bug.cgi?id=652320 - -M src/nemo-window.c - -commit 7e351fd5ead64be1343eea6d357a2edb25f9a721 -Author: Dmitry Shachnev -Date: 2011-12-01 - - Don't allow "New tab" (Ctrl+T) shortcut in desktop window - - Disable the New Tab action on the desktop. - - https://bugzilla.gnome.org/show_bug.cgi?id=655256 - -M src/nemo-desktop-window.c - -commit f1d9644efe457d84b9a18f250e85b5d70cb46620 -Author: Praveen Illa -Date: 2011-11-30 - - Updated Telugu Translation - -M po/te.po - -commit 780f8e4abf482628677e4f75ed502e1f18cf2411 -Author: Daniel Nylander -Date: 2011-11-25 - - Updated Swedish translation - -M po/sv.po - -commit cd99b28b903e0c3c69f142dd5c7977bb791d9cf1 -Author: Cosimo Cecchi -Date: 2011-11-23 - - places-sidebar: sort the XDG dirs section for the current locale - - The XDG dirs section should not hardcode an english ordering, - but follow - the current locale. - - https://bugzilla.gnome.org/show_bug.cgi?id=664464 - -M src/nemo-places-sidebar.c - -commit 786b34ff9abfae433956077a5feb2978d126ecfb -Author: Stas Solovey -Date: 2011-11-16 - - Updated Russian translation - -M po/ru.po - -commit a76dce8845b9bca8e01e67ad547ae158cff18456 -Author: Thura Hlaing -Date: 2011-11-14 - - [l10n]Added Burmese translation - -M po/LINGUAS -A po/my.po - -commit 3aeff5a3d2114b77126686bd642716b21f4aa014 -Author: Fran Diéguez -Date: 2011-11-13 - - Updated Galician translations - -M po/gl.po - -commit b81330c62d232af66c5be7186f2badabecd52673 -Author: Daniel Mustieles -Date: 2011-11-09 - - Updated Spanish translation - -M po/es.po - -commit 12bc05de21fed18ac985470fa55174629de6470f -Author: Kristjan SCHMIDT -Date: 2011-11-04 - - Updated Esperanto translation - -M po/eo.po - -commit aff2f078ef222f28a8a32408260efdfc7d8be8d9 -Author: Gabor Kelemen -Date: 2011-10-29 - - Fix a small mistranslation in the Hungarian po - -M po/hu.po - -commit 9208a93c2d3f85bcb10c05c1cfc55b33b545ca46 -Author: Yaron Shahrabani -Date: 2011-10-27 - - Updated Hebrew translation. - -M po/he.po - -commit f01c138bc3567cfedb476bcc4e2a66da8b3b38ee -Author: Kristjan SCHMIDT -Date: 2011-10-26 - - Updated Esperanto translation - -M po/eo.po - -commit b3dde943b7628bf32076b3e375256a775786d05b -Author: Cosimo Cecchi -Date: 2011-10-25 - - release: bump to 3.3.1.1 - - 3.3.1 was accidentally released with a wrong tarball, bump version and - roll a tarball again. - -M configure.in - -commit f18eb3a0b04ab8b094012bb5d0d2abb0bf7b7799 -Author: Cosimo Cecchi -Date: 2011-10-25 - - build: switch to XZ - -M configure.in - -commit 628c0566f7317c25f30991652a6192d7d8f4fbd8 -Author: Cosimo Cecchi -Date: 2011-10-25 - - release: prepare for 3.3.1 - -M NEWS -M configure.in - -commit 45ee835907056a95c4ae9dad5f7913620ed219d7 -Author: Cosimo Cecchi -Date: 2011-10-25 - - eel-string: don't segfault in eel_str_replace_substring for NULL - strings - - Just check if the strings are != NULL before calling strlen() on them. - -M eel/eel-string.c - -commit 79525a6502316974bd9e28144b82290b1840dac4 -Author: Matej Urbančič -Date: 2011-10-23 - - Updated Slovenian translation - -M po/sl.po - -commit 26a1e55ab5b8ebb8d441569bb790b0c4976c7bf8 -Author: Yaron Shahrabani -Date: 2011-10-22 - - Updated Hebrew translation. - -M po/he.po - -commit 2ce3696a73d5eda0b6213311f2bfee7a600d9256 -Author: Cosimo Cecchi -Date: 2011-10-19 - - places-sidebar: trivial cleanups - -M src/nemo-places-sidebar.c - -commit 4764a856c7a6e5a84d4067e7b105c09a93ffdbe4 -Author: Cosimo Cecchi -Date: 2011-10-19 - - places-sidebar: return if we fail to compute a drop position - - Instead of using an invalid GtkTreePath, which could cause a segfault - later. - - https://bugzilla.gnome.org/show_bug.cgi?id=660876 - -M src/nemo-places-sidebar.c - -commit cda2c75df4b95a481e8b774081ec1240d47fa45f -Author: Cosimo Cecchi -Date: 2011-10-19 - - places-sidebar: don't assert we have a valid selected iter - - When reordering bookmarks, don't assert we have a selected iter, since - it might not always be the case. - - https://bugzilla.gnome.org/show_bug.cgi?id=660876 - -M src/nemo-places-sidebar.c - -commit 7826dfbdc4cb9a5381b6d9845e0ba7459fcd2fe4 -Author: Cosimo Cecchi -Date: 2011-10-19 - - places-sidebar: don't call gtk_tree_model_get() with an invalid path - - If we click on an empty area of the sidebar, we shouldn't pop up any - menu at all anyway, which is what this commit changes. - Previously, we would have tried to get a GtkTreePath for the currently - selected point and an iter for that (invalid) path, which would - lead to - gtk_tree_model_get() segfaulting on an invalid iter. - - https://bugzilla.gnome.org/show_bug.cgi?id=662218 - -M src/nemo-places-sidebar.c - -commit 67aaaf9f9a95de0beb8a45f97b378144b93ab9d4 -Author: Daniel Mustieles -Date: 2011-10-19 - - Updated Spanish translation - -M po/es.po - -commit 11da44db624aadcf8b71950acf05b929caa565b6 -Author: Muhammet Kara -Date: 2011-10-18 - - Updated Turkish translation - -M po/tr.po - -commit 5208c1c1a2da66ece2562c22dde8ed51d550c1cf -Author: György Balló -Date: 2011-10-18 - - Autostart only in GNOME and Unity - - Don't show desktop icons in other DEs, e.g Xfce and KDE uses it's own - desktop implementation. - - https://bugzilla.gnome.org/show_bug.cgi?id=661942 - -M data/nemo-autostart.desktop.in - -commit a90444b3651272119d1d4ab65d70b41b95a87616 -Author: Stefano Teso -Date: 2011-10-18 - - places-sidebar: show a Properties item for mounts - - https://bugzilla.gnome.org/show_bug.cgi?id=546189 - -M src/nemo-places-sidebar.c - -commit a598148fde3f08ad69115b96c5a9a821ac16983c -Author: Timothy Arceri -Date: 2011-10-18 - - file-operations: show needed space as a secondary message - - When there's not enough space on the disk, show how much additional - space is needed for the operation to complete, instead of a more - obscure - error message. - - https://bugzilla.gnome.org/show_bug.cgi?id=542960 - -M libnemo-private/nemo-file-operations.c - -commit c590280477db495a362339c512d73daade862329 -Author: Cosimo Cecchi -Date: 2011-10-18 - - test: don't use deprecated gtk_vbox_new() - -M test/test-eel-editable-label.c - -commit a816e00ef769a3be12a053a29e41f3da1b91c492 -Author: Cosimo Cecchi -Date: 2011-10-18 - - all: don't use deprecated GDK pointer methods - - Use the new GdkDevice methods instead. - -M eel/eel-editable-label.c -M libnemo-private/nemo-dnd.c -M libnemo-private/nemo-tree-view-drag-dest.c -M src/nemo-notebook.c - -commit 0594aa1636ef960361cf60d00c58ab94c81ee5d4 -Author: Cosimo Cecchi -Date: 2011-10-18 - - all: don't use deprecated GMutex/GThread API - - Also, threads area always enabled, so we can remove the - G_THREADS_ENABLED conditionals. - Require GLib 2.31 for this. - -M libnemo-private/nemo-file-changes-queue.c -M libnemo-private/nemo-file-operations.c -M libnemo-private/nemo-icon-info.c -M libnemo-private/nemo-search-engine-simple.c - -commit 04975e6cbc8f82238e3611a26b474b56c46ec1d3 -Author: Cosimo Cecchi -Date: 2011-10-18 - - all: don't call g_thread_init() - - GLib does that for us now. - -M configure.in -M src/nemo-main.c -M test/test-copy.c -M test/test-nemo-search-engine.c - -commit e54ace0a550b47c251634ee833884f5bc6ea4be6 -Author: Cosimo Cecchi -Date: 2011-10-17 - - editable-label: use GTK_STYLE_CLASS_ENTRY - - Because that's what it is actually... - -M eel/eel-editable-label.c - -commit b143b95f20755fc8425464aa11df3fa2ac2df2ea -Author: Cosimo Cecchi -Date: 2011-10-17 - - editable-label: use gtk_render_frame() instead of hardcoding a stroke - - This allows the stroke to use rounded corners and border images, among - other things. - -M eel/eel-editable-label.c - -commit f9383acb378762a80a373f124e059aff5e571f21 -Author: Cosimo Cecchi -Date: 2011-10-17 - - editable-label: don't hardcode black for the insertion cursor - - Use the theme foreground/text color instead. - -M eel/eel-editable-label.c - -commit 3f95c46dff1c4f71f67d2733f0487350139775cf -Author: Cosimo Cecchi -Date: 2011-10-17 - - editable-label: remove useless code - - No need to call _set_background() on the editable label widget. - -M eel/eel-editable-label.c - -commit 8b87a3e86eb228d4414c3d64cc81b7bb56d27076 -Author: Cosimo Cecchi -Date: 2011-10-17 - - editable-label: make sure to size_request the padding set on the label - - And not the alignment, which is an offset inside the allocated size. - -M eel/eel-editable-label.c - -commit 4c74f176542935b8ea8f61f9bb9ae6cdb35466ea -Author: Cosimo Cecchi -Date: 2011-10-17 - - icon-container: use gdk_window_move() to position the typeahead popup - - For some reason, gtk_window_move() doesn't always work reliably, while - gdk_window_move() seems to always position the window in the requested - coordinates. - - https://bugzilla.gnome.org/show_bug.cgi?id=660807 - https://bugs.launchpad.net/ubuntu/+source/nemo/+bug/857710 - -M libnemo-private/nemo-icon-container.c - -commit 9a703cea5067f68ef21b90a42856b229d5edc69d -Author: Cosimo Cecchi -Date: 2011-10-17 - - icon-container: don't associate Ctrl+F to typeahead search - - It won't get triggered anyway, as we bind Ctrl+F to show the - search bar - in NemoWindow. - -M libnemo-private/nemo-icon-container.c - -commit fea4112c35c84bdb124a567c2d84a2f2a8bd172d -Author: Cosimo Cecchi -Date: 2011-10-17 - - places-sidebar: don't crash when middle clicking on empty space - - gtk_tree_view_get_path_at_pos() can fail; handle that case instead of - passing an invalid GtkTreePath. - - https://bugzilla.gnome.org/show_bug.cgi?id=657366 - https://bugs.launchpad.net/ubuntu/+source/nemo/+bug/830185 - -M src/nemo-places-sidebar.c - -commit 03888c1dde59cb2dd3b243e3c72f35757a4c2e5f -Author: Cosimo Cecchi -Date: 2011-10-17 - - tree-sidebar: don't call g_free on a GObject list - - https://bugzilla.gnome.org/show_bug.cgi?id=660906 - https://bugs.launchpad.net/ubuntu/+source/nemo/+bug/845408 - -M src/nemo-tree-sidebar.c - -commit 0a5aa2a28d82554afb684d815e8180f307ac1897 -Author: Ivan Masár -Date: 2011-10-16 - - Updated Slovak translation - -M po/sk.po - -commit 9bdca2a00b3c3f6a5e908964b4f3a2e39eec0145 -Author: Jiro Matsuzawa -Date: 2011-10-17 - - Updated Japanese translation - -M po/ja.po - -commit 4b470c16d7b7190e973b712d9f29d6bccd7f9e83 -Author: Andrej Žnidaršič -Date: 2011-10-14 - - Updated Slovenian translation - -M po/sl.po - -commit 1f23acbe5f526370db2ffec1dec09fea7e6de219 -Author: Yuri Myasoedov -Date: 2011-10-14 - - Fixed Russian translation - -M po/ru.po - -commit 04ff2cd9e6500b3f9f1052199e1321e33538225b -Author: Michael Biebl -Date: 2011-10-11 - - Fix build failure if tracker FTS is enabled - -M libnemo-private/nemo-search-engine-tracker.c - -commit 048115fa9c5c1ffa45a8df5fcb52e75f6c3d2641 -Author: krishnababu k -Date: 2011-10-10 - - Updated Telugu Translations - -M po/te.po - -commit 0dc5b59e637db6bdcc92a5b2bfce4a6a58c9a6e1 -Author: Muhammet Kara -Date: 2011-10-10 - - Updated Turkish translation - -M po/tr.po - -commit 428b468e8e6e66270cb434f14e4b1f8d7f5354c9 -Author: Cosimo Cecchi -Date: 2011-10-05 - - all: remove offset_x/offset_y parameters from - eel_pop_up_context_menu() - - They're unused now. - -M eel/eel-gtk-extensions.c -M eel/eel-gtk-extensions.h -M src/nemo-places-sidebar.c -M src/nemo-view.c - -commit 7b290a2b2fee7028e50c0ecf15d5417a7a7dc59d -Author: Federico Mena Quintero -Date: 2011-10-05 - - Remove stale 'offset' in eel_pop_up_context_menu() - - Also, fix the fallback timestamp for the menu popup. - - Signed-off-by: Federico Mena Quintero - -M eel/eel-gtk-extensions.c - -commit 61699ef56eb3091341c5f5a38189e12a11280e3e -Author: Cosimo Cecchi -Date: 2011-10-05 - - eel: remove unused eel_gdk_rgba_is_dark() - -M eel/eel-gdk-extensions.c -M eel/eel-gdk-extensions.h - -commit bcc62bec90aec23fb1ede56f0ce0181218fdc81a -Author: Cosimo Cecchi -Date: 2011-10-05 - - eel-string: remove unused code - -M eel/eel-string.c -M eel/eel-string.h - -commit 3a02c89ec0329ee6a1b0eab411eb0f95308626aa -Author: Cosimo Cecchi -Date: 2011-10-05 - - all: don't use eel_strlen() - -M src/nemo-location-bar.c -M src/nemo-window-slot.c - -commit fc1479fc3a614b00d0ff69bd1da62d4dee0a9af9 -Author: Cosimo Cecchi -Date: 2011-10-05 - - view: use g_str_has_prefix() instead of eel_str_has_prefix() - -M src/nemo-view.c - -commit 3daaaf4a9efa2913bbfbadf1492e670b3e83c4a0 -Author: Cosimo Cecchi -Date: 2011-10-05 - - all: don't use eel_strcmp() - -M eel/eel-glib-extensions.c -M libnemo-private/nemo-bookmark.c -M libnemo-private/nemo-directory.c -M libnemo-private/nemo-file.c -M libnemo-private/nemo-icon-canvas-item.c -M libnemo-private/nemo-progress-info.c -M src/nemo-properties-window.c -M src/nemo-window-slot.c - -commit 96254fec43923e7ef5a3e78604cb3b6935117f91 -Author: Cosimo Cecchi -Date: 2011-10-05 - - eel: remove unused eel-gtk-macros.h file - -M eel/Makefile.am -D eel/eel-gtk-macros.h -M eel/eel.h -M libnemo-private/nemo-bookmark.c -M libnemo-private/nemo-clipboard-monitor.c -M libnemo-private/nemo-desktop-directory.c -M libnemo-private/nemo-desktop-link-monitor.c -M libnemo-private/nemo-directory.c -M libnemo-private/nemo-entry.c -M libnemo-private/nemo-file.c -M libnemo-private/nemo-icon-canvas-item.c -M libnemo-private/nemo-icon-dnd.c -M libnemo-private/nemo-merged-directory.c -M libnemo-private/nemo-module.c -M libnemo-private/nemo-query.c -M libnemo-private/nemo-search-engine-simple.c -M libnemo-private/nemo-tree-view-drag-dest.c -M libnemo-private/nemo-undo-manager.c -M libnemo-private/nemo-undo-signal-handlers.c -M src/nemo-application.c -M src/nemo-icon-view.c -M src/nemo-list-view.c -M src/nemo-location-bar.c -M src/nemo-view.c -M src/nemo-window-manage-views.c -M src/nemo-window-slot.c - -commit 68732195bada37da771bab924352ca3864e2bdde -Author: Cosimo Cecchi -Date: 2011-10-05 - - view: don't use EEL_ASSIGN/EEL_IMPLEMENT macros for class signals - - Not that useful since we have full control over all the views. - -M src/nemo-view.c - -commit ce34c8c033d09578f7cb17b8531f6afc95555728 -Author: Cosimo Cecchi -Date: 2011-10-05 - - view: don't use EEL_INVOKE_METHOD macro - -M src/nemo-view.c - -commit 2797c72a906ed6395afd45b9fa7c516d6ef3299f -Author: Cosimo Cecchi -Date: 2011-10-05 - - all: don't use EEL_CALL_METHOD* macros - -M libnemo-private/nemo-directory.c -M libnemo-private/nemo-directory.h -M libnemo-private/nemo-file.c -M src/nemo-view.c -M src/nemo-window-slot.c - -commit 45e3ad0979d79ba017e84a9f99f605ec562c8ae8 -Author: Cosimo Cecchi -Date: 2011-10-05 - - icon-view: simplify code by removing pointless method overrides - -M src/nemo-icon-view.c -M src/nemo-icon-view.h - -commit deb560128734593d9941f4a414e165b3943d61bf -Author: Cosimo Cecchi -Date: 2011-10-05 - - all: don't use EEL_CLASS_BOILERPLATE macro - -M libnemo-private/nemo-vfs-directory.c -M libnemo-private/nemo-vfs-file.c - -commit f0dc94fed68eb5a52d705391053bd642a88ab1d3 -Author: Cosimo Cecchi -Date: 2011-10-05 - - all: don't use EEL_CALL_PARENT* macros - - Replace them with regular calls to the parent class method pointer. - -M libnemo-private/nemo-desktop-directory.c -M libnemo-private/nemo-desktop-link-monitor.c -M libnemo-private/nemo-directory.c -M libnemo-private/nemo-merged-directory.c -M libnemo-private/nemo-module.c -M libnemo-private/nemo-query.c -M libnemo-private/nemo-search-engine-simple.c -M libnemo-private/nemo-search-engine.c -M libnemo-private/nemo-tree-view-drag-dest.c -M src/nemo-empty-view.c -M src/nemo-list-view.c -M src/nemo-location-entry.c -M src/nemo-view.c - -commit 785ee926b36165b4849903e5f4828a17aabe534c -Author: Cosimo Cecchi -Date: 2011-10-04 - - properties-window: paint the pie backgorund with the notebook color - - We have to reset the GtkDrawingArea background to the notebook - color, in - case the theme specifies them to be different. - -M src/nemo-properties-window.c - -commit 8b99f1fae29b333c9beeee3dad848099a66e731d -Author: Cosimo Cecchi -Date: 2011-10-04 - - properties-window: port the pie chart GtkTable to GtkGrid - -M src/nemo-properties-window.c - -commit 0026899cd9f5cd636b4a44ec838e2ec228b210bb -Author: Cosimo Cecchi -Date: 2011-10-04 - - properties-window: port GtkTable to GtkGrid - - Except for the pie chart, which will be ported in a separate commit - -M src/nemo-properties-window.c - -commit ac6797687cc3dc77e1fc6752090a7ef037252ade -Author: Cosimo Cecchi -Date: 2011-10-04 - - window: port GtkTable to GtkGrid - -M src/nemo-window-private.h -M src/nemo-window.c - -commit c6903f412d204ce4ab83fa328fe7df3c81781b68 -Author: Cosimo Cecchi -Date: 2011-10-04 - - view: port GtkTable to GtkGrid - -M src/nemo-view.c - -commit 29dea2e40f6631935a9479c2cf96534308215183 -Author: Cosimo Cecchi -Date: 2011-10-04 - - desktop-item-properties: port GtkTable to GtkGrid - -M src/nemo-desktop-item-properties.c - -commit 7f3e5ce7786bfdf728169d222ef7584306f2b445 -Author: Cosimo Cecchi -Date: 2011-10-04 - - connect-server-dialog: port GtkTable to GtkGrid - -M src/nemo-connect-server-dialog.c - -commit 24658f2ba3c9a9dd12416933942370cd6ff6271c -Author: Federico Mena Quintero -Date: 2011-10-04 - - Fix confusion in the fallback size for icons - - Just caught this when reading the code... - - https://bugzilla.gnome.org/show_bug.cgi?id=660894 - -M libnemo-private/nemo-icon-info.c - -commit d8cfe1080a15fd05a306ee3a6adb5767df4fe58f -Author: Kristjan SCHMIDT -Date: 2011-10-03 - - Updated Esperanto translation - -M po/eo.po - -commit f1aae7bd99efac46a4f7b67beb53205b6cb89f47 -Author: Tiffany Antopolski -Date: 2011-10-03 - - Updated Esperanto translation - -M po/eo.po - -commit 0c80c23a771da619bfd6858397d10b2446966fa2 -Author: Nguyễn Thái Ngọc Duy -Date: 2011-10-02 - - po/vi: better translation of "Go" - -M po/vi.po - -commit 530bbec3b5d663ca7e3244446d9bc73f1cf323b0 -Author: Cosimo Cecchi -Date: 2011-09-29 - - all: remove initiated_unmount logic from NemoWindow - - We don't really need this, and it makes the behavior way less - convoluted. - Now we always try to close the current slot on mount remove, - except when - it would be the last window at all to be closed. - -M src/nemo-application.c -M src/nemo-places-sidebar.c -M src/nemo-view.c -M src/nemo-window-slot.c - -commit 269c6b23cf2b97f74a8c7c2654221be491b60cf4 -Author: Cosimo Cecchi -Date: 2011-09-29 - - window: add debug messages for pane closing - -M src/nemo-window-pane.c -M src/nemo-window.c - -commit 379e0883d06f782fb43d32a1b5031f52c5cfc9b4 -Author: Cosimo Cecchi -Date: 2011-09-29 - - window: cleanup nemo_window_close_pane() - -M src/nemo-window-private.h -M src/nemo-window.c - -commit 3ac3935e9d4a9e40b2e889cb16409cadc30bb8dd -Author: Cosimo Cecchi -Date: 2011-09-29 - - window-pane: fix switching to the other pane when closing the - last slot - - We're closing a window slot; when it's the last slot to be closed, we - used to call nemo_window_split_view_off() on the wrong pane. - Even if we called it on the right pane, it wouldn't have worked - anyway, - because we could have removed the active pane, and that function - always - assumes going back to it. - Also, we need to ensure that active_slot is set on the new pane, or - nemo_window_set_active_slot() won't be called to restore the right - window state. - - https://bugzilla.gnome.org/show_bug.cgi?id=652320 - -M src/nemo-window-pane.c - -commit f6bbf0f111f344276472aaa54072bf99ae7be9b2 -Author: Cosimo Cecchi -Date: 2011-09-29 - - view: don't assert on window slot signal callback ordering - - There's no reason to assert on the fact that inactive and active - signals - will be always emitted in alternate state. If this doesn't happen, - just - return. - - https://bugzilla.gnome.org/show_bug.cgi?id=652320 - -M src/nemo-view.c - -commit 1c06d97c9663ec5b77f21326490146c9a9d8f9d9 -Author: Cosimo Cecchi -Date: 2011-09-29 - - places-sidebar: disconnect volume monitor signals on dispose - - The GIO volume monitor can survive the sidebar, so we need to - disconnect - its signals handlers on dispose. - - https://bugzilla.gnome.org/show_bug.cgi?id=652320 - -M src/nemo-places-sidebar.c - -commit 1f61da02d767b2a767d1dc2fd8c6714c6f6a60d0 -Author: Cosimo Cecchi -Date: 2011-09-28 - - window-slot: don't go through the back list when checking a mount - - There's no reason the slot shouldn't be closed if one of the locations - in the back history belongs to the mount (what we should do is - cleaning - up that location from the history, which we don't yet). - -M src/nemo-window-slot.c - -commit df47a7e142357ff404dceaf43bf3c7ae492fddcc -Author: Cosimo Cecchi -Date: 2011-09-28 - - application: avoid useless checks when removing a mount - - nemo_window_slot_should_close_with_mount() has the same checks and - more. - -M src/nemo-application.c - -commit d49f23ae211cb24cc43efa68d46f7867dbe26364 -Author: Cosimo Cecchi -Date: 2011-09-28 - - window-pane: turn into a GtkBox, simplify code - -M src/nemo-window-pane.c -M src/nemo-window-pane.h -M src/nemo-window.c - -commit eaa98a76fbc144ff1f14f2df8fb3d6873541465b -Author: Cosimo Cecchi -Date: 2011-09-28 - - desktop-link-monitor: plug a memory leak - -M libnemo-private/nemo-desktop-link-monitor.c - -commit 0d191f445da18d0bed1c8ca6d3e05dc4ffae4293 -Author: Cosimo Cecchi -Date: 2011-09-28 - - window-manage-views: plug a memory leak - - We have to free the new selection list when we build it ourselves. - -M src/nemo-window-manage-views.c - -commit 37386fab28267cdbedd979fff13fe1a9da81014d -Author: Cosimo Cecchi -Date: 2011-09-28 - - list-view: don't activate the previewer when there's no selection - - Or we'll segfault when trying to access the first item of the - selection. - - https://bugzilla.gnome.org/show_bug.cgi?id=654857 - -M src/nemo-list-view.c - -commit 3429a6ff153c85a6a65ccb994b4cb4434e4fffcf -Author: Cosimo Cecchi -Date: 2011-09-28 - - icon-container: consolidate typeahead entry timeout handling - - We have crash reports coming from the search entry typeahead code. I - can't really reproduce the bug, but there seems to be at least - a problem - with the typeahead flush timeout returning TRUE and being rescheduled. - Refactor the code to better handle the flush timeout, which hopefully - solves those crashes as well. - - https://bugzilla.gnome.org/show_bug.cgi?id=653800 - -M libnemo-private/nemo-icon-container.c -M libnemo-private/nemo-icon-private.h - -commit 718b8641935b5a8de67e83ec12f9026aecd41e8c -Author: Cosimo Cecchi -Date: 2011-09-28 - - window: small code cleanups - -M src/nemo-window-private.h -M src/nemo-window.c - -commit d3c158d6c9a6ee40fae660ab56b7d8a40074108c -Author: Cosimo Cecchi -Date: 2011-09-28 - - window: make sure to disconnect GSettings signals when finalizing - - The GSettings object survive the window, so handlers connected to its - signals should be disconnected when the window is finalized. - - https://bugzilla.gnome.org/show_bug.cgi?id=655070 - -M src/nemo-window-menus.c -M src/nemo-window-private.h -M src/nemo-window.c - -commit 82a39de7a3c1265ba1a46d1140a084a12b310e32 -Author: Cosimo Cecchi -Date: 2011-09-28 - - places-sidebar: don't crash when not finding the eject symbolic icon - - If a theme doesn't have media-eject-symbolic, icon_info can be - NULL, and - we would crash trying to load a pixbuf from it anyway. - Fix this and show the stock 'missing image' pixbuf when the theme - doesn't have the specified icons. - - https://bugzilla.gnome.org/show_bug.cgi?id=660277 - -M src/nemo-places-sidebar.c - -commit 35059bec98b8ede682e582395b889dc149fc7cba -Author: Мирослав Николић -Date: 2011-09-28 - - Updated Serbian translation - -M po/sr.po -M po/sr@latin.po - -commit f51bad348ab71e3203a7b76c45d307b0fafc5128 -Author: Cosimo Cecchi -Date: 2011-09-26 - - release: prepare for 3.2.0 - -M NEWS -M configure.in - -commit c6299e775ae7770b5b98ede0b70e90ecd04bc742 -Author: Cosimo Cecchi -Date: 2011-09-26 - - trivial: fix a critical when opening preferences - - Just a trivial cleanup for a critical accidentally introduced - in commit - db72d73b3cd58493b1b8878a52ff8a9f5d350602 - -M src/nemo-file-management-properties.c -M src/nemo-file-management-properties.ui - -commit 278a92edf777eb3dc623a4284ef4d81af3f77d27 -Author: Andrej Žnidaršič -Date: 2011-09-26 - - Updated Slovenian translation - -M po/sl.po - -commit 34b5833b704e174c82d943b28e59d91e9531fdbc -Author: Carles Ferrando -Date: 2011-09-26 - - [l10n]Updated Catalan (Valencian) translation - -M po/ca@valencia.po - -commit 2b296a9d0dfba07b62144e96a52368205c447561 -Author: Tommi Vainikainen -Date: 2011-09-26 - - Updated Finnish translation - -M po/fi.po - -commit 368d49124774c4bf640f617e4fcf86641dd886e7 -Author: Seán de Búrca -Date: 2011-09-25 - - Updated Irish translation - -M po/ga.po - -commit 544fcac94f70f3f35105bfad3f6dda21197d7378 -Author: Andika Triwidada -Date: 2011-09-25 - - Updated Indonesian translation - -M po/id.po - -commit dfb8d194bf9ff460b8d6a7a9e3629ab5b343bb46 -Author: Lucas Lommer -Date: 2011-09-24 - - Updated Czech translation - -M po/cs.po - -commit 5e83b5591ffccef5e9faa8bc384c7ffd59eab05e -Author: Lucas Lommer -Date: 2011-09-24 - - Updated Czech translation - -M po/cs.po - -commit 55210fff4df1ea8312b9e276f65dd3e22ec406f0 -Author: Inaki Larranaga Murgoitio -Date: 2011-09-24 - - Updated Basque language - -M po/eu.po - -commit adb9e12825aedee3b71a1bd9bb4589b22f724946 -Author: Jiro Matsuzawa -Date: 2011-09-23 - - Updated Japanese translation - -M po/ja.po - -commit a2045383fc726c4d11a1ab08837fd97d9d098a3b -Author: Claude Paroz -Date: 2011-09-22 - - Cleaned Assamese translation - -M po/as.po - -commit f07aa75bf010653bd9e1a5f5519fec8a029763de -Author: Cosimo Cecchi -Date: 2011-09-22 - - icon-canvas-item: don't draw pango layouts when renaming - - Fixes a regression introduced in commit - 95910c94fd46f368b66f02e1961dc5f273b38c82 that causes unwanted text - to be - drawn while renaming a file in icon view. - - https://bugzilla.gnome.org/show_bug.cgi?id=659831 - -M libnemo-private/nemo-icon-canvas-item.c - -commit 2b9b06cfa8bb431f21af74a5f630646df494eb00 -Author: Changwoo Ryu -Date: 2011-09-23 - - Updated Korean translation - -M po/ko.po - -commit 9023264e0660b50253a9bf7bffe977e0b3a6fd4c -Author: Joe Hansen -Date: 2011-09-22 - - Updated Danish translation - -M po/da.po - -commit f985fe035500e57bbede9f0dfb252fc0f2569377 -Author: Sweta Kothari -Date: 2011-09-22 - - Updated Gujarati Translations - -M po/gu.po - -commit b8238d4a89de55a2e93af7f2aee15cf4148625a6 -Author: Gabor Kelemen -Date: 2011-09-19 - - Updated Hungarian translation - -M po/hu.po - -commit 2cb91c05718dc5463a52eadf24e6036adfe6e10e -Author: Cosimo Cecchi -Date: 2011-09-19 - - icon-canvas-item: don't forget to clip the embedded text rectangle - - When drawing the embedded text, the pango layout should be clipped to - the computed rectangle. - - https://bugzilla.gnome.org/show_bug.cgi?id=659518 - -M libnemo-private/nemo-icon-canvas-item.c - -commit bf1f6bde79f5226388551780dcd7f148c8f55734 -Author: Cosimo Cecchi -Date: 2011-09-19 - - release: prepare for 3.1.92 - -M NEWS -M configure.in - -commit 0a32dd8da8b2a9d10189ef6c8865bb4ec2ca345f -Author: Cosimo Cecchi -Date: 2011-09-19 - - users-group-cache: nuke this, as it appears to be unused - -M libnemo-private/Makefile.am -M libnemo-private/nemo-file.c -D libnemo-private/nemo-users-groups-cache.c -D libnemo-private/nemo-users-groups-cache.h - -commit b11c8a69479b5307d946dbc5742baf5cca75ae06 -Author: Mike Gorse -Date: 2011-09-16 - - Fix accessibility for gtk 3.2, and send object:state-changed:selected - - The code to derive the EelCanvasAccessible class no longer works as of - gtk+ 3.1.9. Currently the recommended behavior is to derive from - GtkAccessible. - - Also, canvas items should send object:state-changed:selected - events when - selected and unselected; otherwise AT-SPI will not update its cache. - - https://bugzilla.gnome.org/show_bug.cgi?id=650897 - -M eel/eel-canvas.c -M eel/eel-canvas.h -M libnemo-private/nemo-icon-canvas-item.c - -commit f83324a05375ba1aa97d3e6ea91f4af323f2bd2c -Author: Aurimas Černius -Date: 2011-09-18 - - Updated Lithuanian translation - -M po/lt.po - -commit 5d549140c95ebb9e7c5cdf5d7d639cca36a22021 -Author: Lê Hoàng Phương -Date: 2011-09-18 - - po/vi.po: changed Bookmark translation from "Liên kết lưu" to - "Đánh dấu" - -M po/vi.po - -commit 0d1300c2c0790ea510a9253314e0c1f92e241843 -Author: Nguyễn Vũ Hưng -Date: 2011-09-18 - - Updated Vietnamese translation - -M po/vi.po - -commit 4016176dc43e4c502714d7544000dbed64c95dfe -Author: Theppitak Karoonboonyanan -Date: 2011-09-18 - - Updated Thai translation. - -M po/th.po - -commit 92e3aded0c213d33e6bbe39f4a9258f4a50a0f7c -Author: Ville-Pekka Vainio -Date: 2011-09-17 - - Updated reduced Finnish translation - -M po/fi.po - -commit c408390df407fa4b90d4d8bf49a26401ec908512 -Author: Ihar Hrachyshka -Date: 2011-09-17 - - Updated Belarusian translation (some fixes after manual testing). - -M po/be.po - -commit 8fc72b1b9122cd3dec7c40c2d8f3b24a5038ae46 -Author: Alexander Shopov -Date: 2011-09-17 - - Updated Bulgarian translation - -M po/bg.po - -commit c0f1c0988790e458351a3e6f6a9bdc494efc0797 -Author: Antonio Fernandes C. Neto -Date: 2011-09-17 - - Updated Brazilian Portuguese translation - -M po/pt_BR.po - -commit 4fde92db8333dfdb708f57e9b69d3fa74f511663 -Author: Joan Duran -Date: 2011-09-17 - - [l10n]Updated Catalan translation - -M po/ca.po - -commit 3956b5c163d1b6beda14ab3d47bf78653208c106 -Author: Jiro Matsuzawa -Date: 2011-09-17 - - Updated Japanese translation - -M po/ja.po - -commit d477edb640c0aa58550e43992fb788f54b2ec700 -Author: Mario Blättermann -Date: 2011-09-16 - - [l10n] Updated German translation - -M po/de.po - -commit c97c17c4970cb9ae9c38685005995abe2a880921 -Author: Daniel Korostil -Date: 2011-09-16 - - Uploaded Ukranian - -M po/uk.po - -commit a046d86cd13431eef4bae743c0ca505dffaecca0 -Author: dmustieles -Date: 2011-09-14 - - Updated Spanish translation - -M po/es.po - -commit cb9d902fccbc462253d60d9a39fa5ee2cce1af7d -Author: Yinghua Wang -Date: 2011-09-13 - - update Simplified Chinese (zh_CN) translation - -M po/zh_CN.po - -commit 67743ffbc62abeb2bb3511901c95fb57d4ee9d93 -Author: Yinghua Wang -Date: 2011-09-13 - - update Simplified Chinese (zh_CN) translation - -M po/zh_CN.po - -commit 78be87bc843f71670b41011b645f983bab6ba81d -Author: Cosimo Cecchi -Date: 2011-09-12 - - desktop: ensure the desktop metadata is up to date when setting - as ready - - As part of the I/O machinery cycle internal to call_when_ready - nemo_file_clear_info() can be called and clear the metadata we - previously set during _init. - Move the desktop metadata initialization before returning the file as - ready, so it's always up to date when the view reads the settings. - - https://bugzilla.gnome.org/show_bug.cgi?id=655561 - -M libnemo-private/nemo-desktop-directory-file.c - -commit 6775e582bcd332eaed925f41555fe4e5c0a3dd71 -Author: Cosimo Cecchi -Date: 2011-09-12 - - file: read the emblem icon names from metadata - - Support for the metadata::emblems got lost during the 3.0 development, - re-add support for it. - -M libnemo-private/nemo-file.c - -commit 97802bc3f6cfbd464eae6e4375cc8f7d71a218af -Author: Cosimo Cecchi -Date: 2011-09-12 - - window-manage-views: scroll to the selected location when opening - an URI - - When opening nemo with a preselected URI, scroll the window - to that - location in addition to selecting the view element. - - https://bugzilla.gnome.org/show_bug.cgi?id=658843 - -M src/nemo-window-manage-views.c - -commit 3add5865157f6eb66ddf5729ffdf3102c020cc10 -Author: Dr.T.Vasudevan -Date: 2011-09-12 - - updated Tamil translation - -M po/ta.po - -commit d82cd5965c246173c3f8e3ce39fdde740592259e -Author: Rudolfs Mazurs -Date: 2011-09-11 - - Updated Latvian translation. - -M po/lv.po - -commit e7c643cea5a4455d34954edfad24ca62dd585156 -Author: Jorge González -Date: 2011-09-11 - - Updated Spanish translation - -M po/es.po - -commit 7fe6d3d2a4fe48d58afba8c0ee8e40fe60c5d63b -Author: Cosimo Cecchi -Date: 2011-09-10 - - tree-sidebar: don't block the parent handler when popping up a menu - - Otherwise the treeview will not select the row where the event - happened. - - https://bugzilla.gnome.org/show_bug.cgi?id=601725 - -M src/nemo-tree-sidebar.c - -commit bc236c95df0b3362b4e51a404bd89e13062afa49 -Author: Arash Mousavi -Date: 2011-09-10 - - Updated Persian translation - -M po/fa.po - -commit 8873abff5de2fd8039ba52e60a835444527f7349 -Author: Duarte Loreto -Date: 2011-09-10 - - Updated Portuguese translation - -M po/pt.po - -commit a465c3b91dfadbfb590adc42fee18aaa1b61d9fc -Author: Jiro Matsuzawa -Date: 2011-09-10 - - Updated Japanese translation - -M po/ja.po - -commit 8d5e8502862f93a188a848ca79779db09e4abf85 -Author: A S Alam -Date: 2011-09-10 - - update PunjabiTranslation - -M po/pa.po - -commit d56fd8f591b3909ef58d7e191afb400de7a8f75f -Author: Kristjan SCHMIDT -Date: 2011-09-09 - - Updated Esperanto translation - -M po/eo.po - -commit 99ad534b7b2fae3fdfa15345cbeae01da5dda803 -Author: Javier Jardón -Date: 2011-09-09 - - Make maintiner mode enabled by default - - See - http://blogs.gnome.org/desrt/2011/09/08/am_maintainer_mode-is-not-cool/ - -M configure.in - -commit a64ac652e217cfd9809f669453da6577a198ae37 -Author: Yaron Shahrabani -Date: 2011-09-09 - - Updated Hebrew translation. - -M po/he.po - -commit 2f064e560cf949b1e1bc4448eaa277f8e05180d8 -Author: David Liang -Date: 2011-09-09 - - icon-container: invalidate the layout cache on style-updated - - This way label sizes will be recomputed if e.g. DPI settings change. - - https://bugzilla.gnome.org/show_bug.cgi?id=578468 - -M libnemo-private/nemo-icon-container.c - -commit c0e6ac365cd4d4d4add0db1edf6f7506bd85e57f -Author: Matthias Clasen -Date: 2011-09-09 - - file-operations: ignore ALREADY_MOUNTED errors when mounting - - Don't spawn an error dialog in this case. - - https://bugzilla.gnome.org/show_bug.cgi?id=579645 - -M libnemo-private/nemo-file-operations.c - -commit a78d885027d6a49d712b5589fd79c822edf4e17d -Author: Cosimo Cecchi -Date: 2011-09-08 - - search-directory: stop the engine when there are no active monitors - - My understanding of this code suggests the engine should be stopped as - soon as the active monitors reach zero. - This fixes the Stop button not working while searching anyway, and - doesn't seem to cause any collateral damage. - - https://bugzilla.gnome.org/show_bug.cgi?id=563163 - -M libnemo-private/nemo-search-directory.c - -commit fdf0036ca9fbb17b97aefabd95f994190cdc0bac -Author: Piotr Drąg -Date: 2011-09-08 - - Updated Polish translation - -M po/pl.po - -commit 226595c7ed30e21247d07a063dd7d1f9221306ed -Author: Luca Ferretti -Date: 2011-09-08 - - l10n: Updated Italian translation - -M po/it.po - -commit 920aa3d94be890f241d3be415540dbde6a81df0a -Author: Cosimo Cecchi -Date: 2011-09-08 - - tracker: always reset the cancellable when starting a query - - Otherwise we can start a query with a cancelled object already, making - it fail immediately. - -M libnemo-private/nemo-search-engine-tracker.c - -commit ee73c255d75165607c7f04defd5e8edfa3524914 -Author: Cosimo Cecchi -Date: 2011-09-08 - - window: make sure not to unref NULL GFiles - - The GFile pointed by parent here can be NULL after the cycle, so fold - the unref in the != NULL block. - -M src/nemo-window-manage-views.c - -commit 88b08d691c17b9686938a0b20a37a19ac99cacc3 -Author: Cosimo Cecchi -Date: 2011-09-08 - - all: remove is_indexed property on NemoSearchDirectory - - It doesn't really make sense to artificially change the query - target if - we're indexed. - -M libnemo-private/nemo-search-directory.c -M libnemo-private/nemo-search-directory.h -M libnemo-private/nemo-search-engine-simple.c -M libnemo-private/nemo-search-engine-tracker.c -M libnemo-private/nemo-search-engine.c -M libnemo-private/nemo-search-engine.h -M src/nemo-query-editor.c -M src/nemo-query-editor.h -M src/nemo-window-pane.c -M src/nemo-window-slot.c - -commit aef4bf26ed8b48f6519fec9531bb530783193447 -Author: Cosimo Cecchi -Date: 2011-09-08 - - tracker: respect the location URI when searching with tracker - -M libnemo-private/nemo-search-engine-tracker.c - -commit a65eb16241ea0e64e5bf2547ffdaebcaa4547574 -Author: Claude Paroz -Date: 2011-09-08 - - Updated French translation - -M po/fr.po - -commit 6f4d215dd9df1b3b0c7fb4714fda88bc2ef39590 -Author: Bruce Cowan -Date: 2011-09-08 - - Updated British English translation - -M po/en_GB.po - -commit 92e40dd094a812db6bcc3e60c0830d20b3f07b15 -Author: Cosimo Cecchi -Date: 2011-09-08 - - window: steal all accelerators/mnemonics keybindings when renaming - - If we're renaming, we really want to ignore all the accelerators - and mnemonics coming from NemoWindow and NemoView, as - they might - conflict with the regular bindings expected in an editable widget, - such - as an editable GtkCellRendererText or EelEditableLabel. - This should fix all the recent keybinding-related regressions, such as - - https://bugzilla.gnome.org/show_bug.cgi?id=658105 - https://bugzilla.gnome.org/show_bug.cgi?id=651574 - -M src/nemo-window.c - -commit a67212a39bbcd342f0a503d693ebd80fab48ac9c -Author: Cosimo Cecchi -Date: 2011-09-08 - - view: add an is_renaming property to NemoView - - And keep it in sync with the renaming widget. This will be useful to - forward events to the view if it's renaming. - -M libnemo-private/nemo-icon-container.c -M libnemo-private/nemo-icon-container.h -M src/nemo-icon-view.c -M src/nemo-list-view.c -M src/nemo-view.c -M src/nemo-view.h - -commit 88b535828ddacd7ec2313d52a21f164aee535fa3 -Author: Cosimo Cecchi -Date: 2011-09-08 - - Revert "window: reverse the order of key-press event processing" - - This reverts commit f76c50a0e46aa7786820f76b3f71b57b44b8d7fb. - -M libnemo-private/nemo-icon-container.c -M src/nemo-list-view.c -M src/nemo-window.c - -commit c55fa6b75ba623b327975fdaa37d5a8e6669e7ac -Author: Cosimo Cecchi -Date: 2011-09-08 - - build: fix optional dependency check on libtracker-sparql - - Commit ffc7c7f98901e8a319b91716d05e521a798dbe43 didn't really work in - the case where no tracker was found on the system, really forcing a - build dependency. Fix this. - - https://bugzilla.gnome.org/show_bug.cgi?id=658545 - -M configure.in - -commit 8d8979f53cea0e8e48faa9ffba82950013e18ad0 -Author: Cosimo Cecchi -Date: 2011-09-07 - - icon-dnd: remove hardcoded highlight frame - - The call to gtk_render_frame() should be enough; the problem is with - Adwaita which does not define a CSS style for the "dnd" class. - -M libnemo-private/nemo-icon-dnd.c - -commit 7732a6b35369c1cef56351cc491358c2f6623c5e -Author: Cosimo Cecchi -Date: 2011-09-07 - - icon-canvas-item: render the additional text with gtk_render_layout() - - And add a style class for it. - -M libnemo-private/nemo-icon-canvas-item.c - -commit ffc7c7f98901e8a319b91716d05e521a798dbe43 -Author: Cosimo Cecchi -Date: 2011-09-07 - - tracker: make the tracker-sparql dependency optional - - This way it's still possible to specify --enable-tracker=no from the - configure line if you want to avoid the tracker dependency. - -M configure.in -M libnemo-private/Makefile.am -M libnemo-private/nemo-search-engine.c - -commit b3da52fefdbf5dc6f8f95fe381181dc47e54d5c3 -Author: Stefano Teso -Date: 2011-09-07 - - file: make sure not to use a 0 width/height when scaling the image - - The problem is that for extreme height-to-width ratio images, - gdk_pixbuf_scale_simple () is called with either width or height = 0 - (printing a critical warning to the terminal). - - https://bugzilla.gnome.org/show_bug.cgi?id=329010 - -M libnemo-private/nemo-file.c - -commit f1dd42ec1c86e78fa894c07ee6b0c8df60d45acb -Author: Cosimo Cecchi -Date: 2011-09-07 - - tracker: use libtracker-sparql directly - - It's not a problem for nemo to depend on libtracker-sparql here - instead of using g_module_open() - -M configure.in -M libnemo-private/nemo-search-engine-tracker.c - -commit 402b281790c1bca3fc10010008cb1ac6fb997b59 -Author: Pavlos Touboulidis -Date: 2011-04-11 - - list-view: Fix default sort order. - - Removed the extra "uri" element from the sort order mapping array - because the settings enum values were being mapped to the wrong - strings. - - https://bugzilla.gnome.org/show_bug.cgi?id=647491 - -M src/nemo-list-view.c - -commit ad5b834df34d6a8f3919909b63ce97cc2bda53d4 -Author: mads@kiilerich.com -Date: 2011-09-07 - - nemo-autorun-software: handle mime type x-content/unix-software - only - - This is a consequence of the fix for - https://bugs.freedesktop.org/show_bug.cgi?id=20562 . - - This undoes the part of cffb9cf7025 that hardcodes that media with - x-content/win32-software are silently ignored, and thus improves - on the - fix for #524270. - - Wine or something could now provide a handler for win32-software. - - https://bugzilla.gnome.org/show_bug.cgi?id=632510 - -M data/nemo-autorun-software.desktop.in.in -M src/nemo-autorun-software.c - -commit 8978c6375bbe0cd26fffded25bc4606cab2c88e6 -Author: Phillip Berndt -Date: 2011-02-16 - - nemo-autorun-software: Use /bin/sh for autorun.sh execution - - If the autorun file is called autorun.sh it is clearly meant for - execution through a sh processor. The benefit of using /bin/sh as the - executable is that autorun will also work on FAT formatted media - (which - does not allow autorun.sh to have +x permission set) - - https://bugzilla.gnome.org/show_bug.cgi?id=642511 - -M src/nemo-autorun-software.c - -commit d1bc9311392e243aa5c9af4b80a373b6dd69d741 -Author: Sandro Mani -Date: 2011-09-07 - - mime-actions: don't spawn a warning if we have only one application - - Don't show a confirmation dialog when we're opening a number of files - with the same application. - - https://bugzilla.gnome.org/show_bug.cgi?id=649811 - -M src/nemo-mime-actions.c - -commit 571a6ef755a6190d442739589b686401d75ff40b -Author: Tomas Bzatek -Date: 2011-04-15 - - connect-server-dialog: Respect password save setting - - The "Remember this password" checkbox was not respected - when password was specified and connection succeeded - for the first time. - - https://bugzilla.gnome.org/show_bug.cgi?id=641376 - -M src/nemo-connect-server-dialog.c - -commit 0ae354ce50394d18be01ca670fdf190d63c1591e -Author: Cosimo Cecchi -Date: 2011-09-07 - - search-bar: use gtk_entry_set_icon_from_icon_name() - - Now that we have an image style class for entry icons, we can - style the - symbolic color from the theme instead of rendering this manually. - - This also has the side effect of fixing bugs like - https://bugzilla.gnome.org/show_bug.cgi?id=651209 - -M src/nemo-search-bar.c - -commit 37e379a5a484b604bd25f0b4cb3269f6e4c942ba -Author: Michael Terry -Date: 2011-06-29 - - Look at XDG_CURRENT_DESKTOP to decide if a link is foreign - - https://bugzilla.gnome.org/show_bug.cgi?id=653660 - -M libnemo-private/nemo-link.c - -commit 637289f74536ed2f31e05604401203a9360c439f -Author: Michael Terry -Date: 2011-06-29 - - Add Unity to OnlyShowIn - - https://bugzilla.gnome.org/show_bug.cgi?id=653657 - -M data/nemo.desktop.in.in - -commit cbadf49a82c70bb6ef90d63fdc4b43f4cb108598 -Author: Cosimo Cecchi -Date: 2011-09-07 - - css: remove custom CSS stylesheet - - Our custom CSS stylesheet is actually very tied to Adwaita. We don't - want to force this style to other GTK+ themes, so the theming - information has been moved to Adwaita itself. - -M data/Makefile.am -D data/nemo.css -M src/nemo-application.c - -commit ca7f81e2e9adf325effa11fc55aace4a087ab61b -Author: Cosimo Cecchi -Date: 2011-09-07 - - icon-container: use the "rubberband" style class for the selection - item - - Instead of using a custom style property. - -M data/nemo.css -M libnemo-private/nemo-icon-container.c - -commit 8b676a68b698b705a6008c89d53fded1cf635981 -Author: Cosimo Cecchi -Date: 2011-09-07 - - desktop: add a nemo-desktop style class to the desktop canvas - - So that themes can tweak the color/background of desktop canvas items - separately. - -M libnemo-private/nemo-icon-container.c - -commit 22707fdc469dfc7548adc8020e3aaf63b20ae1bf -Author: Cosimo Cecchi -Date: 2011-09-07 - - eel: remove unused eel_cairo_draw_layout_with_drop_shadows() - -M eel/eel-gdk-extensions.c -M eel/eel-gdk-extensions.h - -commit 77eecef417b91bb0c48588513de473f11a5c9896 -Author: Cosimo Cecchi -Date: 2011-09-07 - - icon-container: remove unused code caching canvas item colors - - Caching colors in NemoIconContainer to use them in the canvas item - is not needed anymore, as gtk_render_* fetches the right values - directly - from the style context. - -M libnemo-private/nemo-icon-container.c -M libnemo-private/nemo-icon-private.h - -commit 95910c94fd46f368b66f02e1961dc5f273b38c82 -Author: Cosimo Cecchi -Date: 2011-09-07 - - icon-canvas-item: use gtk_render_* methods instead of direct cairo - - Instead of hardcoding colors and using direct cairo calls to draw the - canvas items frame/background/labels, use gtk_render_* methods - directly. - This has the advantage of making them more friendly with GTK+ themes - (by - adding a nemo-canvas-item style class to the canvas context when - drawing) and removes a ton of convoluted cairo drawing code. - -M libnemo-private/nemo-icon-canvas-item.c - -commit 483f13c18f55e489bc15ad266d5612edf96ad95a -Author: Matej Urbančič -Date: 2011-09-07 - - Updated Slovenian translation - -M po/sl.po - -commit 5b09cedf434b53a975074b346d511335fc735cba -Author: Rui Matos -Date: 2011-08-08 - - list-view: explicitly set cursor on file name cell renderer on rename - - The file name column has two cell renderers, one for the icon and - another for - the name string. Thus, gtk_tree_view_set_cursor() isn't enough - to reliably - start editing the file name cell since it will try to edit whatever - is the - currently focused cell in the column. - - https://bugzilla.gnome.org/show_bug.cgi?id=656128 - -M src/nemo-list-view.c - -commit b20d9570c840f696eae5216652d93540bcfdc6db -Author: Cosimo Cecchi -Date: 2011-09-07 - - floating-bar: remove some unused code - -M src/nemo-floating-bar.c - -commit 00b108c687408db87ebb617186aa8fa62f35c7de -Author: Luke Symes -Date: 2011-07-16 - - Don't hide the floating-bar on hover if it is interactive - - If there are actions set on the floating bar, avoid escaping the - pointer. - - https://bugzilla.gnome.org/show_bug.cgi?id=654558 - -M src/nemo-floating-bar.c -M src/nemo-window-manage-views.c - -commit 3f892611ab497180fae677abd6520e4cd387877f -Author: Stas Solovey -Date: 2011-09-07 - - Updated Russian translation - -M po/ru.po - -commit a21d27b66fa307adaf87918f5feb2be44d52fdca -Author: Cosimo Cecchi -Date: 2011-09-07 - - places-sidebar: don't manually highlight the symbolic eject icon - - Set the right style class and state when rendering the icon, so the - theming engine can fetch the right color from the theme and color the - symbolic icon automatically. - -M src/nemo-places-sidebar.c - -commit 1eaae29320deb8dc6f218c13584aac5bbb66acd1 -Author: Ihar Hrachyshka -Date: 2011-09-07 - - Updated Belarusian translation. - -M po/be.po - -commit 407e426fcd2413a5a27e8bbc9f455da9e3fbbe59 -Author: Kjartan Maraas -Date: 2011-09-06 - - Updated Norwegian bokmål translation - -M po/nb.po - -commit 62bb5efc592a1241bfb0ca5c3773eb8ad899cbcc -Author: Chao-Hsiung Liao -Date: 2011-09-06 - - Updated Traditional Chinese translation(Hong Kong and Taiwan) - -M po/zh_HK.po -M po/zh_TW.po - -commit fa72a893c4e8558d94c22cb9ed3ed6c417eb265f -Author: Daniel Nylander -Date: 2011-09-05 - - Updated Swedish translation - -M po/sv.po - -commit 2d66b738054eb27a0f624be5a4a76d038c907b4d -Author: Jorge González -Date: 2011-09-05 - - Updated Spanish translation - -M po/es.po - -commit 8478047a09576891e30d87232d332da244c8a518 -Author: Fran Dieguez -Date: 2011-09-05 - - Updated galician translations - -M po/gl.po - -commit 4060b9ee98bb080383e4d973c7ae5be1a515f785 -Author: Shaun McCance -Date: 2011-09-02 - - Update help targets and add more useful entries to help menu - -M src/nemo-bookmarks-window.c -M src/nemo-connect-server-dialog.c -M src/nemo-file-management-properties.c -M src/nemo-properties-window.c -M src/nemo-shell-ui.xml -M src/nemo-view.c -M src/nemo-window-menus.c - -commit 156f61454a06dddadb82990bfd4d287729352ece -Author: Ihar Hrachyshka -Date: 2011-09-04 - - Updated Belarusian translation. - -M po/be.po - -commit 80d2046dd0df5719daa6ce9b702f0c0265eb7044 -Author: André Gondim -Date: 2011-09-03 - - Updated Brazilian Portuguese translation, reviewed by Antonio - Fernandes C. Neto . - -M po/pt_BR.po - -commit c687d66e473f7094c6af552a69d14d81ae4c3baf -Author: Aurimas Černius -Date: 2011-09-03 - - Updated Lithuanian translation - -M po/lt.po - -commit af0022fc388a587726f1186bbe131c666e4d50a3 -Author: Tomas Bzatek -Date: 2011-09-02 - - previewer: Fix leaked GError - -M src/nemo-previewer.c - -commit e75ff65bc233eaaff108329376ff04b007422668 -Author: Stas Solovey -Date: 2011-08-31 - - Updated Russian translation - -M po/ru.po - -commit db72d73b3cd58493b1b8878a52ff8a9f5d350602 -Author: Vincent Untz -Date: 2011-08-30 - - all: Remove preferences about sound previewing - - The code was removed, so no need to keep the preference. - - https://bugzilla.gnome.org/show_bug.cgi?id=657718 - -M libnemo-private/nemo-global-preferences.h -M libnemo-private/nemo.convert -M libnemo-private/org.gnome.nemo.gschema.xml.in -M src/nemo-file-management-properties.c -M src/nemo-file-management-properties.ui - -commit 3c5cc30d554e641d6013ef196b1a2d7c9424fa41 -Author: Cosimo Cecchi -Date: 2011-08-29 - - release: prepare for 3.1.90 - -M NEWS -M configure.in - -commit 3d44be7ced5267143b3eb2ffcf7118c4fec3a199 -Author: Andika Triwidada -Date: 2011-08-18 - - Updated Indonesian translation - -M po/id.po - -commit 2d3ba922514b5b5aa5db01214b0dd183a2fdb8e2 -Author: A S Alam -Date: 2011-08-18 - - update translation for Punjabi - -M po/pa.po - -commit cfb84e3f7e44b0d752541ece747cec0066f0cea9 -Author: Theppitak Karoonboonyanan -Date: 2011-08-14 - - Updated Thai translation. - -M po/th.po - -commit 945f5bfaf3abbeaf963675ffd5d476cbefde8d74 -Author: Piotr Drąg -Date: 2011-08-12 - - Updated Polish translation - -M po/pl.po - -commit 7f580504c1fc5904636b9314feab5d5f881a0ea5 -Author: Alexander Shopov -Date: 2011-08-10 - - Updated Bulgarian translation - -M po/bg.po - -commit a1830fad48e6f5769aab40917f44ebc8447501d4 -Author: Kjartan Maraas -Date: 2011-08-10 - - Updated Norwegian bokmål translation - -M po/nb.po - -commit 484117c8383a655e0c33e1206c6eb09a35692ead -Author: Hendrik Knackstedt -Date: 2011-08-05 - - [l10n] Updated German translation - -M po/de.po - -commit 99d7f0867eacde30502c5e7d4a074bed5d046dd6 -Author: Nguyễn Thái Ngọc Duy -Date: 2011-08-03 - - po/vi.po: fix "free space" translation - -M po/vi.po - -commit c997bbe8b8bfb423d03f3475088a983e59bd9168 -Author: Cosimo Cecchi -Date: 2011-07-31 - - all: remove the built-in hover audio previewer - - This is not really useful anymore now that we have Sushi, which is way - more powerful. - -M icons/Makefile.am -D icons/audio.svg -M libnemo-private/nemo-icon-canvas-item.c -M libnemo-private/nemo-icon-container.c -M libnemo-private/nemo-icon-private.h -M src/Makefile.am -D src/nemo-audio-mime-types.h -M src/nemo-icon-view.c - -commit 065cecec33baf0f8e181da25313cb8030db4da18 -Author: Cosimo Cecchi -Date: 2011-08-01 - - application: call Close() on the previewer when there are no windows - - When the last window is removed from the application object, close the - previewer too. - -M src/nemo-application.c - -commit f05eaaad2ef96338622c035696148be852c4aca0 -Author: Cosimo Cecchi -Date: 2011-08-01 - - previewer: add a wrapper for the Close() remote method - -M src/nemo-previewer.c -M src/nemo-previewer.h - -commit 60a31b50c2231f9e9f0d624f2ee9cff4800655db -Author: Cosimo Cecchi -Date: 2011-08-01 - - previewer: call methods directly on the GDBusConnection - - Initialize the DBus connection in the constructor and call methods - directly on it, instead of keeping the proxy around. - -M src/nemo-previewer.c - -commit d0573ec843e73b2832ccc64c08b21c6083526fd9 -Author: Lê Trường An -Date: 2011-07-24 - - Updated Vietnamese translation - -M po/vi.po - -commit 2b684e6ea35682ab6e636ca8723fb5d4f5104307 -Author: Bruno Brouard -Date: 2011-07-31 - - Updated French translation - -M po/fr.po - -commit a1949a8980d0d932ef8effebf44d10e4727cbeb2 -Author: Djavan Fagundes -Date: 2011-07-28 - - Fixed a string in Brazilian Portuguese translation - -M po/pt_BR.po - -commit f486646784ab6cf519fc9168629b40ca8259655a -Author: Henrique P. Machado -Date: 2011-07-27 - - Fixed a string in Brazilian Portuguese translation - -M po/pt_BR.po - -commit a000844b5a6039375b0e4176dd4c0f7083b46cb7 -Author: Cosimo Cecchi -Date: 2011-07-27 - - thumbnails: make sure to cache all mime types from gdk-pixbuf - - G_N_ELEMENTS() does not work for heap-allocated arrays, and always - returns 1, so we were not actually caching all the supported mime - types - for a specific pixbuf loader after the first. - This should also fix nemo not thumbnailing e.g. compressed SVG - images, as reported in [1]. - - [1] https://bugzilla.gnome.org/show_bug.cgi?id=655406 - -M libnemo-private/nemo-thumbnails.c - -commit 0ee113dc1c5affda3eabf73b4c70c77456509d20 -Author: Cosimo Cecchi -Date: 2011-07-25 - - release: prepare for 3.1.4 - -M NEWS -M configure.in - -commit 475ed89d6e6ac99f46700babd16671f88bd1386c -Author: Didier Roche -Date: 2011-07-25 - - Remove "Create Launcher" entry option - - "Create launcher" entry from nemo seems weird as nemo doesn't - draw the - desktop for GNOME Shell, and this rely on a gnome-panel binary. This - brings - inconsistency between the two sessions. - - https://bugzilla.gnome.org/show_bug.cgi?id=654848 - https://bugs.launchpad.net/bugs/723861 - -M src/nemo-actions.h -M src/nemo-desktop-icon-view-ui.xml -M src/nemo-desktop-icon-view.c -M src/nemo-directory-view-ui.xml -M src/nemo-view.c -M src/nemo-view.h - -commit 3caf41765453c3c4cf9a73aae87b185d099598f9 -Author: Antoine Jacoutot -Date: 2011-06-20 - - Turn nemo_window_close() into a virtual method. - - nemo_window_close() is now a virtual method that will behaves - according to NemoWindowClass: it won't do anything if the - window is - a NemoDesktopWindow (i.e. it won't close it) which would prevent - desktop icons from disappearing. - nemo_application_close_all_windows() will now skip hiding windows - but close them right away. - - https://bugzilla.gnome.org/show_bug.cgi?id=652724 - -M src/nemo-application.c -M src/nemo-desktop-window.c -M src/nemo-window.c -M src/nemo-window.h - -commit 2bbbc01dc6429e948aed0bbf077e1b77880352ee -Author: Antoine Jacoutot -Date: 2011-07-15 - - Move the 'File System' shortcut down the list in the sidebar. - - Users access more often the XDG dirs than the root filesystem, - so it makes - sense to move it below. - - https://bugzilla.gnome.org/show_bug.cgi?id=654681 - -M src/nemo-places-sidebar.c - -commit 8686479b2be23735caec35c401d24db499cb2f2c -Author: Cosimo Cecchi -Date: 2011-07-21 - - icon-names: use 'drive-harddisk-system' as File System icon - - Now that it has been added to gnome-icon-theme-extras. - - https://bugzilla.gnome.org/show_bug.cgi?id=620085 - -M libnemo-private/nemo-icon-names.h - -commit 3f42d04301d9a8fcf43f176d1e601356489eb84f -Author: Cosimo Cecchi -Date: 2011-07-21 - - window: remove 'Clear History' from the 'Go' menu - - This is a leftover from the past, when we used to have a global - history - list. Now that Nemo is not persistent and we don't have that - anymore, it doesn't really make sense to keep this menu item. - - https://bugzilla.gnome.org/show_bug.cgi?id=654422 - -M src/nemo-shell-ui.xml -M src/nemo-window-menus.c -M src/nemo-window.c -M src/nemo-window.h - -commit 75960497c6c8e657f010aef7d2bbbf1fda19c4ad -Author: Cosimo Cecchi -Date: 2011-07-21 - - location-bar: don't pack an useless box in the bar - - The bar is an horizontal box already, no need to pack another hbox in - it. This also fixes content not expanding in the available width, as - noted in https://bugzilla.gnome.org/show_bug.cgi?id=654389. - -M src/nemo-location-bar.c - -commit 283e9b32cae61b5501ece85d1dacb1e1c29c4b85 -Author: Cosimo Cecchi -Date: 2011-07-21 - - file: use g_format_size_full instead of printf-ing the long string - - Now that GLib has g_format_size_full(), we can easily format the long - string (e.g. 45MB (45,123,456 bytes)) using it, instead of our custom - printf function. - -M libnemo-private/nemo-file.c - -commit 3e69fb702393cf42486321c88cede4668329b4c8 -Author: Ryan Lortie -Date: 2011-07-20 - - all: switch to g_format_size() - - g_format_size_for_display() has been deprecated in GLib and replaced - with - g_format_size(). Follow that change. - - https://bugzilla.gnome.org/show_bug.cgi?id=654995 - -M configure.in -M libnemo-private/nemo-file-operations.c -M libnemo-private/nemo-file.c -M src/nemo-properties-window.c -M src/nemo-view.c - -commit 2160de69245ad15826f6aed1a5ef15455d7851d0 -Author: Cosimo Cecchi -Date: 2011-07-14 - - a11y: remove some unused code - -M eel/eel-accessibility.c -M eel/eel-accessibility.h - -commit a7bd0741e0772f3b143e5c1d77860cce8f3d9872 -Author: Ihar Hrachyshka -Date: 2011-07-14 - - Updated Belarusian translation. - -M po/be.po - -commit 227ccadc10af524ad1104d36c1343f26be55cf67 -Author: Rudolfs Mazurs -Date: 2011-07-13 - - Updated Latvian translation. - -M po/lv.po - -commit 613f7180ca741b201e5933d1ebf41fe811a722b4 -Author: Abduxukur Abdurixit -Date: 2011-07-07 - - Added UG translation - -M po/ug.po - -commit 4d68a3bbab0e6157f83c90288b58bdfebace63c2 -Author: Muhammet Kara -Date: 2011-07-06 - - Updated Turkish translation - -M po/tr.po - -commit fb45c737e0f7080bd0f51c532311b942a20e38a1 -Author: Muhammet Kara -Date: 2011-07-06 - - Fixed a few funny errors in Turkish translation - -M po/tr.po - -commit 614b7d3b2b7d09dc4bf19a51ae56a2a087212c99 -Author: Muhammet Kara -Date: 2011-07-03 - - Updated Turkish translation - -M po/tr.po - -commit 391d537f224204803ef8b50344892166cd9808fa -Author: Kjartan Maraas -Date: 2011-07-02 - - Updated Norwegian bokmål translation - -M po/nb.po - -commit 5817e7ad138f053c80d9257693dbacccb88eecbf -Author: Cosimo Cecchi -Date: 2011-07-01 - - release: prepare for 3.1.3 - -M NEWS -M configure.in - -commit 34bbbc57864e454bdddcc59f322bf06b56254ef6 -Author: Cosimo Cecchi -Date: 2011-07-01 - - all: remove some unneeded includes - -M eel/eel-gtk-extensions.c -M libnemo-private/.gitignore -M libnemo-private/nemo-directory-async.c -M libnemo-private/nemo-tree-view-drag-dest.c -M src/.gitignore - -commit 5c6950277332ca53fceb27d58fa3f06101737726 -Author: Cosimo Cecchi -Date: 2011-07-01 - - all: use g_cclosure_marshal_generic() instead of generating - marshallers - -M eel/Makefile.am -M eel/eel-canvas.c -M eel/eel-editable-label.c -M libnemo-private/Makefile.am -M libnemo-private/nemo-directory-async.c -M libnemo-private/nemo-icon-container.c -M libnemo-private/nemo-tree-view-drag-dest.c -M src/Makefile.am -M src/nemo-query-editor.c -M src/nemo-view.c -M src/nemo-window.c - -commit 922307d634a0401c8cc29bee70c6335b2eb9a17c -Author: Cosimo Cecchi -Date: 2011-06-28 - - build: bump GTK+ dep to 3.1.6 - - We need it for GtkOverlay. - -M configure.in - -commit eb8ba09e82cbf7045d75a638ef69318e65a8a75f -Author: Ihar Hrachyshka -Date: 2011-06-28 - - Updated Belarusian translation. - -M po/be.po - -commit 49db9b14ed4e08887e4dc3e5e4cd4c184f48d4ad -Author: Ihar Hrachyshka -Date: 2011-06-26 - - Updated Belarusian translation. - -M po/be.po - -commit ff6b4f64ab2499e149d2d75e812b2e6e40d68156 -Author: Мирослав Николић -Date: 2011-06-25 - - Updated Serbian translation - -M po/sr.po -M po/sr@latin.po - -commit 6ac24b5381c7a26f85b8c72662c9ac4a54269e26 -Author: Cosimo Cecchi -Date: 2011-06-21 - - application: make sure --no-default-window works when used with an URI - -M src/nemo-application.c - -commit ffd2125b13ac591428cf73ac3c0021849d36058a -Author: Daniel Nylander -Date: 2011-06-20 - - Updated Swedish translation - -M po/sv.po - -commit ea4609ff6123798edf93b0e54b8b03a2fda94fce -Author: Gabor Kelemen -Date: 2011-06-19 - - Fix an inconsistency and a too long button - -M po/hu.po - -commit 95d45f1994795942774b039ba0de6933d9ffa5c7 -Author: Paolo Borelli -Date: 2011-06-18 - - Fix gobject warning about nonexisting property - - NemoDesktopWindow does not have an "app" propety anymore. - -M src/nemo-application.c -M src/nemo-desktop-window.c -M src/nemo-desktop-window.h - -commit 4c37f5a1c1c7861b45359e36a5efd868cf3f3bb0 -Author: Cosimo Cecchi -Date: 2011-06-16 - - all: don't return a reference when getting the application singleton - - This simplifies the code a bit. Also, remove the useless "app" - property - on NemoWindow while we're at it. - -M src/nemo-application.c -M src/nemo-application.h -M src/nemo-bookmarks-window.c -M src/nemo-connect-server-dialog-nonmain.c -M src/nemo-location-bar.c -M src/nemo-main.c -M src/nemo-places-sidebar.c -M src/nemo-progress-ui-handler.c -M src/nemo-window-manage-views.c -M src/nemo-window-menus.c -M src/nemo-window-private.h -M src/nemo-window.c -M src/nemo-window.h - -commit 2b9ebd30e880733d3f40430d1d022ae2f8a4bf77 -Author: krishnababu k -Date: 2011-06-15 - - Corrections in Telugu file - -M po/te.po - -commit 296ef2be9726185ee08552d3e8bb17d2a98a40b7 -Author: Paolo Borelli -Date: 2011-06-05 - - Add "Add Bookmark" to the sidepane context menu - - https://bugzilla.gnome.org/show_bug.cgi?id=651931 - -M src/nemo-places-sidebar.c - -commit 67482b37c8b6581262da28798b6b4e36419b4852 -Author: krishnababu k -Date: 2011-06-15 - - Updated Telugu Translations - -M po/te.po - -commit aa3eff54fcab36a1fab561ec8527608e12a1496b -Author: Cosimo Cecchi -Date: 2011-06-13 - - overlay: remove unused gedit-overlay-child - -D src/gedit-overlay-child.c -D src/gedit-overlay-child.h - -commit 17b2ff9b002498b8e6ce28c7bf846b0daf3ce206 -Author: Cosimo Cecchi -Date: 2011-06-13 - - release: update for 3.1.2 - -M NEWS -M configure.in - -commit 63e37acc17900e81605b994e8d4e6dd59f1769da -Author: Cosimo Cecchi -Date: 2011-06-13 - - floating-bar: fix background/frame rendering - -M src/nemo-floating-bar.c - -commit 752ab2718ba4f7e968678facfd8dd0ea6b0e4b26 -Author: Cosimo Cecchi -Date: 2011-06-13 - - css: cleanup the CSS file a bit - -M data/nemo.css - -commit a28a89ab8112a5207d5413e5f767f191d1d13339 -Author: Cosimo Cecchi -Date: 2011-06-13 - - floating-bar: port to GtkOverlay - -M src/Makefile.am -D src/gedit-overlay.c -D src/gedit-overlay.h -M src/nemo-floating-bar.c -M src/nemo-floating-bar.h -M src/nemo-icon-view.c -M src/nemo-list-view.c -M src/nemo-window-slot.c -M src/nemo-window-slot.h - -commit 6260482af6804adda242d7a8582ccdd155beb9e0 -Author: Cosimo Cecchi -Date: 2011-06-13 - - all: don't use Gtk[H/V]Box in UI files - -M src/nemo-bookmarks-window.ui -M src/nemo-file-management-properties.ui - -commit d6de7f5f0ff90775445c3dc353328301c66f0de1 -Author: Cosimo Cecchi -Date: 2011-06-13 - - all: don't use deprecated Gtk[H/V]Box - -M libnemo-private/nemo-column-chooser.c -M libnemo-private/nemo-column-chooser.h -M libnemo-private/nemo-file-conflict-dialog.c -M libnemo-private/nemo-icon-container.c -M libnemo-private/nemo-mime-application-chooser.h -M src/nemo-connect-server-dialog.c -M src/nemo-desktop-item-properties.c -M src/nemo-image-properties-page.c -M src/nemo-image-properties-page.h -M src/nemo-location-bar.c -M src/nemo-location-bar.h -M src/nemo-notebook.c -M src/nemo-pathbar.c -M src/nemo-progress-info-widget.c -M src/nemo-progress-ui-handler.c -M src/nemo-properties-window.c -M src/nemo-query-editor.c -M src/nemo-view.c -M src/nemo-window-pane.c -M src/nemo-window-slot.c -M src/nemo-window.c - -commit 2c37855719d90413705bd102ef5a29aac33f598a -Author: Teliute -Date: 2011-06-12 - - Update Simplified Chinese translation. - -M po/zh_CN.po - -commit e46d446be937d0e43ffea1bbc41381388706cf42 -Author: Matej Urbančič -Date: 2011-06-10 - - Updated Slovenian translation - -M po/sl.po - -commit f657a12a9f1da481e7a580335b682749ac4b01cf -Author: Javier Jardón -Date: 2011-06-09 - - libnemo-private: Use 'const' instead G_CONST_RETURN - -M libnemo-private/nemo-icon-canvas-item.c -M libnemo-private/nemo-icon-info.c -M libnemo-private/nemo-icon-info.h - -commit a8443f64b6554b640f9bd39b3470284127b7bc3f -Author: Javier Jardón -Date: 2011-06-09 - - eel: Use 'const' instead G_CONST_RETURN - -M eel/eel-editable-label.c -M eel/eel-editable-label.h - -commit 253e72f88a85759fe0630aecfb9cea4011e74e5a -Author: Kjartan Maraas -Date: 2011-06-07 - - Updated Norwegian bokmål translation - -M po/nb.po - -commit 64d608f8cc2d6e266900e5a33402249b20dfec1e -Author: Fran Diéguez -Date: 2011-06-06 - - Updated Galician translations - -M po/gl.po - -commit 12541f6a1ab1fbf30b032dc628aca147d6de2ad0 -Author: Yaron Shahrabani -Date: 2011-06-04 - - Updated Hebrew translation. - -M po/he.po - -commit e36c6f5871f6f16833361ce57a4845d46e73f3f1 -Author: Yaron Shahrabani -Date: 2011-06-04 - - Updated Hebrew translation. - -M po/he.po - -commit 092ba8f674341769579bc515389e7bb67035824d -Author: Daniel Mustieles -Date: 2011-06-04 - - Updated Spanish translation - -M po/es.po - -commit f83bdf0081bfb5d6b8caad8848a267fecb95b85b -Author: Cosimo Cecchi -Date: 2011-06-03 - - connect-server: handle closing of the dialog while connecting - - If we start a connect operation, but close the dialog before providing - the credential details, cancel the operation and hide the dialog, - instead of segfaulting. - The dialog will eventually be destroyed when the the mount operation - terminates (with error). - -M src/nemo-connect-server-dialog.c -M src/nemo-connect-server-operation.c - -commit e3f055c886e9db0c105de59e80573a9715c41060 -Author: Cosimo Cecchi -Date: 2011-06-03 - - eel-string: don't use deprecated gatomic API - -M eel/eel-string.c - -commit a0d9614d204d0494d329e04c1d7652e451c2573f -Author: Cosimo Cecchi -Date: 2011-06-03 - - toolbar: disconnect the GSettings callback on dispose - -M src/nemo-toolbar.c - -commit b62ab1413cca6694b9b09fc9d241bbf3581a56e6 -Author: Djavan Fagundes -Date: 2011-06-03 - - Updated Brazilian Portuguese translation - -M po/pt_BR.po - -commit a5a4bddf12ff29205757858af81fd3665a68c3f2 -Author: Cosimo Cecchi -Date: 2011-05-31 - - application: pass in the array length while looping over it - -M src/nemo-application.c - -commit d0240a4319561551adc5e0cdb94bb5486d3f3308 -Author: Carles Ferrando -Date: 2011-05-29 - - [l10n]Updated Catalan (Valencian) translation - -M po/ca@valencia.po - -commit 1f01e04e135c77722cd3d06065f4ceed20d19219 -Author: Jorge González -Date: 2011-05-29 - - Updated Spanish translation - -M po/es.po - -commit ea223de6187778ce0a0a70356009f1c24c084c57 -Author: Jorge González -Date: 2011-05-29 - - Updated Spanish translation - -M po/es.po - -commit 178bae2b656b2cae7ad39f81076fca7c65adf429 -Author: Yuri Myasoedov -Date: 2011-05-28 - - Updated Russian translation - -M po/ru.po - -commit 362696f86bce90dcfa599bf6f4e17ffd0a679860 -Author: Cosimo Cecchi -Date: 2011-05-25 - - metadata: add a metadata::custom-icon-name metadata key - - It's similar to metadata::custom-icon, only that it works on icon - names - instead of URIs. - - https://bugzilla.gnome.org/show_bug.cgi?id=626338 - -M libnemo-private/nemo-file.c -M libnemo-private/nemo-metadata.c -M libnemo-private/nemo-metadata.h - -commit fc3d9af1dff85ef27ff44ea4e71b269a2b700e7d -Author: Cosimo Cecchi -Date: 2011-05-24 - - autostart: add an autostart desktop file - - It will autostart nemo automatically based on the GSettings key - org.gnome.desktop.background show-desktop-icons. - - https://bugzilla.gnome.org/show_bug.cgi?id=647267 - -M data/Makefile.am -A data/nemo-autostart.desktop.in - -commit 636c06bdc3397b1c6bad78afe2094c149c59f6fb -Author: Cosimo Cecchi -Date: 2011-05-24 - - css: update for new GtkCssParser - -M data/nemo.css - -commit e239f2a150f34b7f7b4730772fae5a372a7924d1 -Author: Cosimo Cecchi -Date: 2011-05-23 - - floating-bar: copy code from Epiphany to hide the floating bar - on hover - - This doesn't currently work perfectly if the overlay child is a - GtkTreeView - more investigation is needed. - In the meanwhile, it's still better than not hiding the bar ever, - so here it is. - - https://bugzilla.gnome.org/show_bug.cgi?id=648740 - -M src/nemo-floating-bar.c - -commit f0649b5bb808aa71fcab52c3e61f5e6419928432 -Author: Cosimo Cecchi -Date: 2011-05-23 - - gedit-overlay: update from upstream - -M src/gedit-overlay-child.c -M src/gedit-overlay.c - -commit 5c949fffcb0de62fd5375f546fa94dd50ec7f86f -Author: Cosimo Cecchi -Date: 2011-05-24 - - application: rewrite GApplication command line handling - - Do the command line parsing in local_command_line for the set - of options - we're interested in parsing there (e.g. directories to open, - self checks - and --quit); move the rest of initialization in - nemo_application_startup() and use g_application_open() and - a custom - "quit" action to forward the requests to the main application. - - This also fixes these two bugs. - - https://bugzilla.gnome.org/show_bug.cgi?id=649336 - https://bugzilla.gnome.org/show_bug.cgi?id=637157 - -M src/nemo-application.c -M src/nemo-application.h -M src/nemo-connect-server-dialog-nonmain.c -M src/nemo-location-bar.c -M src/nemo-places-sidebar.c -M src/nemo-window-manage-views.c -M src/nemo-window-menus.c - -commit b9272618934a4c177166e5f7771e6ab6cabcc31b -Author: Nguyễn Thái Ngọc Duy -Date: 2011-05-24 - - po/vi.po: updated UI to match nemo-preview.page - -M po/vi.po - -commit e738e686af858c38ca7c0b32426b3a1dfea0d9a2 -Author: Nguyễn Thái Ngọc Duy -Date: 2011-05-24 - - po/vi.po: fix up UI to match nemo-views.page - -M po/vi.po - -commit f76c50a0e46aa7786820f76b3f71b57b44b8d7fb -Author: Cosimo Cecchi -Date: 2011-05-23 - - window: reverse the order of key-press event processing - - Usually the default GtkWindow handler for key-press events processes - them in the following order: - - calls gtk_window_activate_key() to process mnemonics/accelerators - for - the toplevel window - - calls gtk_window_propagate_key_event() to propagate the events - to the - focus widget - - chains up to parent if both fail - - We want gtk_window_propagate_key_event() to be called before - gtk_window_activate_key(), as when we're focusing an editable widget - (e.g. renaming a file), we want all keybindings to apply to that, e.g. - Delete, Ctrl+Delete (or Ctrl+W if we're e.g. using an emacs-mode - GTK+ binding set). This interferes a bit with the type-ahead search - windows that NemoIconContainer and GtkTreeView pop up; we can - control the former, but not the latter, so we need a bit of a hack in - NemoListView to prevent the search window to steal the pasted URI, - and still not handle the event. - - https://bugzilla.gnome.org/show_bug.cgi?id=314431 - -M libnemo-private/nemo-icon-container.c -M src/nemo-list-view.c -M src/nemo-window.c - -commit fae5d9242e2edf0881a382ed8cb19599c27cdc49 -Author: Cosimo Cecchi -Date: 2011-05-23 - - query-editor: add a border around the query editor widgets - - https://bugzilla.gnome.org/show_bug.cgi?id=647737 - -M src/nemo-query-editor.c - -commit f5e967f964b88ad7e4cc81818e9c0092d842e0a8 -Author: Stefano Teso -Date: 2011-05-23 - - connect-server: strip the scheme if it matches the chosen method - - If e.g. ftp://ftp.example.com is specified as an address, and the FTP - method is chosen, we should strip "ftp://" automatically from the - address before connecting. - - https://bugzilla.gnome.org/show_bug.cgi?id=643608 - -M src/nemo-connect-server-dialog.c - -commit c17d7bec375b1a8838d6132ccced89da6b092316 -Author: Cosimo Cecchi -Date: 2011-05-23 - - location-entry: use symbolic icons for the secondary action hint - - https://bugzilla.gnome.org/show_bug.cgi?id=647685 - -M src/nemo-location-entry.c - -commit b30bda3e1f341b107fbe4f73f1d7b769504d23cd -Author: Cosimo Cecchi -Date: 2011-05-23 - - view: add the "view" style class to the icon container - - Not to the NemoView scrolled windows. - -M src/nemo-icon-view-container.c -M src/nemo-view.c - -commit c78c3022f07aa790a1f21c48e4ebf62712c6b70f -Author: Cosimo Cecchi -Date: 2011-05-09 - - dbus: don't generate the docbook file - -M libnemo-private/Makefile.am - -commit 2cf6e53496967b1e00cc026e33c7b63c587c78b4 -Author: Cosimo Cecchi -Date: 2011-05-09 - - release: prepare for 3.1.1 - -M NEWS -M configure.in - -commit ab6436cfa60a7f5088dd92f3d6dec74e0527b086 -Author: Cosimo Cecchi -Date: 2011-05-09 - - previewer: avoid creating the dbus proxy more than once - -M src/nemo-previewer.c - -commit 16b76b5f97dda14e2c3397345965a07ecc1cd377 -Author: Cosimo Cecchi -Date: 2011-05-09 - - previewer: don't warn out if the bus name is not owned by anybody - -M src/nemo-previewer.c - -commit a8f2c97e5f67fa1c309cf694f8ca00f5dc38abb9 -Author: Cosimo Cecchi -Date: 2011-05-01 - - previewer: don't return a new ref to the singleton - - It's easier to use this way, and we don't have to create a new DBus - proxy every time. - -M src/nemo-previewer.c -M src/nemo-previewer.h -M src/nemo-view.c - -commit 71b8a7a8d66f0c927be9b7c12199d1472043ed66 -Author: Alexander Larsson -Date: 2011-04-29 - - Add close_if_already_visible argument to - nemo_previewer_call_show_file - - As per the changes in sushi - -M src/nemo-previewer.c -M src/nemo-previewer.h -M src/nemo-view.c - -commit f087da3353074f7476a563ab62d5ac7cf0d65e41 -Author: Cosimo Cecchi -Date: 2011-04-27 - - previewer: drop the x/y coordinates arguments - -M src/nemo-previewer.c -M src/nemo-previewer.h -M src/nemo-view.c - -commit 703c5004a7b05959e3dd554974f28b46df3f0609 -Author: Cosimo Cecchi -Date: 2011-04-25 - - previewer: lazily create the DBus proxy - -M src/nemo-previewer.c -M src/nemo-view.c - -commit e5bf6ef0ec8ca50990aff4afd08a4139d4a75798 -Author: Cosimo Cecchi -Date: 2011-04-25 - - debug: add a debug flag for the previewer - -M libnemo-private/nemo-debug.c -M libnemo-private/nemo-debug.h - -commit 034eeb090458443b97fbe9b601a045defb5435f9 -Author: Cosimo Cecchi -Date: 2011-04-25 - - list-view: hook up the previewer in list view - - No support for icon locations yet, but it's not implemented in - the previewer - either. - -M src/nemo-list-view.c - -commit ccfd4e1c1d9166c78badac8d83958270cf7aef9e -Author: Cosimo Cecchi -Date: 2011-04-21 - - all: hook up the previewer with NemoIconView - -M libnemo-private/nemo-icon-container.c -M libnemo-private/nemo-icon-container.h -M src/nemo-icon-view.c -M src/nemo-view.c -M src/nemo-view.h - -commit 4241ccfd39b6013d2ddd7fbd58aabf5ef1a2302d -Author: Cosimo Cecchi -Date: 2011-04-21 - - previewer: add a NemoPreviewer DBus wrapper class - -M src/Makefile.am -A src/nemo-previewer.c -A src/nemo-previewer.h - -commit 9669b91d70ec1cf59933df53f9c22ed16670bb90 -Author: Alexander Larsson -Date: 2011-05-04 - - Update all .gitignore files - -M .gitignore -M data/.gitignore -M eel/.gitignore -M libnemo-private/.gitignore -M src/.gitignore - -commit 7c27c4ce158d09be188b529882ecd5c6b0c17db7 -Author: Alexander Larsson -Date: 2011-05-04 - - Convert the nemo dbus support to use gdbus-codegen - - This required latest glib code to work. - -M data/Makefile.am -A data/dbus-interfaces.xml -M libnemo-private/Makefile.am -M libnemo-private/nemo-dbus-manager.c - -commit fa6e44717818d7f9239558f81b90c32dceddf58a -Author: Alexander Larsson -Date: 2011-05-04 - - Add size_request to IconContainer to work around unncecessary - relayouting - - The GtkScrolledWindow uses the widget prefered size as a guess as to - whether scrollbars are needed or not in the automatic scrollbars case. - If we don't report anything for them we typically get it wrong - and cause - two size allocate calls on the child each time, with different sizes. - This (the two sizes speicifically) will cause unnecessary relayouts of - the window. - - So, we just report the current size of the layed out icons as the - prefered - size. This is somewhat wrong as its depending on previous - size_allocation - calls rather than the "ideal" size of the widget, but since the - ideal size - is ignored anyway and just used for this it works well. - -M libnemo-private/nemo-icon-container.c - -commit 0cad983521edd476ece360236b6e71e4048bfc70 -Author: Alexander Larsson -Date: 2011-05-04 - - Remove old special-cased "select source folder" - - We now do this generically, so no need to special case it in the - "go up" case. - -M src/nemo-window-slot.c - -commit b15f61369e3618f4dc2cd3cef5af3698c45706a0 -Author: Alexander Larsson -Date: 2011-05-04 - - Always select the folder you "came from" when navigating upwards - - We used to special case this for the up button, but that now - only exists as a keyboard shortcut. This more generic approach - gets the same feature also for pathbar navigation and back/forward - history navigation. - -M src/nemo-window-manage-views.c - -commit e9a7007284b9520855cdbb16fa4724ca0f1739d9 -Author: Alexander Larsson -Date: 2011-05-04 - - Really open in new window on the pathbar contect menu item - - Turns out that we didn't pass the NEW_WINDOW flag in the handler - for the LocationOpenAlternate action. This is used when right-clicking - on the location label or the pathbar. - -M src/nemo-view.c - -commit 41c7cb2ae8fb98fab2cd9b0cfb59cf6dee4d476c -Author: Alexander Larsson -Date: 2011-05-03 - - icon-view: Only resort during relayout if necessary - - We don't need to resort unless e.g. a file changed or was added. - - Additionally, for weird reason this makes the keyboard focus handling - work when deleting a file (file after deleted gets focus). This was - broken due to a relayout happening due to a size_allocate due to - a style set due to a focus change when going to/from the "are - you sure" - dialog. - -M libnemo-private/nemo-icon-container.c -M libnemo-private/nemo-icon-private.h - -commit 31546b509d351e89d8bc0ee23074e8e0ecddbca2 -Author: Cosimo Cecchi -Date: 2011-05-02 - - application: don't look at DESKTOP_AUTOSTART_ID anymore - - Now that we don't support being a session component anymore, - it doesn't - make sense to special case the session autostart. This also breaks - opening new windows when nemo is added to ~/.config/autostart, - which - is now the supported way of having desktop icons automatically, as we - end up reading the env variable every time when parsing the command - line - (as the original process will always have that set) and refuse to - show a - window. - - https://bugzilla.gnome.org/show_bug.cgi?id=649063 - -M src/nemo-application.c - -commit e251214df28bc7c0b749d1ba0be1ab2048ecd06c -Author: Abduxukur Abdurixit -Date: 2011-05-02 - - Added UG translation - -M po/ug.po - -commit a9ea2becdf91c417a64083ecdad5f80fb97e6e51 -Author: Daniel Korostil -Date: 2011-05-02 - - Uploaded Ukranian - -M po/uk.po - -commit 495cb46d54f0b551756c71fb6d5ba60e67f08d61 -Author: Cosimo Cecchi -Date: 2011-05-01 - - places-sidebar: disconnect from bookmark list changed signal on - dispose - - This should hopefully fix this crash - https://bugzilla.redhat.com/show_bug.cgi?id=699184 - -M src/nemo-places-sidebar.c - -commit ac70a95ecc44ba259b684f737bb108f1458fa9dc -Author: Cosimo Cecchi -Date: 2011-05-01 - - mime-actions: don't free the activation parameters early - - This fixes a segfault when clicking on the "Select Application" button - when opening a file with no default applications, like in - - https://bugzilla.redhat.com/show_bug.cgi?id=699850 - -M src/nemo-mime-actions.c - -commit 3676b08856c4d6cc0a827e9de8f708edefdf2e44 -Author: Cheng-Chia Tseng -Date: 2011-05-01 - - Updated Traditional Chinese translation(Hong Kong and Taiwan) - -M po/zh_HK.po -M po/zh_TW.po - -commit 61502a06524dd9dffac9d2ae97e9a57037343b28 -Author: Daniel Nylander -Date: 2011-05-01 - - Updated Swedish translation - -M po/sv.po - -commit 902b0cd4cc1848b44fb2445ebcc0f8157cdc092f -Author: Matej Urbančič -Date: 2011-04-28 - - Updated Slovenian translation - -M po/sl.po - -commit 254ad76a6f861b4846cb53907dd580fb81a96b05 -Author: Cosimo Cecchi -Date: 2011-04-28 - - progress-ui-handler: don't add progress infos to the window twice - - We were adding them twice in case there was already one operation - running. - - https://bugzilla.gnome.org/show_bug.cgi?id=648857 - -M src/nemo-progress-ui-handler.c - -commit 8e8f0ed6edd3c5d4f9cca0e07a5624a3d5e2ec29 -Author: Cosimo Cecchi -Date: 2011-04-28 - - places-sidebar: make sure to return if we click inside empty space - - https://bugzilla.gnome.org/show_bug.cgi?id=648872 - -M src/nemo-places-sidebar.c - -commit f850fcc0eee61014472e698e6bdd36093ff9dfe2 -Author: Andrej Žnidaršič -Date: 2011-04-27 - - Updated Slovenian translation - -M po/sl.po - -commit a21e3e21940b84f93e0e82320ccfbb6e9a9f2cc3 -Author: Cosimo Cecchi -Date: 2011-04-27 - - places-sidebar: use per-side border widths for the sidebar frames - - This adds a border to the sidebar. - -M data/nemo.css -M src/nemo-places-sidebar.c - -commit f6dc5f319fb79203bd7645e49420d2a4b57c0373 -Author: Cosimo Cecchi -Date: 2011-04-25 - - toolbar: set the icon size to SMALL_TOOLBAR - - So that the Search button icon is drawn with a smaller size. - -M src/nemo-toolbar.c - -commit 3cf09dc4e47ca0db181dd34af22977b8e91cf0f9 -Author: Ask H. Larsen -Date: 2011-04-25 - - Updated Danish translation - -M po/da.po - -commit 7a8f54b3bbff53b17d46dc6306636852636d1609 -Author: Stefano Teso -Date: 2011-04-25 - - places-sidebar: fix opening of selected items by pressing Enter - - Don't use get_cursor() to open the current item in the sidebar, - and use - the tree selection instead, as we modify the selection manually when - evaluating up/down keypresses. - - https://bugzilla.gnome.org/show_bug.cgi?id=648555 - -M src/nemo-places-sidebar.c - -commit 83a7d27b36120d1ae54a2f5aa4af30f04d470bf2 -Author: Cosimo Cecchi -Date: 2011-04-25 - - icon-container: don't chain up style-updated for the desktop container - - Chaining up resets the background to the default color, which is not - what we want for the desktop container. - - https://bugzilla.gnome.org/show_bug.cgi?id=648137 - -M libnemo-private/nemo-icon-container.c - -commit f0d52a7a29ca0b503ed160bd21e4f1a3354f6394 -Author: Abduxukur Abdurixit -Date: 2011-04-24 - - Added UG translation - -M po/ug.po - -commit e218bff9a4f790f0915f342d764559ee399fa8ee -Author: Jiro Matsuzawa -Date: 2011-04-25 - - Updated Japanese translation - -M po/ja.po - -commit 7288e91d77f63f4014fa5247bd8a59849f302871 -Author: Arash Mousavi -Date: 2011-04-23 - - Updated Persian translation - -M po/fa.po - -commit 2f070016690ec488b1ac46d6ab2faf860e0c59b6 -Author: Bruce Cowan -Date: 2011-04-20 - - Updated British English translation - -M po/en_GB.po - -commit 630fb578c1d86d4c14118025e9c33c8959d6ecf2 -Author: YunQiang Su -Date: 2011-04-17 - - fix a mistake of Chinese(Simplified) translation - -M po/zh_CN.po - -commit 4a69d60ecf5c6b48492e7dafda7a77e719f9f060 -Author: Nguyễn Thái Ngọc Duy -Date: 2011-04-14 - - Updated Vietnamese translation - -M po/vi.po - -commit 679486ff6db16138027aa85c2aadbb9d272bc984 -Author: Cosimo Cecchi -Date: 2011-04-12 - - places-sidebar: make sure the eject icon is rendered 16x16 - - https://bugzilla.gnome.org/show_bug.cgi?id=647570 - -M src/nemo-places-sidebar.c - -commit fde63a6c6f0484f7284fd57ff26abe9d41c93196 -Author: Daniel Mustieles -Date: 2011-04-11 - - Updated Spanish translation - -M po/es.po - -commit 902aac532bac0da871591bbe481673d2c2d83907 -Author: Åsmund Skjæveland -Date: 2011-04-11 - - Updated Norwegian Nynorsk translation - -M po/nn.po - -commit 6c7bd69033676d2e3f5c25b4308bd59e9d540bda -Author: Åsmund Skjæveland -Date: 2011-04-11 - - Updated Norwegian Nynorsk translation - -M po/nn.po - -commit fdbca53ae2e7c387d05136656fd9c75fd982c863 -Author: Alexander Shopov -Date: 2011-04-10 - - Updated Bulgarian translation - -M po/bg.po - -commit a96761350ad422ec084c12f649562f9a2a83963d -Author: Cosimo Cecchi -Date: 2011-04-08 - - window: treat regular files as selection when opening a location - - This allows to call `nemo uri:///path/to/file` from the command - line - to open uri:///path/to with file pre-selected. - - https://bugzilla.gnome.org/show_bug.cgi?id=632427 - -M src/nemo-window-manage-views.c - -commit 3751310f941ed5df4a2a027ab594df015b3f815c -Author: Yaron Shahrabani -Date: 2011-04-08 - - Updated Hebrew translation. - -M po/he.po - -commit 07a6fb24fda755288346f11afb670cb3c05028fe -Author: Cosimo Cecchi -Date: 2011-04-07 - - icon-container: clear the drag state before popping up context menu - - Otherwise, a fake drag state will leak into the next motion-notify - event - when the menu has been dismissed, causing a segfault. - - https://bugzilla.gnome.org/show_bug.cgi?id=550253 - -M libnemo-private/nemo-icon-container.c - -commit d8b632765ca1b70d909d4e206f40590ee379a305 -Author: Cosimo Cecchi -Date: 2011-04-07 - - search-bar: set redraw_on_allocate(), like GtkInfoBar does - - This fixes artifacts while resizing. A similar patch was committed to - GtkInfoBar in https://bugzilla.gnome.org/show_bug.cgi?id=587716. - - https://bugzilla.gnome.org/show_bug.cgi?id=647013 - -M src/nemo-search-bar.c - -commit e6dc21ba3b908ed93e08e39731733c871a91e171 -Author: Paul Seidler -Date: 2011-04-07 - - libnotify: need at least 0.7.0 - - https://bugzilla.gnome.org/show_bug.cgi?id=647088 - -M configure.in - -commit a8539a688bf83e1ab79167e257df308d1424a103 -Author: Cosimo Cecchi -Date: 2011-04-07 - - icon-container: reset the double click counter after a double click - - If we don't do this, we ignore any other double click event that - happen - during the next 'gtk-double-click-time' interval after the first - double - click. - - Thanks to Tanyel A. Nimeu for the initial patch. - - https://bugzilla.gnome.org/show_bug.cgi?id=647062 - -M libnemo-private/nemo-icon-container.c - -commit f200bfbe8332c0df74335f608f68350609e435d7 -Author: Cosimo Cecchi -Date: 2011-04-07 - - preferences: use g_settings_bind_with_mapping() for radiobuttons - - This also fixes radiobuttons preferences not being applied when - opening - the properties dialog. - - https://bugzilla.gnome.org/show_bug.cgi?id=644478 - -M src/nemo-file-management-properties.c - -commit 392359db6d6496b325044d809d96b034a2298514 -Author: Cosimo Cecchi -Date: 2011-04-07 - - conflict-dialog: make the rename entry expand the whole width - -M libnemo-private/nemo-file-conflict-dialog.c - -commit 1457f53c27f6d2f84d0c9eb76c1c8cffd1177e95 -Author: Cosimo Cecchi -Date: 2011-04-07 - - conflict-dialog: don't force a size request on the labels - - This is not required anymore in GTK+ 3 - -M libnemo-private/nemo-file-conflict-dialog.c - -commit b8077a7ad65f54e397dd3fa1b32f97b838ba590e -Author: Cosimo Cecchi -Date: 2011-04-07 - - conflict-dialog: don't forget to show the primary label - - Reported in https://bugzilla.redhat.com/show_bug.cgi?id=693922 - -M libnemo-private/nemo-file-conflict-dialog.c - -commit f100883058fac79a913d93d1d1157498c87d7912 -Author: Fran Diéguez -Date: 2011-04-07 - - Updated Galician translations - -M po/gl.po - -commit f49b62649a092a56e2cf6203db0fef08d2ed7618 -Author: Cosimo Cecchi -Date: 2011-04-06 - - pathbar: use a NemoFile instead of a GFile as a drag target - - The NemoFile tracks changes in the file name, so it solves the bug - reported in https://bugzilla.gnome.org/show_bug.cgi?id=581748 - -M src/nemo-pathbar.c -M src/nemo-window-slot-dnd.c -M src/nemo-window-slot-dnd.h - -commit 8905b1f91253cfe36fa2c42e179831097b3c9aec -Author: Wouter Bolsterlee -Date: 2011-04-06 - - Updated Dutch translation by Wouter Bolsterlee - -M po/nl.po - -commit 13793fdc3f5fd884ff5f92093244157b751bd185 -Author: Cosimo Cecchi -Date: 2011-04-06 - - window: don't avoid same-uri reloads for the desktop - - Otherwise it will not reload when toggling desktop-is-home-dir. - -M src/nemo-window-manage-views.c - -commit 90b2084cf3f6be689b250ddfd318e33f19f8420d -Author: Cosimo Cecchi -Date: 2011-04-06 - - desktop-window: always reset is_loaded when setting the real directory - -M src/nemo-desktop-window.c - -commit 25aa3e7f391c905236397a38cf052b0b12bc792a -Author: Cosimo Cecchi -Date: 2011-04-06 - - desktop-window: disconnect the gsettings handler on dispose - -M src/nemo-desktop-window.c - -commit 8ade659212745eb91631e00d8e878e919a13858a -Author: Cosimo Cecchi -Date: 2011-04-06 - - icon-container: don't setup the regular background on the desktop - -M libnemo-private/nemo-icon-container.c - -commit ec447586d5f7a5f60f21436a868cfe28d315f1f1 -Author: Cosimo Cecchi -Date: 2011-04-06 - - places-sidebar: always add Home as a built-in place - -M src/nemo-places-sidebar.c - -commit f9bd05d254555e70ee5295fe08919a8c9d94ca79 -Author: Cosimo Cecchi -Date: 2011-04-06 - - places-sidebar: fix a typo in the GSettings key we listen to - -M src/nemo-places-sidebar.c - -commit 19d420a28b47723d8e7deb7561cc714be336e655 -Author: Cosimo Cecchi -Date: 2011-04-06 - - window-menus: use U+2013 EN DASH in the author copyright string - - https://bugzilla.gnome.org/show_bug.cgi?id=646735 - -M src/nemo-window-menus.c - -commit 6dbb7d159cfc277815d990dd157e2020608698a5 -Author: Marvin Schmidt -Date: 2011-04-05 - - configure: Fix libexif check - - https://bugzilla.gnome.org/show_bug.cgi?id=646849 - -M configure.in - -commit 77ba57813e5eaa1fc8260f6e56ef7645093be690 -Author: Rodrigo Padula de Oliveira -Date: 2011-04-05 - - Updated Brazilian Portuguese translation - -M po/pt_BR.po - -commit 9db9888bea1f0084055bf653cfb46e7b000647c9 -Author: Bruno Brouard -Date: 2011-04-05 - - Updated French translation - -M po/fr.po - -commit 319ded082ce47f384db3bfc9d7cab2fbe80e1a85 -Author: Amitakhya Phukan -Date: 2011-04-05 - - Updated Assamese translations - -M po/as.po - -commit 5f190c65784ff9b2b72e36cd0018dfbfab524b98 -Author: Daniel Nylander -Date: 2011-04-05 - - Updated Swedish translation - -M po/sv.po - -commit aaaee6de758f70005ffdd343a4b7354e3664f471 -Author: Cosimo Cecchi -Date: 2011-04-04 - - icon-container: rework the colors used for additional text labels - - We now use the insensitive color for the normal state, and make them - follow the filename color for selected states. - - This also fixes https://bugzilla.gnome.org/show_bug.cgi?id=319982, - tested with the HighContrast theme. - -M data/nemo.css -M libnemo-private/nemo-icon-container.c - -commit ced6d22409c3a849b86b75bb867f267a3cdad800 -Author: Cosimo Cecchi -Date: 2011-04-04 - - window-menus: don't hardcode year values in the translatable string - - https://bugzilla.gnome.org/show_bug.cgi?id=646735 - -M src/nemo-window-menus.c - -commit bb6578da85fff3d28e6a71f9933b1bd34e7c27bc -Author: Chao-Hsiung Liao -Date: 2011-04-05 - - Updated Traditional Chinese translation(Hong Kong and Taiwan) - -M po/zh_HK.po -M po/zh_TW.po - -commit edd3c43beb5efbc13f55d73e8c9818966a031ad1 -Author: Cosimo Cecchi -Date: 2011-04-04 - - dnd: rework handling of _NETSCAPE_URL dnd links - - Previously we used to to the following: - * default to always "ask", unless the copy was explicit - * when dropped, we did not actually ask anything but we would - trigger an - async mimetype query_info and: - - trigger a file asking whether to download or to link for text - files - - silently link for HTML files - - silently download for every other mimetype - * if the query_info was not completed within one second, we would - download by default - - This is somewhat broken, as the DnD icon is not what you would expect; - also downloading is not usually done with DnD from the browser, - and it's - also expensive, so it should never be the default, but an explicit - choice. It also makes it impossible to create links for anything else - than text or HTML. - - Change the policy to always link by default, unless the user - explicitly - requests the copy. - -M libnemo-private/nemo-dnd.c -M src/nemo-view-dnd.c - -commit 2afe78a92cc402207e7f3a0189eca95311651076 -Author: Cosimo Cecchi -Date: 2011-04-04 - - file: use a GIcon to store the custom icon of desktop files - - Instead of a filename string. - This also has the side-effect of fixing - https://bugzilla.gnome.org/show_bug.cgi?id=615509 - -M libnemo-private/nemo-directory-async.c -M libnemo-private/nemo-file-private.h -M libnemo-private/nemo-file.c -M libnemo-private/nemo-link.c -M libnemo-private/nemo-link.h - -commit e68c6e071915fe680ed44e824ccafdb1470a39bb -Author: Jordi Serratosa -Date: 2011-04-04 - - [l10n]Fixes on Catalan translation - -M po/ca.po - -commit 3f17316c34335a9ea8a82d8940506759d88c6fcd -Author: Joan Duran -Date: 2011-04-04 - - [l10n]Updated Catalan translation - -M po/ca.po - -commit 07c70ab3a65f1d67293a467b742dda729b85156b -Author: Jamil Ahmed -Date: 2011-04-05 - - Updated Bengali translation - -M po/bn.po - -commit 35311e217ac8f11e97628316c35d6093589507b0 -Author: Cosimo Cecchi -Date: 2011-04-04 - - thumbnails: remove unused struct definition - -M libnemo-private/nemo-thumbnails.c - -commit 93a0d7fd735c1670c0787c3daa7f84003994da5d -Author: Cosimo Cecchi -Date: 2011-04-04 - - thumbnails: remove obsolete check for GLib < 2.14 compatibility - -M libnemo-private/nemo-thumbnails.c - -commit f9c6ca979f753339b91c125c363a927fceb64283 -Author: Cosimo Cecchi -Date: 2011-04-04 - - thumbnails: remove code unused for years - -M libnemo-private/nemo-thumbnails.c - -commit 088d0968f837364374bdea20eda0fa4534338202 -Author: Daniel Mustieles -Date: 2011-04-04 - - Updated Spanish translation - -M po/es.po - -commit 367572b907d1cd970135e546b3237522b9720c7d -Author: Cosimo Cecchi -Date: 2011-04-03 - - application: don't redirect windows on computer:// when unmounting - - It's confusing now that we don't have a desktop. Redirect to the user - home instead. - - This also has the side effect of fixing - https://bugzilla.gnome.org/show_bug.cgi?id=615963 - -M src/nemo-application.c - -commit b37f08ef618b6418711a7c70ff7485961bc9058d -Author: Cosimo Cecchi -Date: 2011-03-31 - - places-sidebar: don't return TRUE in button-release when we eject - - Otherwise the GtkTreeView default handler won't run cleaning up - what it set up in button-press-event and the next motion-event will - trigger the DnD to begin. - - https://bugzilla.gnome.org/show_bug.cgi?id=646302 - -M src/nemo-places-sidebar.c - -commit 2644c6ef4e7839e976d4861d6c86e16e34d46a13 -Author: Cosimo Cecchi -Date: 2011-03-31 - - icon-canvas-item: make sure to reset the default cursor ond - destruction - - We might be destroyed while hovering while in single-click mode, - so make - sure the default cursor is always cleared when finalizing, if - we didn't - get a leave event. - - https://bugzilla.gnome.org/show_bug.cgi?id=315023 - -M libnemo-private/nemo-icon-canvas-item.c - -commit a47b2efd9b265f92e306e855ede0af3f19881f0c -Author: Cosimo Cecchi -Date: 2011-04-04 - - build: bump version to 3.1.0 on master - -M configure.in - -commit 7c3ba0e86f5b6ba4859457c1fd57f6f443601cab -Author: Yuri Myasoedov -Date: 2011-04-04 - - Updated Russian translation - -M po/ru.po - -commit 60ecc80a6057ebb5605f1ef1eb51e6cf8785a1e1 -Author: Piotr Drąg -Date: 2011-04-04 - - Updated Polish translation - -M po/pl.po - -commit 2641de616d77df714d743a58a52228a6632a1df1 -Author: Wolfgang Stöggl -Date: 2011-04-04 - - [l10n] Updated German translation - -M po/de.po - -commit 635d472128e9687daa3b466f43765ee116921712 -Author: Lukas Lommer -Date: 2011-04-04 - - Updated Czech translation - -M po/cs.po - -commit 6efe6113d1a2ee61eaf2feed818689f25023e687 -Author: Cosimo Cecchi -Date: 2011-04-04 - - release: release 3.0.0 - - The future is now. - -M NEWS -M configure.in - -commit acce5e1c70e10ef550cfed888a852e5048dc4b3d -Author: Cosimo Cecchi -Date: 2011-04-04 - - release: update AUTHORS - -M AUTHORS -M src/nemo-window-menus.c - -commit 681e24ae18f5f4cf6275171154383fb0aeaf1d1a -Author: Cosimo Cecchi -Date: 2011-04-04 - - release: require the latest stable versions of our dependencies - -M configure.in - -commit 278425bbcd806571f7d5369e53a15d5f22e51551 -Author: Cosimo Cecchi -Date: 2011-04-03 - - window: make sure we always force opening in new windows on the - desktop - - https://bugzilla.gnome.org/show_bug.cgi?id=646548 - -M src/nemo-window-manage-views.c - -commit 68b57af6e476253b36d8652a681bade6facbd259 -Author: Cosimo Cecchi -Date: 2011-04-03 - - places-sidebar: disconnect the gsettings handler callback in - _dispose() - - The GSettings object is a global singleton, so it will always - survive the - sidebar; we should make sure to disconnect all the settings signal - when - destroying the sidebar. - - https://bugzilla.gnome.org/show_bug.cgi?id=646664 - -M src/nemo-places-sidebar.c - -commit d4cce11671471427f1b62fc658e05d4f6637b3e9 -Author: Chao-Hsiung Liao -Date: 2011-04-04 - - Updated Traditional Chinese translation(Hong Kong and Taiwan) - -M po/zh_HK.po -M po/zh_TW.po - -commit 42d58b3db4b639521c0346ec8d9afc3f60c30603 -Author: Inaki Larranaga Murgoitio -Date: 2011-04-04 - - Updated Basque language - -M po/eu.po - -commit 4611ba0cd09b1c63c67930f72c90edb2e4f3b83e -Author: Wolfgang Stöggl -Date: 2011-04-03 - - [l10n] Updated German translation, umlauts fixed - -M po/de.po - -commit b35740dd52162a87a19ef8ed6a56a6736e5736ec -Author: Nguyễn Thái Ngọc Duy -Date: 2011-04-03 - - Updated Vietnamese translation - -M po/vi.po - -commit b67ee41bc6601fc26bea2457dc8865e0df5e5f98 -Author: Piotr Drąg -Date: 2011-04-02 - - Updated Polish translation - -M po/pl.po - -commit ce1f95f6f8ee17cb7613564295566ffd99d8e930 -Author: Shankar Prasad -Date: 2011-04-02 - - Updated kn translations - -M po/kn.po - -commit c6fc0d81c87f6c3bdfb457a98fbb386dfa36683e -Author: Shankar Prasad -Date: 2011-04-02 - - Updated kn translations - -M po/kn.po - -commit 333ce240832b66f46d8b9bfdfa4b294c1bf26fbd -Author: Shankar Prasad -Date: 2011-04-02 - - Updated kn translations - -M po/kn.po - -commit 7ddc0b3bb207fe0b9243b90f1c73b0bcf76490d4 -Author: Nguyễn Thái Ngọc Duy -Date: 2011-04-02 - - Updated Vietnamese translation - -M po/vi.po - -commit 6fc1a0b5cedba6dc28dc995eb7a0688869239c71 -Author: Nguyễn Thái Ngọc Duy -Date: 2011-04-02 - - po/vi.po: import from Damned Lies - -M po/vi.po - -commit 0a10d4355e2e144d6731fa12a981841e1ea7b9b9 -Author: Gabor Kelemen -Date: 2011-04-01 - - Updated Hungarian translation - -M po/hu.po - -commit c6279ac229545d7f64b64212383df2753482e233 -Author: Giorgio F. Gilestro -Date: 2011-04-01 - - Fix up accidental error in last commit - - The accelerator ended up as stock id instead. - -M src/nemo-view.c - -commit cce40272e35b20b4aaf5f93109a05b7bb89704d5 -Author: Giorgio F. Gilestro -Date: 2011-04-01 - - Use ctrl-delete as the keyboard shortcut to trash files - - This change was made to make it harder to accidentally trigger a file - delete. We still support the trash that will let you get a trashed - file - back, and we will get undo support to make this even easier. However, - that only works if you know you deleted the wrong file, not if you - accidentally hit delete while the nemo window was focused. - -M src/nemo-view.c - -commit 803783c2479258aad8f2278dde95101b9e4b90ca -Author: Shankar Prasad -Date: 2011-04-01 - - Updated kn translations - -M po/kn.po - -commit e72093c2b0490b481a6b894bf84dd46075b7ef21 -Author: Jiro Matsuzawa -Date: 2011-03-31 - - Updated Japanese translation. - -M po/ja.po - -commit 952269914060f48f941053120e6035440c8cfc6f -Author: Милош Поповић -Date: 2011-03-31 - - Added Serbian translation - -M po/sr.po -M po/sr@latin.po - -commit 7421f629c9493344846890a46e475667b9aae0b1 -Author: Dr.T.Vasudevan -Date: 2011-03-31 - - Updated Tamil translation - -M po/ta.po - -commit d011084103db0ace13a7011d53f68cf9a3489464 -Author: Dr.T.Vasudevan -Date: 2010-12-03 - - Updated Tamil translation - -M po/ta.po - -commit 80fab3f7a7447efbd4323cf372f846d4d59141a5 -Author: Cosimo Cecchi -Date: 2011-03-30 - - release: update for 2.91.94 - -M NEWS -M configure.in - -commit f294a4e80626793624d76d6002b094d1c0809de4 -Author: Alexander Larsson -Date: 2011-03-30 - - Fix up eject button hover in places sidebar - - We were calling gtk_tree_view_column_cell_get_position() without - properly loading the cell attribute for the right row before. - We fix this by calling gtk_tree_view_column_cell_set_cell_data(). - - With this in place we can also use the x_offset for the position and - avoid the whole summing of widths. - - Due to a bug in Gtk which expands the eject icon cell renderer we - have to right align it so that it lines up properly. - - https://bugzilla.gnome.org/show_bug.cgi?id=640741 - -M src/nemo-places-sidebar.c - -commit b57c42f7fbe7fd90cdc6ff59b2f7c160dd3198af -Author: Chao-Hsiung Liao -Date: 2011-03-30 - - Updated Traditional Chinese translation(Hong Kong and Taiwan) - -M po/zh_HK.po -M po/zh_TW.po - -commit 3fd5eda0fc01f56ce9ae9b68b744651d73342259 -Author: Ask H. Larsen -Date: 2011-03-30 - - Updated Danish translation - -M po/da.po - -commit cf21e9aa47c67861422ada02c7fa327340d63140 -Author: Cosimo Cecchi -Date: 2011-03-29 - - pathbar: keep a ref to the GFile while updating the path - - When desktop-is-home-dir changes, we force a re-layout of all the - buttons, which in turn unrefs the passed-in GFile, as the ref would - belong to an old button. Fix this by assuming a ref while calling - nemo_path_bar_update_path(). - - https://bugzilla.gnome.org/show_bug.cgi?id=551543 - -M src/nemo-pathbar.c - -commit aed2cce6c36543457f5f1ad8f8c05f2fa147b1f2 -Author: Matej Urbančič -Date: 2011-03-29 - - Updated Slovenian translation - -M po/sl.po - -commit e7d80384ab00d52149452e77cd566ee381474b36 -Author: Gintautas Miliauskas -Date: 2011-03-29 - - Updated Lithuanian translation. - -M po/lt.po - -commit 85ae5ae7e3174c05199ff6557c1cc905ad1d1075 -Author: Sandeep Shedmake -Date: 2011-03-29 - - Updated Marathi Translations - -M po/mr.po - -commit 08665d5c7ae146c45f5f9855b3ea60c22b1372ad -Author: Lukas Lommer -Date: 2011-03-29 - - Updated Czech translation - -M po/cs.po - -commit d01f3377a2724bb6582f13c48f7cd1b97b1b869b -Author: Lukas Lommer -Date: 2011-03-29 - - Updated Czech translation - -M po/cs.po - -commit c7c860a264db211a0a68ee963ce29c7fcb2ad334 -Author: Alexander Larsson -Date: 2011-03-28 - - Make sure we free custom accessibility objects - - Custom accessibility objects, such as NemoIconContainerAccessible - need to be freed when their corresponding widget/object dies, right - now we're not unreferencing the accessible, so its always leaked. - -M eel/eel-accessibility.c - -commit 69a3e83971e2f0963d0c68f4b3e84612ff4032e8 -Author: Shaun McCance -Date: 2011-03-27 - - Fixing help buttons to go to new gnome-help pages - -M src/nemo-bookmarks-window.c -M src/nemo-connect-server-dialog.c -M src/nemo-file-management-properties.c -M src/nemo-properties-window.c -M src/nemo-view.c -M src/nemo-window-menus.c - -commit ac6ec79231cf3d0cbd076ea5a76b154c9930df68 -Author: Henrique P. Machado -Date: 2011-03-27 - - Updated Brazilian Portuguese translation. - -M po/pt_BR.po - -commit fed40498e77eb037826391eabdf5f359ad72ba78 -Author: Abduxukur Abdurixit -Date: 2011-03-27 - - Added UG translation - -M po/ug.po - -commit ca8392d39f57dcbc17d2de84c90fb4e4d473f074 -Author: Ivan Masár -Date: 2011-03-27 - - Updated Slovak translation - -M po/sk.po - -commit 0889c0e56d13329a835324cf20160a69591a6757 -Author: Yuri Myasoedov -Date: 2011-03-27 - - Updated Russian translation - -M po/ru.po - -commit 5c34337057c96621d2d43690b262eab98c287a1a -Author: Kjartan Maraas -Date: 2011-03-26 - - Updated Norwegian bokmål translation - -M po/nb.po - -commit 4e75a3b805b007c863ad2eb4b3be62a97249c33d -Author: Cosimo Cecchi -Date: 2011-03-25 - - icon-view: clear the icon view when destroying it - - This ensures all NemoFiles are properly unreffed when destroying - the - view, and fixes a leak. - -M src/nemo-icon-view.c - -commit 199e5adb8a51c9cd54a644de60b01d9c0cd2170d -Author: Cosimo Cecchi -Date: 2011-03-25 - - release: update for 2.91.93 - -M NEWS -M configure.in - -commit 7268e3f449a7ae762dcc5b72cb8a36d7ed3362e2 -Author: Alexander Larsson -Date: 2011-03-25 - - Don't leak sidebar widgets - - Sidebar widgets are normal widgets these days and should be standard - floating stuff owned by the container they end up with. So, we - should no longer ref_sink them. - -M src/nemo-places-sidebar.c -M src/nemo-tree-sidebar.c - -commit d781d414e40840422c201dd61637135358c75ab3 -Author: Alexander Larsson -Date: 2011-03-25 - - Don't leak NemoFile for bookmarks in places sidebar - -M src/nemo-places-sidebar.c - -commit 695efe7cb3f9a96e7c870c36d30e2759d800d2d5 -Author: Alexander Larsson -Date: 2011-03-25 - - Better debugging for NemoDirectory leaks - -M libnemo-private/nemo-directory.c - -commit 1d48f02ea1bf274d8fb0d70b61bed337bbda06c2 -Author: Alexander Larsson -Date: 2011-03-25 - - Add custom foreach to eel_g_hash_table_new_free_at_exit - - This can be used to get some sort of printout for leaks in non-string - hashtables. - -M eel/eel-glib-extensions.c -M eel/eel-glib-extensions.h -M eel/eel-stock-dialogs.c -M eel/eel-string.c -M libnemo-private/nemo-directory-async.c -M libnemo-private/nemo-directory.c -M libnemo-private/nemo-file.c -M src/nemo-properties-window.c - -commit 1a8aadd2d02554a308c33a2b88b95c6d7ef5be7f -Author: Lukas Lommer -Date: 2011-03-24 - - Updated Czech translation - -M po/cs.po - -commit 101796d8b02133f238a757e4d754915e1d276095 -Author: Kjartan Maraas -Date: 2011-03-22 - - Updated Norwegian bokmål translation - -M po/nb.po - -commit f45510bbb82d6ffa23bf8a54b8596fb5f34ae5e3 -Author: Mattias Põldaru -Date: 2011-03-22 - - [l10n] Updated Estonian translation - -M po/et.po - -commit 41fd10dafd7fe0240dc13bf33140e8aa22d87333 -Author: Cosimo Cecchi -Date: 2011-03-21 - - Update for 2.91.92 - -M NEWS -M configure.in - -commit 2cf698346aca25a48a11edeccc34530e15843a6a -Author: Cosimo Cecchi -Date: 2011-03-21 - - file-operations: update the test to the new duplicate string behavior - - The test was in some cases checking for what we don't actually want to - happen. Change it to match current behavior. - -M libnemo-private/nemo-file-operations.c - -commit 40947ed576b14777eb3106a3b0350b471455905d -Author: Cosimo Cecchi -Date: 2011-03-21 - - file-operations: make sure to handle correctly hidden files extensions - - This is a fixup of c250b5702329e71c61f6e7f4e26227925c5b1e90 - -M libnemo-private/nemo-file-operations.c - -commit 1f31ab18d932a778aa409dd3cadffb34d5f4ae54 -Author: Cosimo Cecchi -Date: 2011-03-21 - - css: apply a soft gradient to the floating bar. - -M data/nemo.css - -commit 9dc263518f71a2a06ec808be79c2bc0a9fe17129 -Author: Cosimo Cecchi -Date: 2011-03-21 - - window: make sure to never show the floating bar on the Desktop - - https://bugzilla.gnome.org/show_bug.cgi?id=644172 - -M src/nemo-desktop-icon-view.c -M src/nemo-window-manage-views.c -M src/nemo-window-slot.c -M src/nemo-window.c - -commit c250b5702329e71c61f6e7f4e26227925c5b1e90 -Author: Cosimo Cecchi -Date: 2011-03-21 - - Properly strip extensions when placing the duplication string - - We use a similar matching filter to the one we use when renaming. It's - not ideal (mimetypes are hardcoded, and probably some are missing), - but - at least we're consistent. - - https://bugzilla.gnome.org/show_bug.cgi?id=351290 - -M eel/eel-vfs-extensions.c -M eel/eel-vfs-extensions.h -M libnemo-private/nemo-file-operations.c - -commit e0726b71cbbe3ddd9548546991a30951ecc1f21e -Author: Cosimo Cecchi -Date: 2011-03-21 - - slot: don't ref the view returned by _get_current_view() - - https://bugzilla.gnome.org/show_bug.cgi?id=643968 - -M src/nemo-window-slot-dnd.c -M src/nemo-window-slot.c - -commit 2d71f734864647c23aa3e35374da9058beb0dc2e -Author: Kristjan SCHMIDT -Date: 2011-03-21 - - Updated Esperanto translation - -M po/eo.po - -commit ddc303bc2b23704911299ba28aab3f0e74fb88ee -Author: Kristjan SCHMIDT -Date: 2011-03-21 - - Updated Esperanto translation - -M po/eo.po - -commit 1ac3b5dd7100e75d8d579e7dc4c6fabb192a2dee -Author: Kristjan SCHMIDT -Date: 2011-03-21 - - Updated Esperanto translation - -M po/eo.po - -commit 76e10b322b5e0689c16881f10a3854e207a44c09 -Author: Cosimo Cecchi -Date: 2011-03-21 - - places: hide "Open in new Tab/Window" when using separate windows - -M src/nemo-places-sidebar.c - -commit 2cd9c4b84059f3e00ed6222ab43c34a974e2c550 -Author: Cosimo Cecchi -Date: 2011-03-21 - - view: cleanup "Open in new Tab/Window" items when using separate - windows - - We were displaying a lot of useless entries in the menus in such case. - -M src/nemo-actions.h -M src/nemo-directory-view-ui.xml -M src/nemo-view.c - -commit 572ded742f9146a6bca8f5000804f291338db9b8 -Author: Stefano Teso -Date: 2011-03-21 - - view: set the right open flags when opening in a new window - - https://bugzilla.gnome.org/show_bug.cgi?id=644675 - -M src/nemo-view.c - -commit 58e544c260349a01242f40769e61e9b7098069fd -Author: Cosimo Cecchi -Date: 2011-03-21 - - window-pane: toggle the search button when showing a saved search - - https://bugzilla.gnome.org/show_bug.cgi?id=645027 - -M src/nemo-window-pane.c -M src/nemo-window-slot.c - -commit 111be78c86bc824b291d9b402a2ff897b2fa2dc7 -Author: Cosimo Cecchi -Date: 2011-03-21 - - query-editor: make all the labels' appearance consistent - -M src/nemo-query-editor.c - -commit c863defffa222ec60eff29c5f31ab73131799912 -Author: Cosimo Cecchi -Date: 2011-03-21 - - query-editor: theme the query editor like the other cluebars - -M data/nemo.css -M src/nemo-query-editor.c -M src/nemo-query-editor.h - -commit 1469c27280be10a92aa92195023eb1bbf4a5d10c -Author: Cosimo Cecchi -Date: 2011-03-21 - - file-utilities: return "Home" as a title for the home directory - - Make it consistent with the rest of the UI. - https://bugzilla.gnome.org/show_bug.cgi?id=645136 - -M libnemo-private/nemo-file-utilities.c - -commit dac5908d505542362cc51c5c21e0b9220715395a -Author: Cosimo Cecchi -Date: 2011-03-21 - - pathbar: don't unconditionally iterate over buttons when scrolling - - This should fix https://bugzilla.gnome.org/show_bug.cgi?id=645198 - -M src/nemo-pathbar.c - -commit a2d928754e9b65ce9c7ac93127b61abdd7cbb2f4 -Author: Dirgita -Date: 2011-03-20 - - Updated Indonesian translation - -M po/id.po - -commit 8129f1c78ac57aa96588228489860c315ef265c2 -Author: Rudolfs Mazurs -Date: 2011-03-19 - - Updated Latvian translation. - -M po/lv.po - -commit 71548f90dfe368b2ce3396bef6d2099e3b800bdf -Author: Wouter Bolsterlee -Date: 2011-03-19 - - Updated Dutch translation by Wouter Bolsterlee - -M po/nl.po - -commit 83587589effec5b76a6dd7032f374db4135fae12 -Author: Gabor Kelemen -Date: 2011-03-19 - - Updated Hungarian translation - -M po/hu.po - -commit 8094cacbdf5914f2a50c1a17cb93701890aafec3 -Author: Lucian Adrian Grijincu -Date: 2011-03-17 - - Updated Romanian translation - -M po/ro.po - -commit 9d27856f2e62479eca0adae87f1cf6f1bf6cf92c -Author: Lucian Adrian Grijincu -Date: 2011-03-17 - - Updated Romanian translation - -M po/ro.po - -commit e2bfbbd6d8ae577bb16cd215a2d106dcc31f6d8a -Author: Cosimo Cecchi -Date: 2011-03-17 - - view: use GTK_STYLE_CLASS_VIEW for NemoView - - So that NemoIconContainer also inherits the proper style class. - -M src/nemo-view.c - -commit 9c65f3b6675fb927a96a7dd52d6fec4eb700adce -Author: Cosimo Cecchi -Date: 2011-03-17 - - window: use GTK_STYLE_CLASS_SIDEBAR for the nemo sidebar - -M configure.in -M data/nemo.css -M src/nemo-window.c - -commit 32fdd13a6e92f9e36dc8476043c4b93f61a6eca9 -Author: Gintautas Miliauskas -Date: 2011-03-17 - - Updated Lithuanian translation. - -M po/lt.po - -commit f70c2c981adb794bf996b077f2dcfa299d689e61 -Author: Mario Blättermann -Date: 2011-03-17 - - [l10n] Updated German translation - -M po/de.po - -commit 99d84db2ccc8b7cd998a6704cc34b83cbcac4760 -Author: Cosimo Cecchi -Date: 2011-03-15 - - window-pane: use _split_view_off() to close the active pane with - Ctrl+W - - This makes nemo' behavior consistent with what happens when F3 is - pressed. - -M src/nemo-window-pane.c - -commit 633929a88b8941a4b817bd34b27ce5d8fbe3a804 -Author: Cosimo Cecchi -Date: 2011-03-15 - - css: theme the search bar and the cluebar with the proper colors - -M data/nemo.css - -commit 515610602463758c08d4ce5514219a83c3e05bfe -Author: Cosimo Cecchi -Date: 2011-03-15 - - search-bar: rework to make it more similar to the 3.0 mockups - - This involves rendering a background over the box, using symbolic - icons - and other goodness. - -M src/nemo-search-bar.c -M src/nemo-toolbar.c - -commit 319cda6e9430b4aa74e052ee41086d82fc5bb530 -Author: Cosimo Cecchi -Date: 2011-03-15 - - window-slot: cleanup packing of extra widgets - - Don't pack them in a frame+eventbox, but just use the GtkBox. - -M src/nemo-window-slot.c -M src/nemo-window-slot.h - -commit d73ded51a677700ad76201851af255f5ba6192d3 -Author: Cosimo Cecchi -Date: 2011-03-15 - - x-content-bar: make NemoXContentBar a GtkInfoBar - -M src/nemo-x-content-bar.c -M src/nemo-x-content-bar.h - -commit 3b3fe092c77b685516495ae8239d6b5aa7c37072 -Author: Cosimo Cecchi -Date: 2011-03-15 - - trash-bar: make NemoTrashBar a GtkInfoBar - -M src/nemo-trash-bar.c -M src/nemo-trash-bar.h - -commit a2df8af91ed91934c16a0a959c1e178b2849c46e -Author: Fran Diéguez -Date: 2011-03-15 - - Updated Galician translations - -M po/gl.po - -commit 45945cd45776a020b1f8ce5e61c0db7faa1895f4 -Author: Cosimo Cecchi -Date: 2011-03-15 - - window: add back the resize grip - - At the same time, add a bit more padding to the floating bar label, so - that it won't be covered by the grip. - Remove some margin at the bottom of the window too. - -M data/nemo.css -M src/nemo-floating-bar.c -M src/nemo-window.c - -commit ad8dd8389670d85e8afacb58dc7971cc2b81b9eb -Author: Cosimo Cecchi -Date: 2011-03-15 - - window-slot: let the "Loading" floating bar appear only after - a timeout - - It will appear only if loading takes more than 500ms. - -M src/nemo-window-manage-views.c -M src/nemo-window-slot.c -M src/nemo-window-slot.h - -commit 275744644c95cc039efae7029a94814b47274ff7 -Author: Cosimo Cecchi -Date: 2011-03-15 - - floating-bar: don't use a yellow color for the floating bar - - Make it also a bit shorter. - -M data/nemo.css -M src/nemo-floating-bar.c - -commit 00a9b3ae50db1cd609ee3eb4a556c851fc046906 -Author: Duarte Loreto -Date: 2011-03-13 - - Updated Portuguese translation - -M po/pt.po - -commit df4e4aa5d62e2ef23fdbf0a3ca09107e89d89ff6 -Author: Åsmund Skjæveland -Date: 2011-03-13 - - Updated Norwegian Nynorsk translation. - -M po/nn.po - -commit 55585048b94c492fa32a60359a14472da8a4f7c4 -Author: Claude Paroz -Date: 2011-03-12 - - Updated French translation - - Contributed by Gérard Baylard, Bruno Brouard and Claude Paroz. - -M po/fr.po - -commit a3a69db247c58066fcd7ae9b3c6e596fa7f21060 -Author: Bruce Cowan -Date: 2011-03-12 - - Updated British English translation - -M po/en_GB.po - -commit 7536e18ed8fdf50274625837c022ce5ee843c340 -Author: Tomas Bzatek -Date: 2011-03-11 - - Bengali translation: Fix malformed format string - - Originally reported as - https://bugzilla.redhat.com/show_bug.cgi?id=578086 - - Related to commits a1a8f97c9dcd9fdbbbfdddcec7f7d8da85a68dfb and - 5b31e211ff20645c548949bd8d012b7bcaa39bf2 - -M po/bn.po - -commit b47b01d95f332f6a50157cb2d4940bd920455518 -Author: Piotr Drąg -Date: 2011-03-11 - - Updated Polish translation - -M po/pl.po - -commit 9cf0a0a1bde02fababd047cced3c36ffa6f9543e -Author: Khaled Hosny -Date: 2011-03-11 - - Updated Arabic translation - -M po/ar.po - -commit c25ae0f18ca87c561178bd57b191fd13ec3edc38 -Author: Manoj Kumar Giri -Date: 2011-03-10 - - Updated Oriya Translation - -M po/or.po - -commit 86bd3f63bcdf7cdfdc0ebb12104856f7d085510b -Author: Andrej Žnidaršič -Date: 2011-03-09 - - Updated Slovenian translation - -M po/sl.po - -commit 85e624e496ddcbea78826545308aac09541bbfde -Author: Andrej Žnidaršič -Date: 2011-03-09 - - Updated Slovenian translation - -M po/sl.po - -commit 3800f7c7957ac155d96b0b8605197fd7de8cd943 -Author: Cosimo Cecchi -Date: 2011-03-08 - - css: make the backgorund of the floating bar button transparent - -M data/nemo.css - -commit e021dd0f9c73c4cbf6e8e00f1ca6863c99a7056c -Author: Cosimo Cecchi -Date: 2011-03-08 - - toolbar: use a raised button for Search - -M src/nemo-toolbar.c - -commit eb340743b260def298ed64a45d2b6112f7c71589 -Author: Joan Duran -Date: 2011-03-08 - - Updated Catalan translation - -M po/ca.po - -commit 30fca4b7b9afad5edb884ef7e6b8370fc88951ec -Author: Kjartan Maraas -Date: 2011-03-08 - - Updated Norwegian bokmål translation - -M po/nb.po - -commit 5b6d156f57ad630646c2c3e779d094b98766d529 -Author: Cosimo Cecchi -Date: 2011-03-07 - - Release 2.91.91 - -M NEWS -M configure.in - -commit 9465370aad15fe7b20923ad1009a5d3314edc621 -Author: Cosimo Cecchi -Date: 2011-03-07 - - places: use iters to cycle items in the sidebar - -M src/nemo-places-sidebar.c - -commit ede178516796568e5d0b596cc720a3cb56dfaaf5 -Author: Cosimo Cecchi -Date: 2011-03-07 - - toolbar: set the primary-toolbar style class on the toolbar - -M src/nemo-toolbar.c - -commit 896138b17cf6bb8be87bfac3394af641972a364b -Author: Luca Ferretti -Date: 2011-03-07 - - Fixed a typo - -M po/it.po - -commit 894fe97a070004ad3317fa59fa8cb20851c9ab81 -Author: Changwoo Ryu -Date: 2011-03-06 - - Updated Korean translation - -M po/ko.po - -commit 96e53868862fb43b54b8e3f5cf9258615bc26fad -Author: Andrej Žnidaršič -Date: 2011-03-05 - - Updated Slovenian translation - -M po/sl.po - -commit 7af7225fce4ede640cf9eca3a2e11115bf542ff7 -Author: Nguyễn Thái Ngọc Duy -Date: 2011-03-05 - - Updated Vietnamese translation - -M po/vi.po - -commit 0e20049361db4a0d8926e98702501392e98efdcd -Author: Nguyễn Thái Ngọc Duy -Date: 2011-03-05 - - po/vi.po: import from Damned Lies - -M po/vi.po - -commit 4359343f94d255929621fb4fa1f08b67ded4bf96 -Author: Cosimo Cecchi -Date: 2011-03-03 - - list-view: fix expand/fill visibility of the column editor dialog - -M src/nemo-list-view.c - -commit ab4fb0cdee781120d35f041a2198f203da2678cd -Author: Daniel Korostil -Date: 2011-03-02 - - Uploaded Ukranian - -M po/uk.po - -commit 7035f1c2d444b066e079abc50a8664bccf69fe05 -Author: Daniel Nylander -Date: 2011-03-01 - - Updated Swedish translation - -M po/sv.po - -commit 2ed8c3b4c3ac88996b6bbd961f9bc3fee6c14789 -Author: Daniel Korostil -Date: 2011-03-01 - - Uploaded Ukranian - -M po/uk.po - -commit 9b4ce4d88d5bc8374d218534f5ee616fdd64ef79 -Author: Daniel Korostil -Date: 2011-02-28 - - Uploaded Ukranian - -M po/uk.po - -commit f84f6578c5068fe3216387240420f41b2d00db41 -Author: Cosimo Cecchi -Date: 2011-02-28 - - css: don't put toolbar style here - - It's in gnome-themes-standard until we found a more generic way of - expressing it. - -M data/nemo.css - -commit ba262758489a726afbfcbfe60f1f0c79f20d179a -Author: Rudolfs Mazurs -Date: 2011-02-27 - - Updated Latvian translation. - -M po/lv.po - -commit d12544d94d11cfe403f0a4f2f82b0ff569a623d6 -Author: Gabor Kelemen -Date: 2011-02-27 - - Updated Hungarian translation - -M po/hu.po - -commit 789d71e7edbc3f60668c305adb4da9bbdd94b4d6 -Author: Stefano Teso -Date: 2011-02-26 - - places-sidebar: skip section headers on keynav - - https://bugzilla.gnome.org/show_bug.cgi?id=643137 - -M src/nemo-places-sidebar.c - -commit 089315b56f78113bd26d18bb40d0132b84954ebe -Author: Stefano Teso -Date: 2011-02-26 - - typeahead-find: make sure the search widget is on-screen when - maximized - - https://bugzilla.gnome.org/show_bug.cgi?id=642953 - -M libnemo-private/nemo-icon-container.c - -commit a5d4e41129e00461426312cdffa392b59ac30118 -Author: Stefano Teso -Date: 2011-02-26 - - bookmarks: bookmarked saved searches should use the saved-search icon - - https://bugzilla.gnome.org/show_bug.cgi?id=643057 - -M libnemo-private/nemo-bookmark.c -M libnemo-private/nemo-icon-names.h - -commit 02446f2cdb990fabebdefaed339227d6f52a495e -Author: Cosimo Cecchi -Date: 2011-02-25 - - icon-view: doesn't make sense to use g_timeout_add_seconds for preview - - https://bugzilla.gnome.org/show_bug.cgi?id=574033 - -M src/nemo-icon-view.c - -commit 5e2edee2e8dc6b4eababdff993176d591cc2a6e6 -Author: Cosimo Cecchi -Date: 2011-02-25 - - list-view: make sure not to select the extension on rename - - Delay calling gtk_editable_select_region() until after - gtk_tree_view_set_cursor() - - https://bugzilla.gnome.org/show_bug.cgi?id=627110 - -M src/nemo-list-view.c - -commit a9515134c3bce4df1d1563340394b796ae40d183 -Author: Stefano Teso -Date: 2011-02-25 - - list-view: create folders in subdirectories when possible - - Don't always choose the tree root as parent when creating a new - folder, - but look at the current selection's directory. - - https://bugzilla.gnome.org/show_bug.cgi?id=330644 - -M src/nemo-list-view.c -M src/nemo-view.c -M src/nemo-view.h - -commit 97b1ff2fa3b4d706969ab40d4bf17adad281e42f -Author: Cosimo Cecchi -Date: 2011-02-25 - - list-view: unfreeze updates on focus out - - It's not really right, as GtkTreeView should always emit - editing-canceled on the right renderer for us, but if you click away - from the entry, it doesn't, so this is just a workaround until - the GTK+ - bug is fixed. - -M src/nemo-list-view.c - -commit 3645b11f392c649455472bc1b3a8c8f581c37c74 -Author: Cosimo Cecchi -Date: 2011-02-25 - - file: make sure not to pass g_utf8_collate() NULL strings - -M libnemo-private/nemo-file.c - -commit e939b36481815dbdf4053dba070f17d02a1efc38 -Author: Cosimo Cecchi -Date: 2011-02-25 - - desktop-file: remove obsolete x-directory/* mimetypes - - They got deprecated. - - https://bugzilla.gnome.org/show_bug.cgi?id=612694 - -M data/nemo.desktop.in.in - -commit 50ee32a1b46f0e0dea68b57c72070247bad9b7f7 -Author: Cosimo Cecchi -Date: 2011-02-25 - - window-slot: use the actual view as relative-widget - - Instead of special-casing the scrolled window in the overlay code, we - directly set the actual view as relative-widget from the slot. - -M src/nemo-window-slot.c - -commit 23aa30fec0da95b58a9336da58115a3a04a21eb4 -Author: Cosimo Cecchi -Date: 2011-02-25 - - overlay: sync with gedit upstream - - As one of my patches got rejected. - -M src/gedit-overlay.c - -commit a2093ba1340334fa2733aa3ba2c00e7d1cfb683e -Author: Cosimo Cecchi -Date: 2011-02-25 - - view: remove nemo_view_get_widget() - - Having a function just to call a cast seems a bit weird... - -M src/nemo-view.c -M src/nemo-view.h -M src/nemo-window-manage-views.c -M src/nemo-window-slot.c - -commit 2632e266fbc794de5e912ac1f37dfaa8f4ed0904 -Author: Rodrigo Moya -Date: 2011-02-25 - - Plug memory leak - -M libnemo-private/nemo-icon-info.c - -commit f45d398de73c1eee924e55aadba96254d8091932 -Author: Rodrigo Moya -Date: 2011-02-24 - - Guard against filename being NULL on nemo_icon_info_lookup - -M libnemo-private/nemo-icon-info.c - -commit 6c9cfec6cca8fc51049eac6c7677516b5d241677 -Author: Cosimo Cecchi -Date: 2011-02-24 - - places-sidebar: use the widget type directly instead of defining - a class - -M data/nemo.css -M src/nemo-places-sidebar.c - -commit 5df17020848a51d1211451274ae6816562d53503 -Author: Cosimo Cecchi -Date: 2011-02-24 - - all: remove shadows from scrolled windows and add a bottom margin - - To better match the mockups - -M src/nemo-places-sidebar.c -M src/nemo-view.c -M src/nemo-window.c - -commit c024477bd59761cfa683117dafe47cd08fda3f52 -Author: Cosimo Cecchi -Date: 2011-02-24 - - window-slot: adapt to overlay API changes - -M src/nemo-window-slot.c - -commit 2aa5c4844b3f4fe6b26c72d74ccfc9352a11f3f4 -Author: Cosimo Cecchi -Date: 2011-02-24 - - overlay: sync with upstream, and add a case for scrolled windows - -M src/gedit-overlay-child.c -M src/gedit-overlay.c -M src/gedit-overlay.h - -commit b220d722a0748763ebe1370a49831c24d734f7f8 -Author: Cosimo Cecchi -Date: 2011-02-24 - - all: move the floating bar to NemoWindowSlot - -M src/nemo-floating-bar.h -M src/nemo-icon-view.c -M src/nemo-list-view.c -M src/nemo-view.c -M src/nemo-view.h -M src/nemo-window-manage-views.c -M src/nemo-window-slot.c -M src/nemo-window-slot.h - -commit d0706a08eefb73aa515cb445e57c0360637cce12 -Author: Cosimo Cecchi -Date: 2011-02-24 - - places-sidebar: don't activate 'Rename' shortcut for non-bookmarks - -M src/nemo-places-sidebar.c - -commit d2c34101172415c63fe3c89e62ea1bf8bca15d9d -Author: Cosimo Cecchi -Date: 2011-02-24 - - editable-label: only clear the selection if we change to insensitive - - This is borrowed from GtkEntry, and should properly fix - https://bugzilla.gnome.org/show_bug.cgi?id=642766 - -M eel/eel-editable-label.c - -commit 8d9cb34aec31955874b59d7d90ca4a57c6ddbcf4 -Author: Kjartan Maraas -Date: 2011-02-24 - - Updated Norwegian bokmål translation. - -M po/nb.po - -commit d6f2b28ea999a2d36d023c80dfd9fb4d7ffd83d6 -Author: Aron Xu -Date: 2011-02-24 - - Update Simplified Chinese translation. - -M po/zh_CN.po - -commit 18b496bc28a59987d161b5272244a808f5c06e2c -Author: Cosimo Cecchi -Date: 2011-02-23 - - places-sidebar: discard special dirs if they are assigned to the home - - https://bugzilla.gnome.org/show_bug.cgi?id=643121 - -M src/nemo-places-sidebar.c - -commit 24e447ed71d986f8806dfcc75a7d2c32cb47dbd0 -Author: Cosimo Cecchi -Date: 2011-02-23 - - tree-sidebar: cope with being shown in separate windows - - Use the same strategy as in NemoPlacesSidebar to decide where new - window should be opened. - -M src/nemo-tree-sidebar.c - -commit 187604bc871c9b09be29794713c5db211d075d48 -Author: Cosimo Cecchi -Date: 2011-02-23 - - window: make sure to disconnect the sidebar changed id signal - - When the window is finalized. - -M src/nemo-window.c - -commit 5ae01f04d69f9e1d24cda75e9046aea4b4e96cd1 -Author: Cosimo Cecchi -Date: 2011-02-23 - - places-sidebar: respect middle-click for separate windows mode - - Make it consistent with the rest, i.e. close behind. - This also fixes a crasher. - -M src/nemo-places-sidebar.c - -commit 0e6d9d7da5e2deac33d14261fbe9a22bbc7de192 -Author: Cosimo Cecchi -Date: 2011-02-23 - - window-pane: don't open another window when toggling off the search - - When 'Open new windows in separate folders' is toggled. - This is not yet complete, but fixes at least one case. - -M src/nemo-window-pane.c - -commit 29e8f4564400640cc19e0fd7753ea8b2bac9d555 -Author: Cosimo Cecchi -Date: 2011-02-23 - - properties-window: add a border around the notebook - - This makes it visually consistent with other nemo notebooks, and - with e.g. the GNOME3 control-center. - -M src/nemo-properties-window.c - -commit 4b6ba5bbccb934b9c595003ea1218913dd33d0c9 -Author: Cosimo Cecchi -Date: 2011-02-23 - - view: disconnect the statusbar visibility signal handler on finalize - -M src/nemo-view.c - -commit b6c86952f816dc698fed3ebb91231cc9e1ea5745 -Author: Matej Urbančič -Date: 2011-02-23 - - Updated Slovenian translation - -M po/sl.po - -commit 75b7885bcd6e77bf16f7fa9d6bee44ac0c53ce94 -Author: Matej Urbančič -Date: 2011-02-23 - - Updated Slovenian translation - -M po/sl.po - -commit 20be3147adefe2a8e2f7d03ccebe791f09fd5060 -Author: Matej Urbančič -Date: 2011-02-23 - - Updated Slovenian translation - -M po/sl.po - -commit 3f9cc6132af4fb06b7b1467e9544c8853843183c -Author: Alexander Shopov -Date: 2011-02-23 - - Updated Bulgarian translation - -M po/bg.po - -commit 415aef2af3e8a7491ee0605f5082a696640680f8 -Author: Cosimo Cecchi -Date: 2011-02-22 - - dbus-manager: install a DBus service file - -M data/Makefile.am -A data/org.gnome.Nemo.service.in - -commit b76e3c666d1da08cc70bd09a293c2ed319861bcd -Author: Cosimo Cecchi -Date: 2011-02-22 - - dbus-manager: hold the GApplication for 5 seconds upon startup - - This is needed so that nemo can be started as a DBus service with - --no-default-window and be able to handle incoming method calls - without - quitting before receiving them. - -M libnemo-private/nemo-dbus-manager.c -M libnemo-private/nemo-dbus-manager.h -M src/nemo-application.c - -commit 25e74f522cd49af07b2be6b92cc3a7421a57f5fc -Author: Cosimo Cecchi -Date: 2011-02-22 - - Fix distcheck - -M po/POTFILES.in - -commit 32f4f370a37eced91270202ed7ff02cd4db46d8d -Author: Cosimo Cecchi -Date: 2011-02-22 - - Release 2.91.90.1 - -M NEWS -M configure.in - -commit a0569367b029140ca15cdd5d0d78a3577c3d6d83 -Author: Cosimo Cecchi -Date: 2011-02-22 - - module: make modules for extension that pull in ORBit resident - - ORBit installs atexit() handlers, which would get unloaded together - with the - module now that the main process doesn't depend on GConf anymore, - causing - nemo to sefgault at exit. - If we detect that an extension would pull in ORBit, we make the module - resident to prevent that. - -M libnemo-private/nemo-module.c - -commit 8ff66dc5aeb7c573ef3deb6100fa151e9f9349e9 -Author: Ivar Smolin -Date: 2011-02-22 - - [l10n] Updated Estonian translation - -M po/et.po - -commit c40521ffbc4e990e4633be41e730b28eec26f1f5 -Author: Cosimo Cecchi -Date: 2011-02-21 - - icon-info: remove unused code - -M libnemo-private/nemo-icon-info.c -M libnemo-private/nemo-icon-info.h - -commit 150b95ca0c668568e0e5d04701048d6f1fc1636b -Author: Cosimo Cecchi -Date: 2011-02-21 - - zoom-control: remove unused NemoZoomControl - -M src/Makefile.am -M src/nemo-window.c -D src/nemo-zoom-control.c -D src/nemo-zoom-control.h - -commit ee701773633e2b5f2a70988ca16ace47d002e382 -Author: Luca Ferretti -Date: 2011-02-21 - - Updated Italian translation - -M po/it.po - -commit 50647b100ddb52f61c50f973d89f883d346442bb -Author: Cosimo Cecchi -Date: 2011-02-21 - - Release 2.91.90 - -M NEWS -M configure.in - -commit aea7f1f49601c34398f8b62b3650f7c3db8d1171 -Author: Cosimo Cecchi -Date: 2011-02-21 - - all: fix some includes - -M src/nemo-toolbar.c -M src/nemo-window-pane.c - -commit b89a352e0d37193d00de7085ad4ef18f6f2d36a2 -Author: Cosimo Cecchi -Date: 2011-02-21 - - configure: depend on stable GTK+/GLib versions - -M configure.in - -commit ead6bf5b5d80a0d4937d7b8f84dd2cdc53db73e4 -Author: Luca Ferretti -Date: 2011-02-21 - - Updated Italian translation - -M po/it.po - -commit 1cfe6c78c610c616873314e2fa76cb085116cf96 -Author: Cosimo Cecchi -Date: 2011-02-21 - - tracker-engine: update to 0.10, using libtracker-sparql - - https://bugzilla.gnome.org/show_bug.cgi?id=642770 - -M libnemo-private/nemo-search-engine-tracker.c - -commit a8a5b8d8eae041e7ae10a553d0990fc7ee5dc3cd -Author: Stefano Teso -Date: 2011-02-21 - - icon-container: fix setting the selection when renaming - - Closes: bgo #642766 - -M libnemo-private/nemo-icon-container.c - -commit 6dd4e0aed74bb7da6fc471ff6f032884f93643b5 -Author: Cosimo Cecchi -Date: 2011-02-21 - - application: remove the ConsoleKit listener - - I just moved it to the gnome-settings-daemon plugin where it should - belong. - -M src/nemo-application.c - -commit a3f2a8814453860b1fb8d4c1aa9637011b46f7fb -Author: Stefano Teso -Date: 2011-02-21 - - nemo-view: Ignore scripts directory if it's a broken symlink - - Closes: bgo#633683 - -M src/nemo-view.c - -commit 585e46b63b691ccc4a618ddc01b686954da287a3 -Author: Yaron Shahrabani -Date: 2011-02-21 - - Updated Hebrew translation. - -M po/he.po - -commit 527aa458d57036cb74c3f855cd1eb724da1e3ad6 -Author: Cosimo Cecchi -Date: 2011-02-21 - - window: remove another couple of unused defines - -M src/nemo-window-private.h - -commit 8ec1999f09ff40b6a1a8b511efbf36b692144503 -Author: Cosimo Cecchi -Date: 2011-02-21 - - window: remove useless defines - -M src/nemo-window-private.h - -commit 9531e7cb106f161d8a43da7ca161fac8becd3de6 -Author: Cosimo Cecchi -Date: 2011-02-21 - - window: plug a leak - - Don't leak the GtkSizeGroup after we add widgets to it. Also, move - it to - the pane, where it should belong now. - -M src/nemo-window-pane.c -M src/nemo-window-private.h -M src/nemo-window.c - -commit 243a3f883f7b2969c11ddac8c6d46521ffa5ef4d -Author: A S Alam -Date: 2011-02-21 - - update Punjabi Translation by A S Alam - -M po/pa.po - -commit 945ff33b72928e13b2206ccb869f63420cd9de94 -Author: Cosimo Cecchi -Date: 2011-02-20 - - window-menus: fix indentation - -M src/nemo-window-menus.c - -commit 322a3d0094082a32d357d0358174025c296a46dd -Author: Cosimo Cecchi -Date: 2011-02-20 - - window: fix behavior of the Search action - - Make the toolbar button active state consistent with the menu, and - simplify the code handling it a bunch. - -M src/nemo-shell-ui.xml -M src/nemo-window-menus.c -M src/nemo-window-pane.c -M src/nemo-window-pane.h -M src/nemo-window.c -M src/nemo-window.h - -commit eb9a291ad09d77cd01131209f68beaa04ef45626 -Author: Cosimo Cecchi -Date: 2011-02-20 - - navigation-state: bind "active" for toggle actions - - So that we can use this objet for "Search" - -M src/nemo-navigation-state.c - -commit 808332169bb8000c57d55e267d4abf4dcad3a481 -Author: Jorge González -Date: 2011-02-20 - - Added Spanish translation - -M po/es.po - -commit 7a3360c812ac30858ca7281c3d34fd132c454f63 -Author: Matej Urbančič -Date: 2011-02-20 - - Updated Slovenian translation - -M po/sl.po - -commit 763109bb17cd326195ff44951977243a6e6712d1 -Author: Cosimo Cecchi -Date: 2011-02-19 - - file-operations: make sure not to show the dialog before calling - _run() - - This had no noticeable effect before, but with gnome-shell's modal - dialog animation, it causes the dialog flickering before being - picked by - the WM. - -M libnemo-private/nemo-file-operations.c - -commit 01c61be847dbb30f7392794ad0fec6228e82904d -Author: Cosimo Cecchi -Date: 2011-02-19 - - all: plug some memory leaks - -M src/gedit-overlay.c -M src/nemo-floating-bar.c - -commit bdb71b79540e5a7265ff08bf4353dd580c32411a -Author: Cosimo Cecchi -Date: 2011-02-19 - - overlay-child: make sure to intialize required fields - -M src/gedit-overlay-child.c - -commit 89b84688b36a769478bd4593cceace6e2636c86c -Author: Kjartan Maraas -Date: 2011-02-19 - - Fix this after the window and spatial cleanups - -M po/POTFILES.in - -commit e68968479783e0ff3e4f7c8b7391471d06597306 -Author: Kjartan Maraas -Date: 2011-02-19 - - Updated Norwegian bokmål translation. - -M po/nb.po - -commit ddd59a578e403e815f76006477bf5eaea5b20c1e -Author: Cosimo Cecchi -Date: 2011-02-18 - - window: accumulate saving the sidebar width in GSettings - - We don't want to hammer DConf with writes. - -M src/nemo-window-private.h -M src/nemo-window.c - -commit 56b249cc804bcea81d0308afe45ac2e5084dc6d7 -Author: Cosimo Cecchi -Date: 2011-02-18 - - floating-bar: ellipsize the description label - - Until we have a better way to truncate it at the right point when - there's not enough space. - -M src/nemo-floating-bar.c - -commit 695d067571292c6475761e1ae4c453615f611a00 -Author: Cosimo Cecchi -Date: 2011-02-18 - - overlay: fixup allocation in the overlay - - Give the children the right size they request, and make sure they - don't - get more space allocated than the width of their parent. - -M src/gedit-overlay-child.c -M src/gedit-overlay.c - -commit 1fd64c8188a513ec0321e2ff70225f9a7c52b3ad -Author: Cosimo Cecchi -Date: 2011-02-18 - - pathbar: cleanups - -M src/nemo-pathbar.c - -commit 7545af6c31ff45998167d008f3320a69d5531f7c -Author: Cosimo Cecchi -Date: 2011-02-18 - - pathbar: clean up forward declarations and unused properties - - No real code change here. - -M src/nemo-pathbar.c - -commit 369eaac5796263e49dd0502aedc6d9137d160132 -Author: Cosimo Cecchi -Date: 2011-02-18 - - pathbar: remove unused code - -M src/nemo-pathbar.c -M src/nemo-pathbar.h - -commit 36a47b4a7ea52c860818e0e8a4f795a365ba2e2c -Author: Daniel Korostil -Date: 2011-02-18 - - Uploaded Ukranian - -M po/uk.po - -commit 2fde89de52f465051dbc85e3d00f57941275e4a7 -Author: Daniel Korostil -Date: 2011-02-18 - - Uploaded Ukranian - -M po/uk.po - -commit 6a11ecdde028a4972559491a3c0ec7799cc8c882 -Author: Cosimo Cecchi -Date: 2011-02-18 - - icon-canvas-item: make the icon frame transparent when not prelit - - This fixes icons on the desktop appearing weird. - -M libnemo-private/nemo-icon-canvas-item.c - -commit 1d3d4a1e954fcc15f2a9c7d933e7bc65c5330cc3 -Author: Cosimo Cecchi -Date: 2011-02-18 - - all: remove 'Tighter Layout' option - - It's just broken, and we already have icon view if we want something - tighter. - -M libnemo-private/nemo-global-preferences.h -M libnemo-private/nemo-icon-canvas-item.c -M libnemo-private/nemo-icon-container.c -M libnemo-private/nemo-icon-container.h -M libnemo-private/nemo-metadata.c -M libnemo-private/nemo-metadata.h -M libnemo-private/nemo.convert -M libnemo-private/org.gnome.nemo.gschema.xml.in -M src/nemo-actions.h -M src/nemo-convert-metadata.c -M src/nemo-file-management-properties.c -M src/nemo-file-management-properties.ui -M src/nemo-icon-view-ui.xml -M src/nemo-icon-view.c -M src/nemo-icon-view.h - -commit 822b99ee1de297fbe78548a1a7fa96d1be737f72 -Author: Cosimo Cecchi -Date: 2011-02-18 - - list-view: make sure not to activate items while chaining up - - The event activation is done entirely in our signal handler, and - row-activated should only be used for the typeahead search box. - -M src/nemo-list-view.c - -commit 1988c7bc5feff1a2630b2603d558d1c376b12c9f -Author: Cosimo Cecchi -Date: 2011-02-18 - - views: fix alternate locaiton opening somewhat - - It was broken after the last changes. - Also, add some comments to clarify how things work. - -M src/nemo-icon-view.c -M src/nemo-list-view.c -M src/nemo-window-manage-views.c - -commit 491948284e453440798f14e29ba65737f44c5d46 -Author: Cosimo Cecchi -Date: 2011-02-18 - - debug: add a debug flag for the icon view - -M libnemo-private/nemo-debug.c -M libnemo-private/nemo-debug.h - -commit 765d81d0b68e3b2d430b9ca0716a3f67607440df -Author: Alexander Larsson -Date: 2011-02-18 - - Change compact-view all-columns-have-same-width default to false - - This particular option is what makes the lables-on-the side part - of compact view useful (and compact) over the normal icon view. - Having it off by default is just weird. - -M libnemo-private/org.gnome.nemo.gschema.xml.in - -commit 2d904c778ce5b30649c4789f35fcd3ea44e7fa59 -Author: Alexander Larsson -Date: 2011-02-18 - - Remove debug spew from previous commit - -M src/nemo-window-manage-views.c - -commit e5f4a1f0fe63b324cc62e94a46599b2e187b1121 -Author: Cosimo Cecchi -Date: 2011-02-17 - - window-manage-views: initialize a variable - -M src/nemo-window-manage-views.c - -commit bdc7f2172f9e8b1c58d3f8a8d90ae157702dde3e -Author: Cosimo Cecchi -Date: 2011-02-17 - - window-manage-views: fix an oversight in previous commit - -M src/nemo-window-manage-views.c - -commit a58eb87e294c02ec61668ef6d02d701626ef8b98 -Author: Cosimo Cecchi -Date: 2011-02-17 - - window-manage-views: don't create two windows when opening in new win - - We were creating two windows at startup if the 'Open in different - windows' option was toggled on. - -M src/nemo-window-manage-views.c - -commit 936a1749bb79217decc47ec2e12c7f3c40823f97 -Author: Cosimo Cecchi -Date: 2011-02-17 - - window: fix some missing signal handlers/overrides - -M src/nemo-window.c - -commit cff594aeba0cb62f3316eb8a14114091ca4c6d11 -Author: Cosimo Cecchi -Date: 2011-02-17 - - window: cleanup header - -M src/nemo-window-private.h -M src/nemo-window.c -M src/nemo-window.h - -commit f57a958039400b38897bf7ad5cc2f2e686921624 -Author: Cosimo Cecchi -Date: 2011-02-17 - - location-dialog: remove NemoLocationDialog - - The only user was NemoSpatialWindow - -M src/Makefile.am -D src/nemo-location-dialog.c -D src/nemo-location-dialog.h - -commit b1589b8c22baa2d9508aabe96fc8bafd99bcdb71 -Author: Cosimo Cecchi -Date: 2011-02-17 - - all: fix the desktop window without spatial mode - - Basically disable all the window chrome for the desktop window. - -M src/nemo-desktop-window.c -M src/nemo-window-pane.c -M src/nemo-window-private.h -M src/nemo-window.c -M src/nemo-window.h - -commit 4bf81e0d4883b9b6a6dfab120b096bea26a46a0a -Author: Cosimo Cecchi -Date: 2011-02-17 - - window: merge the navigation window XML into the shell XML - - There's no such distinction anymore. - -M src/Makefile.am -D src/nemo-navigation-window-ui.xml -M src/nemo-shell-ui.xml -M src/nemo-window-menus.c - -commit df516e1f09ded17bea6a4fc4fd8b974f61e799b4 -Author: Cosimo Cecchi -Date: 2011-02-17 - - all: merge NemoNavigationWindow into NemoWindow - -M src/Makefile.am -M src/nemo-application.c -M src/nemo-application.h -M src/nemo-bookmarks-window.c -M src/nemo-connect-server-dialog-nonmain.c -M src/nemo-desktop-window.c -M src/nemo-desktop-window.h -M src/nemo-icon-view.c -M src/nemo-location-bar.c -M src/nemo-location-bar.h -M src/nemo-mime-actions.c -M src/nemo-navigation-action.c -D src/nemo-navigation-window-menus.c -D src/nemo-navigation-window.c -D src/nemo-navigation-window.h -M src/nemo-notebook.c -M src/nemo-places-sidebar.c -M src/nemo-view.c -M src/nemo-window-manage-views.c -M src/nemo-window-manage-views.h -M src/nemo-window-menus.c -M src/nemo-window-pane.c -M src/nemo-window-private.h -M src/nemo-window.c -M src/nemo-window.h - -commit 4cf05a8c91bda94aac6d403947cbb402a68019d2 -Author: Cosimo Cecchi -Date: 2011-02-17 - - window: fix class casting madness - -M src/nemo-window.c - -commit 9af483dbbea8fc6fc41f4bc726522d7583ccf677 -Author: Cosimo Cecchi -Date: 2011-02-17 - - all: merge NemoNavigationWindowSlot into NemoWindowSlot - -M src/Makefile.am -M src/nemo-application.c -M src/nemo-navigation-action.c -D src/nemo-navigation-window-slot.c -D src/nemo-navigation-window-slot.h -M src/nemo-navigation-window.c -M src/nemo-window-manage-views.c -M src/nemo-window-pane.c -M src/nemo-window-slot.c -M src/nemo-window-slot.h -M src/nemo-window.c - -commit 238bc1452138e1aae44dcc95121b749ab4d805d0 -Author: Cosimo Cecchi -Date: 2011-02-17 - - window-pane: remove useless class vfuncs - -M src/nemo-window-pane.h - -commit 67384aa0d21e90816d5ee084b56bb43b1e94af60 -Author: Cosimo Cecchi -Date: 2011-02-17 - - all: merge NemoNavigationWindowPane into NemoWindowPane - -M src/Makefile.am -M src/nemo-location-bar.c -M src/nemo-location-bar.h -M src/nemo-navigation-window-menus.c -D src/nemo-navigation-window-pane.c -D src/nemo-navigation-window-pane.h -M src/nemo-navigation-window-slot.c -M src/nemo-navigation-window.c -M src/nemo-notebook.c -M src/nemo-toolbar.h -M src/nemo-window-manage-views.c -M src/nemo-window-pane.c -M src/nemo-window-pane.h -M src/nemo-window.c - -commit 0e73140437c97c23b480f137ce8c88113900a336 -Author: Cosimo Cecchi -Date: 2011-02-17 - - all: assume all windows are navigation windows - -M src/nemo-application.c -M src/nemo-bookmarks-window.c -M src/nemo-window-manage-views.c -M src/nemo-window-pane.c -M src/nemo-window.c - -commit b6b63e35792fd50cbe71bf87e44d5233cd879b3d -Author: Cosimo Cecchi -Date: 2011-02-17 - - all: remove NemoSpatialWindow - -M src/Makefile.am -M src/nemo-bookmarks-window.c -M src/nemo-desktop-window.h -M src/nemo-location-dialog.c -D src/nemo-spatial-window-ui.xml -D src/nemo-spatial-window.c -D src/nemo-spatial-window.h -M src/nemo-window-manage-views.c -M src/nemo-window-pane.c -M src/nemo-window-private.h -M src/nemo-window.c - -commit 9d70e3e2a0b8af6eef1a10749a985896ba449e37 -Author: Cosimo Cecchi -Date: 2011-02-17 - - desktop-window: make NemoDesktopWindow a navigation window - - We still have to fix sidebar/toolbar visibility though. - -M src/nemo-desktop-window.c -M src/nemo-desktop-window.h - -commit 073e1f9454d52523837a3a2073d710206c90a808 -Author: Cosimo Cecchi -Date: 2011-02-17 - - all: remove spatial windows methods from NemoApplication - -M src/nemo-application.c -M src/nemo-application.h -M src/nemo-bookmarks-window.c -M src/nemo-connect-server-dialog-nonmain.c -M src/nemo-navigation-window-menus.c -M src/nemo-navigation-window-ui.xml -M src/nemo-navigation-window.c -M src/nemo-spatial-window.c - -commit edc5310062e8617727423e7508951de1abe0b1b9 -Author: Cosimo Cecchi -Date: 2011-02-17 - - all: remove NemoWindowOpenMode enumeration - - The mode is now always decided by the GSettings preference. - -M src/nemo-icon-view.c -M src/nemo-list-view.c -M src/nemo-mime-actions.c -M src/nemo-mime-actions.h -M src/nemo-navigation-window-pane.c -M src/nemo-places-sidebar.c -M src/nemo-spatial-window.c -M src/nemo-tree-sidebar.c -M src/nemo-view.c -M src/nemo-view.h -M src/nemo-window-manage-views.c -M src/nemo-window-slot.c -M src/nemo-window-slot.h -M src/nemo-window-types.h - -commit e94fe49ef856a4658fd3fcbb228b78bb0d7b0657 -Author: Alexander Larsson -Date: 2011-02-17 - - Don't show a desktop target in copy/move to if desktop is not shown - -M src/nemo-view.c - -commit e74376ee27a232e559a3ef98918f0742d6fa376a -Author: Alexander Larsson -Date: 2011-02-17 - - Don't show desktop in sidebar if desktop is not visible or if home - is desktop - - By default there is no more desktop anymore, so its kinda weird to - have it - highly visible in the ui, as there should be nothing there. - -M src/nemo-places-sidebar.c - -commit 4298e522e25ea5075090822a5497164051373a4b -Author: Alexander Larsson -Date: 2011-02-17 - - Disable the status bar by default in new windows - -M libnemo-private/org.gnome.nemo.gschema.xml.in - -commit 055b16f45c4d3c7b5b543df5b8457702f2d3164e -Author: Cosimo Cecchi -Date: 2011-02-17 - - window-bookmarks: make sure we get an icon for bookmarks in the menu - -M src/nemo-window-bookmarks.c - -commit e978429c15a5a6d99c0dfeecb2ce889d1a6d0529 -Author: Cosimo Cecchi -Date: 2011-02-17 - - search-bar: make the search bar a regular GtkBox - -M src/nemo-search-bar.c -M src/nemo-search-bar.h - -commit c4060407ef76d2566d02cd6dacf06381585ace17 -Author: Cosimo Cecchi -Date: 2011-02-16 - - all: set some junctions to better fit the mockup - -M src/nemo-places-sidebar.c -M src/nemo-view.c - -commit d9640b96ef746cbfe5de6ddd21ae06052aa33fa8 -Author: Cosimo Cecchi -Date: 2011-02-16 - - navigation-window: fix text setting/unsetting on Search button - -M src/nemo-navigation-window.c - -commit 46b297a523d7f679891299d2a6a4ccac03927ed1 -Author: Cosimo Cecchi -Date: 2011-02-16 - - eel: remove unused method - -M eel/eel-gtk-extensions.c -M eel/eel-gtk-extensions.h - -commit 6acaf5d7ede7054a258f555331358054e1835813 -Author: Cosimo Cecchi -Date: 2011-02-16 - - window-menus: remove sneaky code for middle-click toolbar actions - - We support it directly where we already care now. - -M src/nemo-window-menus.c - -commit 6fa4065d55ffa792105576fd2b99ead5913b36f0 -Author: Cosimo Cecchi -Date: 2011-02-16 - - navigation-window: don't create custom actions for the menu items - - We can use normal actions for those, and use the custom actions in the - toolbar, as we already do. - -M src/nemo-navigation-window-menus.c - -commit b644be6ed4f7da02a700a2f74401c4f5273dca46 -Author: Cosimo Cecchi -Date: 2011-02-16 - - navigation-window: remvoe useless Search action from the nav group - -M src/nemo-navigation-window-menus.c - -commit 0e168f61a0012127ee0c40ef642b0818471212b7 -Author: Cosimo Cecchi -Date: 2011-02-16 - - all: remove NemoViewAsAction - - The rationale being the same as for NemoZoomAction - -M src/Makefile.am -M src/nemo-navigation-window-menus.c -D src/nemo-view-as-action.c -D src/nemo-view-as-action.h - -commit 38dea32b3da5610990348be37c3f9454cec54773 -Author: Cosimo Cecchi -Date: 2011-02-16 - - all: remove NemoZoomAction - - Now that we don't use it on the toolbar anymore, it's useless to keep - around. - -M src/Makefile.am -M src/nemo-navigation-window-menus.c -M src/nemo-window-manage-views.c -M src/nemo-window-menus.c -M src/nemo-window-private.h -M src/nemo-window.c -D src/nemo-zoom-action.c -D src/nemo-zoom-action.h - -commit d83173021f5adc99b5eec468e0c4d5ddfeed4218 -Author: Cosimo Cecchi -Date: 2011-02-16 - - window: just use nemo_view_set_is_active() - - Don't roundtrip through NemoWindowSlot, as that's what it would do - anyway. - -M src/nemo-window-pane.c -M src/nemo-window-slot.c -M src/nemo-window-slot.h -M src/nemo-window.c - -commit a08625badd19790faca002f1fd6c7049f2d680ba -Author: Cosimo Cecchi -Date: 2011-02-16 - - window: active_pane might be NULL if we're destroying the window - -M src/nemo-window.c - -commit a74eac5f4446928cfa00ead53f972f7de678b914 -Author: Cosimo Cecchi -Date: 2011-02-16 - - navigation-window-pane: don't bother always setting the active pane - - The toolbar is insensitive when not active anyway, so this is useless. - -M src/nemo-navigation-window-pane.c - -commit 40bfe945c48bc368c11be4341a6c3f27b5543960 -Author: Cosimo Cecchi -Date: 2011-02-16 - - navigation-window-pane: cleanup the class a bit - -M src/nemo-navigation-window-pane.c -M src/nemo-navigation-window.c - -commit de4b00057e06fdc675d640c65c9a459f9fdb2725 -Author: Cosimo Cecchi -Date: 2011-02-16 - - navigation-window: integrate the back/forward actions with the state - - So that the current back.forward state propagates to menus. - -M src/nemo-navigation-window-menus.c -M src/nemo-navigation-window-pane.c -M src/nemo-navigation-window-pane.h -M src/nemo-navigation-window.c -M src/nemo-window-private.h - -commit d6df8a9d7bc4b902de76c22504f2fa63557d7985 -Author: Cosimo Cecchi -Date: 2011-02-16 - - navigation-state: add NemoNavigationState - -M src/Makefile.am -A src/nemo-navigation-state.c -A src/nemo-navigation-state.h - -commit 0c60fd28a1852a101caef1e4cd783b26012cd7fc -Author: Cosimo Cecchi -Date: 2011-02-16 - - toolbar: make sure to hold a ref to the action group - -M src/nemo-toolbar.c - -commit 698f109a70c063d47b4ff4adeec78724f674fe6d -Author: Cosimo Cecchi -Date: 2011-02-16 - - navigation-window: little cleanup - -M src/nemo-navigation-window-menus.c -M src/nemo-navigation-window-pane.h - -commit e18dddb0f6ff0a91e25929b667687b87c8d20ee5 -Author: Cosimo Cecchi -Date: 2011-02-16 - - window-pane: make sure we set another pane as active when closing - -M src/nemo-window-pane.c - -commit 3634db080bcf57534b47860908370da5d5cdfad9 -Author: Cosimo Cecchi -Date: 2011-02-16 - - window-slot: move window_slot_close() to nemo-window-slot.c - - Why on earth should it be somewhere else? - -M src/nemo-application.c -M src/nemo-navigation-window-pane.c -M src/nemo-window-manage-views.c -M src/nemo-window-menus.c -M src/nemo-window-slot.h -M src/nemo-window.c - -commit 610b14e6c85d16d519a0c9665ada09b289d21de7 -Author: Cosimo Cecchi -Date: 2011-02-16 - - window-pane: move code around - - Makes things more readable. - -M src/nemo-window-pane.c -M src/nemo-window-pane.h - -commit a0e572e833c0e27c147d99094dc5655297a38be5 -Author: Cosimo Cecchi -Date: 2011-02-16 - - location-bar: remove manual API for setting insensitive widgets - - It's not needed anymore - -M src/nemo-location-bar.c -M src/nemo-location-bar.h - -commit dd6b7f734252fb9a3813be9856e6c8a44c9bc01a -Author: Cosimo Cecchi -Date: 2011-02-16 - - pathbar: remove hackish API - -M src/nemo-pathbar.c -M src/nemo-pathbar.h - -commit 79c27eb5fbe998a0ed2f79541b4487db5f575958 -Author: Cosimo Cecchi -Date: 2011-02-16 - - navigation-window-pane: make the whole toolbar insensitive when - inactive - -M src/nemo-navigation-window-pane.c - -commit d2c02297befb39526408d938b46cd8269d9d8549 -Author: Cosimo Cecchi -Date: 2011-02-15 - - window: remove some other useless code - -M src/nemo-spatial-window.c -M src/nemo-window-private.h -M src/nemo-window.c - -commit 63d5316f6bf85e41bc5be76d551a19c55ab07957 -Author: Cosimo Cecchi -Date: 2011-02-15 - - window: remove unused code - -M src/nemo-window.c -M src/nemo-window.h - -commit 476d462bce0bce5fdc367daea3e14be8603f5c3d -Author: Cosimo Cecchi -Date: 2011-02-15 - - all: remove the concept of global history list - - It's not that useful now that nemo is not a long running - application - anymore. - -M src/nemo-navigation-window-menus.c -M src/nemo-navigation-window.c -M src/nemo-window-manage-views.c -M src/nemo-window-private.h -M src/nemo-window-slot.c -M src/nemo-window-slot.h -M src/nemo-window.c - -commit 8974c917ecb202a0dad4871c79dc8d7306e28feb -Author: Cosimo Cecchi -Date: 2011-02-15 - - window-menus: move bookmark-related menu code where it belongs - -M src/nemo-window-bookmarks.c -M src/nemo-window-menus.c - -commit 7309d5576f28de33e9a5e5653037264110893490 -Author: Cosimo Cecchi -Date: 2011-02-15 - - ui-utilities: centralize a helper function - -M libnemo-private/nemo-ui-utilities.c -M libnemo-private/nemo-ui-utilities.h -M src/nemo-navigation-window-menus.c -M src/nemo-window-menus.c - -commit 1755d56bdfefabf0b764aa3531e93f8fb18d73b0 -Author: Cosimo Cecchi -Date: 2011-02-15 - - window-pane: remove active_slots madness - - We can't have more than one active slot at the same time anyway. - -M src/nemo-window-pane.c -M src/nemo-window-pane.h -M src/nemo-window.c - -commit 3a27963142a0ef942631f88f2576f8bc29076898 -Author: Cosimo Cecchi -Date: 2011-02-15 - - navigation-window-pane: cleanup header - -M src/nemo-navigation-window-pane.c -M src/nemo-navigation-window-pane.h - -commit c4d48d522dccb915041c9521789a47d2bea0e1e4 -Author: Cosimo Cecchi -Date: 2011-02-15 - - window: cleanup window_pane_zoom madness - -M src/nemo-window-pane.c -M src/nemo-window-pane.h -M src/nemo-window.c - -commit 75f4f95bed048d955cabd7e521b6cc78182a0903 -Author: Cosimo Cecchi -Date: 2011-02-15 - - search-bar: simplify boilerplate code - -M src/nemo-search-bar.c - -commit 28afe6fde1d12083b915f0040c84157ebd461df7 -Author: Cosimo Cecchi -Date: 2011-02-15 - - navigation-window: set/unset text on 'Search' according to split mode - -M src/nemo-navigation-window.c - -commit 3e0fa2ef6166160131f4d0051e3ac0c065be52e0 -Author: Cosimo Cecchi -Date: 2011-02-15 - - view: use the right label if we're searching - -M src/nemo-view.c - -commit 600352c410a57214cc8fbb9789cf6b43dde55388 -Author: Cosimo Cecchi -Date: 2011-02-15 - - navigation-window: use g_settings_bind() a little more - -M src/nemo-navigation-window-menus.c -M src/nemo-navigation-window.c -M src/nemo-navigation-window.h - -commit d05c85a0808c48b987dbc438538530f8506d9dfd -Author: Cosimo Cecchi -Date: 2011-02-15 - - style: add some junction properties - -M src/nemo-toolbar.c -M src/nemo-view.c - -commit 193f850cd11d909a0af9e95ec0dea7ad91c62160 -Author: Cosimo Cecchi -Date: 2011-02-15 - - ui-utlities: remove unused function - -M libnemo-private/nemo-ui-utilities.c -M libnemo-private/nemo-ui-utilities.h - -commit 6ebdfd9b5477178c9ab28c19e270b9dc4a53d6df -Author: Cosimo Cecchi -Date: 2011-02-15 - - window: don't care looking for toolbar extension items - - As we removed them. - -M src/Makefile.am -M src/nemo-navigation-window-slot.c -M src/nemo-window-manage-views.c -D src/nemo-window-toolbars.c - -commit d3cee086e7be525046c8a16a08b15bfa996871fa -Author: Cosimo Cecchi -Date: 2011-02-15 - - libnemo-extension: remove the ability to add toolbar items - - We want to fully control our toolbar now. - -M configure.in -M libnemo-extension/nemo-menu-provider.c -M libnemo-extension/nemo-menu-provider.h - -commit 417bb5c31758a3b321fbac0d53402bed1034c6db -Author: Cosimo Cecchi -Date: 2011-02-15 - - navigation-window: use g_settings_bind() for statusbar visibility - -M src/nemo-navigation-window-menus.c -M src/nemo-navigation-window.c -M src/nemo-navigation-window.h - -commit 1373f01db2180f080e1d7b02e1655fecb33c21f2 -Author: Cosimo Cecchi -Date: 2011-02-15 - - toolbar: fix toolbar with split pane - - The way we used to instantiate the toolbar, from the navigation window - UIManager, did not work fine in the new UI design, as we have - a toolbar - for each pane now; so we must instantiate a new UIManager for - each pane, - and add to it the navigation action group to fetch actions from. - -M src/Makefile.am -M src/nemo-location-bar.c -M src/nemo-location-bar.h -M src/nemo-navigation-window-pane.c -M src/nemo-navigation-window-ui.xml -A src/nemo-toolbar-ui.xml -M src/nemo-toolbar.c -M src/nemo-toolbar.h - -commit 7131487c8bebbbad075b238ec03934a78cf233d9 -Author: Cosimo Cecchi -Date: 2011-02-15 - - places-sidebar: use a symbolic icon for eject - -M src/nemo-places-sidebar.c - -commit a572b7355b12a99083b7489bf991a8f929b1a80a -Author: Cosimo Cecchi -Date: 2011-02-15 - - view: accumulate floating bar status setting in a timeout - - We use half of the double-click-time as a good heuristic. - -M src/nemo-view.c - -commit 5a21e22cb0603a77d0a8bf89f6197c799df7ba4d -Author: Cosimo Cecchi -Date: 2011-02-14 - - css: theme things a bit more - -M data/nemo.css - -commit caf3233bfc9e7a6e4cd4ed41245ca5d02fdd46e0 -Author: Cosimo Cecchi -Date: 2011-02-14 - - window: hide resize grip - -M src/nemo-window.c - -commit acd688037d2a8ccf675526a46ee1d8180301cedd -Author: Cosimo Cecchi -Date: 2011-02-14 - - view: use the floating bar as a temporary statusbar if it's off - - We use a slightly different status message in this case, where - we don't - care about free space on the volume. - -M src/nemo-view.c - -commit dc80c71c1a742e0134401e765652672a71e46809 -Author: Cosimo Cecchi -Date: 2011-02-14 - - view: always create the floating bar in _init() - - And show/hide it and its components according to what we're currently - doing. - -M src/nemo-view.c - -commit b30c9ad791961a6cbf5622c1e3c34b8a088c0439 -Author: Cosimo Cecchi -Date: 2011-02-14 - - floating-bar: add _cleanup_actions() - -M src/nemo-floating-bar.c -M src/nemo-floating-bar.h - -commit b75521b56f24bffa320ad7bb5bc61be6fa12cb96 -Author: Cosimo Cecchi -Date: 2011-02-14 - - floating-bar: add a bit more whitespace around the label - -M src/nemo-floating-bar.c - -commit b86054a34b9933180d9e847048a26d712505b04a -Author: Cosimo Cecchi -Date: 2011-02-14 - - sq iintegrate with view - -M src/nemo-view.c - -commit da3905c073456129874867df1572c8586a9a1f00 -Author: Cosimo Cecchi -Date: 2011-02-14 - - sq look like - -M data/nemo.css -M src/nemo-floating-bar.c - -commit d44378ee0adf944bb13a987e4aa79abf1b15693e -Author: Cosimo Cecchi -Date: 2011-02-14 - - icon-view: cleanup of supports_* properties - -M src/nemo-desktop-icon-view.c -M src/nemo-icon-view.c -M src/nemo-icon-view.h - -commit 621106fd68a9e2d86f5e62876fd3e2844c2d85ac -Author: Cosimo Cecchi -Date: 2011-02-14 - - view: refactor supports_zooming into a property - -M src/nemo-desktop-icon-view.c -M src/nemo-view.c -M src/nemo-view.h - -commit 8544bdb09511cff7edc0382009e6ca0d1f607cd6 -Author: Cosimo Cecchi -Date: 2011-02-14 - - desktop-icon-view: adapt the desktop icon view to recent changes - -M src/nemo-desktop-icon-view.c -M src/nemo-icon-view.c -M src/nemo-icon-view.h - -commit 246d7177acf8fa2ddec512e96310f5e31889cfd5 -Author: Cosimo Cecchi -Date: 2011-02-14 - - view: add a 'show-floating-bar' property for classes to override - - So we can disable it on the Desktop. - Also, cleanup the _class_init() code a bit while we're here. - -M src/nemo-view.c - -commit fec9449efc444e1dc25eeebf474a59f3aa16b75d -Author: Cosimo Cecchi -Date: 2011-02-14 - - view: hook up the overlay in the view - -M src/nemo-icon-view.c -M src/nemo-list-view.c -M src/nemo-view.c -M src/nemo-view.h - -commit db0c274ffaa2d4d95329716cad8b5af319fa9936 -Author: Cosimo Cecchi -Date: 2011-02-14 - - floating-bar: make it more similar to the mockups - -M data/nemo.css -M src/nemo-floating-bar.c - -commit 8728a440f1fb9e661d5553b30e60f57f5460007d -Author: Cosimo Cecchi -Date: 2011-02-14 - - floating-bar: make the class more flexible - - - add dialog-like actions - - add show/hide spinner - -M src/nemo-floating-bar.c -M src/nemo-floating-bar.h - -commit bcec4c4ecf1b77d7e803f4e84689c6e3b1413fcf -Author: Cosimo Cecchi -Date: 2011-02-14 - - floating-bar: add NemoFloatingBar - -M src/Makefile.am -A src/nemo-floating-bar.c -A src/nemo-floating-bar.h - -commit 43f310d0c2ffa2c99c21b332650a9a86b9adc0ab -Author: Cosimo Cecchi -Date: 2011-02-14 - - squash overlay - -M src/gedit-overlay.c - -commit 5ca133a198326a5aac65c3ef3ddca9af2424bdf5 -Author: Cosimo Cecchi -Date: 2011-02-14 - - overlay: update GeditOverlay from upstream - -M src/gedit-overlay.c - -commit c16127a438ff9654cbd63dbbc3859dc9916d0160 -Author: Cosimo Cecchi -Date: 2011-02-11 - - overlay: borrow GeditOverlay implementation from gedit - -M src/Makefile.am -A src/gedit-overlay-child.c -A src/gedit-overlay-child.h -A src/gedit-overlay.c -A src/gedit-overlay.h - -commit f5e17ca2b9e27437963155c459f0584eccc45deb -Author: Cosimo Cecchi -Date: 2011-02-11 - - icon-view-container: remove useless dispose impl - -M src/nemo-icon-view-container.c - -commit f718677e60eafcb4214ef8d4a9831fd2e597e5d0 -Author: Cosimo Cecchi -Date: 2011-02-11 - - view: don't emit the clear signal - -M src/nemo-view.c - -commit 24f1f12a7092312af689c49b9f57d888ce9b6b8c -Author: Cosimo Cecchi -Date: 2011-02-11 - - selection-canvas-item: add getter for 'width-pixels' - -M libnemo-private/nemo-selection-canvas-item.c - -commit 79c9f9e854284c35fc8485efed4850787799a1cf -Author: Cosimo Cecchi -Date: 2011-02-11 - - css: style the floating bar according to the mockups - -M data/nemo.css - -commit c27b221329aedbe9b18c6bf02a49193475390a2d -Author: Cosimo Cecchi -Date: 2011-02-11 - - navigation-window: use a symbolic icon for the search button - -M src/nemo-navigation-window-menus.c - -commit b4f5d1a9eb4d1389a1c198bb16a28ca35bdf5f60 -Author: Cosimo Cecchi -Date: 2011-02-11 - - navigation-window: remove spinner code - -M src/nemo-navigation-window.c -M src/nemo-window-toolbars.c - -commit 42f53017794f288a7c8709b297f0f6de1c368e94 -Author: Cosimo Cecchi -Date: 2011-02-11 - - selection-canvas-item: make fade-out time configurable - -M libnemo-private/nemo-icon-container.c -M libnemo-private/nemo-selection-canvas-item.c -M libnemo-private/nemo-selection-canvas-item.h - -commit 5b3208302e2bb5a3d8f2f68ac785a4aa64e8b8a6 -Author: Cosimo Cecchi -Date: 2011-02-11 - - selection-canvas-item: make sure the item is destroyed after - fading out - -M libnemo-private/nemo-selection-canvas-item.c - -commit e16f5d44fa67e2222f3a3ba30842e5697d76078f -Author: Cosimo Cecchi -Date: 2011-02-11 - - icon-container: only use icon elements to calculate layout bounds - - Canvas items like e.g. a NemoFloatingBarItem do not add up to the - layout bounds calculation. - -M libnemo-private/nemo-icon-container.c - -commit 3c749cf9da882043cc5a5cb938f8831831dec768 -Author: Cosimo Cecchi -Date: 2011-02-11 - - selection-canvas-item: remove useless Xrandr code which does nothing - - This code doesn't seem to actually do anything - -M configure.in -M libnemo-private/nemo-selection-canvas-item.c - -commit 854d310d34de8c45a43d7b94755fde45de2540fa -Author: Cosimo Cecchi -Date: 2011-02-10 - - navigation-window: cleanup cast madness - -M src/nemo-navigation-window.c - -commit f84f5bb0379b0eea4a9e4e1df72f3038587269eb -Author: Cosimo Cecchi -Date: 2011-02-10 - - navigation-window: ensure toolbar search button toggles as expected - -M src/nemo-navigation-window-pane.c -M src/nemo-navigation-window.c - -commit d02d193409f53d11bb68ea97683ddc2dc83a088a -Author: Cosimo Cecchi -Date: 2011-02-10 - - window-menus: set is-important to 'Search' - -M src/nemo-navigation-window-menus.c - -commit ec87bd5216871dc2cc8c539b51f45be4096bcd2f -Author: Cosimo Cecchi -Date: 2011-02-10 - - navigation-window: remove commented out code - -M src/nemo-navigation-window.c - -commit f269eb0f1ff68c1f2ede2c8533a3764cafa11cf8 -Author: Cosimo Cecchi -Date: 2011-02-10 - - window-menus: remove is-important from back/forward nav actions - -M src/nemo-navigation-window-menus.c - -commit 67946b38ce482201e0da7dbf6e955e06038fa2c9 -Author: Cosimo Cecchi -Date: 2011-02-10 - - toolbar: build the toolbar and the location bar with a GtkUIManager - -M src/nemo-location-bar.c -M src/nemo-location-bar.h -M src/nemo-navigation-window-pane.c -M src/nemo-navigation-window-ui.xml -M src/nemo-toolbar.c -M src/nemo-toolbar.h - -commit ba531b1184310455127fa06691f3722052a2eb6c -Author: Cosimo Cecchi -Date: 2011-02-10 - - window-menus: merge the UI from XML while initializing actions - - Because we need it to be ready when setting up the window pane - -M src/nemo-navigation-window-menus.c - -commit 80ea58e844365d0bb097436ed8c0359e07cfd793 -Author: Cosimo Cecchi -Date: 2011-02-10 - - navigation-window: initialize actions before setting up the pane - - This is needed so that the pane can use those actions to build the - toolbar. We also have to remove the code that updates split view - actions from _initialize_actions(), as it requires the pane is - realized. - It should not be much of an issue, as that code is called when loading - an URI anyway (and so it is called afterwards when loading the - window). - -M src/nemo-navigation-window-menus.c -M src/nemo-navigation-window.c - -commit 5756ac82bab3a63708544aeef47ee5b0e9b508da -Author: Cosimo Cecchi -Date: 2011-02-10 - - navigation-action: do not use a GtkMenuToolButton - - As it always has dropdown arrows, which we don't want to see. - Make it a Firefox-like button instead, where you can either right - click - or keep the mouse button pressed for an amount of time to activate the - context menu. - -M src/nemo-navigation-action.c - -commit 7363013201ec2950958db529ea96c0f2442b3c53 -Author: Cosimo Cecchi -Date: 2011-02-09 - - all: remove unused GSettings keys - -M libnemo-private/nemo-global-preferences.h -M src/nemo-file-management-properties.c - -commit 66c46dd6d2cdbaeae38e9b42b083c17ebf3ed65d -Author: Cosimo Cecchi -Date: 2011-02-09 - - location-bar: use dash and not underscore in signal name - -M src/nemo-location-bar.c - -commit 0ea4ca0709c361a4e2adf5e061108abf5c7017e3 -Author: Cosimo Cecchi -Date: 2011-02-09 - - navigation-window-menus: use g_settings_bind() for toolbar visibility - - This also reduces the code complexity by a fair bit - -M src/nemo-navigation-window-menus.c - -commit 47958798846c8bbf85f2e28abc9b66d8266e890f -Author: Cosimo Cecchi -Date: 2011-02-09 - - navigation-window: comment out old toolbar code for now - -M src/nemo-navigation-window-ui.xml -M src/nemo-navigation-window.c - -commit 211dda1ded746708019b11dd497dde21adfb8c4d -Author: Cosimo Cecchi -Date: 2011-02-09 - - navigation-window: cope with NemoNavigationWindowPane changes - -M src/nemo-navigation-window.c - -commit 1a95b0117e095885fc6ec4c3903c909c4f48f377 -Author: Cosimo Cecchi -Date: 2011-02-09 - - slot: remove NemoBarMode - -M src/nemo-navigation-window-slot.h - -commit ff264ed954842d933c9fa5dcd6d8b48366ce60c6 -Author: Cosimo Cecchi -Date: 2011-02-09 - - navigation-window-pane: rework to make use of NemoToolbar - -M src/nemo-navigation-window-pane.c -M src/nemo-navigation-window-pane.h - -commit 36e9be912735ce02929aaace8fb618e31bb91b59 -Author: Cosimo Cecchi -Date: 2011-02-09 - - navigation-window: don't use search_bar_is_showing() - - NemoToolbar is smart enough to take care of visibility alone. - -M src/nemo-navigation-window.c - -commit 865556e2e2073c41f687a4752571bfdf593deeb3 -Author: Cosimo Cecchi -Date: 2011-02-09 - - navigation-window: don't tirgger toolbar visibility with GSettings - - It's done internally by NemoToolbar - -M src/nemo-navigation-window.c - -commit b34fb9648fcd58f17e09590e2dc9e0dae8af3757 -Author: Cosimo Cecchi -Date: 2011-02-09 - - navigation-window: remove methods to toggle toolbar visibility - - This will be done automatically by NemoToolbar and inside the - methods to - trigger temporary visibility. - -M src/nemo-navigation-window.c -M src/nemo-navigation-window.h - -commit a56b468038964ba6ceea5efae74b1520d8e2429a -Author: Cosimo Cecchi -Date: 2011-02-09 - - window-toolbars: clean up includes - -M src/nemo-window-toolbars.c - -commit bd36e2d04baeeeeafc2fcf2f00383fbc367de735 -Author: Cosimo Cecchi -Date: 2011-02-09 - - toolbar: add NemoToolbar - -M src/Makefile.am -A src/nemo-toolbar.c -A src/nemo-toolbar.h - -commit ca1fa0c2b05edd8e76bb6314a7cb7c1adc4f3319 -Author: Cosimo Cecchi -Date: 2011-02-08 - - navigation-bar: remove useless abstract class - - Merge the useful pieces into NemoLocationBar itself, which is the - only implementor anyway. - -M src/Makefile.am -M src/nemo-location-bar.c -M src/nemo-location-bar.h -D src/nemo-navigation-bar.c -D src/nemo-navigation-bar.h -M src/nemo-navigation-window-pane.c -M src/nemo-navigation-window.c - -commit 6f0a2036197cf03095b0a775c35983bc42885fb1 -Author: Kjartan Maraas -Date: 2011-02-17 - - Updated Norwegian bokmål translation. - -M po/nb.po - -commit dde08b0914b1ec42ecfbbbee47673e8fe3975319 -Author: Sweta Kothari -Date: 2011-02-17 - - Updated Gujarati Translations - -M po/gu.po - -commit f8bea223f63eb0ed62ddf22062c94d1c76fea234 -Author: Alexander Shopov -Date: 2011-02-17 - - Updated Bulgarian translation - -M po/bg.po - -commit 8f9dda634d5143dda92a8bf987ca083225ab174c -Author: Mario Blättermann -Date: 2011-02-13 - - [l10n] Updated German translation - -M po/de.po - -commit ae6122fb8212e56f2c5a3afad5b84d532ed3ffc1 -Author: Changwoo Ryu -Date: 2011-02-13 - - Updated Korean translation - -M po/ko.po - -commit 17323012e2ebc3b65be673a7524e021f84434810 -Author: Yaron Shahrabani -Date: 2011-02-12 - - Updated Hebrew translation. - -M po/he.po - -commit b0760d0c50aea36ab95a81794f35b739c3ab08f5 -Author: Chao-Hsiung Liao -Date: 2011-02-11 - - Updated Traditional Chinese translation(Hong Kong and Taiwan) - -M po/zh_HK.po -M po/zh_TW.po - -commit 06e1c2822bc543566eb71ea6f6208a3c82da67fe -Author: Mahyar Moghimi -Date: 2011-02-10 - - Updating Persian Translation - -M po/fa.po - -commit a425e4ed04d0323e1770ca4889affc4564c66a05 -Author: Mahyar Moghimi -Date: 2011-02-10 - - Updating Persian Translation - -M po/fa.po - -commit 20df7410f143960c206efce19e0f404df3265c93 -Author: Mahyar Moghimi -Date: 2011-02-10 - - Updating Persian Translation - -M po/fa.po - -commit 917a3e2097f52d2e8223011b672dffadc6674472 -Author: Cosimo Cecchi -Date: 2011-02-08 - - gsettings: rename our gschema path to /org/gnome/nemo - -M libnemo-private/org.gnome.nemo.gschema.xml.in - -commit fbabd8e4f13fb7312f3921f3a1633b586a4b048c -Author: Cosimo Cecchi -Date: 2011-02-08 - - editable-label: chain up in style_updated() - -M eel/eel-editable-label.c - -commit 4e47a409e990418f541ec9c5f5b5e1567eb04297 -Author: Alexander Larsson -Date: 2011-02-07 - - Avoid spew in the common case of non-existing desktop metadata file - -M libnemo-private/nemo-desktop-metadata.c - -commit 98feec44b9d93fc029e95b682ec29eb104c60320 -Author: Craig Keogh -Date: 2011-02-06 - - Remove configure.in ACLOCAL_FLAGS, now in Makefile.am (GNOME bug - 641629) - -M configure.in - -commit 43573325a03536a93869f0a080dc0b2257e7e258 -Author: Craig Keogh -Date: 2011-02-06 - - Honor aclocal flags (GNOME bug 641629) - -M Makefile.am - -commit 01e5b514d9155e73448365d5f994a967da2d58f2 -Author: Cosimo Cecchi -Date: 2011-02-07 - - pathbar: use "Home" for the home button, instead of the username - -M src/nemo-pathbar.c - -commit df482adbbdb62f422f9c3eabb5aa1ac7a638e700 -Author: Kjartan Maraas -Date: 2011-02-06 - - Updated Norwegian bokmål translation. - -M po/nb.po - -commit ed109037524dec6dbf11b4a840eb9b4ea82c9e2f -Author: Fran Diéguez -Date: 2011-02-06 - - Updated Galician translations - -M po/gl.po - -commit c926b072165b822af8dfd6f5d8a413809bb6b541 -Author: Cosimo Cecchi -Date: 2011-02-05 - - bookmark: apply name and custom-name during construction - -M libnemo-private/nemo-bookmark.c - -commit 8233aadcdd5dcf57d66c7c70df4e507ed32020ed -Author: Ivar Smolin -Date: 2011-02-05 - - [l10n] Updated Estonian translation - -M po/et.po - -commit 52d148c29a931ffaee715f714e7fd507901f7054 -Author: Daniel Mustieles -Date: 2011-02-05 - - Updated Spanish translation - -M po/es.po - -commit 21527ca0cdfc3bb4fa2bba86363ffd2b8a795fd1 -Author: Daniel Mustieles -Date: 2011-02-05 - - Updated Spanish translation - -M po/es.po - -commit eb69bfd91cca98f40f1c60f1198224c6b0e9ac61 -Author: Ivar Smolin -Date: 2011-02-05 - - [l10n] Updated Estonian translation - -M po/et.po - -commit 842a639da7450449877a31f1b0a52188c737b6c6 -Author: Cosimo Cecchi -Date: 2011-02-04 - - i18n: fix POTFILES.in - -M po/POTFILES.in - -commit 9e5a32831826ad609f8ad5315e5b6f72bda5c51f -Author: Cosimo Cecchi -Date: 2011-02-04 - - Release 2.91.9 - -M NEWS -M configure.in - -commit 82fb99a34a6c27f6881e0a049d9882756b615f42 -Author: Stefano Teso -Date: 2011-02-04 - - location-entry: fix auto-complete for non-local URIs - - https://bugzilla.gnome.org/show_bug.cgi?id=635333 - -M src/nemo-location-entry.c - -commit 1212e12456347da601a77de013082fd1beac8463 -Author: Stefano Teso -Date: 2011-02-04 - - query: don't crash with empty .savedSearch files - - Be more robust against empty .savedSearch files. - - https://bugzilla.gnome.org/show_bug.cgi?id=601205 - -M libnemo-private/nemo-query.c - -commit 8f5d29b21b2ab82250bf516f9263aa473dfd64f1 -Author: Stefano Teso -Date: 2011-02-04 - - bookmark: don't make the name/custom-name props construct-only - - This was probably a typo from the refactoring of the object. - - https://bugzilla.gnome.org/show_bug.cgi?id=641484 - -M libnemo-private/nemo-bookmark.c - -commit 59d7af27e1d62e01108058088c5f9faf980832b3 -Author: Khaled Hosny -Date: 2011-02-04 - - Updated Arabic translation - -M po/ar.po - -commit 41de4e52b43c8ed5c9118860dac7caa303ebbc5b -Author: Cosimo Cecchi -Date: 2011-02-04 - - list-view: add a FIXME comment - -M src/nemo-list-view.c - -commit 4f17fb7db7b8736ebb4fe82ddb1c279777847730 -Author: Cosimo Cecchi -Date: 2011-02-04 - - list-view: workaround a GtkTreeView regression - - See https://bugzilla.gnome.org/show_bug.cgi?id=641518 for details - -M src/nemo-list-view.c - -commit f324265d1795a7d23af3ece0e48ce9479e1e5bb5 -Author: Luca Ferretti -Date: 2011-02-04 - - Updated Italian translation - -M po/it.po - -commit c2bcaeb0da84d5759571e365a3a5e71e48d70952 -Author: Luca Ferretti -Date: 2011-02-03 - - connect-server-dialog: add missing mnemonics and use proper - capitalization - -M src/nemo-connect-server-dialog.c - -commit 5c89e3157752fa9311f0ca5e2310885187270ac8 -Author: Yaron Shahrabani -Date: 2011-02-04 - - Updated Hebrew translation. - -M po/he.po - -commit 11cc68cbcc154f7e84975861b26c177ae92547aa -Author: Cosimo Cecchi -Date: 2011-02-03 - - progress-ui: add a notification when all transfer complete - -M src/nemo-progress-ui-handler.c - -commit 046927432a01f7a4bb7a4dc9c96005548950ca79 -Author: Cosimo Cecchi -Date: 2011-02-03 - - progress-ui: add a "Show Details" action to the notification - -M src/nemo-progress-ui-handler.c - -commit 8536b7134f75f23c044772d583402bbe1ebf6174 -Author: Cosimo Cecchi -Date: 2011-02-03 - - progress-ui: first cut implemneting file ops progress with - notifications - -M configure.in -M src/nemo-application.c -M src/nemo-progress-ui-handler.c - -commit b9fe2ecb4894895e063c4cbda5f62b7ad54b7449 -Author: Cosimo Cecchi -Date: 2011-02-02 - - progress-info: split UI of NemoProgressInfo into its own object - -M libnemo-private/nemo-progress-info.c -M src/Makefile.am -A src/nemo-progress-info-widget.c -A src/nemo-progress-info-widget.h -M src/nemo-progress-ui-handler.c - -commit adab8f5fe5681dcb06be4d6fbaa674624b49b6b5 -Author: Cosimo Cecchi -Date: 2011-02-02 - - progress-info: add NemoProgressUIHandler - - It will take care of the various states of file operation progress' - user - interface. - -M src/Makefile.am -M src/nemo-application.c -A src/nemo-progress-ui-handler.c -A src/nemo-progress-ui-handler.h - -commit a0f89473830575ae39a568608bc58f3f92c6f4a4 -Author: Cosimo Cecchi -Date: 2011-02-01 - - progress-info: split progress information notify into a new manager - -M libnemo-private/Makefile.am -A libnemo-private/nemo-progress-info-manager.c -A libnemo-private/nemo-progress-info-manager.h -M libnemo-private/nemo-progress-info.c -M libnemo-private/nemo-ui-utilities.c -M libnemo-private/nemo-ui-utilities.h -M src/nemo-application.c -M src/nemo-application.h -M test/test-copy.c - -commit 2a86f1c60ba847951145ea3570bcf4e7a26a18f1 -Author: Fran Diéguez -Date: 2011-02-03 - - Updated Galician translations - -M po/gl.po - -commit bfece2283aacd609ce3466b6f27539b03f215e8e -Author: Mattias Põldaru -Date: 2011-02-03 - - [l10n] Updated Estonian translation - -M po/et.po - -commit 52b59769ea4944eaebdef26c271b8c1c45aa0493 -Author: Daniel Nylander -Date: 2011-02-02 - - Updated Swedish translation - -M po/sv.po - -commit eb6a4a8eaea16b6fa4d377b759e306016073d2fe -Author: William Jon McCann -Date: 2011-02-02 - - Use Files as launcher name - - https://bugzilla.gnome.org/show_bug.cgi?id=641256 - -M data/nemo.desktop.in.in - -commit a293b96241714a8d07e2b8aecd34ce61aff117ad -Author: Cosimo Cecchi -Date: 2011-02-01 - - eel: remove unused eel-canvas-util - -M eel/Makefile.am -D eel/eel-canvas-util.c -D eel/eel-canvas-util.h -M libnemo-private/nemo-icon-canvas-item.c - -commit 2870f8f8ef38350451ddf36dfc704b2a0e66c616 -Author: Cosimo Cecchi -Date: 2011-02-01 - - selection-canvas-item: fix copyright header - - I copied it from the wrong file. - -M libnemo-private/nemo-selection-canvas-item.c -M libnemo-private/nemo-selection-canvas-item.h - -commit 6b03a56dbd932de2b274bf61f78ae12f4ed7da0b -Author: Cosimo Cecchi -Date: 2011-02-01 - - icon-container: use the fade out effect for rubberbanding - -M libnemo-private/nemo-icon-container.c - -commit bd30e3d0670e437c55e82b544565a539331154d5 -Author: Cosimo Cecchi -Date: 2011-02-01 - - selection-canvas-item: implement a fade out effect - -M libnemo-private/nemo-selection-canvas-item.c -M libnemo-private/nemo-selection-canvas-item.h - -commit b13969228d4d96c3ff677090e888f2aa9d026083 -Author: Cosimo Cecchi -Date: 2011-02-01 - - selection-canvas-item: simplify GObject properties - -M libnemo-private/nemo-selection-canvas-item.c -M libnemo-private/nemo-selection-canvas-item.h - -commit 8853b7bf92271ff093803ccdfb3079512d12149d -Author: Cosimo Cecchi -Date: 2011-02-01 - - Move EelRectCanvasItem to its own object in libnemo-private/ - - eel-canvas-rect-ellipse has quite some unused code that make it - hard to - modify. - -M eel/Makefile.am -D eel/eel-canvas-rect-ellipse.c -D eel/eel-canvas-rect-ellipse.h -M libnemo-private/Makefile.am -M libnemo-private/nemo-icon-container.c -M libnemo-private/nemo-icon-dnd.c -A libnemo-private/nemo-selection-canvas-item.c -A libnemo-private/nemo-selection-canvas-item.h - -commit 67687dd50433d620ddd931d983462ca131dd48bb -Author: Cosimo Cecchi -Date: 2011-02-01 - - desktop-metadata: initialize a variable - -M libnemo-private/nemo-desktop-metadata.c - -commit 513e94c31e22d340888b139c50c43b6f2d037703 -Author: Cosimo Cecchi -Date: 2011-02-01 - - desktop-metadata: append a terminator for single-length strv values - - This is needed so that we can differentiate between single-length strv - and regular string values when reading them back from the keyfile, - which - does not store the type of its values. This way, we make sure that we - always respect the actual metadata type in GFileInfo. - -M libnemo-private/nemo-desktop-metadata.c - -commit 25754a54bb0889187d9b5cb45e6c32ae9321f038 -Author: Cosimo Cecchi -Date: 2011-02-01 - - desktop-metadata: group multiple desktop metadata saving calls - -M libnemo-private/nemo-desktop-metadata.c - -commit aa552113606e24d331c6c62de0f5406351600d7f -Author: Cosimo Cecchi -Date: 2011-01-31 - - Release 2.91.8 - -M NEWS -M configure.in - -commit 3f55f369c00044a3d93c6bb10aa9e7c025548d5d -Author: Cosimo Cecchi -Date: 2011-01-31 - - build: remove GConf dependency altogether - -M configure.in - -commit 4227f0b1708d36d464ffce207c75b429bec1917b -Author: Cosimo Cecchi -Date: 2011-01-31 - - convert-metadata: don't migrate the desktop metadata to GConf - -M src/nemo-convert-metadata.c - -commit 389789e8f102f794780a2842e9506dc23ddd6a08 -Author: Cosimo Cecchi -Date: 2011-01-31 - - preferences: don't use GConfClient anymore - -M libnemo-private/nemo-global-preferences.c -M libnemo-private/nemo-global-preferences.h - -commit 632bf39a23e5457d76540063eff69b36e36459d0 -Author: Cosimo Cecchi -Date: 2011-01-31 - - desktop-metadata: use a keyfile instead of GConf to store it - -M libnemo-private/Makefile.am -M libnemo-private/nemo-desktop-directory-file.c -M libnemo-private/nemo-desktop-directory-file.h -M libnemo-private/nemo-desktop-icon-file.c -A libnemo-private/nemo-desktop-metadata.c -A libnemo-private/nemo-desktop-metadata.h -M libnemo-private/nemo-metadata.h - -commit c62a8ff91596da4d14b56a52400baa52e05c2ccc -Author: Cosimo Cecchi -Date: 2011-01-31 - - desktop-directory-file: don't use eel boilerplate - -M libnemo-private/nemo-desktop-directory-file.c - -commit 3d0dc4d6d763c70630e82f5a5c69a6745af70866 -Author: Gabor Kelemen -Date: 2011-01-31 - - Fix a mistranslation - -M po/hu.po - -commit 678c5216ebe3987b7b268d27fc0af78f09e58d94 -Author: Cosimo Cecchi -Date: 2011-01-30 - - sort-order: resync sort order property with NemoFileSortType - - This makes the sorting preference reliably work again. - -M libnemo-private/nemo-file.c -M libnemo-private/nemo-file.h -M libnemo-private/org.gnome.nemo.gschema.xml.in -M src/nemo-file-management-properties.c -M src/nemo-file-management-properties.ui - -commit 6a6c18d4d62adc14cfc41769ab5ce37793d51c16 -Author: Cosimo Cecchi -Date: 2011-01-30 - - icon-view: save sort metadata only when the user explicitly changes it - -M src/nemo-icon-view.c - -commit c1fa2a49e02552a2fb334f7cb766a32f0c201ad1 -Author: Cosimo Cecchi -Date: 2011-01-30 - - eel: remove eel_g_settings_add_auto_* functions - -M eel/eel-glib-extensions.c -M eel/eel-glib-extensions.h - -commit 253345f0841a38fcf02023bc2acd8bdc26842160 -Author: Cosimo Cecchi -Date: 2011-01-30 - - all: don't use eel_g_settings_add_auto_* methods - - It makes no sense to use caching now with GSettings, as lookup - operations are fast enough. - -M libnemo-private/nemo-file.c -M libnemo-private/nemo-icon-canvas-item.c -M libnemo-private/nemo-thumbnails.c -M src/nemo-desktop-icon-view.c -M src/nemo-icon-view.c -M src/nemo-list-view.c - -commit e14351baf9f252a57395f2982e05ccecc504d646 -Author: Cosimo Cecchi -Date: 2011-01-30 - - icon-view: move desktop view's get_view_id to a proper implementation - - Instead of hardcoding IS_DESKTOP_ICON_VIEW() checks in the parent - class. - -M src/nemo-desktop-icon-view.c -M src/nemo-icon-view.c - -commit fdf30fd8c54c25e952ecc313af6d5325cf062452 -Author: A S Alam -Date: 2011-01-29 - - update Punjabi Translation by A S Alam - -M po/pa.po - -commit b97ee5da0bb1ab6ad4cc0f2a1d795ee7f64b5ec5 -Author: Cosimo Cecchi -Date: 2011-01-28 - - Update MAINTAINERS and DOAP files - -M MAINTAINERS -M nemo.doap - -commit 454b2caf1ba89a62321486db10c87e63217031b8 -Author: Cosimo Cecchi -Date: 2011-01-28 - - application: don't call mount_removed_callback() on pre-unmount - - The unmount process follows this flow: - - pre-unmount is emitted - - GIO performs checks to see whether the volume is safe to unmount, - and - spawns GtkMountOperation dialogues accordingly - - if everything is fine, the unmount signal is emitted - - So, it's wrong to close or redirect windows from pre-unmount, as the - mount could actually not be unmounted after that. - -M src/nemo-application.c - -commit 35bf6c86b53b68a61389f270aa0ce1ff2715ff7c -Author: Cosimo Cecchi -Date: 2011-01-27 - - Clean up our desktop file (#640687) - - - remove the 'System' category - - remove autostart interactions with gnome-session - -M data/nemo.desktop.in.in - -commit e7b6fd0e59ec49fbe6216c157eea2a92b384d39e -Author: Tomas Bzatek -Date: 2011-01-27 - - Clarify the reason for recent nemo_file_peek_display_name() - workaround - -M libnemo-private/nemo-file.c - -commit 8f6245a80cfd571274813fe4d5d950769d02bfba -Author: Tomas Bzatek -Date: 2011-01-27 - - Prevent a crash in nemo_file_peek_display_name() on invalid - NemoFile - - This is more a workaround only, expect assert failures at other - places when something bad happens. There's a race condition somewhere, - this patch only prevents immediate crash. - - Patch by Marcus Husar - - https://bugzilla.gnome.org/show_bug.cgi?id=602500 - -M libnemo-private/nemo-file.c - -commit fd03c910a73ba18459e68baaf15e8dd295acd5c1 -Author: Stefano Teso -Date: 2011-01-26 - - places-sidebar: allow keyboard navigation with Enter/Space (#637768) - -M src/nemo-places-sidebar.c - -commit 4f4c07b1f9964d437f70c89d94e9585429a69f91 -Author: Fran Diéguez -Date: 2011-01-27 - - Get Galician translations back from wrong commit - -M po/gl.po - -commit dace8ba5c2068e80bb9d99a1370f0c1a989fb72a -Author: Fran Diéguez -Date: 2011-01-27 - - QA of Galician translations - -M po/gl.po - -commit 17793d3bb90dbde51c95f73867bf75d6546cf88f -Author: Fran Diéguez -Date: 2011-01-27 - - QA of Galician translations - -M po/gl.po - -commit a63aaa68f14bec6507d36e856a4ed79d969b1be3 -Author: Cosimo Cecchi -Date: 2011-01-25 - - desktop-background: make sure to hold a ref in the 'changed' idle - - Otherwise we might end up accessing object fields after it was - destroyed. - - https://bugzilla.gnome.org/show_bug.cgi?id=640420 - -M libnemo-private/nemo-desktop-background.c - -commit 6d079cc40ab1dfab5b7d60cac44b655d4d243f3d -Author: Cosimo Cecchi -Date: 2011-01-24 - - editable-label: fix some drawing regressions - - Also, remove the copy/pasted gtkpango code again, as we can have a - better rendering without it. - -M eel/eel-editable-label.c - -commit d4230de8667764e02dbb966b5d806ff78ced2fd5 -Author: Cosimo Cecchi -Date: 2011-01-24 - - all: silence new warnings from GCC 4.6 - - GCC 4.6 introduced a new warning about variables declared and - initialized, but not really used in the function body. Remove all of - these occurrences to build cleanly. - -M eel/eel-canvas-rect-ellipse.c -M eel/eel-canvas.c -M libnemo-private/nemo-clipboard.c -M libnemo-private/nemo-desktop-icon-file.c -M libnemo-private/nemo-directory-async.c -M libnemo-private/nemo-directory.c -M libnemo-private/nemo-entry.c -M libnemo-private/nemo-file-conflict-dialog.c -M libnemo-private/nemo-file-operations.c -M libnemo-private/nemo-icon-canvas-item.c -M libnemo-private/nemo-icon-container.c -M libnemo-private/nemo-icon-dnd.c -M libnemo-private/nemo-saved-search-file.c -M libnemo-private/nemo-search-directory-file.c -M libnemo-private/nemo-vfs-directory.c -M libnemo-private/nemo-vfs-file.c -M nemo-sendto-extension/nemo-nste.c -M src/nemo-application.c -M src/nemo-connect-server-dialog-nonmain.c -M src/nemo-connect-server-dialog.c -M src/nemo-icon-view.c -M src/nemo-list-view.c -M src/nemo-main.c -M src/nemo-navigation-window-slot.c -M src/nemo-navigation-window.c -M src/nemo-pathbar.c -M src/nemo-places-sidebar.c -M src/nemo-properties-window.c -M src/nemo-query-editor.c -M src/nemo-tree-sidebar-model.c -M src/nemo-tree-sidebar.c -M src/nemo-view.c -M src/nemo-window-manage-views.c -M src/nemo-window.c - -commit 155cc03271fd7db1da4af7d60dcedfe8acdc2900 -Author: Funda Wang -Date: 2011-01-23 - - Updated zh_CN translation. - -M po/zh_CN.po - -commit 7e47ccdee2c8be8b16fad0da3320141f27596bfa -Author: Piotr Eljasiak -Date: 2011-01-22 - - Fix typo (G_TYPE_INSTANCE_CHECK_TYPE -> G_TYPE_CHECK_INSTANCE_TYPE) - -M libnemo-private/nemo-mime-application-chooser.h -M libnemo-private/nemo-module.c -M libnemo-private/nemo-tree-view-drag-dest.h -M src/nemo-connect-server-dialog.h -M src/nemo-connect-server-operation.h -M src/nemo-location-dialog.h - -commit 0b4bb326cae5d8df888192f4c763211dff9e7f97 -Author: Kristjan SCHMIDT -Date: 2011-01-22 - - Updated Esperanto translation - -M po/eo.po - -commit 9f539e6fa5d2832b9b4788c338bbce66f81971f9 -Author: Alexander Shopov -Date: 2011-01-21 - - Updated Bulgarian translation - -M po/bg.po - -commit 187dc50c76da193f46aa7cb856a4ce1ea964b023 -Author: Chao-Hsiung Liao -Date: 2011-01-20 - - Updated Traditional Chinese translation(Hong Kong and Taiwan) - -M po/zh_HK.po -M po/zh_TW.po - -commit 484c9a1bacd254795703c014a170b5801a1f3104 -Author: Cosimo Cecchi -Date: 2011-01-20 - - eel: remove eel-gdk-pixbuf-extensions - -M eel/Makefile.am -D eel/eel-gdk-pixbuf-extensions.c -D eel/eel-gdk-pixbuf-extensions.h - -commit 129d90ebcd83efd7d7f2ebc75c77922bd9771b9d -Author: Cosimo Cecchi -Date: 2011-01-20 - - all: remove unused includes of eel-gdk-pixbuf-extensions - -M eel/eel-gtk-extensions.c -M eel/eel.h -M libnemo-private/nemo-bookmark.c -M libnemo-private/nemo-icon-canvas-item.c -M libnemo-private/nemo-icon-container.c -M libnemo-private/nemo-icon-dnd.c -M libnemo-private/nemo-thumbnails.c -M src/nemo-properties-window.c - -commit 83a83e3a2200127889c9979240049124b7e9a182 -Author: Cosimo Cecchi -Date: 2011-01-20 - - icon-info: use gdk_pixbuf_new_from_stream_at_scale() - -M libnemo-private/nemo-icon-info.c - -commit 2103a49026fd1c406f2607ef7d070b3081835982 -Author: Cosimo Cecchi -Date: 2011-01-20 - - icon-canvas-item: simplify the code a bit - -M libnemo-private/nemo-icon-canvas-item.c - -commit f58a70a92a83f8979f43ed84fd79d9b764e6d7c6 -Author: Cosimo Cecchi -Date: 2011-01-20 - - eel: remove unused eel_pixbuf_render() - -M eel/eel-gdk-pixbuf-extensions.c -M eel/eel-gdk-pixbuf-extensions.h - -commit 8b13a044cc226cf1347831ef566938a24aa5f9a1 -Author: Cosimo Cecchi -Date: 2011-01-20 - - general: use eel_create_spotlight_pixbuf() - -M src/nemo-list-model.c -M src/nemo-places-sidebar.c -M src/nemo-tree-sidebar-model.c - -commit 09f0b79d854b00469410e2466897df6db5b4d51d -Author: Cosimo Cecchi -Date: 2011-01-20 - - icon-canvas-item: remove an useless snippet of drawing code - -M libnemo-private/nemo-icon-canvas-item.c - -commit a083fa0d0bbd99f1b74d28af305efeb71859e775 -Author: Cosimo Cecchi -Date: 2011-01-20 - - icon-container: hook to style_updated instead of style_set - -M libnemo-private/nemo-icon-container.c - -commit e652eb079514451313a67408c1cc3c8188ae0161 -Author: Cosimo Cecchi -Date: 2011-01-20 - - icon-container: remove unused style properties - -M libnemo-private/nemo-icon-container.c -M libnemo-private/nemo-icon-private.h - -commit a1fa4eaa03493d6b69c5e79db296a83532974f63 -Author: Cosimo Cecchi -Date: 2011-01-20 - - icon-canvas-item: use eel_create_spotlight_pixbuf() - - Instead of passing eel_pixbuf_render() always the same values - -M libnemo-private/nemo-icon-canvas-item.c - -commit 207a2499a3f19b194acb93925084bbd7800fe0bc -Author: Cosimo Cecchi -Date: 2011-01-20 - - css: move the style properties from adwaita here - -M data/nemo.css - -commit 2a1fbaf839fc7eaae505e3534acd317e9dd47b1b -Author: Cosimo Cecchi -Date: 2011-01-19 - - canvas: fix an ACTIVE -> NORMAL typo from GtkStyleContext conversion - -M eel/eel-canvas.c - -commit d0d90599476e4f21d3e07fd670b6c18b6ba06794 -Author: Cosimo Cecchi -Date: 2011-01-19 - - icon-container: fix a couple of ACTIVE -> NORMAL typos - -M libnemo-private/nemo-icon-container.c - -commit e2ca42cac78cb0287a1bbb73030e7bba8b171970 -Author: Cosimo Cecchi -Date: 2011-01-19 - - icon-container: remove useless theming properties - -M libnemo-private/nemo-icon-canvas-item.c -M libnemo-private/nemo-icon-container.c - -commit 5bfc3e50c91c4c6fc129e9383e3f2f20a87be0cf -Author: Cosimo Cecchi -Date: 2011-01-19 - - views: use proper background color for inactive panes - -M libnemo-private/nemo-icon-container.c -M src/nemo-list-view.c - -commit d55ca5df614a56f3d9750df1fbcfcca155dce0b4 -Author: Marios Zindilis -Date: 2011-01-19 - - Updated Greek translation - -M po/el.po - -commit bd179dad12aa8175ed7e02f9421c0d1ed125bd2a -Author: Maxim V. Dziumanenko -Date: 2011-01-18 - - Updated Ukrainian translation - -M po/uk.po - -commit 9eee9ff6ca3e93d5d363725282d8ba393a1e6d01 -Author: Markus T. Vartiainen -Date: 2011-01-18 - - list-view: jump to parent with left key on collapsed rows (#639688) - -M src/nemo-list-view.c - -commit c6fa6b2062a1adf3e4945824048b3771edb35ebe -Author: Cosimo Cecchi -Date: 2011-01-18 - - places-sidebar: plug a leak and cleanup code a bit - -M src/nemo-places-sidebar.c - -commit f394ce8c052dd65c8343106964ba4431d97d261c -Author: Cosimo Cecchi -Date: 2011-01-18 - - icon-container: plug a memory leak - -M libnemo-private/nemo-icon-container.c - -commit 8f15b28dd7afdd1a5c5b9c0d54c05d978a10461a -Author: Cosimo Cecchi -Date: 2011-01-18 - - eel: plug some leaks in gsettings helpers - -M eel/eel-glib-extensions.c - -commit 04d3aa67294f300f3b0bd927be5f45666260c5d3 -Author: Nicolò Chieffo <84yelo3@gmail.com> -Date: 2011-01-17 - - progress-info: use a symbolic icon for the notification area (#596568) - -M libnemo-private/nemo-progress-info.c - -commit 12c3841911b47e1496d8c8fea2429cf3ca4bf8d0 -Author: Ivar Smolin -Date: 2011-01-17 - - [l10n] Updated Estonian translation - -M po/et.po - -commit 9e016ee923a2625ebd4d66cf18f3a6d2c903e6c8 -Author: Cosimo Cecchi -Date: 2011-01-17 - - progress-info: tie the application life to the whole file operation - - And not to the progress widget only, as that - - starts hidden for the first seconds - - is not destroyed when the operation finishes, but only hidden - - Using g_application_hold/release with the progress operation lifetime - seems like a better way to deal with the app lifecycle. - -M libnemo-private/nemo-progress-info.c - -commit a11b54d5752d9792f9af05942901396330688cf7 -Author: Ivar Smolin -Date: 2011-01-16 - - [l10n] Updated Estonian translation - -M po/et.po - -commit 7cbc6f2ee4f85f6923bf56b4891f91c04edaae31 -Author: Daniel Mustieles -Date: 2011-01-16 - - Updated Spanish translation - -M po/es.po - -commit 8efb55bc266f8b471059b9bc83de19f4085fef48 -Author: Xan Lopez -Date: 2011-01-16 - - places-sidebar: remove unused variable - - It was being freed uninitialized, which caused a warning (and a build - failure with -Werror). - -M src/nemo-places-sidebar.c - -commit fcd8981ef68dd351910539302965476a66f0218f -Author: Ivar Smolin -Date: 2011-01-14 - - [l10n] Updated Estonian translation - -M po/et.po - -commit bf5d259288868a70258e63960ddc0eabe96bf9c8 -Author: Cosimo Cecchi -Date: 2011-01-14 - - application: don't quit if there are pending file operations - - Now that we're a single-window application, this has become much more - relevant. - -M libnemo-private/nemo-progress-info.c -M libnemo-private/nemo-ui-utilities.c -M libnemo-private/nemo-ui-utilities.h -M src/nemo-application.c - -commit f4637ff4481ee6d7d1e0453a5bd3ec4ac9dca17d -Author: Cosimo Cecchi -Date: 2011-01-14 - - bookmark: don't call into nemo_file methods unconditionally - - As NemoBookmark's file might be NULL in some cases. - -M libnemo-private/nemo-bookmark.c - -commit c55ddd80f16e56a366fe9e746c3632521d10f042 -Author: Cosimo Cecchi -Date: 2011-01-14 - - bookmark-list: avoid setting the bookmark icon by hand - - When creating a bookmark from the GTK+ list, otherwise we end up - overriding NemoBookmark's special casing when reloading the list - -M src/nemo-bookmark-list.c - -commit c637811c268abdecae3a3720b1f77fc7fe5bcd6a -Author: Cosimo Cecchi -Date: 2011-01-14 - - bookmark: add debug messages - -M libnemo-private/nemo-bookmark.c -M libnemo-private/nemo-debug.c -M libnemo-private/nemo-debug.h - -commit ce44fecb484ff1d6ae069446e3296f223b247c87 -Author: Fran Diéguez -Date: 2011-01-14 - - Updated Galician translations - -M po/gl.po - -commit 35a9e17696c0ff126a327f61046ab9e662a1738d -Author: Ivar Smolin -Date: 2011-01-13 - - [l10n] Updated Estonian translation - -M po/et.po - -commit ae1e300376b3479e14045892caa720dd3903a89c -Author: Cosimo Cecchi -Date: 2011-01-12 - - window-manage-views: re-add an accidentally removed snipped of code - -M src/nemo-window-manage-views.c - -commit d4df96c1e5c6bde62fd55dab1cbaae8a57f2b92e -Author: Cosimo Cecchi -Date: 2011-01-12 - - all: use new NemoBookmark API - -M src/nemo-bookmark-list.c -M src/nemo-bookmark-list.h -M src/nemo-bookmarks-window.c -M src/nemo-places-sidebar.c -M src/nemo-window-bookmarks.c -M src/nemo-window-manage-views.c -M src/nemo-window-menus.c -M src/nemo-window-slot.c - -commit 3aa0396da2014b35f0ef21dffd29e4953667ceb2 -Author: Cosimo Cecchi -Date: 2011-01-12 - - all: use nemo_bookmark_get_gicon() - -M libnemo-private/nemo-ui-utilities.c -M src/nemo-bookmarks-window.c -M src/nemo-window-menus.c - -commit f6850158283858aae24ed3f1982341bc1b587d28 -Author: Cosimo Cecchi -Date: 2011-01-12 - - file-utilities: make compute_title_for_location() return the basename - - As a last-resort fallback. - -M libnemo-private/nemo-file-utilities.c - -commit 7cbd07aa15a3c099dfd69ab7cdcfd3dcbea38b51 -Author: Cosimo Cecchi -Date: 2011-01-12 - - file: remove unused code - -M libnemo-private/nemo-file.c -M libnemo-private/nemo-file.h -M src/nemo-pathbar.c - -commit f1c782c13dd675bafffb2a4d85900da52be88f3f -Author: Cosimo Cecchi -Date: 2011-01-12 - - file: make nemo_file_get_gicon() return custom icons too - -M libnemo-private/nemo-file.c - -commit ef5ebfe5db767a2f703e1f5cc57f6ab829d5499a -Author: Cosimo Cecchi -Date: 2011-01-12 - - bookmark: refactor the object - - - add properties for location, name, custom name and icon - - make the code less convoluted, removing the appearance-changed - signal - - remove _get_pixbuf(), _get_icon() should be used instead - -M libnemo-private/nemo-bookmark.c -M libnemo-private/nemo-bookmark.h - -commit 8057f745fe1e741c8f2a3756efebc7c7e15cbf68 -Author: Khaled Hosny -Date: 2011-01-12 - - Updated Arabic translation - -M po/ar.po - -commit 906cea0bc4b2deac177e417551109b8319ee78cd -Author: Yaron Shahrabani -Date: 2011-01-11 - - Updated Hebrew translation. - -M po/he.po - -commit 31461f9f4782b0df89a14812c252addaa7d6e983 -Author: Cosimo Cecchi -Date: 2011-01-11 - - mime-actions: update the filtered out desktop files for folders - -M src/nemo-mime-actions.c - -commit a22f2501c8c00f16150d1de98d7039063a4e002a -Author: Cosimo Cecchi -Date: 2011-01-11 - - desktop-files: cleanup desktop files installed by nemo - - In the 3.0 world, nemo doesn't have to install a hundred of - desktop - files, as it's just a regular application. - Tweak the default desktop file to make it suitable for being the only - one, and remove the others. - -M configure.in -M data/Makefile.am -D data/nemo-browser.desktop.in.in -D data/nemo-computer.desktop.in.in -D data/nemo-folder-handler.desktop.in.in -D data/nemo-home.desktop.in.in -M data/nemo.desktop.in.in -M po/POTFILES.in -M src/Makefile.am -D src/network-scheme.desktop.in - -commit f2533adf30822d3839b67c5f81e410b5e212f7a7 -Author: Maciej Piechotka -Date: 2011-01-11 - - Fix handling of AM_CONDITIONAL - -M configure.in - -commit 395ba0fd8f679e6e2674eb0ce5976638edb9d979 -Author: Cosimo Cecchi -Date: 2011-01-11 - - window: remove unused and confusing code - -M src/nemo-window-slot.c -M src/nemo-window-slot.h -M src/nemo-window.c -M src/nemo-window.h - -commit 48ac967bff48e7e4a38c96859ebfd2f522179fa3 -Author: Cosimo Cecchi -Date: 2011-01-11 - - desktop-window: implement the right method for setting window title - - https://bugzilla.gnome.org/show_bug.cgi?id=555425 - -M src/nemo-desktop-window.c - -commit f9cb9e158b365ef3d1ed27cfa0ae138f367bd42a -Author: Cosimo Cecchi -Date: 2011-01-11 - - i18n: update POTFILES.in - -M po/POTFILES.in - -commit 9367d11d3a00d5192174f744eeea9e395fcd501a -Merge: 6430fd4 b13efe1 -Author: Cosimo Cecchi -Date: 2011-01-11 - - Merge branch 'refactor' - -commit b13efe1653ea1932bba8c3f3555729d34a21412c -Author: Cosimo Cecchi -Date: 2011-01-11 - - empty-view: fix it to make it work again with current architecture - -M src/Makefile.am -M src/nemo-application.c -M src/nemo-empty-view.c -M src/nemo-empty-view.h - -commit d5c9bae1381cb1f322d5ee3e0efbb27e06154574 -Author: Cosimo Cecchi -Date: 2011-01-11 - - Move other files away from src/file-manager - -M configure.in -M src/Makefile.am -D src/file-manager/Makefile.am -R100 src/file-manager/nemo-desktop-icon-view-ui.xml -src/nemo-desktop-icon-view-ui.xml -R100 src/file-manager/nemo-directory-view-ui.xml -src/nemo-directory-view-ui.xml -R100 src/file-manager/fm-empty-view.c src/nemo-empty-view.c -R100 src/file-manager/fm-empty-view.h src/nemo-empty-view.h -R100 src/file-manager/nemo-icon-view-ui.xml -src/nemo-icon-view-ui.xml -R100 src/file-manager/nemo-list-view-ui.xml -src/nemo-list-view-ui.xml - -commit 70b1acf6b0d4ef68903445d4198e78c5ea4807e5 -Author: Cosimo Cecchi -Date: 2011-01-11 - - Finish renaming fm_* -> nemo_* - -M src/nemo-actions.h -M src/nemo-desktop-icon-view.c -M src/nemo-desktop-item-properties.c -M src/nemo-desktop-item-properties.h -M src/nemo-error-reporting.c -M src/nemo-error-reporting.h -M src/nemo-icon-view.c -M src/nemo-list-view.c -M src/nemo-properties-window.c -M src/nemo-view.c - -commit e0538b42e65601d9ebee5beffaefebb3e425672e -Author: Cosimo Cecchi -Date: 2011-01-11 - - properties-window: move FMPropertiesWindow to NemoPropertiesWindow - -M src/Makefile.am -M src/file-manager/Makefile.am -D src/file-manager/fm-properties-window.h -R099 src/file-manager/fm-ditem-page.c -src/nemo-desktop-item-properties.c -R100 src/file-manager/fm-ditem-page.h -src/nemo-desktop-item-properties.h -R093 src/file-manager/fm-properties-window.c -src/nemo-properties-window.c -A src/nemo-properties-window.h -M src/nemo-tree-sidebar.c -M src/nemo-view.c - -commit 690909b8eb0b346d76b28da03c9228494e700db6 -Author: Cosimo Cecchi -Date: 2011-01-11 - - Rename FMListModel/View -> NemoListModel/View - - And move them outside of src/file-manager - -M src/Makefile.am -M src/file-manager/Makefile.am -D src/file-manager/fm-list-model.h -M src/nemo-application.c -R072 src/file-manager/fm-list-model.c src/nemo-list-model.c -A src/nemo-list-model.h -R100 src/file-manager/fm-list-view-private.h -src/nemo-list-view-private.h -R080 src/file-manager/fm-list-view.c src/nemo-list-view.c -R052 src/file-manager/fm-list-view.h src/nemo-list-view.h -M src/nemo-view.c - -commit 757a5acffc9e4ac7bdbd0dcfb5eaa1f64da8a471 -Author: Cosimo Cecchi -Date: 2011-01-11 - - icon-view-container: rename FMIconContainer -> - NemoIconViewContainer - -M src/nemo-desktop-icon-view.c -M src/nemo-icon-view-container.c -M src/nemo-icon-view-container.h -M src/nemo-icon-view.c - -commit ba4c8ef658f4f3e9e46d6cae12d84f06cf0a14b2 -Author: Cosimo Cecchi -Date: 2011-01-11 - - desktop-icon-view: rename FMDesktopIconView -> NemoDesktopIconView - -M src/nemo-application.c -M src/nemo-desktop-icon-view.c -M src/nemo-desktop-icon-view.h -M src/nemo-icon-view.c -M src/nemo-view-dnd.c -M src/nemo-view.c - -commit bb124418d4c131b03772acc64be3acf91903e9fb -Author: Cosimo Cecchi -Date: 2011-01-11 - - icon-view: rename FMIconView -> NemoIconView - -M src/nemo-application.c -M src/nemo-desktop-icon-view.c -M src/nemo-desktop-icon-view.h -M src/nemo-icon-view-container.c -M src/nemo-icon-view-container.h -M src/nemo-icon-view.c -M src/nemo-icon-view.h - -commit b20ff7a5cd1d9304c5716433de1958faedccefde -Author: Cosimo Cecchi -Date: 2011-01-11 - - Move icon views outside of src/file-manager - - Part of the final step towards removing src/file-manager completely; - only code shuffling around, not any real code change. - -M src/Makefile.am -M src/file-manager/Makefile.am -D src/file-manager/fm-actions.h -M src/file-manager/fm-list-view.c -M src/file-manager/fm-properties-window.c -M src/nemo-actions.h -M src/nemo-application.c -R100 src/file-manager/nemo-audio-mime-types.h -src/nemo-audio-mime-types.h -R099 src/file-manager/fm-desktop-icon-view.c -src/nemo-desktop-icon-view.c -R098 src/file-manager/fm-desktop-icon-view.h -src/nemo-desktop-icon-view.h -R099 src/file-manager/fm-error-reporting.c -src/nemo-error-reporting.c -R100 src/file-manager/fm-error-reporting.h -src/nemo-error-reporting.h -R099 src/file-manager/fm-icon-container.c -src/nemo-icon-view-container.c -R098 src/file-manager/fm-icon-container.h -src/nemo-icon-view-container.h -R099 src/file-manager/fm-icon-view.c src/nemo-icon-view.c -R100 src/file-manager/fm-icon-view.h src/nemo-icon-view.h -M src/nemo-view-dnd.c -M src/nemo-view.c - -commit e1ca0591f0588d114249361c624f467126b323c9 -Author: Cosimo Cecchi -Date: 2011-01-11 - - view: drop FMDirectoryView name - - Big code rename/indent fix, no actual code change here. - -M src/file-manager/fm-desktop-icon-view.c -M src/file-manager/fm-icon-container.c -M src/file-manager/fm-icon-view.c -M src/file-manager/fm-icon-view.h -M src/file-manager/fm-list-view.c -M src/file-manager/fm-list-view.h -M src/nemo-view-dnd.c -M src/nemo-view.c -M src/nemo-view.h - -commit 00578e62066c1c5dadf4a0080dcb56c215334619 -Author: Cosimo Cecchi -Date: 2011-01-01 - - view: remove useless virtual method - -M src/nemo-view.c -M src/nemo-view.h - -commit 8d726bab91c50d42edcb7e9a0e4107b6b0277ade -Author: Cosimo Cecchi -Date: 2011-01-01 - - view: move icon-view-only preferences to FMIconView - - Instead of using virtual methods - -M src/file-manager/fm-icon-view.c -M src/nemo-view.c -M src/nemo-view.h - -commit 9ab314c1dd30dc2d30fc46a62e2d31059c4c340a -Author: Cosimo Cecchi -Date: 2010-12-31 - - view: remove emblems_changed code - - This hack should not be required anymore now that we don't have user - emblems. - Other emblems should be taken care of by the normal NemoFile's - changed signal. - -M src/file-manager/fm-icon-view.c -M src/file-manager/fm-list-view.c -M src/nemo-view.c -M src/nemo-view.h - -commit d7de8e23fbe75e4a6ecbaf729affc9cbab9e08a3 -Author: Cosimo Cecchi -Date: 2010-12-31 - - signaller: remove unused emblems-changed signal - -M libnemo-private/nemo-signaller.c - -commit 5e57025a405e4ccbdd7a4ff51fa48d7eb4fb3671 -Author: Cosimo Cecchi -Date: 2010-12-31 - - view: remove useless virtual methods - - No need for some internal methods to be virtual if they're never - overridden. - Also, some of this code does nothing. - -M src/file-manager/fm-icon-container.c -M src/nemo-view.c -M src/nemo-view.h - -commit 9b29835c04fcaae84760a328a6cc70705c214506 -Author: Cosimo Cecchi -Date: 2010-12-31 - - places-sidebar: remove "Format..." action code - -M src/nemo-places-sidebar.c - -commit e4975471d233f1217bca48fae17519a285336645 -Author: Cosimo Cecchi -Date: 2010-12-31 - - view: remove commented out "Format..." action code - -M src/file-manager/fm-actions.h -M src/file-manager/nemo-directory-view-ui.xml -M src/nemo-view.c - -commit d0985e6d5ed7f6732bb4ee4b836192852adface2 -Author: Cosimo Cecchi -Date: 2010-12-31 - - view: remove unused flush_added_files signal - -M src/file-manager/fm-icon-view.c -M src/nemo-view.c -M src/nemo-view.h - -commit 7a4af383a2cb0e0257213e0e21f62e6cc82a7e58 -Author: Cosimo Cecchi -Date: 2010-12-31 - - view: don't check for allow_moves in the view superclass - - The property is only used by the icon view, so it's better to move the - check there. - -M src/file-manager/fm-icon-view.c -M src/nemo-view.c -M src/nemo-view.h - -commit be2d9bba9864f2834a57b608d47140f1e20eca66 -Author: Cosimo Cecchi -Date: 2010-12-29 - - view: make nemo_view_load_location() consistent with its name - -M src/nemo-view.c -M src/nemo-view.h -M src/nemo-window-manage-views.c - -commit 69c2c9f8c5855a7993f23998cff3ce3eab87fd45 -Author: Cosimo Cecchi -Date: 2010-12-29 - - view: use NemoFile objects for the view selection - - Use them in a consistent way, so to cleanup the previous - GFile/NemoFile confusion. - -M src/file-manager/fm-desktop-icon-view.c -M src/file-manager/fm-icon-view.c -M src/file-manager/fm-list-view.c -M src/nemo-spatial-window.c -M src/nemo-trash-bar.c -M src/nemo-view.c -M src/nemo-view.h -M src/nemo-window-manage-views.c -M src/nemo-window-slot.c -M src/nemo-window-slot.h - -commit eb178062ec31bf6a877e5bc61f697f85a3f927fe -Author: Cosimo Cecchi -Date: 2010-12-29 - - spatial-window: don't unref the main loop we're about to destroy - -M src/nemo-spatial-window.c - -commit ac1fbbba66c61d61c4469949b925862fa3c6600b -Author: Cosimo Cecchi -Date: 2010-12-29 - - window: remove unused code - -M src/nemo-window-slot.h -M src/nemo-window.c -M src/nemo-window.h - -commit 57c8b0416135ee3b5c1315b3419269d20ced233c -Author: Cosimo Cecchi -Date: 2010-12-29 - - view: split DnD code into its own module - - And use new method names in other classes - -M src/Makefile.am -M src/file-manager/fm-icon-view.c -M src/file-manager/fm-list-view.c -A src/nemo-view-dnd.c -A src/nemo-view-dnd.h -M src/nemo-view.c -M src/nemo-view.h -M src/nemo-window-slot-dnd.c - -commit 1f734cce8b243e2c1c1fd40491ab4e38c0eb65cd -Author: Cosimo Cecchi -Date: 2010-12-29 - - view: reduce visibility of some methods - - No need for them to stay public. - Remove some useless prototypes and reorder virtual methods, - while we're - at it. - -M src/file-manager/fm-icon-view.c -M src/nemo-view.c -M src/nemo-view.h - -commit 4c20fa07d8a587ebe8de820a0206aa8a75edc5d8 -Author: Cosimo Cecchi -Date: 2010-12-29 - - window: remove nemo_window_get_selection[_count] - - No need to duplicate selection handling between view and window. - -M src/nemo-trash-bar.c -M src/nemo-trash-bar.h -M src/nemo-view.c -M src/nemo-view.h -M src/nemo-window-manage-views.c -M src/nemo-window.c -M src/nemo-window.h - -commit dedd9e11ec6ff499b82bdb7a9b9bde7927066560 -Author: Cosimo Cecchi -Date: 2010-12-29 - - Rework architecture of NemoView/FMDirectoryView - - As a second step after ff5c759b3784db2d0cd71e1cde613dda007c3985, this - removes the NemoView/FMDirectoryView interface split, changing - FMDirectoryView to be NemoView directly. - - Left to do: complete renaming the public fm_directory_view methods to - nemo_view, and get rid of src/file-manager entirely. - -M libnemo-private/Makefile.am -M libnemo-private/nemo-dnd.c -D libnemo-private/nemo-view.c -D libnemo-private/nemo-view.h -M src/Makefile.am -M src/file-manager/Makefile.am -M src/file-manager/fm-desktop-icon-view.c -M src/file-manager/fm-icon-view.c -M src/file-manager/fm-icon-view.h -M src/file-manager/fm-list-view.c -M src/file-manager/fm-list-view.h -M src/nemo-trash-bar.c -M src/nemo-view-factory.h -R098 src/file-manager/fm-directory-view.c src/nemo-view.c -R087 src/file-manager/fm-directory-view.h src/nemo-view.h -M src/nemo-window-manage-views.c -M src/nemo-window-pane.h -M src/nemo-window-slot.c -M src/nemo-window-slot.h -A src/nemo-window-types.h -M src/nemo-window.h -M src/nemo-x-content-bar.c - -commit 10998fbf14029163d3669f1e2a9f1676b02e7d09 -Author: Cosimo Cecchi -Date: 2010-12-28 - - main: remove unneeded code - -M src/nemo-main.c - -commit 79ef5be141a55ccce67daf42b73aa0a4affa7a13 -Author: Cosimo Cecchi -Date: 2010-12-28 - - window-slot: trivial cleanups - -M src/nemo-window-manage-views.c -M src/nemo-window-slot.c - -commit acf3e032099dc2f7a156e755edb23a3dd8305fc8 -Author: Cosimo Cecchi -Date: 2010-12-28 - - window-slot: rename get_current_location -> get_current_uri - -M src/file-manager/fm-directory-view.c -M src/nemo-places-sidebar.c -M src/nemo-tree-sidebar.c -M src/nemo-window-slot-dnd.c -M src/nemo-window-slot.c -M src/nemo-window-slot.h - -commit 977fc6383dc74a320ce951d4d0b2f81f31e9cdcf -Author: Cosimo Cecchi -Date: 2010-12-27 - - window: cleanup nemo_window_reload() - -M src/nemo-window-manage-views.c -M src/nemo-window-menus.c -M src/nemo-window.c -M src/nemo-window.h - -commit ab75e5447ca5a5a5d7054c907d008816ad911c20 -Author: Cosimo Cecchi -Date: 2010-12-26 - - navigation-action: cleanup - -M src/nemo-navigation-action.c - -commit 2807b8884acab27de359a4ab51b9b57e8fb86a0f -Author: Cosimo Cecchi -Date: 2010-12-26 - - window: remove useless snippets - -M src/nemo-navigation-window.c - -commit b1011eced7e561b05dca2aa6345d3c5b3225610e -Author: Cosimo Cecchi -Date: 2010-12-23 - - window: remove useless method calls - - nemo_window_slot_set_content_view_widget() is called afterwards, - which in turn calls again _disconnect_view() - -M src/nemo-window-manage-views.c - -commit d166f04b8886687df6f03d0e03ec16c887f9842b -Author: Cosimo Cecchi -Date: 2010-12-23 - - window: remove non existent function declaration - -M src/nemo-window.h - -commit 6ff03b33b724d882cfabb67b1f1fb4e8287e932f -Author: Cosimo Cecchi -Date: 2010-12-22 - - window: cleanup nemo_window_allow_reload() - -M src/nemo-window.c -M src/nemo-window.h - -commit 553edbfbaf7e4fc171453634aa41006d49533da2 -Author: Cosimo Cecchi -Date: 2010-12-21 - - window: cleanup nemo_window_go_up() - -M src/nemo-window-manage-views.c -M src/nemo-window-menus.c -M src/nemo-window-slot.h -M src/nemo-window.c -M src/nemo-window.h - -commit 558e394a8dfba5f1c92423ac45c6462461720199 -Author: Cosimo Cecchi -Date: 2010-12-21 - - window: cleanup nemo_window_go_home() - -M src/nemo-navigation-window-menus.c -M src/nemo-window.c -M src/nemo-window.h - -commit d9ce97b0501cb3006013080ed688aa25649a31f6 -Author: Cosimo Cecchi -Date: 2010-12-21 - - window-slot: remove commented out code - -M src/nemo-window-manage-views.c -M src/nemo-window-slot.h - -commit a8d0c04c154ee8458fd5fd24091de1a8c92a6da4 -Author: Cosimo Cecchi -Date: 2010-12-21 - - window-slot: cleanup connect/disconnect_view() - -M src/nemo-window-manage-views.c -M src/nemo-window-slot.c -M src/nemo-window-slot.h -M src/nemo-window.c - -commit 307e0edbe7457a70f4a61acdfecb1ae38d8c243b -Author: Cosimo Cecchi -Date: 2010-12-21 - - window-slot: cleanup of window_slot_open_location() functions - -M src/file-manager/fm-directory-view.c -M src/nemo-mime-actions.c -M src/nemo-navigation-window-pane.c -M src/nemo-places-sidebar.c -M src/nemo-spatial-window.c -M src/nemo-tree-sidebar.c -M src/nemo-window-manage-views.c -M src/nemo-window-slot.h -M src/nemo-window.c - -commit cfdf80763ef3f7f3f88239fdba27ce01b642ab32 -Author: Cosimo Cecchi -Date: 2010-12-21 - - window-slot: remove nemo_window_slot_open_location() - - It's unused. - -M src/nemo-window-manage-views.c -M src/nemo-window-slot.h - -commit ad0d377ac236392a9ccaeae789e07e1af4a796e5 -Author: Cosimo Cecchi -Date: 2010-12-21 - - Rework architecture of NemoWindow/NemoWindowSlotInfo - - In the past, nemo was designed keeping in mind the concept that it - might not just be a file browser, but a sort of platform to embed - various kind of views in it. - - libnemo-private: general lowlevel items, such as the icon - container, NemoFile, I/O and so on - - src: general widgets and UI items - - src/file-manager: file manager views, agnostic of what's in src/, - for the sake of being pluggable enough - - This is really not applicable anymore, as nemo won't go in any - direction other than being a file manager; at the same time, this - complicates code and architecture quite a lot. - - In this commit, as a first step towards a more clean codebase, - we remove - the NemoWindowInfo and NemoWindowSlotInfo interfaces, using - NemoWindow and NemoWindowSlot directly. - - Note that there should be no actual code changes, only moving - of pieces - around. - -M libnemo-private/Makefile.am -M libnemo-private/nemo-dnd.c -M libnemo-private/nemo-dnd.h -D libnemo-private/nemo-window-info.c -D libnemo-private/nemo-window-info.h -D libnemo-private/nemo-window-slot-info.c -D libnemo-private/nemo-window-slot-info.h -M src/Makefile.am -M src/file-manager/fm-desktop-icon-view.c -M src/file-manager/fm-directory-view.c -M src/file-manager/fm-directory-view.h -M src/file-manager/fm-icon-view.c -M src/file-manager/fm-list-view.c -M src/nemo-application.h -M src/nemo-bookmarks-window.c -M src/nemo-connect-server-dialog-main.c -M src/nemo-connect-server-dialog-nonmain.c -M src/nemo-connect-server-dialog.c -M src/nemo-connect-server-dialog.h -M src/nemo-location-bar.c -M src/nemo-mime-actions.c -M src/nemo-mime-actions.h -M src/nemo-navigation-window-menus.c -M src/nemo-navigation-window-pane.c -M src/nemo-navigation-window-slot.c -M src/nemo-navigation-window.c -M src/nemo-places-sidebar.c -M src/nemo-places-sidebar.h -M src/nemo-query-editor.h -M src/nemo-spatial-window.c -M src/nemo-trash-bar.c -M src/nemo-tree-sidebar.c -M src/nemo-tree-sidebar.h -M src/nemo-view-as-action.c -R098 libnemo-private/nemo-view-factory.c -src/nemo-view-factory.c -R094 libnemo-private/nemo-view-factory.h -src/nemo-view-factory.h -M src/nemo-window-manage-views.c -M src/nemo-window-manage-views.h -M src/nemo-window-menus.c -M src/nemo-window-private.h -M src/nemo-window-slot-dnd.c -M src/nemo-window-slot.c -M src/nemo-window-slot.h -M src/nemo-window.c -M src/nemo-window.h - -commit 4c031a4794126af08cea1774dd7ec3904d0ad25e -Author: Cosimo Cecchi -Date: 2010-12-21 - - mime-actions: move nemo-mime-actions to src/ - -M libnemo-private/Makefile.am -M libnemo-private/nemo-program-choosing.c -M src/Makefile.am -M src/file-manager/Makefile.am -M src/file-manager/fm-directory-view.c -M src/file-manager/fm-properties-window.c -R099 libnemo-private/nemo-mime-actions.c -src/nemo-mime-actions.c -R100 libnemo-private/nemo-mime-actions.h -src/nemo-mime-actions.h -M src/nemo-navigation-window.c -M src/nemo-spatial-window.c -M src/nemo-window-manage-views.c -M src/nemo-window.c - -commit 97e67f49279ad87737541249ef09b99c4bc1d9fe -Author: Cosimo Cecchi -Date: 2010-12-21 - - dnd: move DnD slot proxying code to src/ - -M libnemo-private/nemo-dnd.c -M libnemo-private/nemo-dnd.h -M src/Makefile.am -M src/nemo-notebook.c -M src/nemo-pathbar.c -A src/nemo-window-slot-dnd.c -A src/nemo-window-slot-dnd.h - -commit 6430fd4a7435336a61000e2255621fb0023252d1 -Author: Ivar Smolin -Date: 2011-01-11 - - [l10n] Updated Estonian translation - -M po/et.po - -commit 63724239779c6f5f4dcb76ebde7f66f691a75786 -Author: Andika Triwidada -Date: 2011-01-11 - - Updated Indonesian translation - -M po/id.po - -commit 9022942dce517bc0fe52fdb769f6950c0aa5c444 -Author: Ivar Smolin -Date: 2011-01-10 - - [l10n] Updated Estonian translation - -M po/et.po - -commit cd976fa26099fb8c1f2084a6bae7ac0b05f5e29e -Author: Cosimo Cecchi -Date: 2011-01-10 - - Release 2.91.7 - -M NEWS -M configure.in -M po/POTFILES.in - -commit f6d4eed031e94570151cb4599e93d92b4612d53b -Author: Cosimo Cecchi -Date: 2011-01-10 - - debug: fix build without debugging support (#639107) - -M configure.in -M libnemo-private/nemo-debug.c -M libnemo-private/nemo-debug.h -M src/nemo-main.c - -commit ac168820fbb4db7fbdf243a0d6b118ce445cdf37 -Author: Cosimo Cecchi -Date: 2011-01-10 - - file-operations: make Create Document/Folder use the right template - - Make Create Document/Folder use "Untitled Document/Template/Folder %d" - filename format. - - Based on a patch by Marcus Husar - . - -M libnemo-private/nemo-file-operations.c - -commit 5846b33c5cd26ec3fe50255c628954d129c8ffc0 -Author: Marcus Husar -Date: 2011-01-10 - - Clean context menu and "File" menu (#618469) - - Also use "Create New Folder/Document". - - Part of https://bugzilla.gnome.org/show_bug.cgi?id=618469 - -M src/file-manager/fm-actions.h -M src/file-manager/fm-directory-view.c -M src/file-manager/nemo-directory-view-ui.xml -M src/nemo-tree-sidebar.c - -commit 0ff4fdb4c8228a358d3a0bc87b63b02751624716 -Author: Fran Diéguez -Date: 2011-01-10 - - Updated Galician translations - -M po/gl.po - -commit 8f9bb67e39a9d32be051416a474c3142539f7c3f -Author: Sjoerd Simons -Date: 2010-12-05 - - Add base libraries so building with --as-needed works - -M nemo-sendto-extension/Makefile.am - -commit 179b688c5938ba12e101a0231ba46199d2de4a5e -Author: Cosimo Cecchi -Date: 2011-01-10 - - window: remove unused code - -M src/nemo-window-private.h -M src/nemo-window.c - -commit b12aeed547664d44b0b552db06a5ec7b6d9b200b -Author: Cosimo Cecchi -Date: 2011-01-10 - - bookmark: compare URIs before names - -M libnemo-private/nemo-bookmark.c - -commit 120797cec00929dac58ac4ac838719dc67e9cae0 -Author: Cosimo Cecchi -Date: 2011-01-10 - - Use a consistent name for the Home folder (#341894) - - Based on a patchset by Marcus Husar - - -M libnemo-private/nemo-bookmark.c -M libnemo-private/nemo-desktop-link.c -M src/file-manager/fm-directory-view.c -M src/nemo-places-sidebar.c -M src/nemo-tree-sidebar.c -M src/nemo-window-menus.c -M src/nemo-window-slot.c - -commit 50e0c03f67072e374f8202ba7a25221fa7f88b99 -Author: Fran Diéguez -Date: 2011-01-09 - - Updated Galician translations - -M po/gl.po - -commit 598ede33ab781b46120d2149c37f47fcb7615ca2 -Author: Yuri Myasoedov -Date: 2011-01-09 - - Updated Russian translation - -M po/ru.po - -commit cd2a6e35c5757c7ca817aeef415873d2d4d8baee -Author: Matej Urbančič -Date: 2011-01-07 - - Updated Slovenian translation - -M po/sl.po - -commit d51bc0c99b0ca6e8bc402b7ae5848e9ced2dab46 -Author: Ivar Smolin -Date: 2011-01-06 - - [l10n] Updated Estonian translation - -M po/et.po - -commit 3ff059dcc1b76a7cde6d7111b9620d373c18b9a8 -Author: Yaron Shahrabani -Date: 2011-01-04 - - Updated Hebrew translation. - -M po/he.po - -commit f8f87d8cca0a9aa54d5a1290576eb0855098ffda -Author: Ivar Smolin -Date: 2011-01-02 - - [l10n] Updated Estonian translation - -M po/et.po - -commit 61476e9e0a776e1db74f73db1b3fa9291d997a83 -Author: Daniel Nylander -Date: 2010-12-29 - - Updated Swedish translation - -M po/sv.po - -commit 09cb61a5cc2b9e5f7b85ae619d2cc2d06bf5ef06 -Author: Daniel Mustieles -Date: 2010-12-29 - - Updated Spanish translation - -M po/es.po - -commit 811f49d1e0981f7414a57004a7fd0df95f64dfd8 -Author: A S Alam -Date: 2010-12-29 - - update Punjabi Translation - -M po/pa.po - -commit ddd507228a8a7a89c0398411f44d30e6ee9d73ed -Author: Cosimo Cecchi -Date: 2010-12-28 - - pathbar: remove buttons only if the gone file is below the current - - This should fix once and for all the crashers when ejecting devices. - -M src/nemo-pathbar.c - -commit 70df8fad8b1ddf470e8600f6e8e9bc953853b419 -Author: Cosimo Cecchi -Date: 2010-12-26 - - desktop-icon-view: don't use deprecated GDK grab API - -M src/file-manager/fm-desktop-icon-view.c - -commit bd151c8174796c1c5b0b6466ef8a0e3a0e214054 -Author: Cosimo Cecchi -Date: 2010-12-26 - - general: don't use deprecated gdk_app_launch_context_new() - -M eel/eel-gnome-extensions.c -M eel/eel-gnome-extensions.h -M libnemo-private/nemo-program-choosing.c -M src/nemo-connect-server-dialog-main.c - -commit 2ff006dd583f58ff2dd687f538e59757a8bd70c4 -Author: Cosimo Cecchi -Date: 2010-12-26 - - canvas: don't use deprecated GDK grab API - -M eel/eel-canvas.c -M eel/eel-canvas.h - -commit 7fa4d2202358940ef5a0dd70eb88996ac371cffd -Author: Gheyret T.Kenji -Date: 2010-12-23 - - Added UG translation - -M po/ug.po - -commit aac9a486cb310c62d1167cfe37118a70d772d41e -Author: Erdal Ronahi -Date: 2010-12-23 - - Updated Kurdish translations - -M po/ku.po - -commit 318a9bd653fb02a7c94e42139377cef5ed254dd2 -Author: Cosimo Cecchi -Date: 2010-12-22 - - Release 2.91.6 - -M NEWS -M configure.in - -commit b569d2cfa31951f67229e3aab00cd7f33c1ff3db -Author: Cosimo Cecchi -Date: 2010-12-22 - - general: use nemo_launch_application instead of gdk_spawn API - -M libnemo-private/nemo-mime-actions.c -M src/file-manager/fm-desktop-icon-view.c -M src/file-manager/fm-directory-view.c -M src/nemo-tree-sidebar.c -M src/nemo-window-menus.c - -commit 77ecdd69b023a16fc4d6d2895dd470c628679168 -Author: Cosimo Cecchi -Date: 2010-12-22 - - program-choosing: don't use gdk_spawn_ API - -M libnemo-private/nemo-program-choosing.c -M libnemo-private/nemo-program-choosing.h - -commit 13b6a5a50db8dd35dbcbbf1d318ba747609dfb70 -Author: Cosimo Cecchi -Date: 2010-12-22 - - eel: don't use gdk_spawn_ API - -M eel/eel-gnome-extensions.c - -commit 74a8f78e2a5b06485c7daf830372a5f7b15a87b8 -Author: Cosimo Cecchi -Date: 2010-12-22 - - general: don't use gdk_cursor_unref() - -M eel/eel-editable-label.c -M libnemo-private/nemo-icon-canvas-item.c -M libnemo-private/nemo-icon-container.c -M src/file-manager/fm-list-view.c -M src/file-manager/fm-properties-window.c -M src/nemo-window.c - -commit 2737d431e44e3e4dc12e9098b6e17881ca28c1f7 -Author: Wouter Bolsterlee -Date: 2010-12-22 - - Updated Dutch translation by Wouter Bolsterlee - -M po/nl.po - -commit 08462d0f0235274f1b6c2b12df47e27932b343ee -Author: Cosimo Cecchi -Date: 2010-12-20 - - Release 2.91.5 - -M NEWS -M configure.in - -commit f42d5aa97de09de7052fa80abda62fabe17dfb13 -Author: Cosimo Cecchi -Date: 2010-12-20 - - smclient: remove XSMP support - - EggSmClient is not well-maintained, and it doesn't seem like it will - ever hit GTK+, and the overall implementation seems to be poorly - tested - and buggy. - - Moreover, moving to 3.0 with nemo being an application, it makes - less sense to have it save opened windows state, as it might not be - always running at all. - -M cut-n-paste-code/libegg/Makefile.am -D cut-n-paste-code/libegg/eggdesktopfile.c -D cut-n-paste-code/libegg/eggdesktopfile.h -D cut-n-paste-code/libegg/eggsmclient-private.h -D cut-n-paste-code/libegg/eggsmclient-xsmp.c -D cut-n-paste-code/libegg/eggsmclient.c -D cut-n-paste-code/libegg/eggsmclient.h -M po/POTFILES.in -M src/Makefile.am -D src/nemo-application-smclient.c -D src/nemo-application-smclient.h -M src/nemo-application.c -M src/nemo-application.h -M src/nemo-main.c - -commit ee06a67a632476b9758cc00eaa573e12cc3cfc91 -Author: Cosimo Cecchi -Date: 2010-12-20 - - mime-app-chooser: use g_app_info_set_as_last_used_for_content_type() - - Instead of add_supports_for_content_type(), which does not save the - order in which custom apps have been used. - -M configure.in -M libnemo-private/nemo-mime-application-chooser.c - -commit b31222dae4c63479e0fe226a761f9c78bf08b6df -Author: Cosimo Cecchi -Date: 2010-12-20 - - mime: remove some useless code - - As GtkAppChooserDialog already takes care of calling - g_app_info_set_as_last_used_for_content_type() - -M libnemo-private/nemo-mime-actions.c -M src/file-manager/fm-directory-view.c - -commit 2c279a4a6b3480bfd3581a3a35c53eac3e996653 -Author: Ivar Smolin -Date: 2010-12-20 - - [l10n] Updated Estonian translation - -M po/et.po - -commit 3fa0ed2ca3e35719422fbc526337b52393d860d2 -Author: Kjartan Maraas -Date: 2010-12-19 - - Updated Norwegian bokmål translation - -M po/nb.po - -commit 9dc65e44c9f8e6c41079c0dc01220fe87fdfcecc -Author: Nguyễn Thái Ngọc Duy -Date: 2010-12-19 - - po/vi.po: import some translations from Ubuntu/Maverick - -M po/vi.po - -commit dd4cecdf8071552f80ba08fdb613a88090719e59 -Author: Yaron Shahrabani -Date: 2010-12-19 - - Updated Hebrew translation. - -M po/he.po - -commit fcfe53d5bd2121e4707e70345f18faa244c2dd75 -Author: Cosimo Cecchi -Date: 2010-12-18 - - Remove reference to a non-existing old trademark notice file. - - https://bugzilla.gnome.org/show_bug.cgi?id=463173 - -M COPYING - -commit 196c8390fcc671ef8399c00936ac7242b118de08 -Author: Jorge González -Date: 2010-12-18 - - Updated Spanish translation - -M po/es.po - -commit 83aeec725d0d3829a54cd700329864a2cab7a21b -Author: Marcus Carlson -Date: 2009-10-11 - - Handle G_IO_ERROR_FILENAME_TOO_LONG errors nicely when renaming files - - https://bugzilla.gnome.org/show_bug.cgi?id=548844 - -M src/file-manager/fm-error-reporting.c - -commit 9403df1b54b442737ed96739aeacf6b6c9b58889 -Author: Colin Walters -Date: 2010-12-17 - - Fix cairo-gobject.h include - - $ pkg-config --cflags cairo-gobject - -pthread -I/src/build/jhbuild/include/cairo - $ ls /src/build/jhbuild/include/cairo/cairo-gobject.h - /src/build/jhbuild/include/cairo/cairo-gobject.h - -M eel/eel-canvas.c - -commit b2d4ac40205e22e63e598ab742b56283acbc8901 -Author: Colin Walters -Date: 2010-12-17 - - nemo.desktop: Remove NoDisplay=true - - For GNOME 3, File Manager is moving towards being an application, - and therefore, we want it to show up in the appliactions list. - -M data/nemo.desktop.in.in - -commit 67d0cbaf0ed7a8f25b3a47abbbaf0feba990e404 -Author: Cosimo Cecchi -Date: 2010-12-17 - - location-entry: don't treat '~' as a relative path - - Based on a patch by Reed Lipman - - https://bugzilla.gnome.org/show_bug.cgi?id=628802 - -M src/nemo-location-entry.c - -commit 184096f912b119edde1f538e8cdd5ea593d753ca -Author: Cosimo Cecchi -Date: 2010-12-17 - - icon-canvas-item: attempt to fix up a11y for NemoIconCanvasItem - - Based on an initial patch by Alban Browaeys . - - https://bugzilla.gnome.org/show_bug.cgi?id=637425 - -M libnemo-private/nemo-icon-canvas-item.c -M libnemo-private/nemo-icon-container.c - -commit 42865d5e82160ccb60fd9a890a22019dcb832527 -Author: Alban Browaeys -Date: 2010-10-27 - - icon-container: remove spurious call to gtk_adjustment_changed() - - https://bugzilla.gnome.org/show_bug.cgi?id=637424 - -M libnemo-private/nemo-icon-container.c - -commit bc5b8bde3070a4fe6071c9a428d38fa93be19314 -Author: Jorge González -Date: 2010-12-15 - - Updated Spanish translation - -M po/es.po - -commit 1746a53cbbd450822ff857c3e1eadf5358b22cfa -Author: Cosimo Cecchi -Date: 2010-12-15 - - application: fix a copy-paste typo - -M src/nemo-application.c - -commit 08f71aa76cd5f250613f4a2833b43a72831974fc -Author: Cosimo Cecchi -Date: 2010-12-15 - - theming: cleanup previous manually parsed CSS - - It's not required anymore, now that we have a proper stylesheet. - -M src/nemo-notebook.c -M src/nemo-window.c - -commit 786ba61680bfaee136b4b72a53f220edb96a7db9 -Author: Cosimo Cecchi -Date: 2010-12-15 - - sidebar: set the NemoSidebar class on the sidebar treeviews - - So they can get the proper background. - -M src/nemo-places-sidebar.c -M src/nemo-tree-sidebar.c - -commit dad5d12770817aa739ab9980faa66972144008a7 -Author: Cosimo Cecchi -Date: 2010-12-15 - - theming: add a CSS file for nemo, and initialize it at startup - -M data/Makefile.am -A data/nemo.css -M src/nemo-application.c - -commit 1c79bf9809b208a57661aaccadd9eb7e78874bcc -Author: Cosimo Cecchi -Date: 2010-12-15 - - connect-server-dialog: properly align labels and entries - - https://bugzilla.gnome.org/show_bug.cgi?id=637326 - -M src/nemo-connect-server-dialog.c - -commit 0a43cee107e20d07667fc2eabf8321898ce80fb7 -Author: Luca Ferretti -Date: 2010-12-15 - - application: fix a typo in user message - -M src/nemo-application.c - -commit 4c026bf53253715251abf076badc4c979cc073c3 -Author: Cosimo Cecchi -Date: 2010-12-15 - - icon-container: don't malloc() GdkRGBA colors manually - - As GdkRGBA might or might not use internally a different allocator, - like - g_slice. - This should fix some memory corruption issues, thanks to Alban - Browaeys - for tracking down the bug. - -M libnemo-private/nemo-icon-container.c - -commit c1d9376601223e5dcca0a4ee47e95a8b93841d68 -Author: Cosimo Cecchi -Date: 2010-12-14 - - spatial-window: don't hook to unrealize for saving geometry - -M src/nemo-spatial-window.c - -commit e4750d78c6be4f935625a3511dbb9c3bc532aa0d -Author: Cosimo Cecchi -Date: 2010-12-14 - - desktop-icon-view: call the gnome-c-c executable to change background - - gnome-appearance-properties does not exist anymore. - -M src/file-manager/fm-desktop-icon-view.c - -commit 5d811bb37ef4a05edd7fa4c5868a9b68f717e056 -Author: Cosimo Cecchi -Date: 2010-12-14 - - icon-dnd: set the right style class, and use GdkRGBA - -M libnemo-private/nemo-icon-dnd.c - -commit 18e3369f02c4ff6a3eb01048e623fff8eb9aded4 -Author: Cosimo Cecchi -Date: 2010-12-14 - - tree-drag-dest: set the right style class - -M libnemo-private/nemo-tree-view-drag-dest.c - -commit 066896047e8d53076913994f9975ee1cb22fbd9d -Author: Cosimo Cecchi -Date: 2010-12-14 - - icon-canvas-item: set the right style class - -M libnemo-private/nemo-icon-canvas-item.c - -commit ef8544bec8437502f2f58c7a9e07bc9e1ecf91a4 -Author: Cosimo Cecchi -Date: 2010-12-13 - - editable-label: use gtk_style_context_get() to query standard props - - Also, fix a leak. - -M eel/eel-editable-label.c - -commit dccf76a36441332e96c40305373876ca32a1b110 -Author: Cosimo Cecchi -Date: 2010-12-13 - - preferences: remove exit-with-last-window preference entirely - - It makes no sense now that nemo doesn't do session services, - such as - autorun, anymore. - -M libnemo-private/nemo-global-preferences.h -M libnemo-private/nemo.convert -M libnemo-private/org.gnome.nemo.gschema.xml.in - -commit 9ef4ac9ee428e7f7952efe33d0784d547ca7bdc6 -Author: Cosimo Cecchi -Date: 2010-12-13 - - application: remove 'exit-with-last-window' preference - - It makes no sense now that nemo doesn't do session services - such as - autorun anymore. - -M src/nemo-application.c - -commit 00e0ae826765aeca4c203b77a5caec4ce2be2fd7 -Author: Cosimo Cecchi -Date: 2010-12-13 - - application: destroy all the widgets when quitting - - Instead of calling _release(). - -M src/nemo-application.c - -commit caa55b7e757a49fb323450152e6a37e1d63eb9fb -Author: Cosimo Cecchi -Date: 2010-12-13 - - editable-label: rename copy/pasted fill renderer to 'eel' prefix - - To avoid library clashes with the GTK+ internal one. - -M eel/eel-editable-label.c - -commit f27c50fb25fee58b9eee6c9edfd26101684eec52 -Author: Jorge González -Date: 2010-12-11 - - Updated Spanish translation - -M po/es.po - -commit f5acdfefc39b235fd1eb9b3bdd3a724cdaa1a7fe -Author: Fran Diéguez -Date: 2010-12-11 - - Updated Galician translations - -M po/gl.po - -commit c0645b53892c1f65b9258e5cc63b701dbcbacfe7 -Author: Fran Diéguez -Date: 2010-12-10 - - Updated Galician translations - -M po/gl.po - -commit eea53d2f740ac25a13eea13baa83ecb493fa24cc -Author: Cosimo Cecchi -Date: 2010-12-07 - - file: initialize variables to stop complaints from compilers (#636643) - -M libnemo-private/nemo-file.c - -commit def31cd34118e4a3daf53819f81a5d7325b8efcb -Author: Cosimo Cecchi -Date: 2010-12-07 - - Release 2.91.4 - -M NEWS -M configure.in - -commit bb68641adf3306675f3b259d0197ef74ecc9ccc0 -Author: Cosimo Cecchi -Date: 2010-12-07 - - dbus-manager: plug a leak - -M libnemo-private/nemo-dbus-manager.c - -commit 7686ba98e4283383f4e0b0146cbc693d041c5697 -Author: Cosimo Cecchi -Date: 2010-12-07 - - icon-container: plug a leak - -M src/file-manager/fm-icon-container.c - -commit 705d8144e5509d7926adec8af3d638b2e88fd837 -Author: Cosimo Cecchi -Date: 2010-12-07 - - icon-info: plug a leak - -M libnemo-private/nemo-icon-info.c - -commit 55869c3c65217f1c4386cf489f391eeb519e797d -Author: Yaron Shahrabani -Date: 2010-12-07 - - Updated Hebrew translation. - -M po/he.po - -commit ee0c6327eeaeaa0a924007cf3b56d2cd63dbe36b -Author: Daniel Șerbănescu -Date: 2010-12-06 - - Updated Romanian translation - -M po/ro.po - -commit 68a3a22297875118797eacb03ff5278024642366 -Author: Daniel Șerbănescu -Date: 2010-12-06 - - Updated Romanian translation - -M po/ro.po - -commit cb70787275e2e44cc2f3b394d1065313998fd1a3 -Author: Cosimo Cecchi -Date: 2010-12-06 - - file-operations: remove duplicate code - - Probably a leftover from NemoFileConflictDialog branch. - -M libnemo-private/nemo-file-operations.c - -commit c739fd781c355e47e4ef3f59e9e4008c230e83ad -Author: Cosimo Cecchi -Date: 2010-12-06 - - dbus-manager: add a 'CopyFile' remote method - - The interface mimics the nemo_file_operations_copy_file() I just - committed. - -M libnemo-private/nemo-dbus-manager.c - -commit 4be5d548a438b2b3c02f3e7e7e0265f4c8b641fe -Author: Cosimo Cecchi -Date: 2010-12-06 - - file-operations: add nemo_file_operations_copy_file - - Copies a single file to a target directory, allowing to specify - a custom - target display name, and a custom source display name, which will be - shown in the FileOperations dialog instead of the actual file name. - -M libnemo-private/nemo-file-operations.c -M libnemo-private/nemo-file-operations.h - -commit 52b8185908725ba9842f3d2ce8c29d7b7e3d520f -Author: Cosimo Cecchi -Date: 2010-12-06 - - file-conflict-dialog: don't use override_font - - Set the PangoAttributeList on the GtkLabel instead. - -M libnemo-private/nemo-file-conflict-dialog.c - -commit e3feaf8d6848a92e3d077d04177e7a637b6e628b -Author: Cosimo Cecchi -Date: 2010-12-06 - - editable-label: make the rename rectangle look a bit better - - Still not perfect, but still... - -M eel/eel-editable-label.c - -commit 2e5f7a23350016c67bb9e9cca86a9fb2360d79e2 -Author: Cosimo Cecchi -Date: 2010-12-06 - - icon-container: fix rendering of text on the desktop - -M libnemo-private/nemo-icon-canvas-item.c -M libnemo-private/nemo-icon-container.c - -commit ca9f8d8906b85a4f806d713030d02efc34fd7170 -Author: Cosimo Cecchi -Date: 2010-12-06 - - editable-label: copy-paste code from GTK+ to sync drawing with - GtkLabel - -M eel/eel-editable-label.c - -commit 465f576edaf1c8b952ec152884d55db985f10778 -Author: Cosimo Cecchi -Date: 2010-12-06 - - window: pkug a leak - -M src/nemo-window.c - -commit 1ee7fc84fe8232bfc57ba832642185b2829dcc8e -Merge: 1c31b7a b5302eb -Author: Cosimo Cecchi -Date: 2010-12-06 - - Merge branch 'style-context' - -commit b5302ebfc104aec7cc480931ede752efe9cc4325 -Author: Cosimo Cecchi -Date: 2010-12-06 - - eel: remove unused code - -M eel/eel-gdk-extensions.c -M eel/eel-gdk-extensions.h -M eel/eel-gtk-extensions.c -M eel/eel-lib-self-check-functions.h - -commit 1d3dd9693de26d91d60ed7a11f6f14df8478f6a6 -Author: Cosimo Cecchi -Date: 2010-12-06 - - eel-gdk-extensions: port to GtkStyleContext - -M eel/eel-gdk-extensions.c -M eel/eel-gdk-extensions.h - -commit 076886e9a45e8dce101f1d98eb5c4168c8ded311 -Author: Cosimo Cecchi -Date: 2010-12-06 - - window: port to GtkStyleContext - -M src/nemo-window.c - -commit 507b56e3a527e28117b259dbf0dce48f1656dd7d -Author: Cosimo Cecchi -Date: 2010-12-06 - - spatial-window: port to GtkStyleContext - -M src/nemo-spatial-window.c - -commit bc5d2904fd3338455579c77781c357fe85a86913 -Author: Cosimo Cecchi -Date: 2010-12-06 - - notebook: port to GtkStyleContext - -M src/nemo-notebook.c - -commit 5fc40adf98a384f4638401d7b7ced79da6ce2b87 -Author: Cosimo Cecchi -Date: 2010-12-06 - - location-bar: port to GtkStyleContext - -M src/nemo-location-bar.c - -commit 8e5689b5ff9fb1fedf2a1102f429f4f67e811e09 -Author: Cosimo Cecchi -Date: 2010-12-06 - - properties-window: port to GtkStyleContext - -M src/file-manager/fm-properties-window.c - -commit d7c576dbc1116139a29b7d263070283c47726ba2 -Author: Cosimo Cecchi -Date: 2010-12-06 - - list-view: port to GtkStyleContext - - Setting inactive pane doesn't work here yet, probably due to a bug in - GTK+. - -M src/file-manager/fm-list-view.c - -commit f8bdf9c68ae156506d04f198e054e9488845c173 -Author: Cosimo Cecchi -Date: 2010-12-06 - - tree-view-drag-dest: port to GtkStyleContext - -M libnemo-private/nemo-tree-view-drag-dest.c - -commit 4f23a0a89b14757dc86459c399ff6a9719bb4e01 -Author: Cosimo Cecchi -Date: 2010-12-06 - - icon-container: port to GtkStyleContext - -M libnemo-private/nemo-icon-container.c -M libnemo-private/nemo-icon-dnd.c -M libnemo-private/nemo-icon-private.h - -commit fc74332e3bbcc20094ab58631666b477640e2aeb -Author: Cosimo Cecchi -Date: 2010-12-06 - - icon-canvas-item: port to GtkStyleContext - -M libnemo-private/nemo-icon-canvas-item.c - -commit 5da941e338b159c42a4b4f2581573635e3d68b11 -Author: Cosimo Cecchi -Date: 2010-12-06 - - file-conflict-dialog: port to GtkStyleContext - -M libnemo-private/nemo-file-conflict-dialog.c - -commit 020adaf997cc63a2b78ccb21c34b7f7f5244008e -Author: Cosimo Cecchi -Date: 2010-12-06 - - eel-gdk-pixbuf: use GdkRGBA everywhere - -M eel/eel-gdk-pixbuf-extensions.c -M eel/eel-gdk-pixbuf-extensions.h -M eel/eel-graphic-effects.c -M eel/eel-graphic-effects.h - -commit d6e07c7803b3d70968e7a37bcf1ef730b8ca4bac -Author: Cosimo Cecchi -Date: 2010-12-06 - - editable-label: port to GtkStyleContext - - There are still some rendering artifacts, but we will fix them later. - -M eel/eel-editable-label.c - -commit 5cf60d2aa1e8fd9856aed886cce6bd746f4a8074 -Author: Cosimo Cecchi -Date: 2010-12-06 - - eel-canvas: build fix for gdk_window_get_geometry API change - -M eel/eel-canvas.c - -commit 0a3aff84fececf1cfce0969ac173a736d2014130 -Author: Cosimo Cecchi -Date: 2010-12-06 - - eel-canvas: port to GtkStyleContext - -M eel/eel-canvas.c -M eel/eel-canvas.h - -commit f0691e71c58bba402d896f0a236e4bd10b6e5760 -Author: Cosimo Cecchi -Date: 2010-12-06 - - eel-canvas-re: use RGBA colors only - -M eel/eel-canvas-rect-ellipse.c -M eel/eel-canvas-rect-ellipse.h - -commit 1c31b7ab0d8ed7122f385395f6844006aa4a41e2 -Author: Andre Klapper -Date: 2010-12-06 - - Fix POTFILES.in to make intltool-update work again - -M po/POTFILES.in - -commit a68bf9c76a9073db3247e8dd1e92c0c1b3b98727 -Author: Fran Diéguez -Date: 2010-12-05 - - Updated Galician translations - -M po/gl.po - -commit 59670a59c9b53a59ef587767c3e7be247b0f11cf -Author: Cosimo Cecchi -Date: 2010-12-04 - - icon-container: apply emblems from FmIconContainer - - This simplifies the code a bit, and also fixes emblem sizes for - thumbnails. - -M libnemo-private/nemo-icon-container.c -M libnemo-private/nemo-icon-container.h -M src/file-manager/fm-icon-container.c - -commit 1004a7df4357fb2772ad4289b997b16ef799fc34 -Author: Cosimo Cecchi -Date: 2010-12-04 - - file: add some debug messages for getting icons - -M libnemo-private/nemo-file.c - -commit 55098c48a050a226fdb7168440fdbeb1a1fd5da0 -Author: Cosimo Cecchi -Date: 2010-12-04 - - debug: add a flag for NemoFile - -M libnemo-private/nemo-debug.c -M libnemo-private/nemo-debug.h - -commit b97bad42e62d7d13d257a7785fa1b91943a0758f -Author: Cosimo Cecchi -Date: 2010-12-04 - - file-management-properties: open only one preferences window (#442263) - -M src/nemo-file-management-properties.c -M src/nemo-file-management-properties.h -M src/nemo-window-menus.c - -commit 1c5794a5a520ea9bdfa3865b9db702f484cabfe0 -Author: Cosimo Cecchi -Date: 2010-12-04 - - settings: remove notes and history sidebar from GSettings schemas - -M libnemo-private/org.gnome.nemo.gschema.xml.in - -commit 69e432cf94d31f07cf1d193e1fd25a693cfdc173 -Author: Cosimo Cecchi -Date: 2010-12-03 - - navigation-window: plug a leak - -M src/nemo-navigation-window.c - -commit 1eac9e307787d773ac1598d79df965d5be684f38 -Merge: 2a20b38 7bce748 -Author: Cosimo Cecchi -Date: 2010-12-03 - - Merge branch 'ui-polish' - -commit 7bce7484e9cf5389582fd70c509abd2541ac04e5 -Author: Cosimo Cecchi -Date: 2010-12-03 - - tree-sidebar: rename and move to src/ - -M src/Makefile.am -M src/file-manager/Makefile.am -M src/nemo-navigation-window.c -R099 src/file-manager/fm-tree-model.c -src/nemo-tree-sidebar-model.c -R100 src/file-manager/fm-tree-model.h -src/nemo-tree-sidebar-model.h -R099 src/file-manager/fm-tree-view.c src/nemo-tree-sidebar.c -R100 src/file-manager/fm-tree-view.h src/nemo-tree-sidebar.h - -commit b37e7b126e70b623e86b09c69f3f7839368e0604 -Author: Cosimo Cecchi -Date: 2010-12-03 - - notes-sidebar: remove NemoNotesViewer - - An ancient almost-hidden feature that just doesn't fit with the - current - design. - -M po/POTFILES.in -M src/Makefile.am -D src/nemo-notes-viewer.c -D src/nemo-notes-viewer.h - -commit 8bba34a56ca1fd9ae70b7821ed7b7be48d6cc8f1 -Author: Cosimo Cecchi -Date: 2010-12-03 - - side-pane: remove NemoSidePane - - It's an useless container now that we changed our sidebar handling. - -M po/POTFILES.in -M src/Makefile.am -D src/nemo-side-pane.c -D src/nemo-side-pane.h - -commit 369f2490308b615d3d9b2c86b428f18d721dff33 -Author: Cosimo Cecchi -Date: 2010-12-03 - - window: update for the removal of sidebar interfaces - - The window now just creates one of the two sidebars, and listens to - GSettings changes for toggling between the two. - -M src/nemo-navigation-window-menus.c -M src/nemo-navigation-window-ui.xml -M src/nemo-navigation-window.c -M src/nemo-navigation-window.h -M src/nemo-window-private.h -M src/nemo-window.h - -commit 24ba7de3289225145faf2f85f05faef67370d447 -Author: Cosimo Cecchi -Date: 2010-12-03 - - places-sidebar: don't implement NemoSidebar/Provider anymore - -M src/nemo-places-sidebar.c -M src/nemo-places-sidebar.h - -commit 1fe934a9955579103b72cd86c5ba83b9c7b4966a -Author: Cosimo Cecchi -Date: 2010-12-03 - - tree-sidebar: don't implement NemoSidebar/Provider anymore - -M src/file-manager/fm-tree-view.c -M src/file-manager/fm-tree-view.h - -commit 3905444bd00e45cfbbe897c1da9de7f2d2c393e2 -Author: Cosimo Cecchi -Date: 2010-12-03 - - sidebar: remove NemoSidebar and NemoSidebarProvider - - We'll hardcode two sidebars (Places and Tree) from now on, so - there's no - need for these generic interfaces now. - -M libnemo-private/Makefile.am -D libnemo-private/nemo-sidebar-provider.c -D libnemo-private/nemo-sidebar-provider.h -D libnemo-private/nemo-sidebar.c -D libnemo-private/nemo-sidebar.h - -commit bc8c0f2fb18365f84045d0bfd6107d8541fbba59 -Author: Cosimo Cecchi -Date: 2010-12-03 - - application: don't register sidebars anymore - -M src/nemo-application.c - -commit 0bfd0a8d7d69058d486ab30580e2623166a5a555 -Author: Cosimo Cecchi -Date: 2010-12-03 - - sidebar: remove NemoHistorySidebar - - This is part of the 3.0 redesign plans. - -M po/POTFILES.in -M src/Makefile.am -M src/nemo-application.c -D src/nemo-history-sidebar.c -D src/nemo-history-sidebar.h - -commit 2a20b38c4dc870d8f3a85dae222c125a77f40229 -Author: Michael Terry -Date: 2010-11-26 - - Add --print-uri option - -M src/nemo-connect-server-dialog-main.c - -commit 7e794ed30195f15e78b6d96a9064681a128e41d6 -Author: Cosimo Cecchi -Date: 2010-12-03 - - search-engine: remove Beagle support - -M libnemo-private/Makefile.am -D libnemo-private/nemo-search-engine-beagle.c -D libnemo-private/nemo-search-engine-beagle.h -M libnemo-private/nemo-search-engine.c - -commit fdae502d65f3c40dee4d418bd9d21270940aa93d -Author: Cosimo Cecchi -Date: 2010-12-03 - - libnemo-extension: use a different directory for 3.0 - - So that old extensions do not pull in GTK+2 code. - - https://bugzilla.gnome.org/show_bug.cgi?id=624244 - -M configure.in -M libnemo-extension/Makefile.am -M libnemo-extension/libnemo-extension-uninstalled.pc.in -M libnemo-extension/libnemo-extension.pc.in -M libnemo-private/Makefile.am -M nemo-sendto-extension/Makefile.am - -commit d9331ae959593cd81f59b39d61597278162ac7eb -Author: Matthias Clasen -Date: 2010-12-02 - - Fix the build with latest GTK+ - - Various GdkDrawable APIs have been replaced by GdkWindow ones, - and GtkFunction is no more, use GSourceFunc instead. - -M libnemo-private/nemo-icon-container.c -M libnemo-private/nemo-tree-view-drag-dest.c -M src/nemo-desktop-window.c - -commit 8ee6c67b5fe1b12999c2e2f4c7f42d85a497c233 -Author: Cosimo Cecchi -Date: 2010-12-02 - - dbus-manager: add DEBUG messages for NemoDBusManager - -M libnemo-private/nemo-dbus-manager.c -M libnemo-private/nemo-debug.c -M libnemo-private/nemo-debug.h - -commit 5433f57cec515bce9bddecc8a569aa02b597a75e -Author: Cosimo Cecchi -Date: 2010-12-02 - - debug: fix a stupid typo - -M libnemo-private/nemo-debug.c - -commit 46d6bbb1208c409b8507dc31ef6aaf895b55ba92 -Author: Cosimo Cecchi -Date: 2010-12-02 - - debug: check for flags in DEBUG_FILES - -M libnemo-private/nemo-debug.c - -commit a440c05ceebdbfc21c8e585087574c7827e5f1f2 -Author: Cosimo Cecchi -Date: 2010-12-02 - - eel-debug: remove unused code - -M eel/eel-debug.c -M eel/eel-debug.h - -commit 2f90dc16bc0a9b9fb5e862ad5759aed04b98872c -Author: Cosimo Cecchi -Date: 2010-12-02 - - debug-log: nuke nemo-debug-log - -M libnemo-private/Makefile.am -D libnemo-private/nemo-debug-log.c -D libnemo-private/nemo-debug-log.h - -commit 2c9da31ce8252d32eae502b584379d53631f1a91 -Author: Cosimo Cecchi -Date: 2010-12-02 - - main: don't hook up with nemo-debug-log - -M src/nemo-main.c - -commit 218670bd1f1f9d8f980460c9f2ed721ff57c04a7 -Author: Cosimo Cecchi -Date: 2010-12-02 - - general: use new DEBUG macros instead of nemo_debug_log - -M libnemo-private/nemo-file-operations.c -M libnemo-private/nemo-icon-container.c -M libnemo-private/nemo-icon-dnd.c -M libnemo-private/nemo-mime-actions.c -M libnemo-private/nemo-tree-view-drag-dest.c -M src/file-manager/fm-directory-view.c -M src/file-manager/fm-error-reporting.c -M src/file-manager/fm-list-view.c -M src/file-manager/fm-tree-view.c -M src/nemo-application-smclient.c -M src/nemo-application.c -M src/nemo-places-sidebar.c -M src/nemo-window-manage-views.c - -commit 695b2d933406b039fb46592b90b5f844d381490c -Author: Cosimo Cecchi -Date: 2010-12-02 - - debug: add a new, simpler nemo-debug module, based on Empathy's - - We lose dumping the log to a file automatically, but we gain a lot in - flexibility. - -M configure.in -A libnemo-private/nemo-debug.c -A libnemo-private/nemo-debug.h - -commit b2edace4164fbec353bba497ebb34914864bcd1a -Author: Cosimo Cecchi -Date: 2010-12-02 - - dbus-manager: add an EmptyTrash operation - -M libnemo-private/nemo-dbus-manager.c - -commit 2e210578261c9060111efba1a705c78ff2c369b9 -Author: Cosimo Cecchi -Date: 2010-12-02 - - dbus-manager: implement the CopyURIs method - -M libnemo-private/nemo-dbus-manager.c -M libnemo-private/nemo-dbus-manager.h - -commit 5c9f1adb43052b19499f6ff1ad403f2222f0e091 -Author: Cosimo Cecchi -Date: 2010-12-02 - - application: make the application-id not clash with the dbus interface - -M src/nemo-application.c - -commit b238be002e446e102e056b8484666f21feb6b6f2 -Author: Cosimo Cecchi -Date: 2010-12-01 - - dbus-manager: add a skeleton of NemoDBusManager - -M libnemo-private/Makefile.am -A libnemo-private/nemo-dbus-manager.c -A libnemo-private/nemo-dbus-manager.h -M src/nemo-application.c - -commit 41b91ea64d9731a48ffab621e293f7ff05d88acd -Author: Cosimo Cecchi -Date: 2010-12-01 - - icon-canvas-item: tweak the resize bounding box color according - to style - -M libnemo-private/nemo-icon-canvas-item.c - -commit 7bd06fab98c2c61a170535b6ebd94da1a4db7466 -Author: Cosimo Cecchi -Date: 2010-12-01 - - icon-dnd: fix DnD highlighting regression - -M libnemo-private/nemo-icon-dnd.c - -commit 8cb07ccf2ddcf0cb8557c763f8905558d67736de -Author: Benjamin Otte -Date: 2010-12-01 - - eel: Use future-safe macro to query the X display - -M eel/eel-canvas-rect-ellipse.c - -commit c2c4076ceb2216ff5e696b4e78aeb63e0f86c437 -Author: Benjamin Otte -Date: 2010-12-01 - - Remove unnecessary drawable cast - -M libnemo-private/nemo-icon-dnd.c - -commit 1cfc56563e6cf867af5e3a98cfb9c87281b5f4c2 -Author: Cosimo Cecchi -Date: 2010-12-01 - - build: bump required GTK+ version - -M configure.in - -commit de8cb567358f658c167b9413a077b681123ab056 -Author: Cosimo Cecchi -Date: 2010-12-01 - - mime-application-chooser: plug a leak - -M libnemo-private/nemo-mime-application-chooser.c - -commit 466fe29b2d1790b8f61d854b0294205a9f437fd2 -Author: Cosimo Cecchi -Date: 2010-12-01 - - mime-actions: remove unused code - -M libnemo-private/nemo-mime-actions.c -M libnemo-private/nemo-mime-actions.h - -commit fe8ffd8635abfcf280e06c9385bfae4dd01621a4 -Author: Cosimo Cecchi -Date: 2010-12-01 - - program-choosing: remove commented out code - -M libnemo-private/nemo-program-choosing.c - -commit c0b34d1f07b2b1b1f11f1dbab75f8b3303543078 -Author: Cosimo Cecchi -Date: 2010-12-01 - - i18n: update POTFILES.in - -M po/POTFILES.in - -commit c745b5c50ea9e103861cafb4ce210b375034dd8d -Author: Cosimo Cecchi -Date: 2010-12-01 - - mime-application-chooser: add a 'Show other applications' button - - Similar to GtkAppChooserDialog; the 'Add' button now adds the - currently - selected application, and it becomes insensitive when necessary. - -M libnemo-private/nemo-mime-application-chooser.c - -commit 677c52173a1f5ba1a8e3db8c70cd96f27fb90200 -Author: Cosimo Cecchi -Date: 2010-11-30 - - mime-application-chooser: tweak buttons ordering - -M libnemo-private/nemo-mime-application-chooser.c - -commit 2d58f04289c31c4a7de9318327e3edd111d8735d -Author: Cosimo Cecchi -Date: 2010-11-30 - - mime-application-chooser: use populate-popup for removing apps - - Instead of having yet another button. - -M libnemo-private/nemo-mime-application-chooser.c - -commit 3e5dcec59709514b2998963b539ec77ed9d5c46f -Author: Cosimo Cecchi -Date: 2010-11-23 - - open-with-dialog: remove NemoOpenWithDialog - - It's useless now that we ported everything to GtkAppChooser. - -M libnemo-private/Makefile.am -D libnemo-private/nemo-open-with-dialog.c -D libnemo-private/nemo-open-with-dialog.h - -commit f83be2507361b337fb7eaf59a50cdca7f49ca53c -Author: Cosimo Cecchi -Date: 2010-11-23 - - properties-window: use new NemoMimeApplicationChooser API - -M src/file-manager/fm-properties-window.c - -commit e86ded0eb9842eb9d4a0ac6c83333e9ce3ffcd0e -Author: Cosimo Cecchi -Date: 2010-11-23 - - mime-application-chooser: rewrite to make it use GtkAppChooserWidget - -M libnemo-private/nemo-mime-application-chooser.c -M libnemo-private/nemo-mime-application-chooser.h - -commit 7734204774ab87e07ddec50acbb62e3f9acd1120 -Author: Cosimo Cecchi -Date: 2010-11-23 - - mime-actions: port to GtkAppChooserDialog - -M libnemo-private/nemo-mime-actions.c - -commit 34a18d5b19df317bf19e4fdc67ea0c4007ed0375 -Author: Cosimo Cecchi -Date: 2010-11-23 - - directory-view: port to GtkAppChooserDialog - -M libnemo-private/nemo-mime-actions.c -M src/file-manager/fm-directory-view.c - -commit d7acbb0c1d58205f5c97d7c80fde034088feef9f -Author: Jorge González -Date: 2010-11-30 - - Updated Spanish translation - -M po/es.po - -commit 20c94e66a20a9d2d4643ce58b2696bbf5e5334b8 -Author: Cosimo Cecchi -Date: 2010-11-30 - - build: remove old X_LIBS variable - -M eel/Makefile.am - -commit fd03f393a55ea377583b821f578951b3ace237a5 -Author: Cosimo Cecchi -Date: 2010-11-30 - - docs: remove manual for nemo-file-management-properties - - The binary is not installed anymore. - -M docs/Makefile.am -D docs/nemo-file-management-properties.1 - -commit 41059f897c33f981ce03c1dd62bcbbd20a53c52d -Author: Cosimo Cecchi -Date: 2010-11-29 - - Release 2.91.3 - -M NEWS -M configure.in - -commit b83c479d40b86d8a4e537a1c30d2375a1277898c -Author: Cosimo Cecchi -Date: 2010-11-29 - - i18n: update POTFILES.in - -M po/POTFILES.in - -commit b088cc0bcf36bcbf4551de2e972b44423c92fb4f -Author: Cosimo Cecchi -Date: 2010-11-29 - - gsettings: remove org.gnome.media-handling gschemas from nemo - - They don't belong here anymore now that the media preferences - have been - moved elsewhere. - -M libnemo-private/Makefile.am -M libnemo-private/nemo.convert -D libnemo-private/org.gnome.media-handling.gschema.xml.in - -commit 6cb06b98d4c492ec774b9335565994190857c82d -Author: Daniel Nylander -Date: 2010-11-28 - - Updated Swedish translation - -M po/sv.po - -commit 92706c7ce3bd9dd703d7ad118e6bb95723e6cdd8 -Author: Victor Osadci -Date: 2010-11-27 - - query-editor: identify ogg/vorbis files as music (#365095) - -M src/nemo-query-editor.c - -commit aa9b6675d8a92329a7cba69c9bdb53fa30f87858 -Author: Cosimo Cecchi -Date: 2010-11-26 - - connect-dialog: use the correct string for gvfs (#635431) - -M src/nemo-connect-server-dialog.c - -commit 9d2d96fd2968e8f8a9b1f3a46660f27d6377f145 -Author: Cosimo Cecchi -Date: 2010-11-25 - - autorun: remove nemo-autorun.[ch] - -M libnemo-private/Makefile.am -D libnemo-private/nemo-autorun.c -D libnemo-private/nemo-autorun.h -M po/POTFILES.in - -commit 912320008beae418d71a74361c1a0d9bcdae6f60 -Author: Cosimo Cecchi -Date: 2010-11-25 - - autorun: move get_x_content_types_for_mount () to file-utilities - - So that we can remove nemo-autorun.[ch] - -M libnemo-private/nemo-file-utilities.c -M libnemo-private/nemo-file-utilities.h -M src/file-manager/fm-directory-view.c -M src/nemo-window-manage-views.c - -commit 9281506c5b264e81a4610a4f6a20f2a42eab207b -Author: Cosimo Cecchi -Date: 2010-11-25 - - autorun: move nemo_launch_application_for_mount () - - Also add the parent window parameter to it, so that we get startup - notification. - -M libnemo-private/nemo-autorun.c -M libnemo-private/nemo-autorun.h -M libnemo-private/nemo-program-choosing.c -M libnemo-private/nemo-program-choosing.h -M src/nemo-x-content-bar.c - -commit 7c71b7f383ece8ad9be39fcb28b9377364a35cb3 -Author: Tomas Bzatek -Date: 2010-11-23 - - Prevent showing asserts when GFile is no longer valid after unmount - -M src/nemo-application.c - -commit 36965ee18ed890f6899588df730345986213d7d1 -Author: Tomas Bzatek -Date: 2010-11-23 - - Includes cleanup - -M libnemo-private/nemo-autorun.c -M libnemo-private/nemo-autorun.h - -commit e4fb850f0fb43a08ebca016c31fece6211073cb7 -Author: Tomas Bzatek -Date: 2010-11-23 - - Remove media preferences GSettings stuff - -M libnemo-private/nemo-global-preferences.c -M libnemo-private/nemo-global-preferences.h - -commit 33df383a2692dd8d8aba802710da28a6063f3bbc -Author: Tomas Bzatek -Date: 2010-11-23 - - Remove unused autorun code - -M libnemo-private/nemo-autorun.c -M libnemo-private/nemo-autorun.h - -commit 9729357aa457bbc78e6e2370015b6ccb3e73cbf6 -Author: Tomas Bzatek -Date: 2010-11-23 - - Don't autorun on nemo_file_operations_mount_volume() - -M libnemo-private/nemo-file-operations.c -M libnemo-private/nemo-file-operations.h -M src/nemo-places-sidebar.c - -commit ab7d5069f1658edbf6516f441801d0d2599f658b -Author: Tomas Bzatek -Date: 2010-11-23 - - Drop obsolete eject-button signal watch - -M src/nemo-application.c - -commit 045224ee72d896499fc0b04ced7dccb3e135e177 -Author: Tomas Bzatek -Date: 2010-11-23 - - Includes cleanup - -M libnemo-private/nemo-mime-actions.c -M libnemo-private/nemo-vfs-file.c -M src/nemo-file-management-properties.c -M src/nemo-places-sidebar.c - -commit 8e0a51410a116ce875d04d205d3e89398bfae970 -Author: Tomas Bzatek -Date: 2010-11-23 - - Remove autorun after mount - - This way we lose ability to focus already open windows after mount. - Since gnome-settings-daemon uses default folder handler to show - freshly - mounted folder, there's little we can do. - -M src/nemo-application.c - -commit cdae5fea2a466bf09ef236499e9c442888516cb1 -Author: Tomas Bzatek -Date: 2010-11-23 - - Don't automount volumes on nemo startup - -M src/nemo-application.c -M src/nemo-application.h - -commit 36831040af2e262ee8e66768152d2057139af8b8 -Author: Cosimo Cecchi -Date: 2010-11-15 - - file-management-properties: remove the properties binary - - We are moving the Media preferences to a separate control-center - panel, - as they're desktop-wide settings. The actual autorun/automount will be - handled by gnome-settings-daemon. - - The result is that we don't need to install our old - gnome-control-center - capplet anymore, so we can remove all this code. - -M configure.in -M data/Makefile.am -D data/nemo-file-management-properties.desktop.in.in -M src/Makefile.am -D src/nemo-file-management-properties-main.c -M src/nemo-file-management-properties.c -M src/nemo-file-management-properties.ui - -commit a6f4e065a66eeb5d74322bfb5cfd4320135a61d1 -Author: Kjartan Maraas -Date: 2010-11-20 - - Updated Norwegian bokmål translation - -M po/nb.po - -commit b28340da1b97026938035fdb8544c4b8722ecdc9 -Author: Gheyret T.Kenji -Date: 2010-11-20 - - Added UG translation - -M po/ug.po - -commit df382f58d0ec2a1b779cf80048ad70944c8859df -Author: Tomas Bzatek -Date: 2010-11-16 - - Use G_SETTINGS_BIND_INVERT_BOOLEAN where appropriate - -M src/nemo-file-management-properties.c - -commit a5caa0e98c844a23656cafaa9b6f985dada7bc51 -Author: Javier Jardón -Date: 2010-11-16 - - Use GSourceFunc instead GtkFunction - -M libnemo-private/nemo-dnd.c -M libnemo-private/nemo-dnd.h -M libnemo-private/nemo-icon-container.c - -commit 812fcf2fbf4da7c97a6fc9eca1c64f9c9c225c90 -Author: Daniel Șerbănescu -Date: 2010-11-14 - - Updated Romanian translation - -M po/ro.po - -commit d9d2ed6cde69ce2ffb2fdd6028e36a0e760672a8 -Author: Lucian Adrian Grijincu -Date: 2010-11-14 - - Updated Romanian translation - -M po/ro.po - -commit e7d2c7468f0b04e6ee87981c291d6f2ed1aa87bb -Author: Theppitak Karoonboonyanan -Date: 2010-11-14 - - Updated Thai translation. - -M po/th.po - -commit f7b5d4b653317f080547c7b18649fd45531772a4 -Author: Gheyret T.Kenji -Date: 2010-11-13 - - Added UG translation - -M po/ug.po - -commit 5afa93854e2bde4f89910cff3a98546a66d880d2 -Author: Baptiste Mille-Mathias -Date: 2010-11-12 - - libgnome-desktop build fixes - - More porting from libgnome* to libgnome-desktop to fix build breakage - -M eel/eel-gnome-extensions.c -M libnemo-private/nemo-thumbnails.c -M src/file-manager/fm-properties-window.c - -commit 7c042f64ee59d9f149252f7e78e11ca6ad7d9dbe -Author: Cosimo Cecchi -Date: 2010-11-12 - - application: fix interaction with the session manager - - The porting to GApplication broke the session management code - that took - care of saving and loading existing windows if the session saving is - active. - - We now fix it by changing a bit our startup process, so that the - EggSMClient object is actually created at the right time. - -M src/nemo-application-smclient.c -M src/nemo-application-smclient.h -M src/nemo-application.c -M src/nemo-application.h - -commit fb574c106185e773449a6d92bd54512b2074dd01 -Author: Florian Müllner -Date: 2010-11-11 - - desktop-background: Fix include - - The file gnome-bg.h was moved from libgnomeui to libgnome-desktop. - -M configure.in -M libnemo-private/nemo-desktop-background.c - -commit a2eb813e14be86168173e4f95385934feddf2937 -Author: Javier Jardón -Date: 2010-11-11 - - Use gtk_separator_new() instead gtk_[h|v]separator_new() - -M libnemo-private/nemo-column-chooser.c -M src/file-manager/fm-properties-window.c - -commit 3b586c5e61ce80a527f2abdc6d3e45189fee6985 -Author: Tomas Bzatek -Date: 2010-11-10 - - Bump gnome-desktop requirement for new gnome-bg - -M configure.in - -commit 87d8e557c13f3d51098cfe03cf2727102e8a8937 -Author: Cosimo Cecchi -Date: 2010-11-10 - - Release 2.91.2 - -M NEWS -M configure.in - -commit 7b1c3ddd655977e3a26365942d21d83abed1f75d -Author: Cosimo Cecchi -Date: 2010-11-09 - - file: remove nemo_file_get_emblem_pixbufs() - - It's not used anymore. - -M libnemo-private/nemo-file.c -M libnemo-private/nemo-file.h - -commit 6a276d59af54413c59188ffb0143ffa6e1fe94a1 -Author: Cosimo Cecchi -Date: 2010-11-09 - - icon-container: don't care about the emblem size - - Use only GIcons for emblems, not pixbufs. We used to rely on - pixbufs to - get emblems at a specific size, but that's not important anymore now - that GTK+ takes care of it internally. - -M libnemo-private/nemo-icon-container.c -M libnemo-private/nemo-icon-container.h -M src/file-manager/fm-icon-container.c - -commit b118093fbc2b5a236a4502ac6e053ab9e64a9db1 -Author: Tomas Bzatek -Date: 2010-11-09 - - Port desktop background handling to GSettings - - See bug 626018 for details. - -M libnemo-private/nemo-desktop-background.c - -commit 36f64c7f85e305939ec9d5ddb7bb7a6a121c0c08 -Author: Matej Urbančič -Date: 2010-11-06 - - Updated Slovenian translation - -M po/sl.po - -commit 8fd2694ee06fbbfc0cc9452b6ce5cc0a27ff160b -Author: Cosimo Cecchi -Date: 2010-11-05 - - icon-canvas-item: remove the emblem layouting code - - We can directly use GTK+ for this now. - -M libnemo-private/nemo-icon-canvas-item.c - -commit 79a9c6a36256d430459b4d2a7bc37e0d691c8e5a -Author: Cosimo Cecchi -Date: 2010-11-05 - - sq - -M libnemo-private/nemo-icon-container.c - -commit a728e7b830ebeccfba6d851a5b005033ba07189b -Author: Cosimo Cecchi -Date: 2010-11-05 - - icon-container: apply emblems directly on the pixbuf - - Do that before setting the pixbuf to the NemoIconCanvasItem, - so the - logic in there can be removed. - -M libnemo-private/nemo-icon-container.c - -commit e72391a9cecd0fe11458a6633edde3e800a797aa -Author: Cosimo Cecchi -Date: 2010-11-05 - - general: use GdkPixbuf/GIcon interface to set emblems in treeviews - - So that emblems get composited for us also on pixbufs such as - thumbnails. - -M configure.in -M src/file-manager/fm-list-model.c -M src/file-manager/fm-tree-model.c - -commit 4882f2ac24dfcf33e06e5e9a06dd2cd0368069ec -Author: Cosimo Cecchi -Date: 2010-11-04 - - application: fix some bad interactions with GApplication - -M src/nemo-application.c -M src/nemo-application.h - -commit e038864cdaf728b1a8407dfb8e5949cf467b72b7 -Author: Ivar Smolin -Date: 2010-11-03 - - [l10n] Updated Estonian translation - -M po/et.po - -commit 72b34f160a49edc40dccfb435330e30cd14feb9c -Author: Yaron Shahrabani -Date: 2010-11-03 - - Updated Hebrew translation. - -M po/he.po - -commit a0c3d8e339625eb1f84b769a4f81fd73785556bc -Author: Takayuki KUSANO -Date: 2010-11-03 - - Updated Japanese translation - -M po/ja.po - -commit 805a147bac55d38464f97ce933b33b8e7e42432d -Author: Fran Diéguez -Date: 2010-11-03 - - Updated Galician translations - -M po/gl.po - -commit 373683da693e6f4a768c7eb6f1fc793315c23db7 -Author: Cosimo Cecchi -Date: 2010-11-02 - - pathbar: fix crasher when unmounting volumes (#627901) - -M src/nemo-pathbar.c - -commit 57f92209189de791904b014f49b8a383ca1a5bd2 -Author: Cosimo Cecchi -Date: 2010-11-02 - - build: use X11 pkg-config files instead of homebrew checks - -M configure.in - -commit 64640897a2357e6fc442e14372ca3950e4b54090 -Author: Ahmed Noor Kader Mustajir Md Eusoff -Date: 2010-11-02 - - Partial update of Malay translation - -M po/ms.po - -commit efe7e4727d56bc8872557674aa90037b255229d5 -Author: Jorge González -Date: 2010-11-01 - - Updated Spanish translation - -M po/es.po - -commit d61097230c3b77931b7fc6212f70104f1fcdab04 -Author: Cosimo Cecchi -Date: 2010-11-01 - - Release 2.91.1 - -M NEWS -M configure.in -M po/POTFILES.in - -commit 2b99456d621c08bd097b87726704e671c76be1a1 -Author: Cosimo Cecchi -Date: 2010-11-01 - - [eel] remove eel_gtk_adjustment* functions - - They should not be needed now. - -M eel/eel-gtk-extensions.c -M eel/eel-gtk-extensions.h - -commit 8b4271f5ad62d00b76d7e34a594c9b1819eb495e -Author: Cosimo Cecchi -Date: 2010-11-01 - - desktop-icon-view: don't use eel helper to set adjustment values - -M src/file-manager/fm-desktop-icon-view.c - -commit 3a9c6cd783507cc2fbd0a838cd6710f74e7f17dd -Author: Cosimo Cecchi -Date: 2010-11-01 - - icon-container: don't use eel helper to set adjustment values - -M libnemo-private/nemo-icon-container.c - -commit 7029d317446f26f829a794884abe07d6ce980a5f -Author: Cosimo Cecchi -Date: 2010-11-01 - - canvas: remove commented out code - -M eel/eel-canvas.c - -commit 27f14a83ca6b656c20f6f7851b11dee12bfd4540 -Author: Holger Berndt -Date: 2010-10-05 - - Add possibility to register an external bulk rename tool - - If the new setting "bulk-rename-tool" in - org.gnome.nemo.preferences - is set to a non-empty string, it is treated as a bulk renamer and - gets invoked on a Rename action if multiple files are selected. - Nemo appends a space separated list of URIs of all selected - files to the command string. - - https://bugzilla.gnome.org/show_bug.cgi?id=306489 - -M libnemo-private/nemo-global-preferences.h -M libnemo-private/org.gnome.nemo.gschema.xml.in -M src/file-manager/fm-directory-view.c - -commit b4aa3c083ab7616f321df4ade75e4d850142eff6 -Author: Bastien Nocera -Date: 2010-10-29 - - Move nemo-sendto extension to nemo - - And add a check for the presence of nemo-sendto to the - initialisation of the object. - - Building the extension is optional, though on by default. - - https://bugzilla.gnome.org/show_bug.cgi?id=633485 - -M Makefile.am -M configure.in -A nemo-sendto-extension/Makefile.am -A nemo-sendto-extension/nemo-nste.c -A nemo-sendto-extension/nemo-nste.h -A nemo-sendto-extension/nemo-sendto-module.c - -commit 0609431a5cb3803d0b98bd333f90e3c7796f86b7 -Author: Paolo Borelli -Date: 2010-11-01 - - Use gtk_paned_new instead gtk_[h|v]paned_new - -M src/nemo-navigation-window.c - -commit 059d9a384aedcc6dcc1e249a9979922278a90f60 -Author: Yaron Shahrabani -Date: 2010-11-01 - - Updated Hebrew translation. - -M po/he.po - -commit 802e1967cdf301a50b8403cfe820097561c60033 -Author: Cosimo Cecchi -Date: 2010-11-01 - - [eel] remove unused eel_gradient code - -M eel/eel-gdk-extensions.c -M eel/eel-gdk-extensions.h - -commit 7dee3226ad6b3aa1c782cc3d2969e32c5eeae3f3 -Author: Cosimo Cecchi -Date: 2010-11-01 - - [eel] remove eel_gdk_pixbuf_list_ref() - -M eel/eel-gdk-pixbuf-extensions.c -M eel/eel-gdk-pixbuf-extensions.h -M libnemo-private/nemo-icon-canvas-item.c - -commit 00c0b9daa2053a110e17c64fb79ce4884290dc76 -Author: Cosimo Cecchi -Date: 2010-11-01 - - [eel] remove unused eel_get_filename_charset() - -M eel/eel-glib-extensions.c -M eel/eel-glib-extensions.h - -commit 31dfbdc19075ddf92b4f04a2f84e3111c3fb429b -Author: Cosimo Cecchi -Date: 2010-11-01 - - [eel] remove eel_gtk_widget_set_shown() - - It's not used anymore. - -M eel/eel-gtk-extensions.c -M eel/eel-gtk-extensions.h - -commit bb145a018a9d66b748971e40be4e09a7f843b2be -Author: Cosimo Cecchi -Date: 2010-11-01 - - places-sidebar: use gtk_widget_set_visible() instead of the eel helper - -M src/nemo-places-sidebar.c - -commit 654b8f8a52d2343293c03eec304d20b7904867a1 -Author: Jorge González -Date: 2010-10-31 - - Updated Spanish translation - -M po/es.po - -commit 5e669515fd7f760382e6b7aa1449734a35a2d7f4 -Author: Cosimo Cecchi -Date: 2010-10-31 - - general: use g_list_free_full() instead of eel functions - -M configure.in -M eel/eel-gdk-pixbuf-extensions.c -M eel/eel-gdk-pixbuf-extensions.h -M eel/eel-glib-extensions.c -M eel/eel-glib-extensions.h -M libnemo-private/nemo-autorun.c -M libnemo-private/nemo-clipboard.c -M libnemo-private/nemo-debug-log.c -M libnemo-private/nemo-directory-async.c -M libnemo-private/nemo-directory.c -M libnemo-private/nemo-dnd.c -M libnemo-private/nemo-file-changes-queue.c -M libnemo-private/nemo-file-operations.c -M libnemo-private/nemo-file-utilities.c -M libnemo-private/nemo-file.c -M libnemo-private/nemo-icon-canvas-item.c -M libnemo-private/nemo-icon-container.c -M libnemo-private/nemo-merged-directory.c -M libnemo-private/nemo-mime-actions.c -M libnemo-private/nemo-mime-application-chooser.c -M libnemo-private/nemo-open-with-dialog.c -M libnemo-private/nemo-program-choosing.c -M libnemo-private/nemo-query.c -M libnemo-private/nemo-search-engine-beagle.c -M libnemo-private/nemo-search-engine-simple.c -M libnemo-private/nemo-search-engine-tracker.c -M src/file-manager/fm-directory-view.c -M src/file-manager/fm-list-model.c -M src/file-manager/fm-list-view.c -M src/file-manager/fm-properties-window.c -M src/file-manager/fm-tree-model.c -M src/file-manager/fm-tree-view.c -M src/nemo-application.c -M src/nemo-bookmark-list.c -M src/nemo-history-sidebar.c -M src/nemo-navigation-window-slot.c -M src/nemo-pathbar.c -M src/nemo-places-sidebar.c -M src/nemo-query-editor.c -M src/nemo-spatial-window.c -M src/nemo-trash-bar.c -M src/nemo-window-manage-views.c -M src/nemo-window-slot.c -M src/nemo-window.c - -commit 7d05f8804f044ef13b4f89a49a1a7b7730f3a279 -Author: Cosimo Cecchi -Date: 2010-10-30 - - build: bump GLib and GTK+ requirements - -M configure.in - -commit d8ad1ab61cdb9929a8cb4f7d393e8b501e054289 -Author: Cosimo Cecchi -Date: 2010-10-30 - - application: use prettier format strings - -M src/nemo-application.c - -commit f48796637854ca784f7458a387e3607917ef5990 -Author: Cosimo Cecchi -Date: 2010-10-30 - - application: fix interaction with SMCLient - - Use late-initialization, otherwise we and up locked while reading - session information. Also, don't try to use that information more than - once in the app lifetime. - -M src/nemo-application-smclient.c -M src/nemo-application.c -M src/nemo-application.h - -commit d09b45c72bb1c3573b8f1c0bc83f1d8448ba5309 -Author: Cosimo Cecchi -Date: 2010-10-30 - - smclient: backport and tweak a patch for late SMClient initialization - - This is a tweak of a patch bt Vincent Untz, see libegg commit - dc8db697dfaf8e57fbc9fe5251675a27e8c54f44 - -M cut-n-paste-code/libegg/eggsmclient.c - -commit 2260005986d8c620669e56c4b9f2fba12e8e0625 -Author: Cosimo Cecchi -Date: 2010-10-30 - - canvas: use GTK_LAYOUT casts instead of going through the parent - struct - - That's just confusing. - -M eel/eel-canvas.c - -commit ebee13eef39824ebe536d0e42a35337097a33942 -Author: Cosimo Cecchi -Date: 2010-10-30 - - desktop-icon-view: don't unconditionally unref the desktop background - -M src/file-manager/fm-desktop-icon-view.c - -commit e383af25948a9b93915b1c39ae379bf0eace06ac -Author: Cosimo Cecchi -Date: 2010-10-30 - - application: close desktop windows on quit - -M src/nemo-application.c - -commit 12c7a03bfe3c49078cb5b44ff2651eb9ce1edce4 -Author: Matthias Clasen -Date: 2010-10-28 - - editable-label: don't use deprecated size_request vfunc - -M eel/eel-editable-label.c - -commit b532d0d9290d1731203d971e7c679979265f0a43 -Author: Cosimo Cecchi -Date: 2010-10-28 - - window: don't use deprecated size_request vfunc - - Also, cleanup the size_request code a bit. - -M src/nemo-window.c - -commit 1cdd0b41bf9de69a93cb166636d7eccff9f5355f -Author: Cosimo Cecchi -Date: 2010-10-28 - - icon-container: remove size_request vfunc impl - - It doesn't seem to do anything useful. - -M libnemo-private/nemo-icon-container.c - -commit 22cb1accd98c1ae10938eac10cc6beda8fb6b145 -Author: Cosimo Cecchi -Date: 2010-10-28 - - pathbar: don't use deprecated size_request vfunc - -M src/nemo-pathbar.c - -commit 305d1b05896e39a5e3181247d9d4e837b4c35067 -Author: Cosimo Cecchi -Date: 2010-10-27 - - image-properties-page: don't special-case old EXIF/XMP APIs - -M src/nemo-image-properties-page.c - -commit 393df7a83c0a779784095a993db238867daeaa7a -Author: Cosimo Cecchi -Date: 2010-10-27 - - build: simplify configure script - - Also, don't support old exif/exempi APIs anymore. - -D acconfig.h -M check-headers-in-Makefile.pl -M configure.in -M cut-n-paste-code/libegg/Makefile.am -M docs/reference/libnemo-extension/Makefile.am -M eel/Makefile.am -M libnemo-extension/Makefile.am -M libnemo-private/Makefile.am -M src/Makefile.am -M src/file-manager/Makefile.am -M test/Makefile.am - -commit 8d9d6128b69e641c2b77322e8832be8ae0b9bf93 -Author: Cosimo Cecchi -Date: 2010-10-27 - - application: properly handle --no-default-window - -M src/nemo-application.c -M src/nemo-main.c - -commit 13630f0b4d58e3b2be6781f3049d13c1095b0dca -Author: Cosimo Cecchi -Date: 2010-10-27 - - application: perform checks in NemoApplication if requested so - -M src/nemo-application.c -M src/nemo-main.c - -commit 48f17e3726bc0e37d35714d5f18ce56498508d79 -Author: Cosimo Cecchi -Date: 2010-10-27 - - application: respect the 'exit-with-last-window' setting. - - If it's set, we quit immediately. - -M src/nemo-application.c - -commit df8bdf21cffc1b2370b34173487219ee3568d040 -Author: Cosimo Cecchi -Date: 2010-10-27 - - application: cleanup - -M src/nemo-application.c - -commit e0f68583d47d23738afd7695f6137e2d2552b45d -Author: Cosimo Cecchi -Date: 2010-10-27 - - application: don't unref unconditionally - - As we're building the NemoUndoManager in _startup() now, - which might - not have been called if the application is remote. - -M src/nemo-application.c - -commit e297d4108760e701b3cd276e9d4612b1933efee0 -Author: Cosimo Cecchi -Date: 2010-10-27 - - application: add the desktop windows to the application window list - - So that we don't quit immediately when we close the browser window. - -M src/nemo-application.c - -commit 248339e40908fc58a5edad462c77b667d5cb8315 -Author: Cosimo Cecchi -Date: 2010-10-27 - - application: remove get_n_windows() - -M src/nemo-application.c -M src/nemo-application.h -M src/nemo-window-manage-views.c - -commit 56dd8bb3d5594d9caffda23400f7bd64c94e5a4c -Author: Cosimo Cecchi -Date: 2010-10-27 - - application: move other init/cleanup functions in the app class - - Instead of mixing them between nemo-main and nemo-application - -M src/nemo-application.c -M src/nemo-application.h -M src/nemo-main.c - -commit 2d702e1eeb7f9a8ad1286db39f5088bf39f1229c -Author: Cosimo Cecchi -Date: 2010-10-27 - - application: make sure to initialize GTK+ during _startup() - -M src/nemo-application.c - -commit 0712652a5f3730d10bca4040b68f3dda1e98c0bf -Author: Cosimo Cecchi -Date: 2010-10-27 - - desktop-window: monitor the desktop dir key from NemoDesktopWindow - - Remove that code from NemoApplication, it doesn't belong there. - -M src/nemo-desktop-window.c - -commit 7500dd445df5a0cf082464f099169666727f6ec2 -Author: Cosimo Cecchi -Date: 2010-10-27 - - [src] use new GtkApplication API to handle windows - - Instead of old nemo-main/NemoApplication functions to register - windows within the mainloop. - -M src/nemo-application-smclient.c -M src/nemo-navigation-window-menus.c -M src/nemo-window-manage-views.c -M src/nemo-window.c - -commit a8481ee4bd8d34e792d63598fa5efb47736f9de4 -Author: Cosimo Cecchi -Date: 2010-10-27 - - main: adapt to GtkApplication changes - - This code should be much easier now that window lifecycle is - handled by - GtkApplication itself. - -M src/Makefile.am -M src/nemo-application-smclient.c -M src/nemo-application.c -M src/nemo-main.c -D src/nemo-main.h -M src/nemo-navigation-window.c -M src/nemo-spatial-window.c -M src/nemo-window-manage-views.c -M src/nemo-window.c - -commit b03b081e91d376140e4fc94fd885bf7d13fc57c5 -Author: Cosimo Cecchi -Date: 2010-10-27 - - application: make NemoApplication a GtkApplication subclass - -M src/nemo-application.c -M src/nemo-application.h - -commit bb52a77678b732626693869e315bb78c77635a0b -Author: Cosimo Cecchi -Date: 2010-10-26 - - application: replace custom GIcon custom load/save code with GIO one - -M src/nemo-application-smclient.c - -commit dc0b129436d5c9eb712a80852768387fc2b8cd7c -Author: Cosimo Cecchi -Date: 2010-10-26 - - application: split SmClient code in its own module. - -M src/Makefile.am -A src/nemo-application-smclient.c -A src/nemo-application-smclient.h -M src/nemo-application.c - -commit d811553a4e74106efdf8bf6c91c6d29944ed6df7 -Author: Cosimo Cecchi -Date: 2010-10-22 - - general: use new GtkScrollable interface - -M eel/eel-canvas.c -M libnemo-private/nemo-icon-container.c -M libnemo-private/nemo-icon-dnd.c -M libnemo-private/nemo-tree-view-drag-dest.c -M src/file-manager/fm-desktop-icon-view.c - -commit f9aa5d9442ae918bb1e583d1543b8da0b51fb959 -Author: Cosimo Cecchi -Date: 2010-10-22 - - application: go back to libunique for now - - While GApplication API settles. Also, porting to the new GApplication - would require quite some refactoring. - -M configure.in -M src/nemo-application.c -M src/nemo-application.h -M src/nemo-main.c - -commit 0e755165bc561b2c61628519c090cd826f7609c6 -Author: Cosimo Cecchi -Date: 2010-10-22 - - build: bump GTK+ required version - -M configure.in - -commit 6669f155734c320617bcf79f3b5d8f315f4886f9 -Author: Cosimo Cecchi -Date: 2010-10-22 - - preferences: cleanup expand/fill flags - - Probably a change in GTK+ requires fixing this flags, so that - the dialog - doesn't look odd. - -M src/nemo-file-management-properties.ui - -commit 18fc6dd2516f9091570902640032e68b263cfddf -Author: Cosimo Cecchi -Date: 2010-10-22 - - preferences: use GtkComboBoxText in the GtkBuilder file - -M src/nemo-file-management-properties.ui - -commit f123f99bee1005cd279783f9d441f538fcf85542 -Author: Cosimo Cecchi -Date: 2010-10-21 - - [src] don't use GtkComboBox text APIs (#632651) - - They got replaced by GtkComboBoxText. - Thanks to Mathias Clasen and Flo Gravo. - -M src/file-manager/fm-properties-window.c -M src/nemo-file-management-properties.c -M src/nemo-query-editor.c -M src/nemo-view-as-action.c - -commit d5ad28bff6c1ebcd6e1560d2036655ffa9562e8b -Author: Andrej Žnidaršič -Date: 2010-10-30 - - Updated Slovenian translation - -M po/sl.po - -commit 9c97179025ca98641737b44bf0a6409757ee2f18 -Author: Carles Ferrando -Date: 2010-10-29 - - Updated Catalan (Valencian) translation - -M po/ca@valencia.po - -commit 716ad3f41eae1773cc260427ccf87c959a2bc3a3 -Author: Jorge González -Date: 2010-10-28 - - Updated Spanish translation - -M po/es.po - -commit 4d1464f859439b12b8c79bac919da333caea28a3 -Author: Mattias Põldaru -Date: 2010-10-28 - - [l10n] Updated Estonian translation - -M po/et.po - -commit bbd7d86fc4ef27f4df3537844fc5998e4c29949e -Author: Yaron Shahrabani -Date: 2010-10-26 - - Updated Hebrew translation. - -M po/he.po - -commit 540dc54229fee2e5e5d53453c61d4dd48537545c -Author: Aron Xu -Date: 2010-10-25 - - Update Simplified Chinese translation. - -M po/zh_CN.po - -commit 87ccfbf66ebed490eb8c921a712d8cb94e4ad817 -Author: Gheyret T.Kenji -Date: 2010-10-21 - - Added UG translation - -M po/ug.po - -commit c30f0785727ebad08f3891d594831596d16598e0 -Author: Fran Diéguez -Date: 2010-10-20 - - Updated Galician translations - -M po/gl.po - -commit 18e74876421fd38584c9dd105914d7a626aed3b7 -Author: Mario Blättermann -Date: 2010-10-19 - - [i18n] Updated German translation - -M po/de.po - -commit 1f135b5da410b7a0052d22322d740037036b39b0 -Author: Tomas Bzatek -Date: 2010-10-19 - - Use gnome global 'show-desktop-icons' settings - - See bug 632225 for details. - -M libnemo-private/nemo-global-preferences.c -M libnemo-private/nemo-global-preferences.h -M libnemo-private/nemo.convert -M libnemo-private/org.gnome.nemo.gschema.xml.in -M src/nemo-application.c - -commit c0e91e6a53dc3d920a25be1cf836c28730e193d8 -Author: Милош Поповић -Date: 2010-10-18 - - Updated Serbian Translation - -M po/sr.po -M po/sr@latin.po - -commit 2c04203ef9c3be3fd209589e8ec7007889323991 -Author: Mattias Põldaru -Date: 2010-10-16 - - [l10n] Updated Estonian translation - -M po/et.po - -commit d3ab8e137ae957e5afef54bf0ec1e275b96caab5 -Author: Marcus Carlson -Date: 2010-07-23 - - image-properties-page: call gdk_pixbuf_loader_close() earlier - (#558267) - - This helps smaller images (>8192 bytes) to signal size_prepared before - reading image geometry. - -M src/nemo-image-properties-page.c - -commit 49ff3247d17e57afc3612de2f709997c8bb92408 -Author: Jorge González -Date: 2010-10-14 - - Updated Spanish translation - -M po/es.po - -commit 1cb6ea5dcb0cd384f49aac063e56d24203683602 -Author: Cosimo Cecchi -Date: 2010-10-14 - - icon-container: use the right signature for the 'preedit-changed' cb - - This should fix bug #629159. Thanks to Fumihito YOSHIDA to notice - this. - -M libnemo-private/nemo-icon-container.c - -commit 5e383c3377ef2c2333f97102826880e86fdddef2 -Author: Yaron Shahrabani -Date: 2010-10-14 - - Updated Hebrew translation. - -M po/he.po - -commit 0f8dcf2ac394121c488afdf0fecc2b7afeb673b6 -Author: Cosimo Cecchi -Date: 2010-10-13 - - column-utilities: fix a TODO about a missing description string - -M libnemo-private/nemo-column-utilities.c - -commit b0550951f461c2033f4d1aaa4404078c7a70f220 -Author: Antoine Jacoutot -Date: 2010-10-13 - - column-utilities: disable SELinux column if !HAVE_SELINUX (#631093) - -M libnemo-private/nemo-column-utilities.c - -commit ebcbb167876f8b4491af0bc86bc29015c211b3af -Author: Olivier Tilloy -Date: 2010-08-17 - - icon-view: if possible, use the local path for the preview (#624841) - - This solves issues where the audio previewer is not capable of - understanding some GVfs URIs. - -M src/file-manager/fm-icon-view.c - -commit 01f39f471005e788281c18da30563c0184434fff -Author: Cosimo Cecchi -Date: 2010-10-13 - - background: make the fading effect optional (#623174) - - This is implemented with a GSettings key. Thanks to Brian Cameron for - the initial patch. - -M libnemo-private/nemo-desktop-background.c -M libnemo-private/nemo-global-preferences.h -M libnemo-private/org.gnome.nemo.gschema.xml.in - -commit 4cd72a64d67cdfd1d9351c52b2cf8463efd0c141 -Author: Cosimo Cecchi -Date: 2010-10-13 - - background: fix the indentation modeline - -M libnemo-private/nemo-desktop-background.c - -commit e676a40dcef267c312e27c4191adc0d22eaf1554 -Author: Cosimo Cecchi -Date: 2010-10-13 - - preferences: remove obsolete background preferences - -M libnemo-private/nemo-global-preferences.h -M libnemo-private/nemo.convert -M libnemo-private/org.gnome.nemo.gschema.xml.in - -commit d26ae7b60c07057c6fbf926a3a805c29a5cfc3b2 -Author: A S Alam -Date: 2010-10-13 - - update typo in translation: Punjabi - -M po/pa.po - -commit 1620bd8a4e4ab1760c5c518dd954a4471645ce87 -Author: Cosimo Cecchi -Date: 2010-10-12 - - horizontal-splitter: remove, and use a regular GtkPaned instead - - The feature it was bringing in (shrink when the paned handle is - double-clicked) is even confusing. - -M libnemo-private/Makefile.am -D libnemo-private/nemo-horizontal-splitter.c -D libnemo-private/nemo-horizontal-splitter.h -M src/nemo-navigation-window.c -M src/nemo-spatial-window.c -M src/nemo-window.c - -commit c05e2d7cdf8a5da4b9a353529ed214e7b36de8ca -Author: Mattias Põldaru -Date: 2010-10-11 - - [l10n] Updated Estonian translation - -M po/et.po - -commit 62690ab70e62ae108d1a03c0d19510c58dd882c0 -Author: Jorge González -Date: 2010-10-10 - - Updated Spanish translation - -M po/es.po - -commit 5653060d93db2686997faa8f6a10b87659d09c0a -Author: Cosimo Cecchi -Date: 2010-10-10 - - background: assume the widget is an IconContainer - -M libnemo-private/nemo-desktop-background.c -M libnemo-private/nemo-desktop-background.h -M libnemo-private/nemo-icon-dnd.c -M src/file-manager/fm-desktop-icon-view.c - -commit 7e7691f0332a9b708217432a692cdf27e536cbcc -Author: Cosimo Cecchi -Date: 2010-10-10 - - icon-dnd: use new background API - -M libnemo-private/nemo-icon-dnd.c - -commit 843e6a9b9331a3e7a318df03b4074deb1163e386 -Author: Cosimo Cecchi -Date: 2010-10-10 - - background: make NemoDesktopBackground a singleton - - This avoids the need of using g_object_set_data() hacks to get the - background from the desktop icon container. - -M libnemo-private/nemo-desktop-background.c -M libnemo-private/nemo-desktop-background.h - -commit d4342547ebc2e26547cf8f1449bfd2e8fe4c443f -Merge: eda5d36 66cd22c -Author: Cosimo Cecchi -Date: 2010-10-09 - - Merge branch 'background-untangling' - -commit eda5d36cadf299cf62429c1e29763b5dd3d53c40 -Author: Jorge González -Date: 2010-10-09 - - Updated Spanish translation - -M po/es.po - -commit 66cd22c908cc73954fad3e261d28ae6a05ea1bc2 -Author: Cosimo Cecchi -Date: 2010-10-09 - - background: refactor code into NemoDesktopBackground - - Remove the DirectoryBackground->EelBackground->GnomeBG abstraction and - add a new object, NemoDesktopBackground, which is a thin wrapper - around GnomeBG, which takes care of handling background changes. - -M eel/Makefile.am -D eel/eel-background.c -D eel/eel-background.h -M eel/eel-lib-self-check-functions.h -M eel/eel.h -M libnemo-private/Makefile.am -M libnemo-private/nemo-autorun.h -A libnemo-private/nemo-desktop-background.c -A libnemo-private/nemo-desktop-background.h -D libnemo-private/nemo-directory-background.c -D libnemo-private/nemo-directory-background.h -M libnemo-private/nemo-icon-dnd.c -M src/file-manager/fm-desktop-icon-view.c -M src/file-manager/fm-directory-view.c -M src/file-manager/fm-directory-view.h -M src/file-manager/fm-list-view.c -M test/Makefile.am -M test/test.c - -commit 3bcd8464bcc9bdc44086275df8f6d1d29829bd8d -Author: Cosimo Cecchi -Date: 2010-10-08 - - icon-dnd: adapt to EelBackground changes. - -M libnemo-private/nemo-icon-dnd.c - -commit b6b2d222a4fc5150370589fd70811707139d3bbd -Author: Cosimo Cecchi -Date: 2010-10-08 - - directory-background: update to simplified EelBackground API - - EelBackground doesn't have any signals anymore, so don't try to - connect - to them. - -M libnemo-private/nemo-directory-background.c - -commit b137867bfaf9d1175b883d31baf18ae7e21d8549 -Author: Cosimo Cecchi -Date: 2010-10-08 - - eel-background: cleanup code not related to desktop background - - Remove all the EelBackground code that's not related to desktop - background handling. - -M eel/eel-background.c -M eel/eel-background.h - -commit c185321ed28d8aba69734039211946c739d32467 -Author: Cosimo Cecchi -Date: 2010-10-07 - - views: don't use EelBackground to set sensitive/insensitive bg - - Use an implementation for each view, don't relying on EelBackground. - -M src/file-manager/fm-empty-view.c -M src/file-manager/fm-icon-view.c -M src/file-manager/fm-list-view.c - -commit c31c5e360b0726788af93f6e404e1686d46b1f61 -Author: Cosimo Cecchi -Date: 2010-10-07 - - directory-view: call set_active() on subclasses to set insensitive bg - - Don't have a default implementation relying on EelBackground here. - -M src/file-manager/fm-directory-view.c -M src/file-manager/fm-directory-view.h - -commit ef74d171892ed7189b4a52695ae8de575d2dac1a -Author: Cosimo Cecchi -Date: 2010-10-07 - - icon-container: add set_active() - - This internally replaces EelBackground usage to set the non-sensitive - background on non-active panes. - -M libnemo-private/nemo-icon-container.c -M libnemo-private/nemo-icon-container.h -M libnemo-private/nemo-icon-private.h - -commit 42e726853157e561dc99d61180cae036f751fef8 -Author: Cosimo Cecchi -Date: 2010-10-07 - - eel-gdk-extensions: add eel_make_color_inactive() to public API - -M eel/eel-gdk-extensions.c -M eel/eel-gdk-extensions.h - -commit 11c0ce912f2c6d5c933968780a53f5261f125fec -Author: A S Alam -Date: 2010-10-09 - - updating translation for Punjabi - -M po/pa.po - -commit 9e35d0ca6f10650f4d86963a3b5e986e3ec17681 -Author: Changwoo Ryu -Date: 2010-09-24 - - Updated Korean translation - -M po/ko.po - -commit 407666719856127547f5c2f3f03f6a050858239a -Author: Cosimo Cecchi -Date: 2010-10-06 - - editable-label: fix cairo drawing regressions - -M eel/eel-editable-label.c - -commit 75e101268198ce92e8165c7adda55cac69d1f93a -Author: Fran Diéguez -Date: 2010-10-07 - - Updated galician translations - -M po/gl.po - -commit a0c3ff8742e2f877b73678cff6d1a2950296e0ba -Author: Yaron Shahrabani -Date: 2010-10-06 - - Updated Hebrew translation. - -M po/he.po - -commit 31fac990215a99a034b62e626fb86e02ad751a31 -Author: Cosimo Cecchi -Date: 2010-10-05 - - Release 2.91.0.1 - -M NEWS -M configure.in - -commit 33c9b6d24a60079fe6c4c1be281c76f43def6fee -Author: Cosimo Cecchi -Date: 2010-10-05 - - cell-renderer-text-ellipsized: use new GtkSizeRequest vfunctions - - This fixes the 'Name' column being too thin in list view. - -M libnemo-private/nemo-cell-renderer-text-ellipsized.c - -commit 61906b05ec90d5d4759ae7ff7fc7aca40fb18f15 -Author: Cosimo Cecchi -Date: 2010-10-05 - - window-toolbars: show/hide the spinner in the right order - - Apparently calling them in the wrong order makes new GTK+ crash. - -M src/nemo-window-toolbars.c - -commit ca6e8b6d59caa79e1095d02f107df1779107a565 -Author: Cosimo Cecchi -Date: 2010-10-04 - - Release 2.91.0 - -M NEWS -M configure.in - -commit 74a0311e65f2c9fc2d03967b0607633dcb652f88 -Author: Cosimo Cecchi -Date: 2010-10-04 - - build: fix distcheck - -M eel/Makefile.am -M src/Makefile.am - -commit 2053c267a79231aeb82a24adfe8f4e7da442cdb7 -Author: Cosimo Cecchi -Date: 2010-10-04 - - build: depend on 2.91.0 GTK+ and gnome-desktop - -M configure.in - -commit 64819695a13eb636df535e08e0eed6e896a8821c -Author: Cosimo Cecchi -Date: 2010-10-04 - - properties-window: split some long lines - -M src/file-manager/fm-properties-window.c - -commit 5ece5d67163e30a91e600d2f2bcf0d657d365dc4 -Author: Cosimo Cecchi -Date: 2010-10-04 - - properties-window: don't use expose-event to draw the pie chart - - Use GtkWidget::draw instead - -M src/file-manager/fm-properties-window.c - -commit d72087b74c871ef82b1f6a13bb5bb72b38670a52 -Author: Cosimo Cecchi -Date: 2010-10-04 - - window-toolbars: show/hide the spinner when changing its state - -M src/nemo-window-toolbars.c - -commit 3745195087a21bb46ed42925ff1d877562dbf36e -Author: Cosimo Cecchi -Date: 2010-09-30 - - build: bump GTK+ and gnome-desktop required versions - -M configure.in - -commit 098057414b38aeeddd3fcd81942324336628d341 -Author: Cosimo Cecchi -Date: 2010-09-30 - - icon-dnd: cleanup useless code - -M libnemo-private/nemo-icon-dnd.c - -commit f38bad2536faf497fe56c9a491ab852cb00514c0 -Author: Cosimo Cecchi -Date: 2010-09-30 - - icon-dnd: use negative device offsets to set the drag surface - -M libnemo-private/nemo-icon-dnd.c - -commit a136af0a01c160cdfb513c531b910b49a4a62973 -Author: Cosimo Cecchi -Date: 2010-09-30 - - icon-canvas-item: use cairo directly instead of gdk_pixbuf_composite() - -M libnemo-private/nemo-icon-canvas-item.c - -commit c6860491c432e311d585a6d92443ef821afd46d2 -Author: Cosimo Cecchi -Date: 2010-09-30 - - icon-canvas-item: set transparent background for highlight - -M libnemo-private/nemo-icon-canvas-item.c - -commit 426079ef07d5f902911f30b0a9d7de95f3020374 -Author: Benjamin Otte -Date: 2010-09-29 - - background: cope with renamings of gnome-bg APIs - -M eel/eel-background.c - -commit b1aac113ef867846fb39ee4187378c6f1a13f33e -Author: Cosimo Cecchi -Date: 2010-09-29 - - desktop-icon-view: don't use gdk_drawable_get_screen - -M src/file-manager/fm-desktop-icon-view.c - -commit 0b664aae4090704fa2e44d42f213da2cea8bd828 -Author: Cosimo Cecchi -Date: 2010-09-29 - - background: port to rendering-cleanup - - Based on patches from Benjamin Otte and Christian Persch. - -M eel/eel-background.c - -commit c47d18f566fa9518ca7750922da7da66d3211f3e -Author: Cosimo Cecchi -Date: 2010-09-29 - - [src] use gtk_widget_get_preferred_size() - -M src/nemo-pathbar.c -M src/nemo-side-pane.c -M src/nemo-spatial-window.c -M src/nemo-zoom-control.c - -commit e56241830bfd2ca470ec2b1da53313c2230bc2b9 -Author: Cosimo Cecchi -Date: 2010-09-29 - - icon-container: use gtk_widget_get_preferred_size() - -M libnemo-private/nemo-icon-container.c - -commit f5192b6990cd9240d126974dd587b7b7525ae714 -Author: Cosimo Cecchi -Date: 2010-09-29 - - [libnemo-private] use eel_canvas_item_destroy - - Instead of gtk_object_destroy() - -M libnemo-private/nemo-icon-container.c -M libnemo-private/nemo-icon-dnd.c - -commit 910191ea13e5647e1b8c793e7585530c6ae4c9b1 -Author: Christian Persch -Date: 2010-09-16 - - [libnemo-private] Port to rendering-cleanup-next - -M libnemo-private/nemo-icon-canvas-item.c -M libnemo-private/nemo-icon-canvas-item.h -M libnemo-private/nemo-icon-container.c -M libnemo-private/nemo-icon-dnd.c -M libnemo-private/nemo-tree-view-drag-dest.c - -commit 44171abea01a0c110aa029dddfb5d5afe018d086 -Author: Christian Persch -Date: 2010-09-16 - - [libnemo-private] Use gtk_widget_get_preferred_size() - - ... instead of the deprecated gtk_widget_get_child_requisition(). - -M libnemo-private/nemo-horizontal-splitter.c - -commit 2b7659ac4fcaa8b93ad8f409e1560aaa60dcdc12 -Author: Christian Persch -Date: 2010-09-16 - - [eel] Port EelEditableLabel to rendering-cleanup-next - -M eel/eel-editable-label.c - -commit 4963a3c9e5526ffd139b1b0b5bff18b6ea91a717 -Author: Cosimo Cecchi -Date: 2010-09-29 - - editable-label: use gtk_widget_get_preferred_size() - -M eel/eel-editable-label.c - -commit 58832e54b6a4e596693527d577e4f8fa2f3e4ccf -Author: Christian Persch -Date: 2010-09-16 - - [eel] Port the eel canvas to rendering-cleanup-next - -M eel/eel-canvas-rect-ellipse.c -M eel/eel-canvas.c -M eel/eel-canvas.h - -commit d2f141f4a5435b10b43abea0822e3d0569b67886 -Author: Christian Persch -Date: 2010-09-16 - - [eel] Add eel_cairo_draw_layout_with_drop_shadow - - Renamed from eel_gdk_draw_layout_with_drop_shadow. - -M eel/eel-gdk-extensions.c -M eel/eel-gdk-extensions.h - -commit 93e1cdfd387c47f73e51eeff924f8e2c9fad2bda -Author: Cosimo Cecchi -Date: 2010-09-29 - - undo-transaction: remove obsolete commented code - -M libnemo-private/nemo-undo-transaction.c -M src/nemo-bookmarks-window.c - -commit f616fee30fb153c9f71d79b2568d2e0e5a23fd39 -Author: Cosimo Cecchi -Date: 2010-09-29 - - undo-signal-handlers: remove commented out obsolete code - -M libnemo-private/nemo-undo-signal-handlers.c -M libnemo-private/nemo-undo-signal-handlers.h - -commit c5eba3314c99059aa1fff13aedcb1004966fdd55 -Author: Cosimo Cecchi -Date: 2010-09-29 - - icon-dnd: remove commented out obsolete code - -M libnemo-private/nemo-icon-dnd.c - -commit cc6cb51e827c0b15d4ef09f12d37b9f331ddcef8 -Author: Cosimo Cecchi -Date: 2010-09-29 - - [src] don't use GtkObject - -M src/file-manager/fm-desktop-icon-view.c -M src/file-manager/fm-directory-view.c -M src/file-manager/fm-icon-view.c -M src/file-manager/fm-properties-window.c -M src/nemo-application.c -M src/nemo-bookmarks-window.c -M src/nemo-location-bar.c -M src/nemo-location-dialog.c -M src/nemo-location-entry.c -M src/nemo-main.c -M src/nemo-main.h -M src/nemo-navigation-bar.c -M src/nemo-navigation-window-menus.c -M src/nemo-navigation-window.c -M src/nemo-pathbar.c -M src/nemo-window-bookmarks.c -M src/nemo-window-manage-views.c -M src/nemo-window.c - -commit aef4cfcf93ef34a0b2d4c87b40fcec2b7a66dd06 -Author: Cosimo Cecchi -Date: 2010-09-29 - - [libnemo-private] don't use GtkObject - -M libnemo-private/nemo-autorun.c -M libnemo-private/nemo-clipboard.c -M libnemo-private/nemo-entry.c -M libnemo-private/nemo-icon-container.c -M libnemo-private/nemo-mime-actions.c -M libnemo-private/nemo-mime-application-chooser.c -M libnemo-private/nemo-open-with-dialog.c -M libnemo-private/nemo-program-choosing.c -M libnemo-private/nemo-undo-transaction.c - -commit b5f9acb9029c015558ab678e01fc2c8dcc8c6c82 -Author: Cosimo Cecchi -Date: 2010-09-29 - - editable-label: don't use GtkObject - -M eel/eel-editable-label.c - -commit 1f615321613751a5dbc84d5ef7f20edd104b8dc4 -Author: Cosimo Cecchi -Date: 2010-09-29 - - canvas: don't use GtkObject - - This implies adding a 'destroy' signal to EelCanvasItem, with similar - semantics to gtk_object_destroy() - -M eel/eel-canvas-rect-ellipse.c -M eel/eel-canvas.c -M eel/eel-canvas.h - -commit 5edcd42e503623c11bf55c6afba437b3013c7f45 -Author: Cosimo Cecchi -Date: 2010-09-29 - - stock-dialogs: don't use GtkObject - -M eel/eel-stock-dialogs.c - -commit 510d5fba10058535b8d8a3bb05f564122b798abd -Author: Cosimo Cecchi -Date: 2010-09-30 - - window-menus: fix a typo in the about dialog (#630624). - -M src/nemo-window-menus.c - -commit 2e59a60800a9bc837af9132b0ac234d9d14668c6 -Author: Cosimo Cecchi -Date: 2010-09-29 - - background: remove leftover GtkObject - -M eel/eel-background.h - -commit 87eb53a0701252607b494f34c677b6506f82278c -Author: Cosimo Cecchi -Date: 2010-09-29 - - background: cleanup unused code - -M eel/eel-background.c -M eel/eel-background.h - -commit fbb6b024128e3c35aeb1d74f8e287e8870c9999f -Author: Cosimo Cecchi -Date: 2010-09-29 - - directory-background: don't user the 'destroy' signal of EelBackground - -M libnemo-private/nemo-directory-background.c - -commit 60044f8ef457036560fb94ad6b20cdf7bedb4f77 -Author: Cosimo Cecchi -Date: 2010-09-29 - - background: don't use GtkObject - -M eel/eel-background.c - -commit ab1229476f949fef5cd51545088c91c649be2ef1 -Author: Cosimo Cecchi -Date: 2010-09-28 - - icon-dnd: don't set 'Set as Background' sensitive outside the desktop - -M libnemo-private/nemo-icon-dnd.c - -commit 895830af57277c7fd542f3fd21f71c4cde1ea231 -Author: Cosimo Cecchi -Date: 2010-09-28 - - dnd: remove support for property/bgimage as DND type. - - That was used for tiled backgrounds in the 'Backgrounds and Emblems' - dialog. - -M libnemo-private/nemo-dnd.c -M libnemo-private/nemo-dnd.h -M libnemo-private/nemo-file-dnd.c -M libnemo-private/nemo-icon-dnd.c - -commit c9be35b3ee6c468a9a102b317b82b8b639637d0f -Author: Cosimo Cecchi -Date: 2010-09-28 - - directory-background: remove code for setting non-desktop window - backgrounds - - Remove all the code that sets non-desktop window backgrounds, as we - don't do that anymore. - This includes avoid listening to metadata and GSettings changes. - -M libnemo-private/nemo-directory-background.c -M libnemo-private/nemo-directory-background.h - -commit ab0616de55f6f817a745caac26fd2b38ae41b71b -Author: Cosimo Cecchi -Date: 2010-09-28 - - icon-view: move background setting code to FMDesktopIconView - - So that we avoid setting backgrounds on regular nemo windows. - -M src/file-manager/fm-desktop-icon-view.c -M src/file-manager/fm-icon-view.c - -commit ecc583092aa333081205470c7cca7fb1aa68cb81 -Author: Petr Kovar -Date: 2010-09-29 - - Update Czech translation by Marek Cernocky - -M po/cs.po - -commit d2a41707084726ebdf882c8c6ec82ef46e29dcb0 -Author: Damyan Ivanov -Date: 2010-09-27 - - Updated Bulgarian translation - -M po/bg.po - -commit c0b28726fc05c7eac004ebaf4f81bb5e753285aa -Author: Joan Duran -Date: 2010-09-26 - - Updated Catalan translation - -M po/ca.po - -commit 1839f9abf3fa7ce88574649d531c88c9e3ac4bf7 -Author: Mattias Põldaru -Date: 2010-09-24 - - [l10n] Updated Estonian translation - -M po/et.po - -commit 74630527a03b3492913d0611b221ebdc5e1e76ba -Author: Takayuki KUSANO -Date: 2010-09-24 - - Updated Japanese translation - -M po/ja.po - -commit be665613c0e9233042e6e1f97b8cdb8708fdd782 -Author: Khaled Hosny -Date: 2010-09-23 - - Updated Arabic translation - -M po/ar.po - -commit f3bbee79b915276068e0a0d6ed9590c212e11a0a -Author: Cosimo Cecchi -Date: 2010-09-20 - - connect-dialog: add a missing gtk_widget_show() - -M src/nemo-connect-server-dialog.c - -commit 24100d075f747e8fc9ca3cc43a32489177f35459 -Author: Cosimo Cecchi -Date: 2010-09-20 - - connect-dialog: make the code more readable - - Move bits around and rename methods; no actual code change. - -M src/nemo-connect-server-dialog.c - -commit 1b79a8666fee56cdb704e8757f28acf486f7dc54 -Author: Cosimo Cecchi -Date: 2010-09-20 - - connect-dialog: display a fatal error if GVfs doesn't have methods - - I.e. when GVfs is not installed. - -M src/nemo-connect-server-dialog.c - -commit 1c826ed78bde5f34fd4a0f72d788b8d0824d6099 -Author: Cosimo Cecchi -Date: 2010-09-11 - - connect-dialog: fixes for the handling of iconized entries - -M src/nemo-connect-server-dialog.c - -commit 7d004452f333b7b8b804d87de49c858e8743a115 -Author: Cosimo Cecchi -Date: 2010-09-01 - - connect-dialog: integrate password handling - - Also, use the info bar to display warnings/errors, and tweak the UI - details. - -M src/nemo-connect-server-dialog-main.c -M src/nemo-connect-server-dialog-nonmain.c -M src/nemo-connect-server-dialog.c -M src/nemo-connect-server-dialog.h - -commit c1bebe3a29bc2dc3b01ad2277a9802d9d0bc25cd -Author: Cosimo Cecchi -Date: 2010-08-31 - - connect-operation: add NemoConnectServerOperation - - This is a GtkMountOperation subclass to handle - password/username/domain - requests directly from inside of the 'Connect to Server' dialog. - -M src/Makefile.am -A src/nemo-connect-server-operation.c -A src/nemo-connect-server-operation.h - -commit 156615f8d9f8b99dea3459cdd76392d01b9d80df -Author: Cosimo Cecchi -Date: 2010-09-20 - - window-menus: use new connect dialog API - -M src/nemo-window-menus.c - -commit 7848e74d812c22299962a8ae22b01dbd403929c0 -Author: Cosimo Cecchi -Date: 2010-09-20 - - connect-dialog: redesign the dialog - - According to Allan Day's mockups. - -M src/nemo-connect-server-dialog-main.c -M src/nemo-connect-server-dialog.c -M src/nemo-connect-server-dialog.h - -commit d5350003ac927bd683d4e18f7c0513b94f9220d7 -Author: Cosimo Cecchi -Date: 2010-08-31 - - navigation-window-menus: use new NemoApplication API - -M src/nemo-navigation-window-menus.c - -commit a3ce22ec6e8fcb39dafb35e04e445f4a94b8c394 -Author: Cosimo Cecchi -Date: 2010-08-31 - - bk-window: use new NemoApplication API - -M src/nemo-bookmarks-window.c - -commit adedf859ec47296106f0f0d938e70b32f0120f7c -Author: Cosimo Cecchi -Date: 2010-08-31 - - window: call the callback during the location change - -M src/nemo-window-manage-views.c -M src/nemo-window-slot.h - -commit d070d631545aac9114bc271481da603587c07c7c -Author: Cosimo Cecchi -Date: 2010-08-31 - - application: change the way spatial windows are created - - Use a _get() function + the standard nemo_window_go_to() - instead of - using _present(). The new functions in nemo-window-manage-views - are - smart enough to take care of re-using an existent window. - -M src/nemo-application.c -M src/nemo-application.h - -commit 1936e668c73b932f8cb018e278f8b7f46442fda2 -Author: Cosimo Cecchi -Date: 2010-08-31 - - spatial-window: remove affect_location_on_next_change hack - -M src/nemo-spatial-window.c -M src/nemo-spatial-window.h - -commit f95927360079b1c05efb9cea0de62457eea307ab -Author: Cosimo Cecchi -Date: 2010-08-31 - - desktop-window: add a 'loaded' flag - -M src/nemo-desktop-window.c -M src/nemo-desktop-window.h - -commit 54e0a1f21513babc89f980b5b02af2bf7a6ebe85 -Author: Cosimo Cecchi -Date: 2010-08-31 - - window: rewrite window-opening policies - - The code there was very hackish and convoluted. Rewrite it to make - it at - least cleaner. This will allow further cleanup later. - -M src/nemo-window-manage-views.c - -commit 24515b87a91afd32885e07e32e2b4080584673a4 -Author: Cosimo Cecchi -Date: 2010-08-31 - - window: add _full() versions of _go_to and _open() methods - - These also have a callback to get the result of the operation. - -M libnemo-private/nemo-window-info.h -M libnemo-private/nemo-window-slot-info.c -M libnemo-private/nemo-window-slot-info.h -M src/nemo-window-manage-views.c -M src/nemo-window-slot.h -M src/nemo-window.c -M src/nemo-window.h - -commit 42cc7bd181d2f57dbc008bea54a40f02be40ce39 -Author: Cosimo Cecchi -Date: 2010-08-31 - - window-info: move include to nemo-window-private - -M libnemo-private/nemo-window-info.h -M src/nemo-window-private.h - -commit 8d07a73b28767b7c866fe403e9ac706b8affb8a2 -Author: Cosimo Cecchi -Date: 2010-09-01 - - build: don't include marshals we don't own - -M libnemo-private/nemo-directory.c -M libnemo-private/nemo-icon-container.c -M src/file-manager/fm-directory-view.c -M src/nemo-pathbar.c -M src/nemo-window.c -M src/nemo-zoom-control.c - -commit 6d3398968d9f2520a4b6f4a08e0f4ae65e2207ab -Author: Cosimo Cecchi -Date: 2010-09-20 - - list-view: check for model != NULL before unsetting the highlight - - The model could be NULL there as a result of the view being previously - disposed. - -M src/file-manager/fm-list-view.c - -commit 7723f508ca8c9bd837a531cb018de16d627f8bd9 -Author: Cosimo Cecchi -Date: 2010-09-20 - - Revert "Clear the list model in _finalize() instead of _dispose()" - - This reverts commit bfe278cbf84a441a951d48dc528f20226127e1f3. - -M src/file-manager/fm-list-view.c - -commit 2e32fc01537bb2c86d9d9bbb6cc5ab2713bd723e -Author: Timo Jyrinki -Date: 2010-09-20 - - Updated Finnish translation. - -M po/fi.po - -commit 8deeb8471034b90b83ecb0e4bde0cf852e275d24 -Author: Cosimo Cecchi -Date: 2010-09-19 - - build: require GLib 2.27.0 - - Due to GApplication, which has been removed from 2.25.x - -M configure.in - -commit a4f454825861c1fb65e8d52979a67a81c5133974 -Author: Cosimo Cecchi -Date: 2010-09-19 - - desktop-icon-view: initialize allocation before setting it - - This probably fixes a number of stack-corruption crashes on 2.31.x - -M src/file-manager/fm-desktop-icon-view.c - -commit 00df45be2c133f849267f1ae485d95f672744690 -Author: Cosimo Cecchi -Date: 2010-09-19 - - build: require GTK+ 2.90.7 for GDK_KEY names - -M configure.in - -commit 78e37ae9a18925d75cf90424d92c8d3ba502848a -Author: Cosimo Cecchi -Date: 2010-09-19 - - [ui] remove 'has_separator' properties from Glade files - -M src/nemo-bookmarks-window.ui -M src/nemo-file-management-properties.ui - -commit 71fa1a50145a6f06da3b805a29e75c1295fd546b -Author: Cosimo Cecchi -Date: 2010-09-19 - - [src] convert to new GDK_KEY prefix - -M src/file-manager/fm-directory-view.c -M src/file-manager/fm-list-view.c -M src/file-manager/fm-properties-window.c -M src/nemo-bookmarks-window.c -M src/nemo-location-entry.c -M src/nemo-navigation-bar.c -M src/nemo-places-sidebar.c -M src/nemo-query-editor.c -M src/nemo-search-bar.c -M src/nemo-side-pane.c -M src/nemo-spatial-window.c -M src/nemo-window.c -M src/nemo-zoom-control.c - -commit 8ee5d37f2b4776730247af75a6ce4cebcba4c550 -Author: Cosimo Cecchi -Date: 2010-09-19 - - thumbnails: don't use GDK_THREADS_* macros - -M libnemo-private/nemo-thumbnails.c - -commit 8dd87483bd187bfac80a606233b769c230343980 -Author: Cosimo Cecchi -Date: 2010-09-19 - - autorun: use gdk_error_trap_pop_ignored() - -M libnemo-private/nemo-autorun.c - -commit aeb53075ed55dc2a2ef3228917ded1b8029bfdff -Author: Cosimo Cecchi -Date: 2010-09-19 - - entry: rename GtkEditableClass->GtkEditableInterface - -M libnemo-private/nemo-entry.c - -commit 64dcbea2a005e4ed8bb4945d06a943058b8c7ba8 -Author: Cosimo Cecchi -Date: 2010-09-19 - - [ln-p] convert to new GDK_KEY prefix - -M libnemo-private/nemo-autorun.c -M libnemo-private/nemo-entry.c -M libnemo-private/nemo-icon-container.c - -commit 499c54a20b64051e427ff5746fc7c8dd1a1885c2 -Author: Cosimo Cecchi -Date: 2010-09-19 - - [eel] convert to new GDK_KEY prefix - -M eel/eel-editable-label.c - -commit a58bbde4ca6b11eeb1bca5fa4e62e60c0b26271b -Author: Cosimo Cecchi -Date: 2010-09-19 - - editable-label: rename GtkEditableClass->GtkEditableInterface - -M eel/eel-editable-label.c - -commit 73e2941f9b837d5d0326e6e88caa7a1e3fdcabeb -Author: Cosimo Cecchi -Date: 2010-09-19 - - Don't use gtk_dialog_set_has_separator() - -M libnemo-private/nemo-autorun.c -M libnemo-private/nemo-file-conflict-dialog.c -M libnemo-private/nemo-open-with-dialog.c -M src/file-manager/fm-directory-view.c -M src/file-manager/fm-properties-window.c -M src/nemo-connect-server-dialog.c -M src/nemo-location-dialog.c -M src/nemo-query-editor.c - -commit b66ce0fd23500f9727c1aac93366430285575697 -Author: Cosimo Cecchi -Date: 2010-09-19 - - Don't use GDK_DISPLAY () - -M libnemo-private/nemo-autorun.c -M src/file-manager/fm-desktop-icon-view.c - -commit 36836b7dc517a588b34117e05a45bc4026e77f71 -Author: Cosimo Cecchi -Date: 2010-09-19 - - Use gtk_size_request_get_size() - -M eel/eel-editable-label.c -M libnemo-private/nemo-horizontal-splitter.c -M libnemo-private/nemo-icon-container.c -M src/nemo-pathbar.c -M src/nemo-side-pane.c -M src/nemo-spatial-window.c -M src/nemo-zoom-control.c - -commit 93022eda89f650a82f8a17e332973ab88b2318a8 -Author: Žygimantas Beručka -Date: 2010-09-18 - - Updated Lithuanian translation - -M po/lt.po - -commit cfada2b36dd274b2d2835753fc87c69affbbba58 -Author: Cosimo Cecchi -Date: 2010-09-17 - - pathbar: use another way to remove buttons (#627901) - - This fixes a crasher in _size_allocate() where the list of buttons did - not contain valid data anymore. - -M src/nemo-pathbar.c - -commit 476d45bfd1dd71595e7d38f4d18c761fe2a85b78 -Author: Cosimo Cecchi -Date: 2010-09-17 - - Don't check for the eject button if the row doesn't have it (#628347) - - This sometimes caused false positives in the click-on-eject-button - detection method. - -M src/nemo-places-sidebar.c - -commit bfe278cbf84a441a951d48dc528f20226127e1f3 -Author: Cosimo Cecchi -Date: 2010-09-17 - - Clear the list model in _finalize() instead of _dispose() - - We have the only reference to the model anyway. This fixes a - crash when - _end_loading() is called for a windiow before it finished loading. - -M src/file-manager/fm-list-view.c - -commit 46544c9885b7064c216f1a9401d42bdb9816bdd2 -Author: Cosimo Cecchi -Date: 2010-09-17 - - preferences: use right link for the 'Media' help page (#564866). - -M src/nemo-file-management-properties.c - -commit 31ebe40c4a68db4a1fc57e1c942b2d94efce5a42 -Author: Kenneth Nielsen -Date: 2010-09-16 - - Updated Danish translation - -M po/da.po - -commit f9a85779d9ac73f280358bd96417ea69f2694361 -Author: Ivar Smolin -Date: 2010-09-14 - - [l10n] Updated Estonian translation - -M po/et.po - -commit 72a4af08ca5139d5ad6511667dbe5631e5962ae7 -Author: Ivar Smolin -Date: 2010-09-13 - - [l10n] Updated Estonian translation - -M po/et.po - -commit 2c5a174abaeb3ce79bde382617289e358a59b102 -Author: Takayuki KUSANO -Date: 2010-09-13 - - Updated Japanese translation. - -M po/ja.po - -commit a3213bb051bb1843e7a0c1a2d47d865219b47dcd -Author: Luca Ferretti -Date: 2010-09-12 - - Updated Italian translation - -M po/it.po - -commit 802146d70642abf27a4f7dde398f775545da3794 -Author: Duarte Loreto -Date: 2010-09-12 - - Updated Portuguese translation - -M po/pt.po - -commit 4dd8de5b24c7c9774b62207cbc067b715af6942d -Author: Mario Blättermann -Date: 2010-09-12 - - [i18n] Updated German translation - -M po/de.po - -commit 8962e6db60a335e72046e2444d9c02e7d3e1182f -Author: Wouter Bolsterlee -Date: 2010-09-12 - - Updated Dutch translation by Wouter Bolsterlee - -M po/nl.po - -commit 60af1701491afbf686d1610ef7aad253f2904432 -Author: Wouter Bolsterlee -Date: 2010-09-12 - - Updated Dutch translation by Hannie Dumoleyn - -M po/nl.po - -commit f9ccf920434ba6795e4e62f3c95f927532f023c6 -Author: Christian Kirbach -Date: 2010-09-12 - - [i18n] Updated German translation - -M po/de.po - -commit e20fd8287c710dd5fcd15ed6a46efe3e5dea1b8a -Author: Bruce Cowan -Date: 2010-09-11 - - Updated British English translation - -M po/en_GB.po - -commit 1dc64c6c1ebba6a5434be80babc78e40c9dacdd7 -Author: Fran Diéguez -Date: 2010-09-11 - - Updated Galician translations - -M po/gl.po - -commit d37b72c14326182e51e797fc3af5ab9d5f310fb8 -Author: Ask H. Larsen -Date: 2010-09-11 - - Updated Danish translation - -M po/da.po - -commit adba30e6655ddf85edb179fff6626aec43520894 -Author: Cosimo Cecchi -Date: 2010-09-11 - - list-view: properly setup the editable widget (#627076) - -M src/file-manager/fm-list-view.c - -commit 265e669b9380eb11ef8ac928cce597d05dd70c7b -Author: Cosimo Cecchi -Date: 2010-09-10 - - Make file conflict strings i18n-friendly - - Thanks to Wouter Bolsterlee for the initial patch. - -M libnemo-private/nemo-file-conflict-dialog.c - -commit af61c416ffc291032bb2e199a03b7b071f0a77eb -Author: Jorge González -Date: 2010-09-09 - - Updated Spanish translation - -M po/es.po - -commit 2cab30a8acdca5d63937d129bdff12118a8b5cb3 -Author: Jorge González -Date: 2010-09-09 - - Updated Spanish translation - -M po/es.po - -commit fa28706c9878e0123fa4ce5576d4e4f37a91f23a -Author: Takayuki KUSANO -Date: 2010-09-10 - - Updated Japanese translation. - -M po/ja.po - -commit 94275d4a786eba1dd51d020912fa74d9b19d91ad -Author: Piotr Drąg -Date: 2010-09-07 - - Updated Polish translation - -M po/pl.po - -commit 51f313e623c282d4540728e0adedbb7b0e6a21ec -Author: Daniel Nylander -Date: 2010-09-05 - - Updated Swedish translation - -M po/sv.po - -commit e3519b6a8a22d9d9b6e7b421ec5ead1654f456db -Author: Matej Urbančič -Date: 2010-09-04 - - Updated Slovenian translation - -M po/sl.po - -commit 459216c23d064f7e2f194251a787f8f6365c29e2 -Author: drtv -Date: 2010-09-03 - - Updated Tamil translation - -M po/ta.po - -commit 9d98055c4547b0e2e7cb8920d5d1436178277a16 -Author: drtv -Date: 2010-09-03 - - Updated Tamil translation - -M po/ta.po - -commit 5a74a9e3ebab733a25afb7f73940757c698ed850 -Author: Wouter Bolsterlee -Date: 2010-09-02 - - Fix small error in Dutch translation - -M po/nl.po - -commit 430980aca7f1231df970c980e03847c02485ed34 -Author: Michael Kotsarinis -Date: 2010-08-31 - - l10n: Updated Greek translation - -M po/el.po - -commit 4f579bcdf37b188853ec1076954680bc91e175f6 -Author: Bruce Cowan -Date: 2010-08-31 - - Updated British English translation - -M po/en_GB.po - -commit 1989b4be7d56d120c8fc57e40cba6155dcbae905 -Author: Mattias Põldaru -Date: 2010-08-31 - - [l10n] Updated Estonian translation - -M po/et.po - -commit d0086feb65c640926066dcc9d263153227e1a3c1 -Author: Gabor Kelemen -Date: 2010-08-30 - - Updated Hungarian translation - -M po/hu.po - -commit da6cdb1d2e2ddea2b46a78a4ea57f496bca6a995 -Author: Gabor Kelemen -Date: 2010-08-29 - - Updated Hungarian translation - -M po/hu.po - -commit 67c01533ab809e751ec2ceb3a81fd50c9c85ef2b -Author: Ivar Smolin -Date: 2010-08-29 - - [l10n] Updated Estonian translation - -M po/et.po - -commit ff83456b73cd2f6340fd0da57788f3c7c48b455b -Author: Dirgita -Date: 2010-08-29 - - Updated Indonesian translation - -M po/id.po - -commit e3c8b309386f4040b4c8853d78b8709e12fb4de8 -Author: Mattias Põldaru -Date: 2010-08-27 - - [l10n] Updated Estonian translation - -M po/et.po - -commit e6feba5047dc17decbda673d8df2de0dbb089140 -Author: Bruno Brouard -Date: 2010-08-26 - - Updated French translation - -M po/fr.po - -commit f233f2aeb78e5fd14c0b18f7a3c5e80b5e7c84c5 -Author: Cosimo Cecchi -Date: 2010-08-26 - - connect-dialog: don't use EEL boilerplate - -M src/nemo-connect-server-dialog.c - -commit 0f70ac4bb782b3c3fb0f5e8a24032cb344fdb2cc -Author: Cosimo Cecchi -Date: 2010-08-26 - - sidebar: don't try to add non-existing special dirs - -M src/nemo-places-sidebar.c - -commit 8277ddc798fc78793364b54444fa53e9a287b5cc -Author: Cosimo Cecchi -Date: 2010-08-26 - - sidebar: don't allow selecting headers - -M src/nemo-places-sidebar.c - -commit 0f7e56b5e0ae5134ed1d8caeadcb3c684ae7f661 -Author: Cosimo Cecchi -Date: 2010-08-26 - - sidebar: add myself to the authors - -M src/nemo-places-sidebar.c - -commit 1fdfa522da3e7c672fe4202c591a928c8796bb06 -Author: Cosimo Cecchi -Date: 2010-08-26 - - sidebar: fix bookmark renaming - - Regression of the new sidebar. - -M src/nemo-places-sidebar.c - -commit 2f847f37f429062d58df3927d10bc52c67a4524f -Author: Cosimo Cecchi -Date: 2010-08-26 - - icon-names: fix a typo - -M libnemo-private/nemo-icon-names.h - -commit 0dc6f5ddf472ba2033cdee0ba41cf78696e4017f -Merge: ce419d9 a59e586 -Author: Cosimo Cecchi -Date: 2010-08-25 - - Merge branch 'sidebar_revamp' - -commit a59e586adf32eea64c9c4ae08a5482d2a9c37fb1 -Author: Cosimo Cecchi -Date: 2010-08-25 - - sidebar: redesign the Places sidebar - - According to http://live.gnome.org/Nemo/UIRoadmap/Places - -M src/nemo-places-sidebar.c - -commit 2d9d47254908533d1eb20e16e091f91310052e93 -Author: Cosimo Cecchi -Date: 2010-08-25 - - sidebar: fix eject button highlighting - -M src/nemo-places-sidebar.c - -commit 1df83c6586560a8ae5efc96037e673e52b4b119b -Author: Cosimo Cecchi -Date: 2010-08-25 - - icon-info: add a method to fetch GIcons for user special dirs - -M libnemo-private/nemo-icon-info.c -M libnemo-private/nemo-icon-info.h -M libnemo-private/nemo-icon-names.h - -commit ce419d9bc7536af2e5e4f0c6122b79070cadddca -Author: Aurimas Černius -Date: 2010-08-23 - - Updated Lithuanian translation - -M po/lt.po - -commit 1346a15744ce3aa7f8f52aade250d6a303b33bf2 -Author: Aron Xu -Date: 2010-08-23 - - Update Simplified Chinese translation. - -M po/zh_CN.po - -commit fd75e8f5e8b160eaba22ca4ed7efc852dba612a0 -Author: Cosimo Cecchi -Date: 2010-08-22 - - pathbar: release the highlight path on dispose - -M src/nemo-places-sidebar.c - -commit 6f5777b81958ce6f3dbc6bac3323d423d3dcc20b -Author: Cosimo Cecchi -Date: 2010-08-22 - - sidebar: don't update the icon if it's not visible - - This greatly reduces the number of times we have to create a pixbuf - (only once-per-highlight now). - -M src/nemo-places-sidebar.c - -commit a43bc7def3976947b9624113d18167211e76f9b8 -Author: Cosimo Cecchi -Date: 2010-08-22 - - pathbar: make sure |path| is always valid and memory released - -M src/nemo-places-sidebar.c - -commit f4ae07c8741d2e8cc6b96450c8bb86e532b59137 -Author: Cosimo Cecchi -Date: 2010-08-22 - - sidebar: use _icon_info_lookup_from_name () - -M src/nemo-places-sidebar.c - -commit 63b2cac301970847f76f7bdbd12835117958d9be -Author: Marcus Carlson -Date: 2010-08-06 - - Add highlight to eject icon in places sidebar (#544103) - -M src/nemo-places-sidebar.c - -commit 3abe144501fcff60a65ebd621a51b45ffa5d113d -Author: Cosimo Cecchi -Date: 2010-08-22 - - Release 2.90.1 - -M NEWS -M po/POTFILES.in - -commit 1f64e4b0dd9729976a16d2cf14a6b7c6691ded1e -Author: Cosimo Cecchi -Date: 2010-08-21 - - [ln-p] remove unused NemoKeepLastVerticalBox - -M libnemo-private/Makefile.am -D libnemo-private/nemo-keep-last-vertical-box.c -D libnemo-private/nemo-keep-last-vertical-box.h - -commit ad5e896e1ce04485a115ee684a695b42ea0378a5 -Author: Cosimo Cecchi -Date: 2010-08-21 - - [eel] reorganize Makefile.am - -M eel/Makefile.am - -commit 7e8d1dfa6a17fe9189bf2489b735cd6462f03571 -Author: Cosimo Cecchi -Date: 2010-08-21 - - [eel] remove eel_gdk_window_focus - -M eel/eel-gdk-extensions.c -M eel/eel-gdk-extensions.h - -commit 6b06e0e27ca1cf29afd4fac716c58e15928a8ff8 -Author: Cosimo Cecchi -Date: 2010-08-21 - - icon-container: use gdk_window_focus - -M libnemo-private/nemo-icon-container.c - -commit fe94a33657d55a2463fa066e09a8ecbfc637c4bd -Author: Cosimo Cecchi -Date: 2010-08-21 - - [eel] remove EelAlertDialog - - This is unused now. - -M eel/Makefile.am -D eel/eel-alert-dialog.c -D eel/eel-alert-dialog.h - -commit 82c5b6c0d82ebd8a705d542fcc9aa58e6e9b0da4 -Author: Cosimo Cecchi -Date: 2010-08-21 - - [eel] use GtkMessageDialog for stock dialogs - - Instead of EelAlertDialog, which is going away. - -M eel/eel-stock-dialogs.c - -commit 930af7f3058eed256a42c0c1558c7307bb93f411 -Author: Cosimo Cecchi -Date: 2010-08-21 - - tree-view: don't include eel-alert-dialog.h - -M src/file-manager/fm-tree-view.c - -commit 7a3dcdd4bf667aac271be74988770e18575a7df2 -Author: Cosimo Cecchi -Date: 2010-08-21 - - mime-actions: use GtkMessageDialog - - Instead of EelAlertDialog, which is going away. - -M libnemo-private/nemo-mime-actions.c - -commit 51ec5861ca0697e802e8c003053211ac12f2fd54 -Author: Cosimo Cecchi -Date: 2010-08-21 - - file-operations: use GtkMessageDialog - - Instead of EelAlertDialog, which is going away. - -M libnemo-private/nemo-file-operations.c - -commit a2b4de80a94b4e049f1d2a7ef00a174865b5c9ec -Author: Cosimo Cecchi -Date: 2010-08-21 - - [eel] add an utility to pack details into a message dialog - - So that we can remove EelAlertDialog. - -M eel/eel-gtk-extensions.c -M eel/eel-gtk-extensions.h - -commit 394cb741c3e59df66f924771d4ef68866e602faa -Author: Cosimo Cecchi -Date: 2010-08-21 - - [eel] remove eel_gtk_signal* utilities - - These are unused now. - -M eel/eel-gtk-extensions.c -M eel/eel-gtk-extensions.h - -commit 57b66862a53298468755e12ca3712569274f0a32 -Author: Cosimo Cecchi -Date: 2010-08-21 - - [eel] remove functions to set widget backgrounds - - These are unused now. - -M eel/eel-gtk-extensions.c -M eel/eel-gtk-extensions.h - -commit 472f3e1433ecb3d5e1a7fc8707975f45dd8d0469 -Author: Cosimo Cecchi -Date: 2010-08-21 - - [eel] remove functions to handle accelerators - - These are unused now. - -M eel/eel-gtk-extensions.c -M eel/eel-gtk-extensions.h - -commit cab696f7d760f5ee63f0a623b13d27b76d2f2d00 -Author: Cosimo Cecchi -Date: 2010-08-21 - - bk-window: don't use _event_is_close_accelerator() - -M src/nemo-bookmarks-window.c - -commit f4432dfba1e8f545d3aeeed5989bd30bba52d160 -Author: Cosimo Cecchi -Date: 2010-08-21 - - slot: cleanup previous commit - - There was an unused variable left - -M src/nemo-window-slot.c -M src/nemo-window-slot.h - -commit 712cf85b9c44fc93b8f506bfb03ea06cb58eb5e6 -Author: Cosimo Cecchi -Date: 2010-08-21 - - Add a border around info bars (#621366). - -M src/file-manager/fm-directory-view.c -M src/nemo-window-slot.c -M src/nemo-window-slot.h - -commit 93798c75a1ae3cbd3a85a4ce79b5521b562a7074 -Author: Cosimo Cecchi -Date: 2010-08-21 - - spatial-window: cleanups - - - Don't do anything else than checking/scheduling a source in the - conifigure-event callback - - Avoid useless roundtrips through GFile - - Avoid some casts, so we don't do useless type-checking in a row - on the - same object - -M src/nemo-spatial-window.c - -commit 5973bc50618d1fe69247e3e2ec6eb8cf3213000b -Author: Cosimo Cecchi -Date: 2010-08-21 - - window: remove dead prototypes - -M src/nemo-window-private.h -M src/nemo-window.h - -commit ef13366e667f848adc6b96509612e3321554d188 -Author: Cosimo Cecchi -Date: 2010-08-21 - - desktop-window: cleanups - -M src/nemo-desktop-window.c - -commit eb88f44bd27e11607cb5466c943b9caad0202110 -Author: Cosimo Cecchi -Date: 2010-08-21 - - window: remove dead function - -M src/nemo-window.c -M src/nemo-window.h - -commit cf152f9ec75714af2b14be2750f9ea84daab361a -Author: Cosimo Cecchi -Date: 2010-08-21 - - undo-manager: remove dead code - -M libnemo-private/nemo-undo-manager.c -M libnemo-private/nemo-undo-manager.h - -commit 90eb723490ab0338d3d2f1acd02ae5af5fdea819 -Author: Cosimo Cecchi -Date: 2010-08-20 - - about: add some authors and update year - -M src/nemo-window-menus.c - -commit 21e75511d2466bd814a31031472323d3cd8ae6c1 -Author: Cosimo Cecchi -Date: 2010-08-20 - - [file-manager] autogenerate marshallers - -M src/file-manager/Makefile.am -M src/file-manager/fm-directory-view.c - -commit 608918449f548b0d3ea3e7916c944b077ac43e87 -Author: Cosimo Cecchi -Date: 2010-08-20 - - [src] autogenerate marshallers - -M src/Makefile.am -M src/nemo-query-editor.c -M src/nemo-window.c - -commit 6509c91b48f52c72c868f2ca7a9b47c46b9e0bc6 -Author: Cosimo Cecchi -Date: 2010-08-20 - - [ln-p] autogenerate marshallers - -M libnemo-private/Makefile.am -M libnemo-private/nemo-icon-container.c -D libnemo-private/nemo-marshal.c -D libnemo-private/nemo-marshal.list - -commit 75a03a440ebff23ccbf8674ca4a0e9f6475ebbb8 -Author: Cosimo Cecchi -Date: 2010-08-20 - - [eel] simplify build system - - We don't need the enumtypes anymore, and the marshallers can easily be - autogenerated. - -M eel/Makefile.am -M eel/eel-background.c -D eel/eel-types.c -D eel/eel-types.h -M eel/eel.h -D eel/eelmarshal.list -D eel/makeenums.pl -D eel/maketypes.awk -D eel/update-from-egg.sh - -commit 52a37d6e46fc34cef6061bc91aa02847652f3c9d -Author: Cosimo Cecchi -Date: 2010-08-20 - - [ln-p] remove unused nemo-iso9660.h - -M libnemo-private/Makefile.am -D libnemo-private/nemo-iso9660.h - -commit 1d660252b408f3628a2d3d5943abcf6bfdd9091b -Author: Cosimo Cecchi -Date: 2010-08-20 - - tree-model: only display the first emblem - - Only display the first emblem we can render. - -M src/file-manager/fm-tree-model.c - -commit 5c08250adf30f2e24b4455fd3c08e81dc3ff4987 -Author: Cosimo Cecchi -Date: 2010-08-20 - - list-model: display only the first emblem - - Only display the first emblem we can render. - -M src/file-manager/fm-list-model.c - -commit 110a0e8f2b9ec96b34e4b76390e3f78adc9cda30 -Author: Cosimo Cecchi -Date: 2010-08-20 - - icon-info: add nemo_icon_theme_can_render() - -M libnemo-private/nemo-icon-info.c -M libnemo-private/nemo-icon-info.h - -commit 25b48e9d1f4c847e2fc95b9b9893e63ba7081658 -Author: Cosimo Cecchi -Date: 2010-08-19 - - [ln-p] remove NemoCellRendererPixbufEmblem - - It's useless now. - -M libnemo-private/Makefile.am -D libnemo-private/nemo-cell-renderer-pixbuf-emblem.c -D libnemo-private/nemo-cell-renderer-pixbuf-emblem.h - -commit d2cbf993766d7b63f50431ab483035d01c267cdb -Author: Cosimo Cecchi -Date: 2010-08-19 - - tree-view: don't use NemoCellRendererPixbufEmblem - -M src/file-manager/fm-tree-view.c - -commit 1694d7141bbe4a29e54cff77def697a6c9b4e118 -Author: Cosimo Cecchi -Date: 2010-08-19 - - tree-model: use GEmblemedIcon - - Use GEmblemedIcon instead of a separate column to render emblems. - -M src/file-manager/fm-tree-model.c -M src/file-manager/fm-tree-model.h - -commit 69740a3c7fd3a2e1cea99c0dc61b3c735993e4bb -Author: Cosimo Cecchi -Date: 2010-08-19 - - list-view: don't use NemoCellRendererPixbufEmblem - -M src/file-manager/fm-list-view.c - -commit a187f8a4cdcc46f56c0cb03c31b9b7c92c747a88 -Author: Cosimo Cecchi -Date: 2010-08-19 - - list-model: use GEmblemedIcon - - Use GEmblemedIcon instead of other columns to render emblems. - -M src/file-manager/fm-list-model.c -M src/file-manager/fm-list-model.h - -commit e42ddad5109f193bf8a5b3c0c6cd7cf4b1408300 -Author: Cosimo Cecchi -Date: 2010-08-19 - - [eel] remove eel-pango-extensions - -M eel/Makefile.am -M eel/eel-lib-self-check-functions.h -D eel/eel-pango-extensions.c -D eel/eel-pango-extensions.h -M eel/eel.h - -commit f080b86daeb571def4c092e1524e9adfc7700699 -Author: Cosimo Cecchi -Date: 2010-08-19 - - Don't include eel-pango-extensions.h - -M eel/eel-gtk-extensions.c -M libnemo-private/nemo-file-operations.c -M libnemo-private/nemo-icon-canvas-item.c - -commit 931644a649175b1886dce5cc8e50c21380f8b8b0 -Author: Cosimo Cecchi -Date: 2010-08-19 - - [test] remove test-eel-image-scrolled - - It only increases compilation time - -M test/Makefile.am -D test/test-eel-image-scrolled.c - -commit 2f202206fee4e1917494e3f4652e22648097c765 -Author: Cosimo Cecchi -Date: 2010-08-19 - - [eel] cleanup eel-vfs-extensions - -M eel/eel-vfs-extensions.c -M eel/eel-vfs-extensions.h - -commit 230581b5d58650c1f50f7d9fda9ab3a1f211361a -Author: Cosimo Cecchi -Date: 2010-08-19 - - [eel] cleanup eel-glib-extensions - -M eel/eel-glib-extensions.c -M eel/eel-glib-extensions.h - -commit fbccd9bfaa9c983dccc60d040b63b86521306788 -Author: Cosimo Cecchi -Date: 2010-08-19 - - [eel] cleanup eel-gnome-extensions - -M eel/eel-gnome-extensions.c -M eel/eel-gnome-extensions.h - -commit 48c6012e89fb1362e418d4bf56c05614f1515eab -Author: Cosimo Cecchi -Date: 2010-08-19 - - [eel] remove unused eel_make_semitransparent() - -M eel/eel-graphic-effects.c -M eel/eel-graphic-effects.h - -commit 9c9c619ae2d4e9dbdc9be175679abad3a174ca32 -Author: Cosimo Cecchi -Date: 2010-08-19 - - [test] remove eel-pixbuf-scale test - -M test/Makefile.am -D test/test-eel-pixbuf-scale.c - -commit 7ed8e2d7b90489f41ad674aa4758728dce62fa77 -Author: Cosimo Cecchi -Date: 2010-08-19 - - [eel] remove unused code from eel-gdk-pixbuf-extensions - -M eel/eel-gdk-pixbuf-extensions.c -M eel/eel-gdk-pixbuf-extensions.h -M eel/eel-lib-self-check-functions.h - -commit 6b2a053985b8c37aa1038e7a01ab05d7dd15aa2e -Author: Cosimo Cecchi -Date: 2010-08-19 - - [eel] remove unused code from eel-gdk-extensions - -M eel/eel-gdk-extensions.c -M eel/eel-gdk-extensions.h - -commit d2fb7d661a639633473c9339ea2004f18ad3fcf2 -Author: Cosimo Cecchi -Date: 2010-08-19 - - [eel] remove eel-art-gtk-extensions - -M eel/Makefile.am -D eel/eel-art-gtk-extensions.c -D eel/eel-art-gtk-extensions.h -M eel/eel.h - -commit 2bfd4e3694e2f726592bae5341d7e4c7464ec415 -Author: Cosimo Cecchi -Date: 2010-08-19 - - [eel] don't include eel-art-gtk-extensions.h - -M eel/eel-gdk-pixbuf-extensions.c - -commit 940dddbb6ce26138a5325f8a1352b6be6dc6b4ff -Author: Cosimo Cecchi -Date: 2010-08-19 - - [eel] remove eel-debug-drawing - -M eel/Makefile.am -D eel/eel-debug-drawing.c -D eel/eel-debug-drawing.h - -commit 8447fd3670021530b6340829f27f1d689b633d3a -Author: Cosimo Cecchi -Date: 2010-08-19 - - [eel] use glib's i18n API instead of eel's - -M eel/eel-alert-dialog.c -M eel/eel-canvas.c -M eel/eel-editable-label.c -M eel/eel-glib-extensions.c -M eel/eel-gnome-extensions.c -M eel/eel-stock-dialogs.c -M eel/eel-vfs-extensions.c - -commit 742b9fb1550ceec9284f581c3741c0a864ca82fd -Author: Cosimo Cecchi -Date: 2010-08-19 - - [eel] remove eel-i18n.[ch] - -M eel/Makefile.am -D eel/eel-i18n.c -D eel/eel-i18n.h - -commit 296efa481c76046e60481eec119da749fad15ba8 -Author: Cosimo Cecchi -Date: 2010-08-19 - - [eel] remove EelGtkContainer - -M eel/Makefile.am -D eel/eel-gtk-container.c -D eel/eel-gtk-container.h -M eel/eel.h - -commit 3f68e342205f4446a99c1c18d34f23e33e11cae2 -Author: Cosimo Cecchi -Date: 2010-08-18 - - Revert "Add a border around info bars (#621366)." - - This reverts commit 48c0e19e60eee88f38a6e9c7a51211376a4c90f9. - -M src/file-manager/fm-directory-view.c -M src/nemo-window-slot.c -M src/nemo-window-slot.h - -commit f5e2ed4c8a54340d26097c08eebd0b4d5f7c7cb7 -Author: Baurzhan Muftakhidinov -Date: 2010-08-18 - - l10n: Added Kazakh translation for nemo - -A po/kk.po - -commit e3b6eaf2a5c251014e9df40ff5d880ce92647db5 -Author: Baurzhan Muftakhidinov -Date: 2010-08-18 - - l10n: Added Kazakh (kk) to po/LINGUAS - -M po/LINGUAS - -commit 7397d9967125b8ef5ac39d8ad331ed22498d53cd -Author: Милош Поповић -Date: 2010-08-16 - - Updated Serbian translation - -M po/sr.po -M po/sr@latin.po - -commit d433ee1280fd7fa821de5941db1c972124633c29 -Author: Cosimo Cecchi -Date: 2010-08-14 - - pathbar: walk the buttons in the right order - - When a file is gone, walk the button items in the right order, - i.e. the - reversed one, otherwise we end up removing the entire pathbar. - -M src/nemo-pathbar.c - -commit d8cfb36f697bdf9130e36cdb60c375a9b363fbbe -Author: Cosimo Cecchi -Date: 2010-08-14 - - pathbar: use g_list_free_1 where appropriate - -M src/nemo-pathbar.c - -commit 76ab7b6266b3fd050c11f6365981d21f8c22b364 -Author: Cosimo Cecchi -Date: 2010-08-14 - - pathbar: add missing modeline - -M src/nemo-pathbar.c - -commit aa43821e73d60804a3f0f2ebafb66aab53b440e1 -Author: Cosimo Cecchi -Date: 2010-08-13 - - [ln-p] use the 'outline-stippling' property on DnD - -M libnemo-private/nemo-icon-dnd.c - -commit b453aaacb0b17392eacacd8a9e378b7227da6413 -Author: Cosimo Cecchi -Date: 2010-08-13 - - [eel] add an 'outline-stippling' property to the rect item - -M eel/eel-canvas-rect-ellipse.c -M eel/eel-canvas-rect-ellipse.h - -commit b10d8c00395026719dc0840e9d82e682c7c4e436 -Author: Cosimo Cecchi -Date: 2010-08-13 - - [ln-p] properly dash the icon when resizing it - -M libnemo-private/nemo-icon-canvas-item.c - -commit 29d7b86087f6ab86f6abd6c3c08c4e1d94b92b36 -Author: Cosimo Cecchi -Date: 2010-08-13 - - [ln-p] make drawing of resize knobs work again - -M libnemo-private/nemo-icon-canvas-item.c - -commit cbdf5829637093c0a5c0a4ff4d303ad184847627 -Author: Benjamin Otte -Date: 2010-08-13 - - [ln-p] port nemo-icon-private to cairo drawing - -M libnemo-private/nemo-icon-private.h - -commit 34a376c97717cb05187b3d880e991c2d23511109 -Author: Benjamin Otte -Date: 2010-08-13 - - [ln-p] port nemo-icon-dnd to cairo drawing - -M libnemo-private/nemo-icon-dnd.c -M libnemo-private/nemo-icon-dnd.h - -commit 8eab39c06628da7cf919be77d922024198105f0a -Author: Benjamin Otte -Date: 2010-08-13 - - [ln-p] port NemoIconContainer to cairo drawing - -M libnemo-private/nemo-icon-container.c - -commit 89bd44de6bb11450b88d9d160593b65d62467579 -Author: Benjamin Otte -Date: 2010-08-13 - - [ln-p] port NemoIconCanvasItem to cairo drawing - -M libnemo-private/nemo-icon-canvas-item.c - -commit 6c691075c09ec23620484da00ffd43d3dfe0b75b -Author: Benjamin Otte -Date: 2010-08-13 - - [ln-p] port NemoDirectoryBackground to cairo drawing - -M libnemo-private/nemo-directory-background.c - -commit dfbf8b9b5636dceb3d6291c980d2c349afc849d7 -Author: Benjamin Otte -Date: 2010-08-13 - - [ln-p] port NemoCellRendererPixbufEmblem to cairo drawing - -M libnemo-private/nemo-cell-renderer-pixbuf-emblem.c - -commit a904f4acd546151ab37ee03bcce87869a805c323 -Author: Cosimo Cecchi -Date: 2010-08-13 - - [eel] remove dead code from eel-gtk-extensions - -M eel/eel-gtk-extensions.c -M eel/eel-gtk-extensions.h - -commit 172af77cfbdc4910034a100a99aa1ec2cb843495 -Author: Benjamin Otte -Date: 2010-08-13 - - [eel] port eel-gdk-pixbuf-extensions to cairo drawing - -M eel/eel-gdk-pixbuf-extensions.c -M eel/eel-gdk-pixbuf-extensions.h - -commit 917a27a6f69509720fadd0d50e40dbc87ae9f5d2 -Author: Benjamin Otte -Date: 2010-08-13 - - [eel] port eel-gdk-extensions to cairo drawing - -M eel/eel-gdk-extensions.c -M eel/eel-gdk-extensions.h - -commit 6cb78fb15c89e53e60ee54dc8b773db6ca0def73 -Author: Benjamin Otte -Date: 2010-08-13 - - [eel] port EelEditableLabel to cairo drawing - -M eel/eel-editable-label.c -M eel/eel-editable-label.h - -commit e716f82eea847e5298d773e2689642813db3d36e -Author: Benjamin Otte -Date: 2010-08-13 - - [eel] port eel-debug-drawing to cairo drawing - -M eel/eel-debug-drawing.c - -commit 759f3401bee333caf6d0ae6ae9820cdadda440e4 -Author: Benjamin Otte -Date: 2010-08-13 - - [eel] port EelCanvas to cairo drawing - -M eel/eel-canvas.c -M eel/eel-canvas.h - -commit 820d4088a4d1768cf7e16de3c8ec0d7ff383f473 -Author: Benjamin Otte -Date: 2010-08-13 - - [eel] port EelCanvasRE to cairo drawing - -M eel/eel-canvas-rect-ellipse.c -M eel/eel-canvas-rect-ellipse.h - -commit 28b6813b77c4776b789231d3c64be3be01748608 -Author: Benjamin Otte -Date: 2010-08-13 - - [eel] port EelBackground to cairo drawing - -M eel/eel-background.c - -commit a9fece4d5cc759ee5d7c1f1761bbebc597a3d912 -Author: Cosimo Cecchi -Date: 2010-08-12 - - Actually check for gsettings-desktop-schemas - -M configure.in - -commit 7aca581c68aa1174f635cb79f24ba394f5ae1d3a -Author: Cosimo Cecchi -Date: 2010-08-12 - - Bump to 2.90.1 on master. - -M configure.in - -commit 8973b8b20308ae6bb24881385597294e1209a2b0 -Author: Fran Diéguez -Date: 2010-08-11 - - Updated galician translations - -M po/gl.po - -commit c938ed5839ddba4654818dacf437633d168865eb -Author: Gheyret T.Kenji -Date: 2010-08-11 - - Added UG translation - -M po/LINGUAS -A po/ug.po - -commit 8ceed8e258c83975c1a7d4de71884505d64bb572 -Author: Daniel Nylander -Date: 2010-08-10 - - Updated Swedish translation - -M po/sv.po - -commit d24a302fbaad263c207cd2fded2719cf17753699 -Author: Yaron Shahrabani -Date: 2010-08-10 - - Updated Hebrew translation. - -M po/he.po - -commit 9db6cf3ed43eebf0ded2aacaaed883eface75e92 -Author: Marcus Carlson -Date: 2010-08-04 - - Better (shorter) text when emptying trash (#304336) - -M libnemo-private/nemo-file-operations.c - -commit 8598d769993843e1e6529a661fea034785ca0091 -Author: Marcus Carlson -Date: 2010-08-02 - - Adds option to open new tab in tab bar context menu (#590714) - -M src/nemo-navigation-window-menus.c -M src/nemo-navigation-window-pane.c -M src/nemo-window.c -M src/nemo-window.h - -commit 489a146546100d6429fb1705c99a23e959838b2c -Author: Marcus Carlson -Date: 2010-08-09 - - Removes doublespacing strings (#577535) - -M libnemo-private/nemo-program-choosing.c - -commit 69c7b1850cf7125a3289c9a57c8335eb29a7053d -Author: Marcus Carlson -Date: 2010-08-04 - - Adds "Free space: " to the end of the current status string (#588641) - -M src/file-manager/fm-directory-view.c - -commit 19dc1d9dbf2c1be17d7ad502ba0710e76f5de9ff -Author: Marcus Carlson -Date: 2010-08-09 - - Open current folder properties on Alt+Enter and Ctrl+I (#569694) - -M src/file-manager/fm-actions.h -M src/file-manager/fm-directory-view.c -M src/file-manager/nemo-directory-view-ui.xml - -commit 2b107d37a85ff03f84ecb63bb0b356dac43261f0 -Author: Marcus Carlson -Date: 2010-08-09 - - Enable scaling of icons on desktop only (#589295) - -M src/file-manager/fm-desktop-icon-view.c -M src/file-manager/fm-icon-view.c -M src/file-manager/fm-icon-view.h - -commit 5319feba3457213b656575893eeb973bde37a722 -Author: Marcus Carlson -Date: 2010-07-31 - - Hide all windows before closing when closing all windows (#441095) - -M src/nemo-application.c - -commit 59799e3e26476382ddd45d311e22db164474bbb2 -Author: Marcus Carlson -Date: 2010-07-05 - - Ellipseze bookmarks editing window renderer (#319159) - -M src/nemo-bookmarks-window.c - -commit 4bd09dd6ac7771579dc9e5af8779371c569a54ae -Author: Andika Triwidada -Date: 2010-08-10 - - Updated Indonesian translation - -M po/id.po - -commit 3988f758f0086a3b0cc149a9b7f4ebdc4bb9ef69 -Author: Yaron Shahrabani -Date: 2010-08-09 - - Updated Hebrew translation. - -M po/he.po - -commit aa27b362af03f198d5e49dbba85d662348d8ae8b -Author: Nils-Christoph Fiedler -Date: 2010-08-08 - - Updated LowGerman translation - -M po/nds.po - -commit 51ad44b586793dcc040001ae4d4d5c622c0102bb -Author: Kjartan Maraas -Date: 2010-08-07 - - Updated Norwegian bokmål translation - -M po/nb.po - -commit ec99a1028efd2914a7ebaa5c85417168e956f4ef -Author: drtv -Date: 2010-08-07 - - Updated Tamil translation - -M po/ta.po - -commit 023076ad6a8cc79e8fcb11dfc769c801cbddc5d6 -Author: drtv -Date: 2010-08-07 - - Updated Tamil translation - -M po/ta.po - -commit 516733dba0f33edab1944649693bba271263daf4 -Author: drtv -Date: 2010-08-06 - - Updated Tamil translation - -M po/ta.po - -commit 803071c151adb67daaa669cbaa2614181157b82f -Author: Fran Diéguez -Date: 2010-08-05 - - Updated Galician translations - -M po/gl.po - -commit a9592caff33f54555d71715593879f09cfd6022a -Author: Claude Paroz -Date: 2010-08-05 - - Update POTFILES.in - -M po/POTFILES.in - -commit 0d33233e110922f614b7378f0ae9f8b94321dd06 -Author: Reuben Potts -Date: 2010-08-05 - - Added Manx translation - -M po/LINGUAS -A po/gv.po - -commit 36add5d8c8107a0c2ed97a64f2a644c2362566a4 -Author: Tomas Bzatek -Date: 2010-08-05 - - Remove lockdown from monitored GConf paths - -M libnemo-private/nemo-global-preferences.c - -commit 9e219b3750a2cf60897bcd6213957cb9635dc05f -Author: Tomas Bzatek -Date: 2010-08-05 - - Require gsettings-desktop-schemas - -M configure.in - -commit 3c8b43bf6c10e83d0bd8fd97e0dae7032339ba72 -Author: Tomas Bzatek -Date: 2010-08-05 - - Convert disable-command-line lockdown to gsettings - -M libnemo-private/nemo-global-preferences.c -M libnemo-private/nemo-global-preferences.h -M src/file-manager/fm-desktop-icon-view.c -M src/file-manager/fm-directory-view.c - -commit f871519fb28449c370448d8032294971ead1f162 -Author: Tomas Bzatek -Date: 2010-08-05 - - Remove unused gsettings schema keys - -M libnemo-private/org.gnome.nemo.gschema.xml.in - -commit 0c0d34f9cf2448303249122cd3baae6d1e32b93d -Author: Tomas Bzatek -Date: 2010-08-05 - - Re-enable commented-out keys in gsettings conversion file - - Please see bug 626106 for full story. - Let's hope data mapping will work one day, for now it makes no issues. - -M libnemo-private/nemo.convert - -commit 224ea80bceb93e01cd9676c14e24c27eb556b813 -Author: Sense Hofstede -Date: 2010-08-04 - - Updated Frisian translations - -M po/fy.po - -commit 60ce7af080842792df21af6ff7fadf4a6674cf60 -Author: Dirgita -Date: 2010-08-04 - - Updated Indonesian translation - -M po/id.po - -commit 6c71e95a995db6fa15fd97fb314152481676b23a -Author: Cosimo Cecchi -Date: 2010-08-03 - - Remove useless code for handling color drops - -M libnemo-private/nemo-dnd.h -M libnemo-private/nemo-file-dnd.c -M libnemo-private/nemo-icon-dnd.c - -commit 5ce852673cc5d5ae45bd042f9ab07916358f349a -Author: Cosimo Cecchi -Date: 2010-08-03 - - Use the actual action for GDK_ACTION_ASK drops - -M libnemo-private/nemo-icon-dnd.c - -commit 2a980bb67b95c9d6c8218181e8c492869beb126a -Author: Tomas Bzatek -Date: 2010-07-30 - - Add GSettings migration file - -M libnemo-private/Makefile.am -A libnemo-private/nemo.convert - -commit 3ea4de522ddba6ad9313dc3fdf2d6936b130913c -Author: Marcus Carlson -Date: 2010-08-02 - - Only show "Organize Desktop by Name" on Desktop (#530136) - -M src/file-manager/fm-icon-view.c - -commit f985fe76918ef299e3b580fef8922045c9a4cfed -Author: Cosimo Cecchi -Date: 2010-08-03 - - Don't unref the DBus proxy if it's NULL - -M libnemo-private/nemo-mime-actions.c - -commit 6d91cfb1d053a433cc5e17336c2e22c4e1d71673 -Author: Cosimo Cecchi -Date: 2010-08-01 - - Correctly show the multiple files warning - - Only show it when we're actually opening files, not folders. - -M libnemo-private/nemo-mime-actions.c - -commit 5b31e211ff20645c548949bd8d012b7bcaa39bf2 -Author: Ankit Patel -Date: 2010-07-27 - - Updated Gujarati Translations to correct dynamic variables mistakes - -M po/gu.po - -commit a1a8f97c9dcd9fdbbbfdddcec7f7d8da85a68dfb -Author: Runa Bhattacharjee -Date: 2010-07-27 - - Updated Bengali India Translation - -M po/bn_IN.po - -commit 52cf8ee6614dc311412ccecd8ea229d7b8c2a091 -Author: Marcus Carlson -Date: 2010-07-25 - - Enter key when combo box has focus validates new media dialog - (#589436) - -M libnemo-private/nemo-autorun.c - -commit 915e5523947fe049e06f9bd8574760f6765e8ad7 -Merge: 84b89c5 e50565b -Author: Cosimo Cecchi -Date: 2010-07-26 - - Merge branch 'remove-emblems-splitted' - -commit e50565bae0943c3bfe7025fc1f9728b07ef6ebd4 -Author: Cosimo Cecchi -Date: 2010-07-26 - - Remove sort by emblems in the UI file. - -M src/nemo-file-management-properties.ui - -commit 786dfd9d98dd7d313fa9cc33a7ebb500f100262c -Author: Cosimo Cecchi -Date: 2010-07-26 - - Remove emblem references from the GSettings schema. - -M libnemo-private/org.gnome.nemo.gschema.xml.in - -commit 326e6b14fbb7c106b35993ad3db8f243e38b3e44 -Author: Cosimo Cecchi -Date: 2010-07-26 - - Remove useless struct. - -M libnemo-private/nemo-file-private.h - -commit edfa318f2624bccba7b002c4176a839bf36136bd -Author: Cosimo Cecchi -Date: 2010-07-26 - - Remove useless defines. - -M libnemo-private/nemo-icon-names.h - -commit 09778cd3845fd3b6cf890d8263575e1a188fcdb2 -Author: Cosimo Cecchi -Date: 2010-07-26 - - Remove useless defines. - -M libnemo-private/nemo-file.h - -commit 23c1dbcac260018428949bb954dff65dd774ee11 -Author: Cosimo Cecchi -Date: 2010-07-26 - - Readd code to read emblems provided by extensions. - -M libnemo-private/nemo-file.c -M libnemo-private/nemo-file.h - -commit 84b89c5e4c1e7185d053c59fb6b14f72c1670e88 -Author: Daniel Nylander -Date: 2010-07-25 - - Updated Swedish translation - -M po/sv.po - -commit 2f21906e0f8d54df736a13e38f7b84013f8afb33 -Author: Cosimo Cecchi -Date: 2010-07-25 - - [data] remove other unused icons - -M icons/Makefile.am -D icons/backgrounds.png -D icons/chit_frame.png -D icons/colors.png -D icons/emblems.png -D icons/erase.png - -commit 87469500d98babc7d74a74d2e6a88535a1b5ad95 -Author: Cosimo Cecchi -Date: 2010-07-25 - - [data] remove patterns - -M configure.in -M data/Makefile.am -D data/patterns/Makefile.am -D data/patterns/blue_gray_rough.png -D data/patterns/blue_ridge.png -D data/patterns/blue_type.png -D data/patterns/brushed_metal.png -D data/patterns/burlap.jpg -D data/patterns/camouflage.png -D data/patterns/chalk.jpg -D data/patterns/cork.png -D data/patterns/countertop.png -D data/patterns/dark-gnome.jpg -D data/patterns/dots.png -D data/patterns/fibers.png -D data/patterns/fleur_de_lis.png -D data/patterns/floral.png -D data/patterns/fossil.png -D data/patterns/gnome.jpg -D data/patterns/green_weave.png -D data/patterns/ice.png -D data/patterns/manila_paper.png -D data/patterns/moss_ridge.png -D data/patterns/numbers.png -D data/patterns/ocean_stripes.png -D data/patterns/purple_marble.png -D data/patterns/reset.png -D data/patterns/ridged_paper.png -D data/patterns/rough_paper.png -D data/patterns/sky_ridge.png -D data/patterns/snow_ridge.png -D data/patterns/stucco.jpg -D data/patterns/terracotta.png -D data/patterns/wavy_white.png - -commit b5dd2515600f6dca2543aed45ae5455d9626ae92 -Author: Cosimo Cecchi -Date: 2010-07-25 - - [data] remove useless browser file - -M data/Makefile.am -D data/browser.xml - -commit 1abbbd936663d91c8d4b854a0beed41f64d85f73 -Author: Cosimo Cecchi -Date: 2010-07-25 - - [src] remove useless nemo-emblem-utils - -M libnemo-private/Makefile.am -D libnemo-private/nemo-emblem-utils.c -D libnemo-private/nemo-emblem-utils.h -M src/file-manager/fm-properties-window.c - -commit f9be00dfbf7e6baa1ee66e3ed0d392b26d23b665 -Author: Cosimo Cecchi -Date: 2010-07-25 - - [src] remove unused sort option - -M src/nemo-file-management-properties.c - -commit a147dffbf4ffbb11063f820a26537484bc67b558 -Author: Cosimo Cecchi -Date: 2010-07-25 - - [src] remove useless variables. - -M src/file-manager/fm-properties-window.c - -commit 48df65532da4646db7250452e7cfb731f5773566 -Author: Cosimo Cecchi -Date: 2010-07-25 - - Remove [_set/_get]_keywords API from NemoFile. - -M libnemo-private/nemo-file.c -M libnemo-private/nemo-file.h - -commit 988e0ef8c5048ed7add4441f2325a5eb725b728e -Author: Cosimo Cecchi -Date: 2010-07-25 - - Remove 'Sort by Emblems' from the views. - -M src/file-manager/fm-icon-view.c -M src/file-manager/fm-list-view.c -M src/file-manager/nemo-icon-view-ui.xml - -commit 4c465f5590f3e908b98197faeb63767193bb6e79 -Author: Cosimo Cecchi -Date: 2010-07-25 - - Remove dead code from the properties window. - -M src/file-manager/fm-properties-window.c - -commit d58d42c261db94bf0d538698939698f2aeb63d1d -Author: Cosimo Cecchi -Date: 2010-07-25 - - Remove code to handle emblems in DnD. - -M libnemo-private/nemo-dnd.h -M libnemo-private/nemo-file-dnd.c -M libnemo-private/nemo-file-dnd.h -M libnemo-private/nemo-icon-dnd.c -M libnemo-private/nemo-tree-view-drag-dest.c - -commit 3e1347c1100095b38deb2431a434ad56e543aafa -Author: Cosimo Cecchi -Date: 2010-07-25 - - Remove code for handling reset backgorund in DnD. - -M libnemo-private/nemo-dnd.h -M libnemo-private/nemo-file-dnd.c -M libnemo-private/nemo-icon-dnd.c -M src/file-manager/fm-properties-window.c - -commit 82bfad0af3902dd22e764a3cae9ad82735aac591 -Author: Cosimo Cecchi -Date: 2010-07-25 - - [src] remove unused NemoSidebarTitle - -M src/Makefile.am -D src/nemo-sidebar-title.c -D src/nemo-sidebar-title.h - -commit 41b7e9fe4d944dc9adabd62c35b053bc8099c393 -Author: Cosimo Cecchi -Date: 2010-07-25 - - [eel] remove unused eel-xml-extensions. - -M eel/Makefile.am -D eel/eel-xml-extensions.c -D eel/eel-xml-extensions.h -M eel/eel.h -M src/nemo-navigation-window-menus.c -M test/test-eel-pixbuf-scale.c - -commit cc4cbfcde75280055d78c61f867009820efb1749 -Author: Cosimo Cecchi -Date: 2010-07-25 - - [ln-p] remove unused NemoCustomizationData - -M libnemo-private/Makefile.am -D libnemo-private/nemo-customization-data.c -D libnemo-private/nemo-customization-data.h -M src/file-manager/fm-properties-window.c - -commit 4ba7cefdd56ac289bb157d5d7d99034378efdebe -Author: Cosimo Cecchi -Date: 2010-07-25 - - [eel] remove unused EelWrapTable - -M eel/Makefile.am -D eel/eel-wrap-table.c -D eel/eel-wrap-table.h -M eel/eel.h -M src/file-manager/fm-properties-window.c - -commit 1ad357964e6d4e33a3fa4301245318e6e080385f -Author: Cosimo Cecchi -Date: 2010-07-25 - - [eel] remove unused EelLabeledImage - -M eel/Makefile.am -D eel/eel-labeled-image.c -D eel/eel-labeled-image.h -M eel/eel.h -M src/file-manager/fm-properties-window.c -M test/Makefile.am -D test/test-eel-labeled-image.c -D test/test-nemo-wrap-table.c - -commit 6feed0a28d927a98aa5b09bc6622de1fc146387b -Author: Cosimo Cecchi -Date: 2010-07-25 - - [eel] remove unused EelImageTable - -M eel/Makefile.am -D eel/eel-image-table.c -D eel/eel-image-table.h -M eel/eel.h -M test/Makefile.am -D test/test-eel-image-table.c - -commit 28fbb49494879666928a23aa37d36ca0e819d176 -Author: Cosimo Cecchi -Date: 2010-07-25 - - [eel] remove unused EelBackgroundBox - -M eel/Makefile.am -D eel/eel-background-box.c -D eel/eel-background-box.h - -commit 83af9319fe2ad9eb8af559dc1934a0fc48ed98ba -Author: Cosimo Cecchi -Date: 2010-07-25 - - [src] remove NemoInformationPanel - - It's old, basically unused, and unmaintained. - -M src/Makefile.am -M src/nemo-application.c -D src/nemo-information-panel.c -D src/nemo-information-panel.h -M src/nemo-navigation-window.h -M src/nemo-window.c -M src/nemo-window.h - -commit dc0517bb3462c3da5d7fd2afb31470cc58fac903 -Author: Cosimo Cecchi -Date: 2010-07-25 - - [src] remove emblems from the properties window. - -M src/file-manager/fm-properties-window.c - -commit b2eb619da772af14f2e4127988a4431eedf212b6 -Author: Cosimo Cecchi -Date: 2010-07-25 - - [src] remove NemoEmblemSidebar - -M src/Makefile.am -M src/nemo-application.c -D src/nemo-emblem-sidebar.c -D src/nemo-emblem-sidebar.h - -commit c1a69337f031d0fce79fb6f0be52c44670145668 -Author: Cosimo Cecchi -Date: 2010-07-25 - - [src] remove NemoPropertyBrowser - - This is part of a complete removal of the backgrounds/emblems feature. - -M src/Makefile.am -M src/nemo-navigation-window-menus.c -D src/nemo-property-browser.c -D src/nemo-property-browser.h -M src/nemo-shell-ui.xml -M src/nemo-window-menus.c - -commit 92d8c11fb694aaf44b13184c704f7ec792796922 -Author: Daniel Nylander -Date: 2010-07-25 - - Updated Swedish translation - -M po/sv.po - -commit 6fe90302d79742b7a17449569c47de9b04e83c35 -Author: Aron Xu -Date: 2010-07-24 - - Update Simplified Chinese translation. - -M po/zh_CN.po - -commit 8497f4011e7c42010b9db669b31a09cae7f57844 -Author: Alexander Larsson -Date: 2010-07-23 - - Remove gconf schemas - -M configure.in -M libnemo-private/Makefile.am -D libnemo-private/apps_nemo_preferences.schemas.in - -commit f58f80d4414daa520bd7287999c36b783103b70f -Author: Alexander Larsson -Date: 2010-07-23 - - Bump glib requirements for g_settings_reset - -M configure.in - -commit 31833fee708e23bb6ed16af045fa59b711076ecf -Author: Alexander Larsson -Date: 2010-07-23 - - Remove eel-enumeration, eel-gconf-extensions and eel-preferences - -M eel/Makefile.am -D eel/eel-enumeration.c -D eel/eel-enumeration.h -D eel/eel-gconf-extensions.c -D eel/eel-gconf-extensions.h -M eel/eel-lib-self-check-functions.h -D eel/eel-preferences-builder.c -D eel/eel-preferences.c -D eel/eel-preferences.h -M eel/eel.h - -commit ca1c74b6df8a67e305c73adc1893e3552b763835 -Author: Alexander Larsson -Date: 2010-07-23 - - Remove last users of eel_preferences and eel_gconf - -M libnemo-private/nemo-desktop-link-monitor.c -M libnemo-private/nemo-directory-background.c -M libnemo-private/nemo-global-preferences.c -M libnemo-private/nemo-global-preferences.h -M libnemo-private/nemo-icon-container.c -M libnemo-private/nemo-program-choosing.c -M src/file-manager/fm-tree-view.c -M src/nemo-connect-server-dialog-main.c -M src/nemo-file-management-properties-main.c -M src/nemo-file-management-properties.c -M src/nemo-history-sidebar.c -M src/nemo-navigation-window-pane.c -M src/nemo-pathbar.c -M src/nemo-places-sidebar.c -M src/nemo-window-menus.c -D test/test-nemo-preferences-display.c -M test/test.c - -commit e85f7b768edd103a48dc18993edd431fd880f5d4 -Author: Alexander Larsson -Date: 2010-07-23 - - Convert last eel_preference users to raw gconf - - This is moslty the lockdown stuff, but we also access the background - setting. This should be converted to use the new gsettings when they - land. - -M libnemo-private/nemo-global-preferences.c -M libnemo-private/nemo-global-preferences.h -M src/file-manager/fm-desktop-icon-view.c -M src/file-manager/fm-directory-view.c -M src/nemo-connect-server-dialog-main.c - -commit 02bb707335bbee09bb033f69c87baab65f8c8051 -Author: Alexander Larsson -Date: 2010-07-23 - - Initialize gsettings in nemo-connect-server - -M src/nemo-connect-server-dialog-main.c - -commit f202dab6902b28fdf1deaad7e4d259c50ef6b575 -Author: Alexander Larsson -Date: 2010-07-23 - - Remove remnants of old file-limit preference - -M libnemo-private/nemo-directory-async.c -M libnemo-private/nemo-directory.c -M libnemo-private/nemo-directory.h -M src/file-manager/fm-directory-view.c -M src/file-manager/fm-directory-view.h - -commit 97bbb3cd5029157fe044ad1949620ed6ee4f2278 -Author: Alexander Larsson -Date: 2010-07-23 - - Fix conversion of enable-delete - -M src/file-manager/fm-directory-view.c - -commit f495063f73e4949959678280186f99bb801f804b -Author: Alexander Larsson -Date: 2010-07-23 - - Move desktop-font preference to desktop settings - -M libnemo-private/nemo-global-preferences.h -M libnemo-private/org.gnome.nemo.gschema.xml.in -M src/file-manager/fm-desktop-icon-view.c - -commit 36c238331d19b9a33f13fcbaf49928f35b78ff8c -Author: Alexander Larsson -Date: 2010-07-23 - - Convert list-view preferences to gsettings - - Also removes unused default-use-manual-layout setting, and - joins the sort order preferences of the list view and the icon - view. - -M libnemo-private/nemo-global-preferences.c -M libnemo-private/nemo-global-preferences.h -M src/file-manager/fm-icon-view.c -M src/file-manager/fm-list-view.c -M src/nemo-file-management-properties.c - -commit 000b73a429932d9816aaf5e69cd521675b39b548 -Author: Alexander Larsson -Date: 2010-07-23 - - Move the sort order prefs from view-specific to common prefs - - We already only have one UI setting that controls both, so it makes - no sense to have two settings. - -M libnemo-private/org.gnome.nemo.gschema.xml.in - -commit 77207d5ff5bade458446d5783fe6a99fc38ac6de -Author: Alexander Larsson -Date: 2010-07-23 - - Add eel_g_settings_add_auto_strv - -M eel/eel-glib-extensions.c -M eel/eel-glib-extensions.h - -commit 1f2e9750da78aab404f4bda66889c9c5dc6adc94 -Author: Alexander Larsson -Date: 2010-07-22 - - Remove unused NEWS side pane prefs - -M libnemo-private/nemo-global-preferences.h - -commit 80a26e69ad2383d3aca093ed993e7ff3f8a1bc5b -Author: Alexander Larsson -Date: 2010-07-22 - - Convert compact view prefs to gsettings - -M libnemo-private/nemo-global-preferences.c -M libnemo-private/nemo-global-preferences.h -M src/file-manager/fm-icon-view.c -M src/nemo-file-management-properties.c - -commit 706efc521fec6035d644600b18afdfe20ac9d472 -Author: Alexander Larsson -Date: 2010-07-22 - - Convert tree sidebar prefs to gsettings - -M libnemo-private/nemo-global-preferences.c -M libnemo-private/nemo-global-preferences.h -M src/file-manager/fm-tree-view.c -M src/nemo-file-management-properties.c - -commit f6697ac99280f4fd9b8920d52bcc7407fd09c15c -Author: Alexander Larsson -Date: 2010-07-22 - - Convert desktop preferences to gsettings - -M libnemo-private/nemo-desktop-link-monitor.c -M libnemo-private/nemo-desktop-link.c -M libnemo-private/nemo-global-preferences.c -M libnemo-private/nemo-global-preferences.h -M libnemo-private/nemo-icon-container.c -M libnemo-private/org.gnome.nemo.gschema.xml.in -M src/nemo-file-management-properties.c -M src/nemo-file-management-properties.ui - -commit 43652872e6b5644c831a9041c9d2e3e22a8ef773 -Author: Alexander Larsson -Date: 2010-07-22 - - Fix up desktop-is-home-dir gsettings conversion - -M libnemo-private/nemo-file-utilities.c - -commit 831787a7460655ebbac3499d399d72d45b1cdc60 -Author: Alexander Larsson -Date: 2010-07-22 - - Fix desktop-font gsettings conversion - -M src/file-manager/fm-desktop-icon-view.c - -commit df9c8ce6b162f37fe9372ee8b9e5c4798c9033e0 -Author: Alexander Larsson -Date: 2010-07-22 - - Convert icon-view preferences to gsettings - -M libnemo-private/nemo-file.c -M libnemo-private/nemo-global-preferences.c -M libnemo-private/nemo-global-preferences.h -M libnemo-private/nemo-icon-container.c -M libnemo-private/nemo-thumbnails.c -M src/file-manager/fm-desktop-icon-view.c -M src/file-manager/fm-directory-view.c -M src/file-manager/fm-icon-container.c -M src/file-manager/fm-icon-view.c -M src/nemo-file-management-properties.c - -commit 467af3b7e13fcc51ad1ecafd05bbfd4a4f7d9541 -Author: Alexander Larsson -Date: 2010-07-22 - - Add some more g_settings auto helpers to eel-glib-extensions - -M eel/eel-glib-extensions.c -M eel/eel-glib-extensions.h - -commit 75ade49a17470a86354eb8b591212d512c2ab08b -Author: Alexander Larsson -Date: 2010-07-22 - - Convert preview settings to gsettings - -M libnemo-private/nemo-file.c -M libnemo-private/nemo-global-preferences.c -M libnemo-private/nemo-global-preferences.h -M src/file-manager/fm-directory-view.c -M src/file-manager/fm-icon-view.c -M src/nemo-file-management-properties.c - -commit bcf929af833a83aba7ab58b7ae85697a288d006d -Author: Alexander Larsson -Date: 2010-07-22 - - Convert show-directory-item-counts to gsettings - -M libnemo-private/nemo-directory.c -M libnemo-private/nemo-file.c -M libnemo-private/nemo-global-preferences.c -M libnemo-private/nemo-global-preferences.h -M src/nemo-file-management-properties.c -M src/nemo-sidebar-title.c - -commit 4b5a2c833296abfb2ea28c0cca45d1a748d8a0d1 -Author: Alexander Larsson -Date: 2010-07-22 - - Convert show-text-in-icons to gsettings - -M libnemo-private/nemo-directory.c -M libnemo-private/nemo-file.c -M libnemo-private/nemo-global-preferences.c -M libnemo-private/nemo-global-preferences.h -M src/nemo-file-management-properties.c - -commit 184d31a6773358c1d081c82e508cd4c369e6a711 -Author: Alexander Larsson -Date: 2010-07-22 - - Remove unused search-bar-type setting - -M libnemo-private/nemo-global-preferences.c -M libnemo-private/nemo-global-preferences.h - -commit 3f87495987c2db24002e48da344e96243a5c70e2 -Author: Alexander Larsson -Date: 2010-07-22 - - Convert default-folder-view to gsettings - -M libnemo-private/nemo-global-preferences.c -M libnemo-private/nemo-global-preferences.h -M src/nemo-file-management-properties.c - -commit 87aa83c53183b02ca78fedf3c39b4ff15ad09e11 -Author: Alexander Larsson -Date: 2010-07-22 - - Convert sort-directories-first to gsettings - -M libnemo-private/nemo-global-preferences.c -M libnemo-private/nemo-global-preferences.h -M src/file-manager/fm-directory-view.c -M src/nemo-file-management-properties.c - -commit c6a6fb894cf9bd12fbd12977ab5ccd9e58540ae1 -Author: Alexander Larsson -Date: 2010-07-22 - - Conver window-state to gsettings - -M libnemo-private/nemo-global-preferences.c -M libnemo-private/nemo-global-preferences.h -M src/nemo-application.c -M src/nemo-navigation-window-pane.c -M src/nemo-navigation-window.c - -commit adee5018f3a4985cf8d538a998f32ed9bb6a6ffd -Author: Alexander Larsson -Date: 2010-07-22 - - Convert install-mime-activation to gsettings - -M libnemo-private/nemo-global-preferences.c -M libnemo-private/nemo-global-preferences.h -M libnemo-private/nemo-mime-actions.c - -commit a7163bb6c91c40a8dea2e3b6c34623a0449053a4 -Author: Alexander Larsson -Date: 2010-07-22 - - convert exit with last window to gsettings - -M libnemo-private/nemo-global-preferences.c -M libnemo-private/nemo-global-preferences.h -M src/nemo-main.c - -commit e167d6f663fc2c420d939f5cbb24c6463b03e8c2 -Author: Alexander Larsson -Date: 2010-07-22 - - Convert new tab position to gsettings - -M libnemo-private/nemo-global-preferences.c -M libnemo-private/nemo-global-preferences.h -M libnemo-private/nemo-mime-actions.c -M src/nemo-navigation-window-menus.c -M src/nemo-window-manage-views.c - -commit 42e9d22c84a3f54dfaa6da39243dd07c18a7cb9c -Author: Alexander Larsson -Date: 2010-07-22 - - Convert always-use-browser to gsettings - -M libnemo-private/nemo-global-preferences.c -M libnemo-private/nemo-global-preferences.h -M src/file-manager/fm-directory-view.c -M src/nemo-application.c -M src/nemo-bookmarks-window.c -M src/nemo-connect-server-dialog-nonmain.c -M src/nemo-file-management-properties.c -M src/nemo-navigation-window-menus.c -M src/nemo-navigation-window.c -M src/nemo-window-manage-views.c - -commit 97d62a1d402853f2dd328a53cb7e94581b8e2498 -Author: Alexander Larsson -Date: 2010-07-22 - - Convert click-policy to GSettings - -M libnemo-private/nemo-global-preferences.c -M libnemo-private/nemo-global-preferences.h -M libnemo-private/nemo-icon-canvas-item.c -M src/file-manager/fm-directory-view.c -M src/file-manager/fm-icon-view.c -M src/file-manager/fm-list-view.c -M src/nemo-file-management-properties.c -M src/nemo-history-sidebar.c - -commit cf4f7f10baa305cc3cbacb0b3c27c1eb45ae65f4 -Author: Alexander Larsson -Date: 2010-07-22 - - Convert executable-text-activation to GSettings - -M libnemo-private/nemo-global-preferences.c -M libnemo-private/nemo-global-preferences.h -M libnemo-private/nemo-mime-actions.c -M src/nemo-file-management-properties.c - -commit e3777c0e025815fd40908ea826f0091ecfe84fb0 -Author: Alexander Larsson -Date: 2010-07-22 - - Convert mouse prefs to gsettings - -M libnemo-private/nemo-global-preferences.c -M libnemo-private/nemo-global-preferences.h -M src/nemo-navigation-window.c - -commit 202b69146a1fb42e147d1ca6f8694b27d8ada28b -Author: Alexander Larsson -Date: 2010-07-22 - - Convert date-format to gsettings - -M libnemo-private/nemo-directory.c -M libnemo-private/nemo-file.c -M libnemo-private/nemo-global-preferences.c -M libnemo-private/nemo-global-preferences.h -M src/nemo-file-management-properties.c - -commit 4c3067f86f9dfb848ab941ea8a2fb8aeb2c34944 -Author: Alexander Larsson -Date: 2010-07-22 - - Add eel_g_settings_add_auto_enum - -M eel/eel-glib-extensions.c -M eel/eel-glib-extensions.h - -commit 7abbb99a0e16be6050d61719a6b69197746ed7e4 -Author: Alexander Larsson -Date: 2010-07-22 - - Convert show-advanced-persmissions to gsettings - -M libnemo-private/nemo-global-preferences.c -M libnemo-private/nemo-global-preferences.h -M src/file-manager/fm-properties-window.c - -commit 9318df841a5a0ccd0723e2d5dbce8d2ddfd89b1d -Author: Alexander Larsson -Date: 2010-07-21 - - Convert show-hidden-files to gsettings and merge it with - show-backup-files - -M libnemo-private/nemo-desktop-directory-file.c -M libnemo-private/nemo-desktop-directory.c -M libnemo-private/nemo-desktop-icon-file.c -M libnemo-private/nemo-directory-async.c -M libnemo-private/nemo-directory-private.h -M libnemo-private/nemo-directory.c -M libnemo-private/nemo-directory.h -M libnemo-private/nemo-file-private.h -M libnemo-private/nemo-file.c -M libnemo-private/nemo-file.h -M libnemo-private/nemo-global-preferences.c -M libnemo-private/nemo-global-preferences.h -M libnemo-private/nemo-merged-directory.c -M libnemo-private/nemo-search-directory.c -M libnemo-private/nemo-vfs-directory.c -M libnemo-private/nemo-vfs-file.c -M src/file-manager/fm-directory-view.c -M src/file-manager/fm-tree-model.c -M src/file-manager/fm-tree-view.c -M src/nemo-file-management-properties.c -M src/nemo-window-menus.c -M test/test-nemo-directory-async.c - -commit 036ae8def6b46048b8d3db36ae944f3d6c6523de -Author: Alexander Larsson -Date: 2010-07-21 - - Initialize global preferences in nemo-file-management-properties - -M src/nemo-file-management-properties-main.c - -commit f5b77ef6fb16d0378916a0b9e99161694480a0b3 -Author: Alexander Larsson -Date: 2010-07-21 - - Remove declaration of nonexisting functions - -M libnemo-private/nemo-file-utilities.h - -commit 8c13219e9a44e90e1e74ea20a440dc763b5892ed -Author: Alexander Larsson -Date: 2010-07-21 - - Convert desktop preferences to gsettings - -M libnemo-private/nemo-desktop-directory.c -M libnemo-private/nemo-file-utilities.c -M libnemo-private/nemo-global-preferences.c -M libnemo-private/nemo-global-preferences.h -M src/file-manager/fm-desktop-icon-view.c -M src/nemo-application.c -M src/nemo-main.c -M src/nemo-pathbar.c -M src/nemo-places-sidebar.c - -commit 77f7a0378921b98f9b9bd0347acc25aabaa954dd -Author: Alexander Larsson -Date: 2010-07-21 - - Convert enable-delete to gsettings - -M libnemo-private/nemo-global-preferences.c -M libnemo-private/nemo-global-preferences.h -M src/file-manager/fm-directory-view.c -M src/file-manager/fm-tree-view.c -M src/nemo-file-management-properties.c - -commit 85cd2e45893a561ebd739c9bca595a1ef9a4f136 -Author: Alexander Larsson -Date: 2010-07-21 - - Convert confirm-trash preference to gsettings - -M libnemo-private/nemo-file-operations.c -M libnemo-private/nemo-global-preferences.c -M libnemo-private/nemo-global-preferences.h -M src/file-manager/fm-directory-view.c -M src/nemo-file-management-properties.c - -commit 924e9ee3ad889d9a8abc63c79c79c1cb25aaf0cf -Author: Alexander Larsson -Date: 2010-07-21 - - Convert media handling preferences to gsettings - -M libnemo-private/nemo-autorun.c -M libnemo-private/nemo-global-preferences.c -M libnemo-private/nemo-global-preferences.h -M src/nemo-application.c -M src/nemo-file-management-properties.c - -commit d6ab21e01e525f7c18b6c592802cc4f3b8764665 -Author: Alexander Larsson -Date: 2010-07-21 - - Convert side pane width to gsettings - -M libnemo-private/nemo-global-preferences.c -M libnemo-private/nemo-global-preferences.h -M src/nemo-navigation-window.c - -commit df4dcf7dc10b40af61e2922dbfd728ffdb575e76 -Author: Alexander Larsson -Date: 2010-07-21 - - Convert side pane background to gsettings - -M libnemo-private/nemo-global-preferences.h -M src/nemo-information-panel.c - -commit 352e84790d3738a8d1e965ccd0f911c290dfef5d -Author: Alexander Larsson -Date: 2010-07-21 - - Convert background prefs to GSettings - -M libnemo-private/nemo-directory-background.c -M libnemo-private/nemo-global-preferences.h - -commit 096b906da1e22b9ece5e568f195961ac40cae542 -Author: Alexander Larsson -Date: 2010-07-21 - - Create the global nemo_preferences GSettings object - -M libnemo-private/nemo-global-preferences.c -M libnemo-private/nemo-global-preferences.h - -commit c70466a133e6ca670e998af11bdc39aa2aec4825 -Author: Alexander Larsson -Date: 2010-07-21 - - Remove deprecated prefs for nemo theme - -M libnemo-private/nemo-directory-background.c -M libnemo-private/nemo-global-preferences.c -M libnemo-private/nemo-global-preferences.h -M libnemo-private/nemo-icon-container.c -M src/nemo-property-browser.c - -commit a31e758e00b714a6897ebc6adf11c1599455b7f6 -Author: Alexander Larsson -Date: 2010-07-21 - - Rename sidebar ids as per the new gsettings pref names - -M src/file-manager/fm-tree-view.h -M src/nemo-emblem-sidebar.h -M src/nemo-history-sidebar.h -M src/nemo-information-panel.h -M src/nemo-notes-viewer.h -M src/nemo-places-sidebar.h - -commit b33acb0abea58b2e980876ccde9fdc3bfce5c589 -Author: Alexander Larsson -Date: 2010-07-21 - - Add GSettings schemas for nemo - -M configure.in -M libnemo-private/Makefile.am -A libnemo-private/org.gnome.media-handling.gschema.xml.in -A libnemo-private/org.gnome.nemo.gschema.xml.in - -commit ac038a0d90a4d59b564803be2698bc883672ab84 -Author: Tomas Bzatek -Date: 2010-07-21 - - Set default value for the navigation_window_saved_maximized gconf key - - And avoid gconftool messages like - WARNING: Failed to parse default value `' for schema - (/schemas/apps/nemo/preferences/navigation_window_saved_maximized) - -M libnemo-private/apps_nemo_preferences.schemas.in - -commit d992764b81b8b77efd0a68629372b569fb09dd11 -Author: Fran Diéguez -Date: 2010-07-21 - - Updated Galician translations - -M po/gl.po - -commit fed4221b81043420447bc45502314a4c1b6b12d6 -Author: Chao-Hsiung Liao -Date: 2010-07-20 - - Updated Traditional Chinese translation(Hong Kong and Taiwan) - -M po/zh_HK.po -M po/zh_TW.po - -commit bed28df1062042de23e939aeda409a9fc35d8eac -Author: Mario Blättermann -Date: 2010-07-18 - - [i18n] Updated German translation - -M po/de.po - -commit c7aae474dd404a015beb7413bab7d6d517ff2951 -Author: Jorge González -Date: 2010-07-18 - - Updated Spanish translation - -M po/es.po - -commit ab1ddd9e2bb2401a32cc0ebc587401b815504bd5 -Author: Yaron Shahrabani -Date: 2010-07-18 - - Updated Hebrew translation. - -M po/he.po - -commit faf1c74e479a6fb44fc1b51ee8e3319ee646cb81 -Author: Sense Hofstede -Date: 2010-07-18 - - Updated Frisian translations and added the language to LINGUAS - -M po/LINGUAS -A po/fy.po - -commit b8f5d27f7deadb985d7574bc0547f2c616d8e9b9 -Author: Cosimo Cecchi -Date: 2010-07-17 - - Don't set a NULL argv for GApplication (#624508) - -M src/nemo-application.c - -commit 521e3c8481fcf2af398d2ed62692d415448386cd -Author: Cosimo Cecchi -Date: 2010-07-17 - - Refer to 3.0 instead of 2.32 in a string (#624286) - -M src/nemo-application.c - -commit b145c20c58e465114d372590e460a98c40a770dc -Author: Diego Escalante Urrelo -Date: 2010-07-15 - - nemo-recent: gtk_recent_manager_set_limit is deprecated - - Views are expected to filter results on their own, not the model. - - Bug #624506 - -M libnemo-private/nemo-recent.c - -commit 24bfbbb615a507b005d3b8d4bdea9efd69387ea0 -Author: Mario Blättermann -Date: 2010-07-16 - - [i18n] Updated German translation - -M po/de.po - -commit 837ed1bf4741550b9c41f041ee418af1912ee320 -Author: Yaron Shahrabani -Date: 2010-07-16 - - Updated Hebrew translation. - -M po/he.po - -commit 397f9a3b66edfde3974256c7c4ac3e031ef99328 -Author: Diego Escalante Urrelo -Date: 2010-07-13 - - Update GtkNotebook callbacks to gtk+ master - - GtkNotebookPage is gone in switch-page, it's just a GtkWidget now. - - Bug #624295 - -M src/nemo-navigation-window-pane.c -M src/nemo-side-pane.c - -commit e3b7cebba5c6be648286905fe116e744eb532f16 -Author: du baodao -Date: 2010-07-15 - - Update Simplified Chinese translation. - -M po/zh_CN.po - -commit fe2322d56aace170295ba51221d0ad0cc66a1c17 -Author: Paolo Borelli -Date: 2010-07-15 - - Remove leftover comments. - - These eel functions do not exist anymore. - -M eel/eel-gdk-extensions.c - -commit 5fab3e456c7bf05bb2b080ef97b7aa1470390806 -Author: Lucian Adrian Grijincu -Date: 2010-07-15 - - po: Updated Romanian translation - - completed translation - -M po/ro.po - -commit a13a4faf32ab442734a11bf2d3855007231f8b6a -Author: Lucian Adrian Grijincu -Date: 2010-07-15 - - po: Updated Romanian translation - - media & trash consistency. - -M po/ro.po - -commit cde01839725762691f663d6d7cfec710024781b1 -Author: Lucian Adrian Grijincu -Date: 2010-07-14 - - po: Updated Romanian translation - - Signed-off-by: Lucian Adrian Grijincu - -M po/ro.po - -commit aea71b38892a2a0932472521d0414f8ad4ce9939 -Author: Kjartan Maraas -Date: 2010-07-13 - - Updated Norwegian bokmål translation - -M po/nb.po - -commit 683c15d3400988e5458ad91036b000c47859dec5 -Author: Fran Diéguez -Date: 2010-07-13 - - Updated Galician translations - -M po/gl.po - -commit 92076643ef6b11b9ffe5c9624ad50dccc2b6269e -Author: Cosimo Cecchi -Date: 2010-07-12 - - Release 2.31.5. - -M NEWS -M configure.in - -commit 8ef7a9a1a1bdd02926b8b1fe59a6e97cf6c69574 -Author: Marcus Carlson -Date: 2010-07-10 - - Adds key binding for expanding and collapsing folders in list view - - https://bugzilla.gnome.org/show_bug.cgi?id=504869 - -M src/file-manager/fm-list-view.c - -commit 525b54d9a2385efdae21fd0b0da3631ba0071ce1 -Author: Marcus Carlson -Date: 2010-07-11 - - Ask for confirmation before opening more than 5 files (#596577) - -M libnemo-private/nemo-mime-actions.c - -commit b6fa38579dae68afd5b6ac71c98f7868e0a1731a -Author: Marcus Carlson -Date: 2010-07-10 - - Remove unnecessary include and remove a FIXME (#544211) - - Include of nemo-desktop-window.h in nemo-window.c is not - needed anymore - -M src/nemo-window.c - -commit f12805d978c576e5f93f48815565f6e02fdd38ff -Author: Marcus Carlson -Date: 2010-07-10 - - Eat Control + v to not enable type ahead (#350819) - -M libnemo-private/nemo-icon-container.c -M src/file-manager/fm-list-view.c - -commit 0a1cf043c9ec90b7b3da7e454eb860c5e2347866 -Author: Marcus Carlson -Date: 2010-07-11 - - Also change filename on disk when renaming a .desktop file (#145125) - -M libnemo-private/nemo-file.c - -commit 0fb0e54f06ec1090a0e3267a48bc66cc50603e82 -Author: Marcus Carlson -Date: 2010-07-10 - - Fixed typo (#624055) - -M src/nemo-file-management-properties.ui - -commit 34936ae8336e32359b3cc36b1bb2ba850313f4f5 -Author: Marcus Carlson -Date: 2010-07-10 - - Change clicked signal to toggled to not get into bad state (#440435) - -M src/nemo-property-browser.c - -commit a0bd71abc1d664d2ae3b949a3181041cdc162f2c -Author: Cosimo Cecchi -Date: 2010-07-10 - - Compile cleanly with GCC 4.5. - -M libnemo-private/nemo-directory-background.c -M libnemo-private/nemo-icon-dnd.c -M src/nemo-information-panel.c - -commit cd447610e3a8b32ec85d32cac7a12efcc33238ee -Author: Fran Diéguez -Date: 2010-07-07 - - Updated Galician translations - -M po/gl.po - -commit 8c033772f9ddf816103a21a6689e8a18831090fa -Author: Marcus Carlson -Date: 2010-07-05 - - Remove "Browse Folder" on Desktop when browsing is set to default - (#563829) - -M src/file-manager/fm-directory-view.c - -commit 1f6f65c9547b430eb1414758a50d2aeea142869e -Author: Marcus Carlson -Date: 2010-07-05 - - Don't eat Alt+Right/Left in icon container - - So they do not interfere with history browsing - - https://bugzilla.gnome.org/show_bug.cgi?id=411664 - -M libnemo-private/nemo-icon-container.c - -commit e23140e8aea753ebb4195f1cfe728c62367fbdeb -Author: Jorge González -Date: 2010-07-04 - - Updated Spanish translation - -M po/es.po - -commit aca606ed03617ed15dc87ad34c1e0b72eda72928 -Author: A. Walton -Date: 2010-07-04 - - Use the correct icon for autorunning Open Folder - - According to the HIG, this icon should be 'folder-open'. - This closes GNOME bug #608060. - -M libnemo-private/nemo-autorun.c - -commit c71ac3d1e00c3013a6736ac6dcf3ad074380b8a3 -Author: YunQiang Su -Date: 2010-07-04 - - Updated zh_CN translation. - -M po/ChangeLog -M po/zh_CN.po - -commit 6b65b65f773e2ad27a23d40194b64fa911ae888c -Author: Luca Ferretti -Date: 2010-03-06 - - Fix mnemonics and capitalization for extra pane menu entries - - https://bugzilla.gnome.org/show_bug.cgi?id=612021 - -M src/file-manager/fm-directory-view.c -M src/nemo-navigation-window-menus.c - -commit bb1ecb90fea17606c0eec2e36be7f60f47bb43ff -Author: Ray Strode -Date: 2010-07-04 - - Support overriding .gnome2 directory. - - The env var GNOME22_USER_DIR should be used for that. - - https://bugzilla.gnome.org/show_bug.cgi?id=614030 - -M libnemo-private/nemo-file-utilities.c -M src/file-manager/fm-directory-view.c - -commit 5d86a47524e86980ec0ac21728ec76911d6bface -Author: A. Walton -Date: 2010-07-04 - - Set accessible name for the desktop. - - See https://bugzilla.gnome.org/show_bug.cgi?id=555425 - -M src/nemo-desktop-window.c - -commit 3094265abbfd3b70b39bb1dbd9625a81faf0fbca -Author: Tomeu Vizoso -Date: 2010-02-04 - - Use G_PASSWORD_SAVE_FOR_SESSION by default. - - When mounting volumes that require a password, present by default the - option G_PASSWORD_SAVE_FOR_SESSION. - - https://bugzilla.gnome.org/show_bug.cgi?id=587909 - -M libnemo-private/nemo-file-operations.c -M libnemo-private/nemo-mime-actions.c -M src/file-manager/fm-directory-view.c -M src/nemo-connect-server-dialog-main.c -M src/nemo-window-manage-views.c - -commit cfc72ae3ea86b63660e1bf153a9e33844e5b2281 -Author: Thomas Karpiniec -Date: 2010-06-08 - - Use correct logic for delaying updates while loading - - See - http://mail.gnome.org/archives/nemo-list/2010-June/msg00023.html - and https://bugzilla.gnome.org/show_bug.cgi?id=599680 for details. - -M src/file-manager/fm-directory-view.c - -commit ae1e7474830fb98eea93e1f4aadbf6e2b6caefc2 -Author: Marcus Carlson -Date: 2010-07-03 - - Properly handle G_IO_ERROR_FAILED_HANDLED (#601096). - - This avoid showing an useless message dialog when the user did - not give - authorization for mounting a device. - -M src/nemo-window-manage-views.c - -commit 41526834650640aa961d026ce5dea6025f668900 -Author: Marcus Carlson -Date: 2010-07-02 - - Change 'Close all Windows' shortcut to Ctrl+Q. - - Fixes bug #615808. - -M src/nemo-navigation-window-menus.c - -commit 1db7342c3fdc18ddea42266ae25ba3a6585c04b7 -Author: Jorge González -Date: 2010-07-01 - - Updated Spanish translation - -M po/es.po - -commit ab4a1d8234a63ce5c4ac96b89b624a1b216bd289 -Author: Ted M Lin -Date: 2009-09-02 - - Cleanup non-existant folders on pathbar (bug #310205). - -M src/nemo-pathbar.c - -commit 41e9a662b329c3438ee0c4c029cd4cf8d22d9574 -Author: Cosimo Cecchi -Date: 2010-07-01 - - Require GTK+ 2.90.5. - - So that we can drag in the right cairo dependency. - -M configure.in - -commit 375b1f4335666f9ba8d7e4f8003baecc1b9ec033 -Author: Cosimo Cecchi -Date: 2010-07-01 - - Add missing modeline. - -M eel/eel-canvas-rect-ellipse.c - -commit 3b671558f1d8ac1ee72e8af13d4ede6ab549a400 -Author: Cosimo Cecchi -Date: 2010-07-01 - - Fix build with GTK+3 master, use cairo_region_t. - -M eel/eel-canvas-rect-ellipse.c -M eel/eel-canvas.c -M eel/eel-editable-label.c - -commit d1446086855ec1a673b144befff5b707244b998c -Author: Cosimo Cecchi -Date: 2010-07-01 - - Don't set has_custom_name for current location bookmark. - - So that renaming the relevant location can trigger updates in the - listeners. - -M src/nemo-window-manage-views.c - -commit 7f6f20fd30dd989b85dbf132fd06e7e3e850d82c -Author: Cosimo Cecchi -Date: 2010-07-01 - - Remove dead code. - -M src/nemo-window-slot.c - -commit 90ebd95a7dbc3f7bef21e39c14fe04d4849fef37 -Author: Marcus Carlson -Date: 2010-06-30 - - Change "Clean Up by Name" to "Organize Desktop by Name" (#530136) - -M src/file-manager/fm-icon-view.c - -commit 83944789404d745e71f4b4a2f29c384cd44eba00 -Author: Marcus Carlson -Date: 2010-07-01 - - Ignore > 2 clicks in the icon container (#621098). - -M libnemo-private/nemo-icon-container.c - -commit 7faea402e1e37d88e5532dea712566312c981f92 -Author: Kristjan Schmidt -Date: 2010-06-29 - - Updated Esperanto translation - -M po/eo.po - -commit 9c903fd8a5b8daaa265a8d2c05603dbed9447d60 -Author: Cosimo Cecchi -Date: 2010-06-29 - - Release 2.31.4. - -M NEWS -M configure.in - -commit a4e6c93d22394b086055ce92d0e06576958f969b -Author: Mattias Põldaru -Date: 2010-06-27 - - [l10n] Updated Estonian translation - -M po/et.po - -commit aaaf14437c04bd7ee8c53554e93ea47e615ae2d9 -Author: Ivar Smolin -Date: 2010-06-27 - - [l10n] Updated Estonian translation - -M po/et.po - -commit 0187296a18d2e30f5f30fab4528e42de42f7692a -Author: Bastien Nocera -Date: 2010-06-23 - - Update pkg-config files for GTK+ 3.x - -M libnemo-extension/libnemo-extension-uninstalled.pc.in -M libnemo-extension/libnemo-extension.pc.in - -commit 3031b7d81721c2f54ce5412779e53ff6ebdf1fe2 -Author: Bruno Brouard -Date: 2010-06-23 - - Updated French translation - -M po/fr.po - -commit 48f2f2b3bb2abe397e799b74fd9a7140f52e307d -Author: Matthias Clasen -Date: 2010-06-21 - - Depend on the right gtk gir file - - We need Gtk-3.0.gir now. - -M libnemo-extension/Makefile.am - -commit 8f77b22b6091f87986abbd42d7637edf17e473a6 -Author: Frédéric Péters -Date: 2010-06-20 - - [build] link against gail-3.0 (GNOME bug 622155) - -M configure.in - -commit dc0ad00d37a68c009f555300cef427c4fb38d82c -Author: Fran Diéguez -Date: 2010-06-20 - - Updated Galician translations - -M po/gl.po - -commit f2e87dbcdb5535724a59ab9c69afe038b124b2bf -Author: Matthias Clasen -Date: 2010-06-19 - - Use the right datatype in the schema - - GConf calls it a bool, not a boolean. - -M libnemo-private/apps_nemo_preferences.schemas.in - -commit 45c9eb9bcbdddc91b4f53ecbd5731fc7eec88ac3 -Author: Cosimo Cecchi -Date: 2010-06-18 - - Move some variables around. - -M src/nemo-application.c - -commit e5d50bfd152e3d248519160a82908470973a539f -Author: Cosimo Cecchi -Date: 2010-06-18 - - Port to GApplication. - - Drop the libunique dependency. - -M src/nemo-application.c -M src/nemo-application.h -M src/nemo-main.c - -commit f75a6809f97033c75bf89cb6239415540953e9bb -Author: Claudio Saavedra -Date: 2010-06-18 - - Build against GTK+ 3.0 (#621938). - -M configure.in - -commit 89456b131830476d48234cd0ef32faf287496afb -Author: Cosimo Cecchi -Date: 2010-06-18 - - Use gtk_widget_get_child_requisition for the pathbar. - - Basically backport this GTK+ commit to make the pathbar work properly - with width-for-height. - - http://git.gnome.org/browse/gtk+/commit/?id=0b92348077489047af98f360fd9bb3d59ee6d04a - -M src/nemo-pathbar.c - -commit c9e20bc18f5590b9377cab3b4ab5fc72108f7413 -Author: Cosimo Cecchi -Date: 2010-06-18 - - Don't fix relative paths for URIs. - -M src/nemo-location-entry.c - -commit 48c0e19e60eee88f38a6e9c7a51211376a4c90f9 -Author: Cosimo Cecchi -Date: 2010-06-17 - - Add a border around info bars (#621366). - -M src/file-manager/fm-directory-view.c -M src/nemo-window-slot.c -M src/nemo-window-slot.h - -commit eae04584d51b9e058c6dcaea488880d8a43409bf -Author: Cosimo Cecchi -Date: 2010-06-17 - - Update for GLib 2.25.9 API changes (#621879). - -M configure.in -M libnemo-private/nemo-mime-actions.c -M src/nemo-application.c -M src/nemo-application.h - -commit 5a53ae7e699edb480b76b72df99fdf1dd68eb8f8 -Author: A S Alam -Date: 2010-06-15 - - Updating Punjabi Translation by A S Alam - -M po/pa.po - -commit 877f57375a200daceafc9f5b96b9802cfc21e500 -Author: A S Alam -Date: 2010-06-15 - - Updating Punjabi Translation by A S Alam - -M po/pa.po - -commit af984bc991757eeda233c6e335cc3f35e6329a97 -Author: Fran Diéguez -Date: 2010-06-13 - - Updated Galician translations - -M po/gl.po - -commit aefc1fc8d2a49e123c4c647cfa01499d4649ef6a -Author: Andrej Žnidaršič -Date: 2010-06-11 - - Updated Slovenian translation - -M po/sl.po - -commit ca0dbef16103f523b3dfb86e795447998f060b53 -Author: Cosimo Cecchi -Date: 2010-06-11 - - [src] remove a debug printf. - -M src/nemo-sidebar-title.c - -commit d667293d865797665b50de2b972297ae61881eb6 -Author: Cosimo Cecchi -Date: 2010-06-11 - - [build] bump GTK+ required version to 2.21.2. - -M configure.in - -commit d9f80b3f407b65f559c0ca47cddac41175ac353d -Author: Cosimo Cecchi -Date: 2010-06-11 - - [test] GSEAL test-eel-image-table. - -M test/test-eel-image-table.c - -commit 78287a76d6be97428d166f781385b86e18c9b6b8 -Author: Cosimo Cecchi -Date: 2010-06-11 - - [src] GSEAL nemo-zoom-control. - -M src/nemo-zoom-control.c - -commit bbeb350ef219f6e94d9eba6e78d0ebbdb2201a08 -Author: Cosimo Cecchi -Date: 2010-06-11 - - [src] GSEAL nemo-window. - -M src/nemo-window.c - -commit 44af78c3c205f88801a8bdfa3cb0a02f7cd87d3f -Author: Cosimo Cecchi -Date: 2010-06-11 - - [src] GSEAL nemo-window-manage-views. - -M src/nemo-window-manage-views.c - -commit b5407396039035e6f4e78c2d9d03891d76dd93bd -Author: Cosimo Cecchi -Date: 2010-06-11 - - [src] GSEAL nemo-window-bookmarks. - -M src/nemo-window-bookmarks.c - -commit 2675ebc0873e71af0a5f8cc3463313525bfeebac -Author: Cosimo Cecchi -Date: 2010-06-11 - - [src] GSEAL nemo-spatial-window. - -M src/nemo-spatial-window.c - -commit 11736c1fcbe581eab9c4a86619cfff0e71bbef38 -Author: Cosimo Cecchi -Date: 2010-06-11 - - [src] GSEAL nemo-sidebar-title. - -M src/nemo-sidebar-title.c - -commit 24b94447cb798ee03c9d21973f2d650c4cec2ad9 -Author: Cosimo Cecchi -Date: 2010-06-11 - - [src] GSEAL nemo-side-pane. - -M src/nemo-side-pane.c - -commit 2aa9bed8a98cbf68fec53b88e7d05f86f158bd07 -Author: Cosimo Cecchi -Date: 2010-06-11 - - [src] GSEAL nemo-query-editor. - -M src/nemo-query-editor.c - -commit 075446f3751566ec1187d6cdb3751456c9c50867 -Author: Cosimo Cecchi -Date: 2010-06-11 - - [src] GSEAL nemo-property-browser. - -M src/nemo-property-browser.c - -commit 06a2e40ccc45d82692997ee29e56314a45ea373f -Author: Cosimo Cecchi -Date: 2010-06-11 - - [src] GSEAL nemo-places-sidebar. - -M src/nemo-places-sidebar.c - -commit 61006bd18b748c50bde01efe4abcb038a710ee11 -Author: Cosimo Cecchi -Date: 2010-06-11 - - [src] GSEAL nemo-pathbar. - -M src/nemo-pathbar.c - -commit 791e4c7cf2f0ee3c5f8bd55b1867daea6d891000 -Author: Cosimo Cecchi -Date: 2010-06-11 - - [src] GSEAL nemo-notebook. - -M src/nemo-notebook.c - -commit 2b200c5bcaee4018a9fcf82a7b1e0076f2568588 -Author: Cosimo Cecchi -Date: 2010-06-11 - - [src] GSEAL nemo-navigation-window. - -M src/nemo-navigation-window.c - -commit cb1e2694bdaa8c8fbad8b2541f0efe354d81b1c0 -Author: Cosimo Cecchi -Date: 2010-06-11 - - [src] GSEAL nemo-navigation-window-menus. - -M src/nemo-navigation-window-menus.c - -commit a0d1ca75e37fd26135fe9c85d8d86dc75e831d86 -Author: Cosimo Cecchi -Date: 2010-06-11 - - [src] GSEAL nemo-location-dialog. - -M src/nemo-location-dialog.c - -commit 4bba151bdacd27a193c100cf771144b7d2501548 -Author: Cosimo Cecchi -Date: 2010-06-11 - - [src] GSEAL nemo-location-bar. - -M src/nemo-location-bar.c - -commit eab92fb34f344fcadaaaf17beb7609a1f2cab0fa -Author: Cosimo Cecchi -Date: 2010-06-11 - - [src] GSEAL nemo-information-panel. - -M src/nemo-information-panel.c - -commit 26f5fcc5efe27ca7f63b45d04a773caae6a0becd -Author: Cosimo Cecchi -Date: 2010-06-11 - - [src] GSEAL nemo-emblem-sidebar. - -M src/nemo-emblem-sidebar.c - -commit 45fc9cc4fae20e69e12ca14b767277d190978c71 -Author: Cosimo Cecchi -Date: 2010-06-11 - - [src] GSEAL nemo-desktop-window. - -M src/nemo-desktop-window.c - -commit ac4547b030a3b0b9ed60ff9bb2f783ac10a7d62b -Author: Cosimo Cecchi -Date: 2010-06-11 - - [src] GSEAL nemo-connect-server-dialog. - -M src/nemo-connect-server-dialog.c - -commit b43e268e738e8754eaa3d0e38a0cb5859f254241 -Author: Cosimo Cecchi -Date: 2010-06-11 - - [src] GSEAL nemo-application. - -M src/nemo-application.c - -commit c76136d88c314c17dbabca9ddd8808d297ceaee0 -Author: Cosimo Cecchi -Date: 2010-06-11 - - [file-manager] GSEAL fm-tree-view. - -M src/file-manager/fm-tree-view.c - -commit c764e246da912817929ae33075a3683a22bb3bf6 -Author: Cosimo Cecchi -Date: 2010-06-11 - - [file-manager] GSEAL fm-properties-window. - -M src/file-manager/fm-properties-window.c - -commit 0fe90a931acbef48d8b50b380ee05362ecdf0058 -Author: Cosimo Cecchi -Date: 2010-06-11 - - [file-manager] GSEAL fm-list-view. - -M src/file-manager/fm-list-view.c - -commit 8f9b6e75eb8eb5f9ece32963e53a69381fd65336 -Author: Cosimo Cecchi -Date: 2010-06-11 - - [file-manager] GSEAL fm-list-model. - -M src/file-manager/fm-list-model.c - -commit df190cef8cb35e0f5a717d8bd28b810ab8304137 -Author: Cosimo Cecchi -Date: 2010-06-11 - - [file-manager] GSEAL fm-icon-view. - -M src/file-manager/fm-icon-view.c - -commit eea532e7f0cf729c6e9e78744add5c8cde304ba4 -Author: Cosimo Cecchi -Date: 2010-06-11 - - [file-manager] GSEAL fm-ditem-page. - -M src/file-manager/fm-ditem-page.c - -commit 197a0101f756111b4f8712433586761c356051d3 -Author: Cosimo Cecchi -Date: 2010-06-11 - - [file-manager] GSEAL fm-directory-view. - -M src/file-manager/fm-directory-view.c - -commit 8ba99b676c20b359c7b46b9ae4e8432fbbf4ae8f -Author: Cosimo Cecchi -Date: 2010-06-11 - - [file-manager] GSEAL fm-desktop-icon-view. - -M src/file-manager/fm-desktop-icon-view.c - -commit 0405cc8c808247eff6672a1ae69fd35c6bda841b -Author: Cosimo Cecchi -Date: 2010-06-11 - - [ln-p] GSEAL nemo-undo. - -M libnemo-private/nemo-undo.c - -commit 8ce136d19d72559a7eeb0665b61607646ecf36d6 -Author: Cosimo Cecchi -Date: 2010-06-11 - - [ln-p] GSEAL nemo-tree-view-drag-dest. - -M libnemo-private/nemo-tree-view-drag-dest.c - -commit 8ad542cf15a6a7749c672def06a5198f93a40e12 -Author: Cosimo Cecchi -Date: 2010-06-11 - - [ln-p] GSEAL nemo-progress-info. - -M libnemo-private/nemo-progress-info.c - -commit a0d555cf31a6568038fb67c004c1085bec6de8cf -Author: Cosimo Cecchi -Date: 2010-06-11 - - [ln-p] GSEAL nemo-open-with-dialog. - -M libnemo-private/nemo-open-with-dialog.c - -commit 44f222288b33de74464567a1578fbf7ea69725d7 -Author: Cosimo Cecchi -Date: 2010-06-11 - - [ln-p] GSEAL nemo-keep-last-vertical-box. - -M libnemo-private/nemo-keep-last-vertical-box.c - -commit 3711a0db65ad8ca432d0359eb11b4cd31f799df6 -Author: Cosimo Cecchi -Date: 2010-06-11 - - [ln-p] GSEAL nemo-icon-dnd. - -M libnemo-private/nemo-icon-dnd.c - -commit e57bd6003efc33bfb97fd7aa46166eba105cc2a8 -Author: Cosimo Cecchi -Date: 2010-06-11 - - [ln-p] GSEAL nemo-icon-container. - -M libnemo-private/nemo-icon-container.c -M libnemo-private/nemo-icon-container.h - -commit 028a80a630e17df3ba23a6778459122b2e18da0b -Author: Bastien Nocera -Date: 2010-06-11 - - [ln-p] GSEAL nemo-icon-canvas-item. - -M libnemo-private/nemo-icon-canvas-item.c - -commit 92d8c2a24dbf5a1a902efef0da86dd23e43208db -Author: Bastien Nocera -Date: 2010-06-11 - - [ln-p] GSEAL nemo-horizontal-splitter. - -M libnemo-private/nemo-horizontal-splitter.c - -commit 2206f6c82c5a49769ccdede84d74bf595a0a57c1 -Author: Bastien Nocera -Date: 2010-06-11 - - [ln-p] GSEAL nemo-file-operations. - -M libnemo-private/nemo-file-operations.c - -commit dddf609f373f472bca41070296a54be7e67b7adf -Author: Bastien Nocera -Date: 2010-06-11 - - [ln-p] GSEAL nemo-file-conflict-dialog. - -M libnemo-private/nemo-file-conflict-dialog.c - -commit 0ea1e03d74713bcac0ad90a03092d8ed6d7d2528 -Author: Bastien Nocera -Date: 2010-06-11 - - [ln-p] GSEAL nemo-entry. - -M libnemo-private/nemo-entry.c - -commit a22a367740abe58100e8137ad750176ed79f5325 -Author: Bastien Nocera -Date: 2010-06-11 - - [ln-p] GSEAL nemo-dnd. - -M libnemo-private/nemo-dnd.c - -commit 3cd134fde66949514eb86b60795394f1aa7a2db6 -Author: Bastien Nocera -Date: 2010-06-11 - - [ln-p] GSEAL nemo-clipboard. - -M libnemo-private/nemo-clipboard.c - -commit fd6f9364d040814346b9995570a558c1d6cb081c -Author: Bastien Nocera -Date: 2010-06-11 - - [ln-p] GSEAL nemo-clipboard-monitor. - -M libnemo-private/nemo-clipboard-monitor.c - -commit 392e079433aed213889b972c906d8d0b1b4290d9 -Author: Bastien Nocera -Date: 2010-06-11 - - [ln-p] GSEAL nemo-cell-renderer-pixbuf-emblem. - -M libnemo-private/nemo-cell-renderer-pixbuf-emblem.c - -commit 3709f641bde70d96fb1feb0288521ced6dba7719 -Author: Bastien Nocera -Date: 2010-06-11 - - [ln-p] GSEAL nemo-bookmark. - -M libnemo-private/nemo-bookmark.c - -commit 756beaef00e01c686b061ea77d56c7aa6768d32e -Author: Bastien Nocera -Date: 2010-06-11 - - [ln-p] GSEAL nemo-autorun. - -M libnemo-private/nemo-autorun.c - -commit 47947617e14e9e3b676b0f8614bbe294f86dde86 -Author: Bastien Nocera -Date: 2010-06-11 - - [eel] GSEAL eel-wrap-table. - -M eel/eel-wrap-table.c - -commit 1db88082b3dddef066f718a44dd750a18b201dbd -Author: Bastien Nocera -Date: 2010-06-11 - - [eel] GSEAL eel-labeled-image. - -M eel/eel-labeled-image.c - -commit 963d2dbd1cca1b92bc35f6421ae8789d1b3f4f9d -Author: Bastien Nocera -Date: 2010-06-11 - - [eel] GSEAL eel-image-table. - -M eel/eel-image-table.c - -commit 6a2110eb0cda5f3c7d47f196b73336ec0227505b -Author: Bastien Nocera -Date: 2010-06-11 - - [eel] GSEAL eel-gtk-extensions. - -M eel/eel-gtk-extensions.c - -commit 239c62774c44ef6e192301379db19ad53c382742 -Author: Bastien Nocera -Date: 2010-06-11 - - [eel] GSEAL eel-gtk-container. - -M eel/eel-gtk-container.c - -commit f9273be48cb62cd39aa145fa715547ec077c1670 -Author: Bastien Nocera -Date: 2010-06-11 - - [eel] GSEAL eel-editable-label. - -M eel/eel-editable-label.c - -commit 3e8a76045a33c778f423befc1c16a5e26929d00e -Author: Bastien Nocera -Date: 2010-06-11 - - [eel] GSEAL eel-debug-drawing. - -M eel/eel-debug-drawing.c - -commit e07b688a3b8ec257a14087b696b3a02090f289ab -Author: Bastien Nocera -Date: 2010-06-11 - - [eel] GSEAL eel-canvas. - -M eel/eel-canvas.c -M eel/eel-canvas.h - -commit 191f491c9f0877c1e2c174e435898ba1e717c352 -Author: Bastien Nocera -Date: 2010-06-11 - - [eel] GSEAL eel-canvas-rect-ellipse. - -M eel/eel-canvas-rect-ellipse.c - -commit a63c3afa5c19083558c365fe6374ab5d85db3c98 -Author: Bastien Nocera -Date: 2010-06-11 - - [eel] GSEAL eel-background-box. - -M eel/eel-background.c - -commit 24cff3dc16b71105d1c096451357e6df6347b9d1 -Author: Bastien Nocera -Date: 2010-06-11 - - [eel] GSEAL eel-background-box. - -M eel/eel-background-box.c - -commit c357d232dd5cbfd7fdb3014dfff4034d01f8e66e -Author: Bastien Nocera -Date: 2010-06-11 - - [eel] GSEAL eel-art-gtk-extensions. - -M eel/eel-art-gtk-extensions.c - -commit dae50fa5b6aeb4f811fb0d8e35da999138653cd9 -Author: Bastien Nocera -Date: 2010-06-11 - - [eel] GSEAL eel-alert-dialog. - -M eel/eel-alert-dialog.c - -commit d104160104f50a3b2fd5e311578314e927ea73ca -Author: Bastien Nocera -Date: 2010-06-11 - - [eel] GSEAL eel-accessibility. - -M eel/eel-accessibility.c - -commit 0596f0121e6f931bfcd704cb9bcdc8ec0afdf024 -Author: Cosimo Cecchi -Date: 2010-06-08 - - Don't use 'File Browser' in the window title for browser mode - (#614848). - - We still use it if spatial mode is the default though. - Thanks to Marcus Carlson for the initial patch. - -M src/nemo-navigation-window.c - -commit c8c1dd8061d04fc002fa19cd643a95243a4a1468 -Author: Cosimo Cecchi -Date: 2010-06-07 - - Release 2.31.3. - -M NEWS -M configure.in - -commit 54b044b9eaa3614498bf4a56ea915ff3a46f5e6d -Author: Cosimo Cecchi -Date: 2010-06-07 - - Update the location bar and dialog to the new API. - - This also fixes bug #346422. Thanks to Amos Brocco for the initial - patch. - -M src/nemo-location-bar.c -M src/nemo-location-dialog.c - -commit 376f9ba0bdd25794a6bd2a57caa760b8d2cbb32d -Author: Cosimo Cecchi -Date: 2010-06-07 - - Support relative paths in NemoLocationEntry. - - This also adds a custom 'activate' implementation which converts a - relative path (if present) to an absolute one. - -M src/nemo-location-entry.c -M src/nemo-location-entry.h - -commit 613b6a8292296b097660f92566de81fa71d7a878 -Author: Cosimo Cecchi -Date: 2010-06-07 - - Use the new API to order files in the list view. - - This also closes bug #590077. Thanks to Holger Berndt for the initial - patch. - -M src/file-manager/fm-list-view.c - -commit 1459a109750d0e740fe1327cc029e342c02ce2d3 -Author: Cosimo Cecchi -Date: 2010-06-07 - - Use the new API to order files in the icon view. - -M src/file-manager/fm-icon-view.c - -commit b04bafc862ef092c1090851e6c87aabfed1eea50 -Author: Cosimo Cecchi -Date: 2010-06-07 - - Add methods to get per-file default sort type/attribute. - -M libnemo-private/nemo-file.c -M libnemo-private/nemo-file.h - -commit e847f4196c5aabb65a1ac43688bcd1b79443b261 -Author: Cosimo Cecchi -Date: 2010-06-07 - - Add nemo_file_is_user_special_directory(). - -M libnemo-private/nemo-file.c -M libnemo-private/nemo-file.h - -commit 0d36142a4eaa799034a25e37e95f6d66ca14f0ee -Author: Theppitak Karoonboonyanan -Date: 2010-06-06 - - Updated Thai translation. - -M po/th.po - -commit 0c8ea8597ae0616696fb52ae4396082990a85be0 -Author: Sira Nokyoongtong -Date: 2010-06-06 - - Updated Thai translation. - -M po/th.po - -commit 6cb3dae5f89887a15fa180a52e4f1362c079b1a0 -Author: Cosimo Cecchi -Date: 2010-06-02 - - Use single GTK+ header includes. - -M libnemo-private/nemo-file-conflict-dialog.c -M libnemo-private/nemo-file-conflict-dialog.h - -commit 02f961d5c892e34f88a680a7662f655b6676400b -Author: Kjartan Maraas -Date: 2010-06-01 - - Updated Norwegian bokmål translation - -M po/nb.po - -commit 4edc5f843a4cb0d89c21fd957dc7d6fa955cf012 -Author: Alexander Larsson -Date: 2010-06-01 - - Don't use deprecated Gtk+ api (GtkBoxChild) - -M libnemo-private/nemo-keep-last-vertical-box.c - -commit 4cebf7e4582788229f3fde7685ef44148b5cb99d -Author: Ivar Smolin -Date: 2010-05-31 - - Estonian translation updated - -M po/et.po - -commit 345e520752b627bf0d085ab6f5d480476b1dba89 -Author: Cosimo Cecchi -Date: 2010-05-30 - - Specify the expected variant type instead of using - G_VARIANT_TYPE_TUPLE. - - Thanks to Christian Persch. - -M libnemo-private/nemo-file-utilities.c -M src/nemo-application.c - -commit f1c08dcb6ff93dcdea9dfeacded9d70f7e725167 -Author: Cosimo Cecchi -Date: 2010-05-30 - - Bump required GLib version. - -M configure.in - -commit ce766ea529017649b72ea844e73c46e1d73c79b6 -Author: Cosimo Cecchi -Date: 2010-05-30 - - Use g_bus_watch_proxy() to call PackageKit methods. - -M libnemo-private/nemo-mime-actions.c - -commit 73ae91e0664b62e7b066cf5a23f6e37ea145a818 -Author: Cosimo Cecchi -Date: 2010-05-30 - - Use g_bus_watch_proxy() to initialize ConsoleKit. - -M src/nemo-application.c -M src/nemo-application.h - -commit 1eb13e5686f14b006dd0f11a92219b7fe826b50e -Author: Cosimo Cecchi -Date: 2010-05-30 - - Re-use the same connection to Inhibit/Unhinibit power manager. - -M libnemo-private/nemo-file-utilities.c - -commit 8a58f4e298e844c18928e5a0681fa8ac2b9f2ee1 -Author: Christian Persch -Date: 2010-05-17 - - Port to GDBus - - Bug #618910. - -M configure.in -M libnemo-private/nemo-file-utilities.c -M libnemo-private/nemo-mime-actions.c -M src/nemo-application.c -M src/nemo-application.h - -commit 6cba2c2bcae95e7eca687561359b4d85c89694df -Author: Alan Monfort -Date: 2010-05-29 - - Updated Breton translation - -M po/br.po - -commit 460c57e9ad8bb725076ae90e2eb8287a90330663 -Author: Alan Monfort -Date: 2010-05-29 - - Updated Breton translation - -M po/br.po - -commit 8bc39ced44598fb0be61ffdf799c50a81d6dd272 -Author: Yaron Shahrabani -Date: 2010-05-29 - - Updated Hebrew translation. - -M po/he.po - -commit 68a877ab0fe8fef87841e06e84312eea9068794e -Author: Jorge González -Date: 2010-05-25 - - Updated Spanish translation - -M po/es.po - -commit 9708b257484931185f458ce343f1e4f88a82c6ab -Author: Cosimo Cecchi -Date: 2010-05-24 - - Release 2.31.2. - -M NEWS -M configure.in - -commit 81e15c0accfe2147e0520fc8fba91fc2d97d0d2a -Author: Cosimo Cecchi -Date: 2010-05-24 - - Fix a compiler warning. - -M cut-n-paste-code/libegg/eggdesktopfile.c - -commit b0d808de8c8d1be6b8a4403fc587cc032612027a -Author: Alexander Larsson -Date: 2010-05-24 - - Change default thumbnail size from 96 to 64 - - Still not the same as icons (48) but makes for less jaring layouts, - and - lets you see more of the thumbnail content than 48 would. - -M libnemo-private/apps_nemo_preferences.schemas.in - -commit 7b75f714980293b12c2548126ba30c8af7dacecf -Author: Paul Seyfert -Date: 2010-05-24 - - Updated German translation - -M po/de.po - -commit d320b181dc169cb2720b38e65ef743803ad524ea -Author: Thomas Thurman -Date: 2010-05-20 - - Updated Shavian translation - -M po/en@shaw.po - -commit ddb325fe0c420edcae32e65ebc0b6958fa0a84e2 -Author: Fran Diéguez -Date: 2010-05-20 - - Updated Galician translations - -M po/gl.po - -commit 86d41c14159741c6803940a83a42e40a89d061d7 -Author: Cosimo Cecchi -Date: 2010-05-20 - - Split WARNING_CFLAGS into its own variable. - - So that we can use e.g. LIBNEMO_EXTENSIONS_CFLAGS when compiling - the - gir information. - -M configure.in -M eel/Makefile.am -M libnemo-extension/Makefile.am -M libnemo-private/Makefile.am -M src/Makefile.am -M src/file-manager/Makefile.am -M test/Makefile.am - -commit 2617e16aa55367ba3d73a33dc27376cf518d4676 -Author: Cosimo Cecchi -Date: 2010-05-20 - - Implement transparent icons for cut files in tree view. - -M src/file-manager/fm-tree-model.c -M src/file-manager/fm-tree-model.h -M src/file-manager/fm-tree-view.c - -commit 5b213054823f64c8125effe56f0288c54aefa625 -Author: Cosimo Cecchi -Date: 2010-05-20 - - Use the new NemoFile API in the list model. - -M src/file-manager/fm-list-model.c - -commit df11a77d4b08e170b63da4c4b67ea9730634268c -Author: Cosimo Cecchi -Date: 2010-05-20 - - Move the clipboard callbacks to NemoClipboardMonitor. - -M libnemo-private/nemo-clipboard-monitor.c -M libnemo-private/nemo-clipboard-monitor.h -M src/file-manager/fm-directory-view.c - -commit bbc6c3d83e51af4da3a093ef95cb17d188f162f2 -Author: Cosimo Cecchi -Date: 2010-05-20 - - Add an utility function to compare file locations. - -M libnemo-private/nemo-file.c -M libnemo-private/nemo-file.h - -commit 044952f0a5683e37545cd30d2a5296213abf70bd -Author: Cosimo Cecchi -Date: 2010-05-15 - - Implement transparent icons for cut files in list view. - -M src/file-manager/fm-list-model.c -M src/file-manager/fm-list-model.h -M src/file-manager/fm-list-view.c - -commit 07f768de905f42857c01434f2550c43d79eb4ed6 -Author: Cosimo Cecchi -Date: 2010-05-15 - - Implement transparent icons for cut files in icon view. - -M src/file-manager/fm-icon-view.c - -commit 03ff6b4d60473db94f351b9b3b2c0ee9490556cc -Author: Cosimo Cecchi -Date: 2010-05-15 - - Move clipboard information to NemoClipboardMonitor. - - So that we can use that information from more than one view at - the same - time. - -M libnemo-private/nemo-clipboard-monitor.c -M libnemo-private/nemo-clipboard-monitor.h -M src/file-manager/fm-directory-view.c - -commit 226e7ba044f15cb22e8f9c3966625c496913f3df -Author: Cosimo Cecchi -Date: 2010-05-15 - - Add an "highlighted-for-clipboard" property to the item. - -M libnemo-private/nemo-icon-canvas-item.c -M libnemo-private/nemo-icon-container.c -M libnemo-private/nemo-icon-container.h - -commit 76ae23877a3e022d1d47526f1b74e5559faeb756 -Author: Cosimo Cecchi -Date: 2010-05-15 - - Move pixbuf render code to libeel. - - So that we'll be able to use it from outside of - NemoIconCanvasItem. - -M eel/eel-gdk-pixbuf-extensions.c -M eel/eel-gdk-pixbuf-extensions.h -M libnemo-private/nemo-icon-canvas-item.c - -commit 97d736a0861a81f825698451249564e42d002d4b -Author: Cosimo Cecchi -Date: 2010-05-19 - - Add another missing GConf schema. - -M libnemo-private/apps_nemo_preferences.schemas.in - -commit 4309418a12b43e87a4de1f44d0641a6c902a64ce -Author: Gregory J. Horvath -Date: 2010-05-19 - - Add a missing GConf schema. - -M libnemo-private/apps_nemo_preferences.schemas.in - -commit f1148c5878e8b68c95dad8dec50aa30c6ee9b2d3 -Author: Rodrigo Moya -Date: 2010-05-19 - - Add introspection support for libnemo-extension - -M libnemo-extension/Makefile.am - -commit 8d366402ca6120e6f75051596d8ae33589ef3591 -Author: Rodrigo Moya -Date: 2010-05-13 - - Added introspection to libnemo-extension - -M configure.in -M libnemo-extension/Makefile.am - -commit 1c88c7186ed298fbdd67e31cb3b8c613093c3411 -Author: Adrian Bunk -Date: 2010-03-29 - - autogen.sh: automake 1.9 is required (see configure.in) - -M autogen.sh - -commit 38986e1c0773299a7efa9f7333d5d0c513a8b66c -Author: Thomas Thurman -Date: 2010-05-16 - - Updated Shavian translation - -M po/en@shaw.po - -commit 649b0f65182f370792e00e227923a251e19ace17 -Author: Fran Diéguez -Date: 2010-05-16 - - Updated Galician translations - -M po/gl.po - -commit 0a8ec392070d9927df450ceffc4333b0a25c281c -Author: Fran Diéguez -Date: 2010-05-14 - - Updated Galician translations - -M po/gl.po - -commit 0eead029b0725cb70d9817467f820ac53b14eb60 -Author: Jorge González -Date: 2010-05-13 - - Updated Spanish translation - -M po/es.po - -commit b521530ac4cba5327ea37af7b488355f1d87399c -Author: Cosimo Cecchi -Date: 2010-05-13 - - Hide the 'Arrange by Trash Time' option if we're not in the trash. - -M src/file-manager/fm-actions.h -M src/file-manager/fm-icon-view.c - -commit eab6722face64b510b8bbf330761d5b5ae7e807f -Author: Cosimo Cecchi -Date: 2010-05-13 - - Don't rely on updated metadata when resetting columns to default. - -M src/file-manager/fm-list-view.c - -commit 96da10025c3bd00ed5d748d0b91447a0137b5ef9 -Author: Cosimo Cecchi -Date: 2010-05-12 - - Define different defaults for the columns in trash. - - These defaults are hardcoded, but I think it's fine, as they're - limited - to the trash. The rest of nemo will follow the usual defaults. - -M src/file-manager/fm-list-view.c - -commit 19bbf8a1ae54cc11d51935f94209074fb2659e90 -Author: Cosimo Cecchi -Date: 2010-05-12 - - Use the new API in the preferences. - -M src/nemo-file-management-properties.c - -commit 4b3038b4ea85ce309d6fb128675611d3c912739e -Author: Cosimo Cecchi -Date: 2010-05-12 - - Use the new methods in the column chooser. - - The chooser becomes file-oriented as well. It will fetch the common - columns if we don't provide any file, and try to fetch the specialized - list if we pass a file. - -M libnemo-private/nemo-column-chooser.c -M libnemo-private/nemo-column-chooser.h - -commit 14dc307c7e76f144d9fbbd091777123867b1efe4 -Author: Cosimo Cecchi -Date: 2010-05-12 - - Split the special columns. - - Add utility functions which return a list of columns depending on the - location, separate from the 'common' set which is useful for every - directory. - -M libnemo-private/nemo-column-utilities.c -M libnemo-private/nemo-column-utilities.h - -commit f62cad9bae1b742b41c088449b2278eb7b6fd093 -Author: Marcus Carlson -Date: 2009-10-11 - - Adds Trashed On and Original Location as columns in List View - - And also an 'Arrange by Trash Time' option in Icon View. - - https://bugzilla.gnome.org/show_bug.cgi?id=89706 - -M libnemo-private/nemo-column-utilities.c -M libnemo-private/nemo-file-private.h -M libnemo-private/nemo-file.c -M libnemo-private/nemo-file.h -M libnemo-private/nemo-vfs-file.c -M src/file-manager/fm-icon-view.c -M src/file-manager/nemo-icon-view-ui.xml - -commit eafead25cabb9ec580c21f105f053be10dac9d5d -Author: Thomas Thurman -Date: 2010-05-12 - - Updated Shavian transliteration - -M po/en@shaw.po - -commit 6519089b3597d158618dab8d752b2d4e09494e87 -Author: Khaled Hosny -Date: 2010-05-12 - - Cleanup file header - -M po/ar.po - -commit 000092092d86c5b39b6d3a4638c860ce50d32961 -Author: Khaled Hosny -Date: 2010-05-12 - - Updated Arabic translation - -M po/ar.po - -commit 3aa7864fd2fd0459073abe0eb75b9f73fdb91653 -Author: Kjartan Maraas -Date: 2010-05-11 - - Updated Norwegian bokmål translation - -M po/nb.po - -commit a9c3fff8710dfaae0615e48b3f6447d4b5576146 -Author: Manoj Kumar Giri -Date: 2010-05-11 - - Updated Oriya Translation - -M po/or.po - -commit 5f6b4e6f3b8ca2c27eacf5977121618fb3fb12c1 -Author: Bruno Brouard -Date: 2010-05-10 - - Updated French translation - -M po/fr.po - -commit 601c42c06e4d40de99c38eb795f20375dd2e7242 -Author: Cosimo Cecchi -Date: 2010-05-09 - - Don't add the emblem if it's equal to the icon. - -M libnemo-private/nemo-file.c - -commit 414810d3e294eaf3565127cce26fc760f147f6bf -Author: Cosimo Cecchi -Date: 2010-05-08 - - Use the mount icon as an emblem in the information sidebar. - -M src/nemo-sidebar-title.c - -commit 88781dae75003996accbf521a2d3e405d7d4fd14 -Author: Cosimo Cecchi -Date: 2010-05-08 - - Use the mount icon as an emblem in the views. - -M src/file-manager/fm-icon-container.c -M src/file-manager/fm-list-model.c - -commit 7bfc3c6a7d22e1091f7985377dabd8581e1dfeac -Author: Cosimo Cecchi -Date: 2010-05-03 - - Prefer mount icons as window icons (#613733). - -M src/nemo-navigation-window.c -M src/nemo-spatial-window.c - -commit 38c5b7ee06b4f8d90689dfd8fa5e010066a0b233 -Author: Cosimo Cecchi -Date: 2010-05-08 - - Add new icon flags to use mount icons. - - This will allow us to be more consistent with mount icons around and - refactor some code as well. - -M libnemo-private/nemo-file.c -M libnemo-private/nemo-file.h - -commit 17f50da7dfbb7efdc3db74deed0cd341711ddb6e -Author: Mario Blättermann -Date: 2010-05-08 - - Updated German translation - -M po/de.po - -commit ca10b4b89df5c8123c08ad1de80139e1a52a4932 -Author: Cosimo Cecchi -Date: 2010-05-06 - - Never update icons for remote bookmarks. - -M libnemo-private/nemo-bookmark.c - -commit 108a23dc0e0be534530028612d72302c7d2a1e53 -Author: Cosimo Cecchi -Date: 2010-05-06 - - Trigger the eject button on release. - -M src/nemo-places-sidebar.c - -commit 729ce7cf7feead42d16a5b8793cd7948286c00f8 -Author: Cosimo Cecchi -Date: 2010-05-06 - - Use the new API in the places sidebar. - -M src/nemo-places-sidebar.c - -commit 6bbe1bd9ed2d9eea934ced04952b3ab4a8d74252 -Author: Cosimo Cecchi -Date: 2010-05-06 - - Set a 'folder-remote' icon for remote bookmarks. - -M src/nemo-connect-server-dialog.c - -commit 89fa909f3d406dd2e47006eeaaee051bef2b77d5 -Author: Cosimo Cecchi -Date: 2010-05-06 - - Set a 'folder-remote' icon if the URI is not native. - - Also, port to the new API. - -M src/nemo-bookmark-list.c - -commit e6d70ef8a41bd0c6e6685f07e85e266e3227c61c -Author: Cosimo Cecchi -Date: 2010-05-06 - - Update to the new API. - -M src/nemo-bookmarks-window.c -M src/nemo-window-manage-views.c -M src/nemo-window.c - -commit 856177d1dc13802e6473923d331f8f1ba91f8e51 -Author: Cosimo Cecchi -Date: 2010-05-06 - - Change NemoBookmark API. - - Remove _set_has_custom_name() method and use just one _new() - constructor. - - Also, emit the CONTENTS_CHANGED signal when we're setting a new - name, as - that will trigger a save/reload of .gtk-bookmarks due to saving a new - label. - - Finally, don't use gnome-fs-bookmark* icon names anymore, as they're - deprecated. We now use 'folder' as a default icon, and add a 'warning' - emblem when the URI does not exist. - -M libnemo-private/nemo-bookmark.c -M libnemo-private/nemo-bookmark.h - -commit 1756fb0b77aebae201ffb1ee1641a9118ca941d9 -Author: Cosimo Cecchi -Date: 2010-05-06 - - Remove a pile of hacks used to initialize bookmarks. - - - Make nemo_window_constructed a real GObject implementation and - move bookmark initialization code there. - - Don't replicate a singleton logic in nemo-window-bookmarks now - that NemoBookmarkList is a real singleton - - Remove get_bookmark_list() method from NemoWindowInfo, as it's - not any useful anymore. - -M libnemo-private/nemo-window-info.c -M libnemo-private/nemo-window-info.h -M src/nemo-application.c -M src/nemo-window-bookmarks.c -M src/nemo-window-bookmarks.h -M src/nemo-window-menus.c -M src/nemo-window-private.h -M src/nemo-window.c - -commit 03c5612730d4de29d8cb80352b1bfc42bab59742 -Author: Cosimo Cecchi -Date: 2010-05-06 - - Make NemoBookmarkList a singleton. - -M src/nemo-bookmark-list.c - -commit 00035932b2948140d95f27a473be380f189caf21 -Author: Fran Diéguez -Date: 2010-05-04 - - Updated Galician translation - -M po/gl.po - -commit 997028e6669062537b2f8ec2ce0fad2854f114b3 -Author: Jorge González -Date: 2010-05-04 - - Updated Spanish translation - -M po/es.po - -commit e6a7039162d4eb37afe329cc4d8378f9edb446c7 -Author: Cosimo Cecchi -Date: 2010-05-04 - - Release 2.31.1. - -M NEWS -M po/POTFILES.in - -commit c0f8096150ea98af40248a55d6dbb77a35c0a771 -Author: Jorge González -Date: 2010-05-03 - - Updated Spanish translation - -M po/es.po - -commit abade38f2477bc807246d5b4acf8b7a753ea369e -Author: Jorge González -Date: 2010-05-03 - - Updated Spanish translation - -M po/es.po - -commit 64524ff2724bb6f0cc72fea34cb7ca3d5253cec7 -Author: Cosimo Cecchi -Date: 2010-05-03 - - Use header capitalization for "Open With" menu items (#596778). - - As the HIG says so. - -M src/file-manager/fm-directory-view.c -M src/nemo-information-panel.c - -commit 79e155aba54ee7cfeac9363548d6b1cee221ae2f -Author: Cosimo Cecchi -Date: 2010-05-03 - - Don't give input focus to the selectable label (#591902). - -M src/nemo-image-properties-page.c - -commit e0f463562e894a2f394279d00fdf027343d2efad -Author: Cosimo Cecchi -Date: 2010-05-03 - - Change "Stretch Icon" to "Resize Icon" (#459900). - -M src/file-manager/fm-icon-view.c - -commit 5348820067ab62dd3fcac78f0acc0fef869cc2a1 -Author: Cosimo Cecchi -Date: 2010-05-02 - - Use "Cancel" as default response when activating a broken link - (#341595) - -M libnemo-private/nemo-mime-actions.c - -commit fe817911c538f1018d73945af9d637e01943378b -Author: Cosimo Cecchi -Date: 2010-05-02 - - Don't force a default response. - -M eel/eel-stock-dialogs.c - -commit 846dd7c0e50b0f2db288285e615698932cf81e41 -Author: Kjartan Maraas -Date: 2010-05-02 - - Updated Norwegian bokmål translation - -M po/nb.po - -commit 1eac7a19cd7c4f543408809d0c0875bec849a494 -Author: Fran Diéguez -Date: 2010-05-01 - - Updated Galician translation - -M po/gl.po - -commit 777a404b76c0bcb3c3504fa9ff986c256777be8d -Author: Torstein Adolf Winterseth -Date: 2010-05-01 - - Updated Norwegian Nynorsk translation - -M po/nn.po - -commit 2a87565bcb810597dca323a943c616075ee7c6ab -Author: Cosimo Cecchi -Date: 2010-04-29 - - Let the sidebar header fill the whole width (#463111). - - The code for this is borrowed from Evince's sidebar implementation. - -M src/nemo-side-pane.c - -commit b281985fff427982420b7d037dff609383b3ea74 -Author: Cosimo Cecchi -Date: 2010-04-29 - - Don't let the sidebar shrink more than its requisition (#311732). - - This also makes us consistent with the other GNOME apps that use a - sidebar widget. - -M src/nemo-navigation-window.c - -commit 842c94dbdd20bff3e9dcc1811b6e900d8d27d775 -Author: Jorge González -Date: 2010-04-29 - - Updated Spanish translation - -M po/es.po - -commit 90b32ff314a141417c2b8e3691766910420ca25e -Author: Cosimo Cecchi -Date: 2010-04-28 - - Don't ignore the return value of write() (#617092). - -M src/nemo-application.c - -commit 3683288f8a86cd714623cca3d6921315c67ec7f1 -Author: Cosimo Cecchi -Date: 2010-04-28 - - Add a 'Restore Selected Items' button in the trashbar. - - This makes the restore function more visible in the UI (#616304). - -M src/nemo-trash-bar.c -M src/nemo-trash-bar.h -M src/nemo-window-manage-views.c - -commit b87911c0caf3d957fc4e9575fd905493829f787c -Author: Cosimo Cecchi -Date: 2010-04-28 - - Move restore_from_trash() in nemo-file-utilities. - - This is needed so we will be able to use the function from the - trash bar - later. - -M libnemo-private/nemo-file-utilities.c -M libnemo-private/nemo-file-utilities.h -M src/file-manager/fm-directory-view.c - -commit a7792d030df5f2139043f7228cb0f30bf1cdf5c1 -Author: Jorge González -Date: 2010-04-27 - - Updated Spanish translation - -M po/es.po - -commit 02ef15eabeef5cdbcb479adad90632ff12d2b791 -Author: Cosimo Cecchi -Date: 2010-04-27 - - Properly update icons as we load the thumbnails. - -M libnemo-private/nemo-file-conflict-dialog.c - -commit 9ecdac9b1a4adb3db9ac32606ff36023a3d6909e -Author: Cosimo Cecchi -Date: 2010-04-27 - - Fix size requests and wrap modes for labels. - -M libnemo-private/nemo-file-conflict-dialog.c - -commit 430d554f55632475dac94a7a9d6009c0f189b178 -Author: Cosimo Cecchi -Date: 2010-04-27 - - Initialize variables to NULL. - -M src/nemo-places-sidebar.c - -commit 47ad2649dc83faf1b3931d93d5060729344de955 -Author: Cosimo Cecchi -Date: 2010-04-27 - - Use a new icon for audio preview (#614907). - - Thanks to Hylke Bons for the icon. - -M icons/audio.svg -M libnemo-private/nemo-icon-canvas-item.c - -commit 96a7a6bb7aa680d98f0bb05d77aa6101c25fb491 -Author: Jorge González -Date: 2010-04-27 - - Updated Spanish translation - -M po/es.po - -commit 46124f684e5db4bd05bc9575eef2b16527d58b66 -Author: Cosimo Cecchi -Date: 2010-04-27 - - Bump libnemo-extension API version (#610356). - -M configure.in - -commit 4b680e163e41a26c8ace47d43efdc72be9ede93a -Author: Cosimo Cecchi -Date: 2010-04-27 - - Don't use C++ keywords in NemoMenu (#616657). - -M libnemo-extension/nemo-menu.c -M libnemo-extension/nemo-menu.h - -commit eee505e416678ce7f51999b6a4acd385a0ae99c7 -Author: Cosimo Cecchi -Date: 2010-04-27 - - Bump version to 2.31.1 on master. - -M configure.in - -commit add025f7d1502d97062a9fdce8eff85fcd27205e -Author: Martin Pitt -Date: 2010-03-30 - - Do not show Unmount when showing Eject/Safe removal - - Having three menu entries (unmount/eject/safe removal) in a - volume/drive menu - entry is too confusing. Unmount only really makes sense for internal - drives, - for external ones it is pretty much a "geek" option. Geeks can - use palimpsest - or "unmount /media/foo" from the CLI if they really want to, for - everyone else - it is just an unintuitive and hard to to explain menu entry. - - Bug: https://bugzilla.gnome.org/show_bug.cgi?id=598690 - Bug-Ubuntu: https://launchpad.net/bugs/453072 - (cherry picked from commit 0a5cc4c4e5b01eb8aa38dfae926502ce920efc94) - -M src/file-manager/fm-directory-view.c -M src/nemo-places-sidebar.c - -commit cee1ced8e45dc9570308ba447f8e3c0edfd986ba -Author: Cosimo Cecchi -Date: 2010-04-15 - - Use display names for applications (#611378). - - Instead of using the simple GAppInfo name property. - -M libnemo-private/nemo-autorun.c -M libnemo-private/nemo-mime-actions.c -M libnemo-private/nemo-mime-application-chooser.c -M libnemo-private/nemo-open-with-dialog.c -M libnemo-private/nemo-program-choosing.c -M src/file-manager/fm-directory-view.c -M src/nemo-information-panel.c -M src/nemo-x-content-bar.c - -commit 9192dd8faffd788acf54a3b98de48cd1252dd9a6 -Author: Cosimo Cecchi -Date: 2010-04-15 - - Properly set the application as default (#605814). - - When the checkbox is enabled in the Open With dialog, set that - application as default; it the checkbox is not enabled, add the - application to the supported list. - -M libnemo-private/nemo-open-with-dialog.c - -commit 3d82f47ee91f5e0ca3284aef55911bace0736243 -Author: Cosimo Cecchi -Date: 2010-04-26 - - Don't mark the regex for translation. - -M src/file-manager/fm-directory-view.c - -commit 4dd3fc4731a313803c776ee096478a6f60ef5a72 -Author: Marcus Carlson -Date: 2009-10-05 - - Adds legend to "Select Items Matching" dialog - - https://bugzilla.gnome.org/show_bug.cgi?id=301690 - -M src/file-manager/fm-directory-view.c - -commit a7336c72c6f6cc0b0340e218fd123bcdddb144b9 -Author: Cosimo Cecchi -Date: 2010-04-26 - - Always set the parent window in dialogs (#573788). - -M eel/eel-stock-dialogs.c -M libnemo-private/nemo-mime-actions.c - -commit d63623cee6ac5cbbb74f6f31a7afa660d2037cbe -Author: Cosimo Cecchi -Date: 2010-04-09 - - Focus and sensitivity fixes. - -M libnemo-private/nemo-file-conflict-dialog.c - -commit 7e9ec46e34c899cae0eb92aabe9c826ea2abc5c6 -Author: Cosimo Cecchi -Date: 2010-04-09 - - Focus the entry after clicking on 'Reset'. - -M libnemo-private/nemo-file-conflict-dialog.c - -commit 5423c9f36cea27fac78d2fa7fee75c20a0a44d3e -Author: Cosimo Cecchi -Date: 2010-04-09 - - Tweak UI according to usability suggestions. - - This includes the addition of a reset button, use a single - Replace/Rename button and some smaller UI candies. - -M libnemo-private/nemo-file-conflict-dialog.c - -commit e1d7563733075cd0302951db45b645bee9f71cdb -Author: Cosimo Cecchi -Date: 2010-04-09 - - Reverse broken logic. - -M libnemo-private/nemo-file-conflict-dialog.c - -commit 33da32efab246804efb745c0f9c63d88574cf5d0 -Author: Cosimo Cecchi -Date: 2010-04-08 - - Remove manual markup. - - Now that we use Pango to make the string bold, this is useless. - -M libnemo-private/nemo-file-conflict-dialog.c - -commit b9640f4cb9b24b567e44f7f87b75f59bddf2f073 -Author: Cosimo Cecchi -Date: 2010-04-08 - - Make the primary label bold. - - For that, use the same code from GtkMessageDialog. - -M libnemo-private/nemo-file-conflict-dialog.c - -commit e1a6a08cbff7884635b2e6478171c85ce555b999 -Author: Cosimo Cecchi -Date: 2010-04-08 - - Specify which file is older. - - That's valuable information, so display it clearly in the secondary - label of the conflict dialog. - -M libnemo-private/nemo-file-conflict-dialog.c - -commit 067619c9c6fa155ff5dfff2b94f5f70e1a52dc4c -Author: Cosimo Cecchi -Date: 2010-04-08 - - Make sure NemoFiles are ready. - -M libnemo-private/nemo-file-conflict-dialog.c - -commit e84883bde6919d8bcbbc93713c80f3d537131d4e -Author: Cosimo Cecchi -Date: 2010-04-08 - - Show the file type only if it's different. - - Also, don't hardcode markup in strings marked for translations, - as i18n - don't usually like it. :) - -M libnemo-private/nemo-file-conflict-dialog.c - -commit 148dfd2b8d5492b7c9b4824133537d812782ea62 -Author: Cosimo Cecchi -Date: 2010-04-08 - - Fix indentation. - -M libnemo-private/nemo-file-conflict-dialog.c -M libnemo-private/nemo-file-conflict-dialog.h -M libnemo-private/nemo-file-operations.c - -commit 8734e4268b74935aaa5418ee567340fdfd2b953f -Author: Cosimo Cecchi -Date: 2010-04-08 - - Fix a conflict after rebase. - -M libnemo-private/nemo-file-operations.c - -commit 5d5166d2cdc68ccee3cacd9d0c266de0f0bee3f5 -Author: Cosimo Cecchi -Date: 2009-04-22 - - Swap the order of files in the dialog - - The dialog had the source and destination files wrongly ordered, - swap them. - -M libnemo-private/nemo-file-conflict-dialog.c - -commit d8a11018692ec20a8ec6a3dcb1f2d942dcb72a90 -Author: Cosimo Cecchi -Date: 2008-04-23 - - Use NemoFile machinery instead of is_dir - - Use the NemoFile cached data to find out whether a file is - a directory instead of using GIO. - -M libnemo-private/nemo-file-conflict-dialog.c - -commit 7e44bab4b8910bb26a91fc09a8e3b0cd12455bf8 -Author: Cosimo Cecchi -Date: 2009-04-22 - - Implement support for rename in the operations code - - Act accordingly to a rename response from the conflict dialog. - -M libnemo-private/nemo-file-operations.c - -commit 95016daa49bdd8b951dd0fa500b9634e12e91856 -Author: Cosimo Cecchi -Date: 2009-04-22 - - Adapt the file operations code to use the new dialog - - Cut out of the file operations module, the code used to display - conflict dialogs. Use the new dialog instead. - Rename is not working yet. - -M libnemo-private/nemo-file-conflict-dialog.c -M libnemo-private/nemo-file-operations.c - -commit dc21af1dc03759661fea147a8b98a8772749b29e -Author: Cosimo Cecchi -Date: 2008-04-03 - - Implement responses from the dialog back to the file operation. - - Add some API to get the response type from the conflict dialog back to - the file operations code. Start using that API during the operations - accordingly. - -M libnemo-private/nemo-file-conflict-dialog.c -M libnemo-private/nemo-file-conflict-dialog.h -M libnemo-private/nemo-file-operations.c - -commit bf607e6e3045dff76128894e87cd42affb68a44c -Author: Cosimo Cecchi -Date: 2008-04-03 - - HIG fixes - - Make sure the UI doesn't suck too much. - -M libnemo-private/nemo-file-conflict-dialog.c - -commit 2048c2d61db6ec557b6b572fb635a0f5a11bab09 -Author: Cosimo Cecchi -Date: 2008-04-02 - - Finish implement icon boxes in the dialog. - - Finish implement icon boxes in the conflict dialog. - Add a main thread runner from inside the file operations, as - the operation itself is done in an I/O worker thread. - -M libnemo-private/nemo-file-conflict-dialog.c -M libnemo-private/nemo-file-operations.c - -commit fee8b5095521fb6db98f866f6e0d53e8cf381783 -Author: Cosimo Cecchi -Date: 2008-04-02 - - UI and HIG fixes - - Use the correct markup strings in the dialog, and take care of - some layouting issues. - -M libnemo-private/nemo-file-conflict-dialog.c - -commit 6f0dc097348f7c2d0ede26daf5e76634a6625db3 -Author: Cosimo Cecchi -Date: 2008-04-02 - - Use a GtkDialog. - - Use a GtkDialog instead of a GtkMessageDialog. Take care of some HIG - fixes, and try to use icons from NemoFile. - -M libnemo-private/nemo-file-conflict-dialog.c -M libnemo-private/nemo-file-conflict-dialog.h - -commit 68ac5db7bcb762bcea612239c4a9d6408924a7b2 -Author: Cosimo Cecchi -Date: 2008-04-02 - - First implementation of NemoFileConflictDialog - - Basic UI implementation of NemoFileConflictDialog. Add it - to Makefile.am. - Also, hook the dialog inside the relevant file operations and - load it at the right place when doing a file operation. - -M libnemo-private/Makefile.am -A libnemo-private/nemo-file-conflict-dialog.c -A libnemo-private/nemo-file-conflict-dialog.h -M libnemo-private/nemo-file-operations.c - -commit ce66d5d2bf1b3c028f08d1f3ed3fa6d4c7c633f1 -Author: Cosimo Cecchi -Date: 2010-04-12 - - Don't use Backspace to delete bookmarks. - - In the places sidebar, don't assign Backspace to deleting bookmarks, - as - that's confusing (and we already have Delete for it). Fix bug #340934. - -M src/nemo-places-sidebar.c - -commit a051ce374f38b1dc13663f7a099337f39302c5b2 -Author: Cosimo Cecchi -Date: 2010-04-12 - - Always return TRUE from drop-motion. - - Fixes the displaying of a black line when DnD-ing something in the - sidebar which is not supported (#432529). - -M src/nemo-places-sidebar.c - -commit b80bfe38ac1cc4fd3561961d7f6f8b43ec786f20 -Author: Cosimo Cecchi -Date: 2010-04-12 - - Refactor the load/save code for the list. - - Don't use sync i/o anymore. This should also fix bug #532911. - -M src/nemo-bookmark-list.c -M src/nemo-bookmark-list.h - -commit 721f9999bcac87f28780d0b6938dac66b04970f2 -Author: Cosimo Cecchi -Date: 2010-04-12 - - Bring the object to 2010. - -M libnemo-private/nemo-bookmark.c -M libnemo-private/nemo-bookmark.h -M src/nemo-bookmark-list.c -M src/nemo-bookmark-list.h - -commit 5d84350777a40f53ae3970f2acbafb5846cb1c94 -Author: Cosimo Cecchi -Date: 2010-04-12 - - Set rate limit to the file monitor. - -M src/nemo-bookmark-list.c - -commit 2d64615521d9d6a090ef9a296e7783a73edc1f68 -Author: Cosimo Cecchi -Date: 2010-04-11 - - Remove dead code. - -M src/nemo-places-sidebar.c - -commit 006f5164b7ce1bf54fed170800ed145eb625826e -Author: Cosimo Cecchi -Date: 2010-04-11 - - Use the new NemoBookmarksList API. - -M src/nemo-places-sidebar.c - -commit 5b80a0e60516518f359596b5d6285b241d7c6cad -Author: Cosimo Cecchi -Date: 2010-04-11 - - Add a method to move bookmarks in the list. - - So that moving a bookmark in the list doesn't trigger two - 'contents-changed' signals in a row. - -M src/nemo-bookmark-list.c -M src/nemo-bookmark-list.h - -commit c87d0252bbd028ef80c3460be737c4e8ae07aa62 -Author: Cosimo Cecchi -Date: 2010-04-26 - - Preserve last selection while updating places. - -M src/nemo-places-sidebar.c - -commit 6b768ef18298bd8048f13e50094f5777b2b7e07b -Author: Cosimo Cecchi -Date: 2010-04-11 - - Use 'button-release-event' to activate bookmarks. - - Instead of using the 'row-activated' signal. This allows us to - only open - the bookmark after DnD (#606097). - -M src/nemo-places-sidebar.c - -commit 60b27c11e0dd3416eee13bdea45b280ec2562a36 -Author: Cosimo Cecchi -Date: 2010-04-13 - - Migrate confguration to XDG_CONFIG. - - https://bugzilla.gnome.org/show_bug.cgi?id=601476 - -M src/nemo-application.c - -commit 3c98314f94086dd241ca48bedee112d83733c183 -Author: Cosimo Cecchi -Date: 2010-04-13 - - Don't use ~/.nemo anymore (#601476). - - But use XDG_CONFIG to save configuration files. - Patch by jarryson. - -M libnemo-private/nemo-file-utilities.c - -commit a09d41702b771fb0041fa0c4270afaa678413a2d -Author: Cosimo Cecchi -Date: 2010-04-13 - - Remove deprecated GTK+ symbols (#565038). - -M eel/eel-background.c -M eel/eel-canvas.c -M eel/eel-debug-drawing.c -M eel/eel-editable-label.c -M eel/eel-gtk-container.c -M eel/eel-gtk-extensions.c -M eel/eel-image-table.c -M eel/eel-labeled-image.c -M eel/eel-wrap-table.c - -commit 2e79c499851757bf6da55c735268e36fcc4f2552 -Author: Alexander Larsson -Date: 2010-04-26 - - Update NEWS for release - -M NEWS - -commit 7411a0f07a6505ca5205a819b2539fe95bb1a1c0 -Author: Andy Owen -Date: 2010-04-26 - - Update split view menu item sensitivity when closing extra pane - -M src/nemo-navigation-window.c - -commit 39547f935a4f766eece11513eee175fffcbad2c1 -Author: Andy Owen -Date: 2010-04-26 - - Don't crash if there is no next_pane - - This happened due to menu sensitivity being wrongs (bug 616179) - -M src/nemo-navigation-window-menus.c - -commit bae7b352ae02233e5f3368818bf4daa864ad9a2e -Author: Mattias Põldaru -Date: 2010-04-26 - - Estonian translation updated - -M po/et.po - -commit dae9a5f81eec0ea5ededecb4375ca76c8f3ed9d1 -Author: Maxim V. Dziumanenko -Date: 2010-04-24 - - Updated Ukrainian translation - -M po/uk.po - -commit bf052548334dc7eae0b01131a4771c9fc34301f6 -Author: Maxim V. Dziumanenko -Date: 2010-04-22 - - Updated Ukrainian translation - -M po/uk.po - -commit 3c336f6968ed198c89eaeeae8d44a71312b5682b -Author: Carles Ferrando -Date: 2010-04-21 - - Updated Catalan (Valencian) translation - -M po/ca@valencia.po - -commit 17e388240fd5947cf21081c1d3971b2c9a66eeb1 -Author: Shankar Prasad -Date: 2010-04-21 - - Updated the kn translations - -M po/kn.po - -commit 2514148ef1a3d8a22caeb2f80989d29441e816e0 -Author: Jorge González -Date: 2010-04-17 - - Updated Spanish translation - -M po/es.po - -commit 32327339b335e71f661f5f51c6f66ddb95cbd099 -Author: Paolo Borelli -Date: 2010-04-17 - - Do not use "if (spatial) ..." in window superclass - - Delegate behavior specific to the window type to an appopriate - subclass - method. - -M src/nemo-application.c -M src/nemo-navigation-window.c -M src/nemo-spatial-window.c -M src/nemo-window-private.h -M src/nemo-window.c -M src/nemo-window.h - -commit 90c1b707ce4ab0a96dc4200537ef9fae17e45e60 -Author: Andika Triwidada -Date: 2010-04-17 - - Updated Indonesian translation due bug #569491 - -M po/id.po - -commit fc18d0bfc4f6001be311be63993a90129f02520a -Author: Holger Berndt -Date: 2010-04-06 - - Let w close the extra pane - - The keybinding w closes the active slot until no slot is - remaining, in which case it closes the window. This commit includes - the extra pane layer in this chain. - - Fixes bug 615593 - -M src/nemo-window-pane.c -M src/nemo-window.c - -commit 719c524c571fc0742382bff1c04174bb585326b8 -Author: Manoj Kumar Giri -Date: 2010-04-16 - - Updated Oriya Translation - -M po/or.po - -commit 85c0047c370b06473026b2920dc53428bd3c30ae -Author: Holger Berndt -Date: 2010-03-22 - - Fix sensitivity of "{Copy|Move} to other pane after enable/disable - of extra pane" - - Add an "update_menus" signal to the NemoView interface, so that - external events - can trigger a menu sensitivity update. - Fixes bug 613257. - -M libnemo-private/nemo-view.c -M libnemo-private/nemo-view.h -M src/file-manager/fm-directory-view.c -M src/nemo-navigation-window-menus.c - -commit 543d3ddd5131546fbbb2e3e2a504d9800c4f0d62 -Author: Peteris Krisjanis -Date: 2010-04-15 - - Updated Latvian translation. - -M po/lv.po - -commit 1ec432f114b357822256349b85c7401d1ade4cf5 -Author: Runa Bhattacharjee -Date: 2010-04-15 - - Updated Bengali India Translation - -M po/bn_IN.po - -commit 183b65d95d7c6418ba74104e6c718572ae518af3 -Author: Andika Triwidada -Date: 2010-04-15 - - Updated Indonesian translation - -M po/id.po - -commit 00de9e84618738f2f41c5ac5e01e7bddc953423b -Author: Reşat SABIQ -Date: 2010-04-14 - - Minor update for Crimean Tatar/Turkish translation - -M po/crh.po - -commit 9a45cd408e177c49bfbd7bced2f117c2b5f87e75 -Author: Yannig Marchegay -Date: 2010-04-14 - - Updated Occitan translation - -M po/oc.po - -commit 7fb83086b3c39aa6555b3fe2b0c3a59449cab5f2 -Author: Yannig Marchegay -Date: 2010-04-14 - - Updated Occitan translation - -M po/oc.po - -commit 73fc9b35508b3be5d959c568e92ae6870817dee2 -Author: Yannig Marchegay -Date: 2010-04-14 - - Updated Occitan translation - -M po/oc.po - -commit 27850a638a0075fb35b49c0621363bcb9ffd50d3 -Author: Ani Peter -Date: 2010-04-14 - - Updated Malayalam Translation - -M po/ml.po - -commit d88eca5a81988d62fbcbcc60037abbaae124b407 -Author: Sandeep Shedmake -Date: 2010-04-14 - - Updated Marathi Translations - -M po/mr.po - -commit 95b2c6e322a9bd15320fd6cdb37394e645b85ef4 -Author: Yannig Marchegay -Date: 2010-04-13 - - Occitan translation update - -M po/oc.po - -commit 89953c7140b285cc27a0dc4f8a771a58bee21e20 -Author: Yannig Marchegay -Date: 2010-04-13 - - Occitan translation update - -M po/oc.po - -commit 36586cd1ad3f0c12c707f052964b3c188343e78a -Author: Francisco Diéguez -Date: 2010-04-09 - - Updated Galician translations - -M po/gl.po - -commit cb4097700ddfc5992544528cc4e412ec345131aa -Author: Tomas Bzatek -Date: 2010-04-09 - - Tracker: Fix filtering by location, code cleanup - - This also involves code cleanup to maintain consistency with - gtksearchenginetracker.c - - Related: bug 612725 - -M libnemo-private/nemo-search-engine-tracker.c - -commit 31b4b4adda7a9da23b611966176c7f7b7ae552cd -Author: Cosimo Cecchi -Date: 2010-04-09 - - Don't use LDFLAGS for the eel library. - - libeel is a convenience library now, so it should pull its dependecies - using LIBADD, not LDFLAGS. Patch by Josselin Mouette (#604575). - -M eel/Makefile.am - -commit 496d3f15de295482e158194e1fe1dae3569f4524 -Author: Cosimo Cecchi -Date: 2010-04-09 - - Use gtk_widget_get_state() (#612423). - - Instead of the deprecated GTK_WIDGET_STATE macro. - Patch by Dominique Leuenberger. - -M eel/eel-editable-label.c -M eel/eel-gtk-extensions.c -M eel/eel-labeled-image.c - -commit 305cf9768bd716ba9bbcd3e773511536243a9cc5 -Author: Marcus Carlson -Date: 2010-04-07 - - Fix emblem scaling with zoom >= 150% - - Emblem handling did not properly take zoom into account (#343540) - -M libnemo-private/nemo-icon-canvas-item.c - -commit 263051df98aace0b59fb2bd1772711dceba8e404 -Author: Marcus Carlson -Date: 2010-04-07 - - Fix crash when middle click on an invalid network share in Places - - https://bugzilla.gnome.org/show_bug.cgi?id=579627 - -M src/nemo-window-manage-views.c - -commit 1698377dcad6762bc0b32c4efa75d7e2c4b3fb67 -Author: Tomas Bzatek -Date: 2010-04-06 - - Support for tracker 0.8 stable release - -M libnemo-private/nemo-search-engine-tracker.c - -commit 323124d88ba4bf2d39466ee11c3f166ffebb0a01 -Author: Sweta Kothari -Date: 2010-04-06 - - Updated Gujarati Translations - -M po/gu.po - -commit ae2b3bffcb1bb5f333bc6654af3c0a3719d50b70 -Author: Jordi Serratosa -Date: 2010-04-02 - - Fixes to Catalan translation - -M po/ca.po - -commit 1b252c84a9f1efaab652679f2511d5d5a63593f4 -Author: Wouter Bolsterlee -Date: 2010-03-30 - - Dutch translation updated by Wouter Bolsterlee - -M po/nl.po - -commit 09b695b4cab81b239a3934e6c53222299fc61137 -Author: Jordi Serratosa -Date: 2010-03-29 - - Fixes to Catalan translation - -M po/ca.po - -commit 3bdca4a2c5720e239a8947348b8390da0ac7b998 -Author: Alexander Larsson -Date: 2010-03-29 - - Post release version bump - -M configure.in - -commit e414801ab9c3baba23ce82df02f59ec7fdf2f7d8 -Author: Alexander Larsson -Date: 2010-03-29 - - Bump version to 2.30.0 - -M configure.in - -commit 8174126cad82d54b25b40b883aa05d0a13abdc44 -Author: Alexander Larsson -Date: 2010-03-29 - - Require stable versions of glib/gtk+ - -M configure.in - -commit 8972aad5f0fc3f6346000845770239d39c0fd63b -Author: Alexander Larsson -Date: 2010-03-29 - - Update for release - -M NEWS - -commit 6364bbbbea855bcd5f507d08e4270956aed4083a -Author: Runa Bhattacharjee -Date: 2010-03-29 - - Typo correction and updation - -M po/bn_IN.po - -commit 313ee0e2b19d5850bbc62dae73fe315b4c450277 -Author: Jamil Ahmed -Date: 2010-03-27 - - Updated Bengali translation - -M po/bn.po - -commit be4461243fdf084bd1a2c466fd3b196e134439d7 -Author: Maxim V. Dziumanenko -Date: 2010-03-26 - - Updated Ukrainian translation - -M po/uk.po - -commit 94127c6f6c553849c033ce06e0eb3fa8a837d994 -Author: Timo Jyrinki -Date: 2010-03-26 - - Separate ejecting from safely removing and link to the relevant - bug report. - -M po/fi.po - -commit 0fe43b73226164ac381d48e167c15035161f7e19 -Author: Gabor Kelemen -Date: 2010-03-26 - - Updated Hungarian translation - -M po/hu.po - -commit f9f46d46040e97f802e530706248d39a2daf99cc -Author: Simos Xenitellis -Date: 2010-03-25 - - Updated Greek translation for nemo - -M po/el.po - -commit de23258a5b70b7237cf972b4689731763eb19ebf -Author: Cosimo Cecchi -Date: 2010-03-25 - - Use a better thumbnail frame for image previews. - - Thanks to Hylke Bons for working on this. Closes bug #613858. - -M icons/thumbnail_frame.png -M libnemo-private/nemo-thumbnails.h - -commit acb01f0fe637a64f92c1ff2188879b7c470ed0e0 -Author: Tomas Bzatek -Date: 2010-03-24 - - Unref local query object when turning search off - -M src/nemo-navigation-window-menus.c - -commit a92a7bfcb2c7bb9f171724bc97b1c163f52c0fd7 -Author: Tomas Bzatek -Date: 2010-03-24 - - Don't crash when hiding search bar with no text - - Happens in browser mode and only when search results pane is displayed - -M src/nemo-navigation-window-menus.c - -commit 4702bc8e74248de734c2fbcddd57191ba2fc1bd1 -Author: Fran Diéguez -Date: 2010-03-24 - - Updated Galician translation - -M po/gl.po - -commit 4297995df518bc17f5b3de9889c655c35eb05fbf -Author: Inaki Larranaga Murgoitio -Date: 2010-03-24 - - Updated Basque language - -M po/eu.po - -commit 9b458e52b43a87c0b5ff13a0634c18dc6328de8a -Author: A S Alam -Date: 2010-03-24 - - update for Punjabi by A S Alam - -M po/pa.po - -commit ffadc713c20db01c3678f947f510565affcd4887 -Author: Anders Jenbo -Date: 2010-03-23 - - Updated Danish translation - -M po/da.po - -commit 81709b3bba3630fdee8577453820a353b4757aed -Author: Simos Xenitellis -Date: 2010-03-23 - - Updated Greek translation for nemo - -M po/el.po - -commit 14b652632c63b586bf32ae6a7a0599da459fcc4a -Author: Nikos Bakaoukas -Date: 2010-03-23 - - Updated Greek translation for nemo - -M po/el.po - -commit 5bbd6545ac0114e2a6962079fdbcaae5bbe84b78 -Author: Tommi Vainikainen -Date: 2010-03-22 - - Updated Finnish translation - -M po/fi.po - -commit c18f16106fe0cf6b9c139c61728f6f5233ca0737 -Author: Luke Symes -Date: 2010-03-14 - - Don't display a border around the desktop frame. - - Fixes bug 605704. - -M src/file-manager/fm-desktop-icon-view.c - -commit 0a53599124a8d57b5d6ccdb8694da10bea8313d7 -Author: Reşat SABIQ -Date: 2010-03-18 - - Updated Crimean Tatar (Crimean Turkish) translation - -M po/crh.po - -commit e0b4fd622a4eb31a3d9af56bb0b2d5c1fd7e3d06 -Author: Bastien Nocera -Date: 2010-03-17 - - Add AIFF as a supported audio type for preview - -M src/file-manager/nemo-audio-mime-types.h - -commit ba6a7c6e1098c5cb88fb7468e98bf9f58ff6b543 -Author: Alexander Larsson -Date: 2010-03-17 - - Set exit_with_last_window to false by default - - This fixes problems with show_desktop=false causing nemo to - exit and gnome-session restarting nemo in a loop (#571417). - - This means nemo will keep running, so that it can handle automount - and stuff. If you only run nemo rarely you need to set this - to true. - - In the future we will move the automount handling to - gnome-settings-daemon - and then we will probably change this back. - -M libnemo-private/apps_nemo_preferences.schemas.in - -commit dfa7758c96580e06261756b6f49433befec677c4 -Author: Inaki Larranaga Murgoitio -Date: 2010-03-16 - - Updated Basque language - -M po/eu.po - -commit 1ab3721437d8371301079023c10dfa14c0eb5b5d -Author: Inaki Larranaga Murgoitio -Date: 2010-03-15 - - Updated Basque language - -M po/eu.po - -commit e61a5c23dce6af7861628ace3fb049d9a0d4c8e8 -Author: Petr Kovar -Date: 2010-03-15 - - Update Czech translation by Lucas Lommer - -M po/cs.po - -commit 863a13e1dbbcee2d7405f17b3eef6db93df437df -Author: Ivar Smolin -Date: 2010-03-14 - - Estonian translation updated - -M po/et.po - -commit e3ea8ba00461ccd43716c1360215d4d44e4fa872 -Author: Fran Diéguez -Date: 2010-03-13 - - Updtae Galician translation - -M po/gl.po - -commit 68dbac28c64ea365a09b7cbc58fba0434fad8a34 -Author: Luca Ferretti -Date: 2010-03-12 - - Updated Italian translation - -M po/it.po - -commit 797cacb28b78fede43b713dbd1fba2479bdbe943 -Author: Holger Berndt -Date: 2010-03-11 - - Remove grab_focus from list view - - The grab_focus interface function is now implemented - in the directory view. There's no need for special handling - of list views anymore. - -M src/file-manager/fm-list-view.c - -commit c78da8903804267ef7399d92753c5f5b2e811585 -Author: Holger Berndt -Date: 2010-03-11 - - Fix focus handling - - Move the focus to a new window's first slot. The extra - pane doesn't get focus initially, which fixes - bug 612203. - - To make this work for all views, the focus_grab interface - function was implemented for the directory view class. - -M src/file-manager/fm-directory-view.c -M src/nemo-window-pane.c -M src/nemo-window-pane.h -M src/nemo-window.c - -commit 34807782c143f99f0ab94dd4a1804239a5710d1a -Author: Holger Berndt -Date: 2010-03-11 - - Bring back "Don't grab focus on realize" - - This brings back commit 4efd42312584b46f248e2839582a87776a7baebe - that was reverted in 95ae539e8d042b04ee9c6817bcc41f551ab207fc - - The focus issues that this introduces will be taken care of in a - followup commit. - -M libnemo-private/nemo-icon-container.c - -commit dde8fff965302b2d73f3aed81d19e6f93a7c6334 -Author: Padraig O'Briain -Date: 2010-03-11 - - Don't use inline keyword - - Its unnecessary and breaks on e.g. sun compilers. - -M src/nemo-navigation-window.c -M src/nemo-navigation-window.h - -commit c25488049229c725dde566d9c37e90c0122a6dd2 -Author: Gabor Kelemen -Date: 2010-03-11 - - Updated Hungarian translation - -M po/hu.po - -commit 44ea265c75a6cf54145002d9323b8bec52f76e3d -Author: Tomas Bzatek -Date: 2010-03-10 - - Update for 2.29.92.1 - -M NEWS -M configure.in - -commit 8c8cf192d861a1a6c202624ee0b4c0ff43077080 -Author: Tomas Bzatek -Date: 2010-03-10 - - Fix compilation due to deprecated GTK_WIDGET_STATE symbol - - Also see https://bugzilla.gnome.org/show_bug.cgi?id=69872#c87 - -M libnemo-private/nemo-tree-view-drag-dest.c - -commit fab5d01888eb08e3721db7331011534e40afe24e -Author: Duarte Loreto -Date: 2010-03-10 - - Updated Portuguese translation - -M po/pt.po - -commit 2d40fbadb053bc7ad0d988050e58a81bfc3ea08b -Author: Tomas Bzatek -Date: 2010-03-09 - - Fix libm linking - - Nemo was underlinked, found by recently introduced change - in Fedora: - https://fedoraproject.org/wiki/Features/ChangeInImplicitDSOLinking - - /usr/bin/ld: - ../libnemo-private/.libs/libnemo-private.a(eel-canvas.o): - undefined reference to symbol 'floor@@GLIBC_2.0' - /usr/bin/ld: note: 'floor@@GLIBC_2.0' is defined in DSO /lib/libm.so.6 - so try adding it to the linker command line - /lib/libm.so.6: could not read symbols: Invalid operation - -M configure.in - -commit 4df08e047b42ae4d11cd1edbbb7e99f95ae1b326 -Author: Tomas Bzatek -Date: 2010-03-08 - - Remove obsolete defines - -M configure.in - -commit 02afb2f5f2b95185c42ecac87af089a8ca8488ab -Author: Alexander Larsson -Date: 2010-03-08 - - Bump version to 2.29.92 - -M configure.in - -commit 7d79c4ad6db9a39ca6d37bb7eadd95ff84ac2af5 -Author: Alexander Larsson -Date: 2010-03-08 - - Update NEWS for release - -M NEWS - -commit b6958cb2d9e699c3a81ab39b9aa7766f6070a832 -Author: Alexander Larsson -Date: 2010-03-08 - - Don't close the window you initiated an unmount in. - - Based on patch from Luke Symes - -M src/nemo-application.c -M src/nemo-navigation-window-slot.c - -commit 80dd8fb8ff0df3aa32314c633b04173517da3a36 -Author: Alexander Larsson -Date: 2010-03-08 - - Set initiated_unmount on windows while unmounting - -M src/file-manager/fm-directory-view.c -M src/file-manager/fm-directory-view.h -M src/nemo-places-sidebar.c - -commit 5e7f95842228f289b2940f23e63a2dd3b2cca842 -Author: Alexander Larsson -Date: 2010-03-08 - - Always call back from nemo_file_unmount/eject, even on success - -M libnemo-private/nemo-file.c - -commit 7fb5d7f6e4c32ab391eb9f3a61c0cab59c585874 -Author: Alexander Larsson -Date: 2010-03-08 - - Add nemo_file_operations_unmount_mount_full with a callback - -M libnemo-private/nemo-file-operations.c -M libnemo-private/nemo-file-operations.h - -commit 43f080c97369796043e45719933f536e0b29582f -Author: Luke Symes -Date: 2010-03-08 - - Implement the initiated_unmount property for NemoWindow. - - Windows will have this set to TRUE when one of their slots - initiates an unmount. - - https://bugzilla.gnome.org/show_bug.cgi?id=611569 - -M libnemo-private/nemo-window-info.c -M libnemo-private/nemo-window-info.h -M src/nemo-window-private.h -M src/nemo-window.c - -commit e1e1fe0d505bdb9b53d7204bba0abeee52f73bca -Author: Tomas Bzatek -Date: 2010-03-08 - - Load tracker/beagle at runtime - - Dynamically load tracker (preferred) and beagle client libraries on - demand if available. - This allows more flexibility for packagers and users. - - See bug 589345 for details. - -M configure.in -M libnemo-private/Makefile.am -M libnemo-private/nemo-search-engine-beagle.c -M libnemo-private/nemo-search-engine-tracker.c -M libnemo-private/nemo-search-engine.c - -commit bbe632e641df6f184de338b8215e390139adc573 -Author: Miloš Popović -Date: 2010-03-07 - - Fixed typo in Serbian translation - -M po/sr.po -M po/sr@latin.po - -commit e9e1dbc188983bac428bade85becbfea079306a0 -Author: Miloš Popović -Date: 2010-03-07 - - Updated Serbian translations - -M po/sr.po -M po/sr@latin.po - -commit 8217aa1931ed6f275d3651003fe3e599baaf8245 -Author: Christian Kirbach -Date: 2010-03-06 - - Updated German translation - -M po/de.po - -commit a6715be7e462109020f8450fe9781ea70e5ca128 -Author: Holger Berndt -Date: 2010-03-05 - - Bring back + for tab changing - - Make the first 10 tabs of every pane changable via keyboard - shortcuts +1, +2 etc. - This brings back non-GUI functionality that was removed together - with the tab menus in e156e39e07276a4de8414bfdb82340f8762060b4 - Fixes bug 609924 - -M src/nemo-navigation-window-menus.c - -commit 97ef4d40e6c743620e0629ee768b6df0effa61df -Author: Kjartan Maraas -Date: 2010-03-04 - - Updated Norwegian bokmål translation - -M po/nb.po - -commit 4f870048b8d6754e29dd5ed0c4104f453caf7d3b -Author: Rodrigo Moya -Date: 2010-03-04 - - Replace deprecated GTK_WIDGET_* macros and depend on newer GTK+ - -M configure.in -M libnemo-private/nemo-clipboard.c -M libnemo-private/nemo-horizontal-splitter.c -M libnemo-private/nemo-icon-canvas-item.c -M libnemo-private/nemo-icon-container.c -M libnemo-private/nemo-progress-info.c -M libnemo-private/nemo-tree-view-drag-dest.c -M src/file-manager/fm-list-view.c -M src/file-manager/fm-properties-window.c -M src/file-manager/fm-tree-view.c -M src/nemo-application.c -M src/nemo-bookmarks-window.c -M src/nemo-navigation-window-pane.c -M src/nemo-navigation-window.c -M src/nemo-notebook.c -M src/nemo-pathbar.c -M src/nemo-side-pane.c -M src/nemo-spatial-window.c -M src/nemo-window-manage-views.c -M src/nemo-window.c -M src/nemo-zoom-control.c - -commit af9305deb5a699fa430599685f25ad363d280808 -Author: Leonid Kanter -Date: 2010-03-04 - - Update Russian translation by Yury Kozlov - -M po/ru.po - -commit 4d742c83498df29d6f4b853dca946c0b4c4b13a3 -Author: Alexander Larsson -Date: 2010-03-03 - - Revert "Put tabs at the bottom" - - This reverts commit c6ee7553fd029239eff50d32dbcb57223ffa185e. - - We have gotten feedback that this experiment was not liked by users, - so reverting. - -M src/nemo-notebook.c - -commit 7aad24446ce11d8508853cc0541590d3c8e0f99d -Author: Umarzuki bin Mochlis Moktar -Date: 2010-03-03 - - Update Malaj translation. Fixes bug 610519. - -M po/ms.po - -commit 95ae539e8d042b04ee9c6817bcc41f551ab207fc -Author: Alexander Larsson -Date: 2010-03-03 - - Revert "Don't grab focus on realize" - - This reverts commit 4efd42312584b46f248e2839582a87776a7baebe. - - We now don't store the extra view visible status, so the problem this - change fixed is gone. And this change caused other focus issues, as - per bug 607060. - -M libnemo-private/nemo-icon-container.c - -commit c8ded383147e0f860f9a206e9f45606bf16effe9 -Author: Holger Berndt -Date: 2010-02-25 - - Don't remember status of extra pane in a gconf key - - The focus for Nemo' split view mode are occasional, temporary - switches to a split view mode for heavy-duty filebrowsing, not to - be a permanent double pane filemanager. Therefore, neither split-view - toggle status nor splitter position of a window are supposed to affect - subsequently opened windows. See comments at bug 608431. - -M libnemo-private/apps_nemo_preferences.schemas.in -M libnemo-private/nemo-global-preferences.c -M libnemo-private/nemo-global-preferences.h -M src/nemo-navigation-window.c - -commit 0b6dd131e0d4d4ce7694b824e9925c1d021d9754 -Author: Changwoo Ryu -Date: 2010-03-01 - - Updated Korean translation - -M po/ko.po - -commit 82018666fb492bb423f4bcaccfa9bd50d868974d -Author: Daniel Nylander -Date: 2010-02-28 - - Updated Swedish translation - -M po/sv.po - -commit 582c1021a4b2f9039296a67bb45f8c3d51c327d5 -Author: Piotr Drąg -Date: 2010-02-28 - - Updated Polish translation - -M po/pl.po - -commit 78ed12260a72967f7e1d135c4ffe7d51c44e3021 -Author: Mario Blättermann -Date: 2010-02-27 - - Updated German translation - -M po/de.po - -commit 1688fbbbcd1a55c7a731f65fdef31b9d7c90ed60 -Author: Joan Duran -Date: 2010-02-27 - - Updated Catalan translation - -M po/ca.po - -commit 533c274c00f1d6ab27b56e58363acd164e15d268 -Author: Torstein Adolf Winterseth -Date: 2010-02-27 - - Updated Norwegian Nynorsk translation - -M po/nn.po - -commit c7e51ada91e966af89b14c46f6fd20a4da0f5e3c -Author: Bruce Cowan -Date: 2010-02-24 - - Updated British English translation - -M po/en_GB.po - -commit 5dc02f0410a14b17bcdf74404b79c6b97a47c6e2 -Author: Gintautas Miliauskas -Date: 2010-02-23 - - Updated Lithuanian translation. - -M po/lt.po - -commit 64c484ae80012d120c3420f9fdd09915aaed32f4 -Author: Alexander Shopov -Date: 2010-02-23 - - Updated Bulgarian translation - -M po/bg.po - -commit 5f1d9d7b17a9b21d934d05e9c3e724a3ff3318a8 -Author: Alexander Larsson -Date: 2010-02-22 - - Require latest gnome-desktop for spanning bg - -M configure.in - -commit dd7f350e54b99c6644632062f44165e29a2fd8e6 -Author: Alexander Larsson -Date: 2010-02-22 - - Remove src/nemo-throbber.c from POTFILES.in - -M po/POTFILES.in - -commit 6b445d8c23b82327083ccd7a0254ccd5d001cfbc -Author: Alexander Larsson -Date: 2010-02-22 - - Update NEWS for release - -M NEWS - -commit d27a9a4260f76602a0c5e88706c1641e06515971 -Author: Alexander Larsson -Date: 2010-02-22 - - Use GtkSpinner instead of custom widget - - Forgot this part of the commit... - -M configure.in -M src/Makefile.am -M src/nemo-navigation-window.c -M src/nemo-notebook.c -M src/nemo-window-private.h -M src/nemo-window-toolbars.c - -commit 07a6c14e4008e6ea131e5740485e8bd66547db3e -Author: A. Walton -Date: 2010-02-22 - - Use GtkSpinner instead of custom widget - -D src/ephy-spinner.c -D src/ephy-spinner.h -D src/nemo-throbber.c -D src/nemo-throbber.h - -commit 472d7b454862e5a18a4e04f50162b1cfe41beb30 -Author: Luke Symes -Date: 2010-02-16 - - Go to computer:/// on unmount - -M src/nemo-application.c - -commit a3f5dde5051737beceeb6bc825758d0ecce1e3fd -Author: Luke Symes -Date: 2010-02-17 - - Fix location check in should_close_with_mount - - https://bugzilla.gnome.org/show_bug.cgi?id=318094 - -M src/nemo-navigation-window-slot.c - -commit 45f7cbb0bf331f6e99fc5cbb8dcc84f3b26455fa -Author: vasudeven -Date: 2010-02-21 - - updated Tamil translation - -M po/ta.po - -commit 8df9b4a10a31532c52f5fbc36f8dee60fa04948d -Author: Alexandre Franke -Date: 2010-02-20 - - Update French translation to show real last translator - -M po/fr.po - -commit e8099533621bdb3a24178ea05d5a88586259e319 -Author: Alexandre Franke -Date: 2010-02-20 - - Fixed French translation (closes bug 610365) - -M po/fr.po - -commit 47eaabdecb657c284366c1832206595e470242c6 -Author: Khaled Hosny -Date: 2010-02-19 - - Updated Arabic translation - -M po/ar.po - -commit 3de6a780cb9dde0c54537139a81ab8186b81ccde -Author: Matthias Clasen -Date: 2010-02-18 - - Make it possible to have backgrounds spanning multiple monitors. - - gnome-desktop added a new 'spanned' picture_option for this. This - fixes - bug 610396. - -M eel/eel-background.c -M eel/eel-background.h -M libnemo-private/nemo-directory-background.c - -commit 402f79e82c91b5129fa8fb11840d390a8527e2fb -Author: vasudeven -Date: 2010-02-18 - - updated Tamil translation - -M po/ta.po - -commit e570e2f6fd6ed73aa472d85409be2e01107caa5c -Author: Rene Pärts -Date: 2010-02-17 - - Estonian translation updated - -M po/et.po - -commit 5de7ed5ee5c9857615c2da8c6424fa99e365dc26 -Author: Fran Diéguez -Date: 2010-02-15 - - Updated Galician Translation - -M po/gl.po - -commit ecdea68af78c46fbf9b7ecfb77cc8f71f4cfb687 -Author: vasudeven -Date: 2010-02-15 - - updated Tamil translation - -M po/ta.po - -commit 6549e2e1ef18e20bd6023d645092ae7b3b735d2f -Author: Ask H. Larsen -Date: 2010-02-14 - - Updated Danish translation - -M po/da.po - -commit 467e375bc52d1ceb400534c5d9d2995de1b40789 -Author: Claude Paroz -Date: 2010-02-13 - - Updated French translation - - Contributed by Claude Paroz and Bruno Brouard - -M po/fr.po - -commit 8d7e2a397fe4a70707c9fb92a98c1dfe2b621e2e -Author: Lucian Adrian Grijincu -Date: 2010-02-13 - - Update Romanian translation - -M po/ro.po - -commit 662e19941905cf80a9131e56cefc4eab69f6e5da -Author: Fran Diéguez -Date: 2010-02-12 - - Updated Galician Translation - -M po/gl.po - -commit bbb9d918761c07e0711c058e7b8295b3d7079ff3 -Author: Matej Urbančič -Date: 2010-02-11 - - Updated Slovenian translation - -M po/sl.po - -commit 862ba955f5f918eca3853faef00de67f1066c5c7 -Author: Chao-Hsiung Liao -Date: 2010-02-10 - - Updated Traditional Chinese translation(Hong Kong and Taiwan) - -M po/zh_HK.po -M po/zh_TW.po - -commit ef76f4421331a8575f43db2c4cd5b26a2f5952a2 -Author: Tomas Bzatek -Date: 2010-02-09 - - Post release version bump - -M configure.in - -commit 574b9a27bcb631dfa616e856f9f11131ddd1e150 -Author: Tomas Bzatek -Date: 2010-02-09 - - Update for 2.29.90 - -M NEWS -M configure.in - -commit e302cf74e2374f3e3850b4341c3456199d520726 -Author: Gabor Kelemen -Date: 2010-02-08 - - Hungarian translation updated - -M po/hu.po - -commit 09c0a7dfeb8530dcf8cc871b7377d27e4c41c2bd -Author: Theppitak Karoonboonyanan -Date: 2010-02-08 - - Updated Thai translation. - -M po/th.po - -commit a38cc9eb354fb48f48c38501ccf649a9e3f412d5 -Author: Henrique P. Machado -Date: 2010-02-06 - - Updated Brazilian Portuguese translation - -M po/pt_BR.po - -commit 80ce7ee481d292fae620b878b1c83dd65d71dfbe -Author: Jorge González -Date: 2010-02-06 - - Updated Spanish translation - -M po/es.po - -commit ebca4f18692c06e8af724317a82328a84514e6b0 -Author: Claude Paroz -Date: 2010-02-06 - - Fix copy-pasted tooltip string - -M src/file-manager/fm-directory-view.c - -commit cd49c551d46a41d803d8bb76c7bef6d395e14369 -Author: Jennie Petoumenou -Date: 2010-01-31 - - Updated Greek translation - -M po/el.po - -commit fde78a67b016d7c59b86145ac31d6b46462ee1b0 -Author: Mattias Põldaru -Date: 2010-01-29 - - Updating Estonian translation - -M po/et.po - -commit cf6477ac9b5576ab0f28077d817388fc3b77637f -Author: Jamil Ahmed -Date: 2010-01-29 - - Updated Bengali translation - -M po/bn.po - -commit e7f8fdf47e421122a7d13703fd3ff6cb6cd14b82 -Author: Alexander Shopov -Date: 2010-01-26 - - Updated Bulgarian translation - -M po/bg.po - -commit 4474a1d606c486486eb88e5043da500dd5885e1d -Author: Alexander Larsson -Date: 2010-01-25 - - Post release version bump - -M configure.in - -commit 49967fd917d0ae5f3e5d63858199fd41e1cd0811 -Author: Alexander Larsson -Date: 2010-01-25 - - Update NEWS for release - -M NEWS - -commit 1b07696835481a911e44c5964eeb545537242cff -Author: Khaled Hosny -Date: 2010-01-23 - - Updated Arabic translation - -M po/ar.po - -commit e156e39e07276a4de8414bfdb82340f8762060b4 -Author: Alexander Larsson -Date: 2010-01-22 - - Remove tabs menu - - I don't think this menu is much use, and it clutters up the menus - even for - users who don't use tabs, which is against our policy of having - the more - advanced features affect users not using them as little as possible. - - Also, remove the setting to disable tabs althoughter, as with the menu - removed the tabs feature is very minimal when not in use. - -M libnemo-private/apps_nemo_preferences.schemas.in -M libnemo-private/nemo-global-preferences.c -M libnemo-private/nemo-global-preferences.h -M libnemo-private/nemo-mime-actions.c -M src/file-manager/fm-directory-view.c -M src/file-manager/fm-icon-view.c -M src/file-manager/fm-list-view.c -M src/file-manager/fm-tree-view.c -M src/nemo-actions.h -M src/nemo-navigation-window-menus.c -M src/nemo-navigation-window-pane.c -M src/nemo-navigation-window-pane.h -M src/nemo-navigation-window-ui.xml -M src/nemo-navigation-window.c -M src/nemo-places-sidebar.c -M src/nemo-window-private.h - -commit c9d59901003f635221299ca90887b830f3c0a3fa -Author: Kjartan Maraas -Date: 2010-01-22 - - Updated Norwegian bokmål translation - -M po/nb.po - -commit ec8b9a8b58ddd9d6bf08ac9e0b875581009255b3 -Author: Thomas Hindoe Paaboel Andersen -Date: 2010-01-18 - - Replace deprecated GTK_OBJECT_TYPE with G_OBJECT_TYPE - - GNOME bug 565038 - -M eel/eel-canvas.c - -commit 6146cd17e4340ca3af43050e405c7ef64efd6e5d -Author: Benjamin Berg -Date: 2010-01-19 - - Use test instead of fg for eel-editable-label test - - Since we use base for the background we should use text for - the foreground. (#548295) - -M eel/eel-editable-label.c - -commit 46af408406ace29ad8e52e26cdfb43c50c5b96ca -Author: Jorge González -Date: 2010-01-16 - - Updated Spanish translation - -M po/es.po - -commit fb138478020738917f0fe408e5c4e2fafd3c2bb8 -Author: Nelson Benítez León -Date: 2010-01-06 - - Update glib required version - -M configure.in - -commit 7fcd79f3d404a734095b4e42cfa36b45aad95c4d -Author: dumol -Date: 2010-01-10 - - Updated Romanian translation - -M po/ro.po - -commit e050b4134983ea14115d276ee41ba3e877952e52 -Author: Lucian Adrian Grijincu -Date: 2010-01-10 - - Updated Romanian translation - -M po/ro.po - -commit 344f80b837341e114f5a4f7473ad7d7cfa3c6efc -Author: Daniel Nylander -Date: 2010-01-09 - - Updated Swedish translation - -M po/sv.po - -commit c444f6d555df95ea2767992c0af6a7cdce3f0d53 -Author: Maxim V. Dziumanenko -Date: 2010-01-06 - - Update Ukrainian translation - -M po/uk.po - -commit dd151d503dbe6c12dca868b69a8bcddf8fc798b4 -Author: Timo Jyrinki -Date: 2010-01-06 - - A few fixes by me from Launchpad. - -M po/fi.po - -commit 8769220d5c95057470d58c7591732afc126b58a1 -Author: Mattias Põldaru -Date: 2010-01-05 - - Updating Estonian translation - -M po/et.po - -commit a12dd191b5b0286a975e8dbfb435ddc09ec1f930 -Author: Matej Urbančič -Date: 2010-01-02 - - Updated Slovenian translation - -M po/sl.po - -commit 331e69edcb178fe157a2990ea9beab0cd128a6be -Author: Khaled Hosny -Date: 2009-12-25 - - Updated Arabic translation - -M po/ar.po - -commit 972d4f7a4c04f1fffe1a6ad7aa8c4fc9b5bead49 -Author: Jorge González -Date: 2009-12-19 - - Updated Spanish translation - -M po/es.po - -commit 89c29e1beb04b7f0cc751976bff052af26faf8cd -Author: Alexander Larsson -Date: 2009-12-17 - - Move the navigation bar size group to be a cross window header - size group - - This way we can make sure we align the headers of the sidebar too. - -M src/nemo-navigation-window-pane.c -M src/nemo-navigation-window-pane.h -M src/nemo-navigation-window.c -M src/nemo-side-pane.c -M src/nemo-window-private.h - -commit 595150f7a94664fb247cef5b0af714fd7f1c0e6b -Author: Alexander Larsson -Date: 2009-12-17 - - Add nemo_side_pane_get_title - -M src/nemo-side-pane.c -M src/nemo-side-pane.h - -commit f8447895dbb680a7abbb483a80d1db05e07ee730 -Author: Alexander Larsson -Date: 2009-12-17 - - Post release version bump - -M configure.in - -commit 0c33ea773fa27da99187c3bd7ddfcbb42ed6d90d -Author: Alexander Larsson -Date: 2009-12-17 - - Fix up include - -M src/nemo-location-bar.h - -commit 056ac6c3deaad63f70b61c68743cd03baa0db726 -Author: Alexander Larsson -Date: 2009-12-17 - - Dist nemo-extension-private.h - -M libnemo-extension/Makefile.am - -commit 2622cc470fa482f8b766bd9a37afc1f0597b8e08 -Author: Alexander Larsson -Date: 2009-12-17 - - Remove the rest of shave - -M Makefile.am -M configure.in -D m4/Makefile.am - -commit 21b1aa0144389f7f0a9645d0a734fe5881223844 -Author: Alexander Larsson -Date: 2009-12-17 - - Update NEWS for release - -M NEWS - -commit e2363ba468bca0662a7f139386432a677478f722 -Author: Alexander Larsson -Date: 2009-12-17 - - Change "enable browser" prefs to "enable spatial" - - Since browser is now the default we want to change the description - and default state of the prefs UI for this to follow this change. - -M src/nemo-file-management-properties.c -M src/nemo-file-management-properties.ui - -commit 70f2f7c8e36898553ba0c6593aee1e8ee52bd7a7 -Author: Alexander Larsson -Date: 2009-12-17 - - Add eel_preferences_builder_connect_inverted_bool - -M eel/eel-preferences-builder.c -M eel/eel-preferences.h - -commit 07c0bf9cb422d38fb4c38faed7af261c5411378c -Author: Alexander Larsson -Date: 2009-12-17 - - Enable browser mode by default - - As discussed on the list we're moving to browser mode with the switch - to gnome-shell. Gnome-shell is not quite ready yet, but we want to - move towards that as early as possible so we can iron out all the - details in the new behaviour. - -M libnemo-private/apps_nemo_preferences.schemas.in -M libnemo-private/nemo-global-preferences.c - -commit c69f3a2ba2d0bd23de5a218b8ce13d256481213a -Author: Alexander Larsson -Date: 2009-12-17 - - When showing a window for the first time, focus the active slots view - -M src/nemo-window.c - -commit cf1e32162affc91b5b3a2ca934c0dee45e3f1a2e -Author: Alexander Larsson -Date: 2009-12-17 - - Set right slot in active pane state for new views - -M src/nemo-window.c - -commit 4efd42312584b46f248e2839582a87776a7baebe -Author: Alexander Larsson -Date: 2009-12-17 - - Don't grab focus on realize - - This causes problems when opening up an extra view as it forces it - to become focused which is not what we want. - -M libnemo-private/nemo-icon-container.c - -commit d9abc4bf2ff65009ab1521c31f0877b0e312c8a6 -Author: Alexander Larsson -Date: 2009-12-17 - - Move "go to same location as other pane" in the menus - - We don'r want separators around this single item, put it with the - navigation stuff instead (not ideal, but ok). - -M src/nemo-navigation-window-menus.c -M src/nemo-navigation-window-ui.xml - -commit ea28580ac582c6df66215b39743e3914c422f236 -Author: Alexander Larsson -Date: 2009-12-17 - - Fix typo - -M src/nemo-navigation-window-ui.xml - -commit 3fb63af8aed0f350f4eabf65085d80a4442a34b5 -Author: Alexander Larsson -Date: 2009-12-17 - - Remove switch to other pane menu item and make F6 do this instead - - This is a very useless menu item, its sole reason for existance is - to bind a keyboard combo to it. Instead we should just choose one. - - Some research indicate that F6 is standard for this. In Gtk+ F6 is - used for split view navigation in general, so it will toggle - between the - sidebar and the two views. However, you can reach the sidebar in other - ways using keynav, and the more important thing is the pane toggling, - so we override this and make F6 be pane switching only. - -M src/nemo-navigation-window-menus.c -M src/nemo-navigation-window-ui.xml - -commit b4f413314de5857867ef152384741c49f2613737 -Author: Alexander Larsson -Date: 2009-12-17 - - Replace shave with AM_SILENT_RULES - -M configure.in -M eel/Makefile.am -M libnemo-private/Makefile.am -D m4/shave-libtool.in -D m4/shave.in -D m4/shave.m4 - -commit 8f3e5b8d65d5c67ce6b762c8c33efc42ee13f6c3 -Author: Alexander Larsson -Date: 2009-12-17 - - Don't focus the search entry when we're activating a pane with search - - This is not the right behaviour, and additionally it caused problems - to do this from the focus in signal handler for the icon view, since - the recursion of the focus changes caused HAS_FOCUS state to be - mixed up. - -M src/nemo-navigation-window-menus.c -M src/nemo-navigation-window.c - -commit a9384103fe8822a351aa5256c21e00058bfef310 -Author: Alexander Larsson -Date: 2009-12-17 - - Set active pane when its search bar gets focus - -M src/nemo-navigation-window-pane.c - -commit e5806d3a65f0b6dda23d4c4c12d53a5d09cc1f52 -Author: Alexander Larsson -Date: 2009-12-17 - - Add event for search bar getting focus - -M src/nemo-search-bar.c -M src/nemo-search-bar.h - -commit aecc6b6abf1e1c313d2d4473902a2b9eb0e11827 -Author: Alexander Larsson -Date: 2009-12-17 - - Minor whitespace cleanups - -M src/nemo-window.c - -commit adc968f34c1085ce4e5378fba92655082052f13d -Author: Alexander Larsson -Date: 2009-12-17 - - Move nemo_navigation_window_pane_set_active into a vfunc - - Now nemo_window_pane_set_active works for both navigational - and spatial panes. - -M src/nemo-navigation-window-pane.c -M src/nemo-navigation-window-pane.h -M src/nemo-window-pane.c -M src/nemo-window-pane.h -M src/nemo-window.c - -commit 36ba547921917daa970bd2d8510e3cd1bef894bf -Author: Alexander Larsson -Date: 2009-12-16 - - Move active background color handling to the view - - This stuff references view implementations and should not be in - the generic code. - -M libnemo-private/nemo-view.c -M libnemo-private/nemo-view.h -M src/file-manager/fm-directory-view.c -M src/file-manager/fm-directory-view.h -M src/file-manager/fm-list-view.c -M src/nemo-window-slot.c - -commit 096453c004a2538b816046b0388d6cfb60b618b2 -Author: Alexander Larsson -Date: 2009-12-16 - - Remove unnecessary check - -M src/nemo-window-manage-views.c - -commit d40b44e5f54a16bdf91ebf2d291732941717fdc6 -Author: Alexander Larsson -Date: 2009-12-16 - - Clean up sync_location_widgets by using vtable calls instead of - type checks - -M src/nemo-navigation-window-pane.c -M src/nemo-navigation-window-pane.h -M src/nemo-window-pane.c -M src/nemo-window-pane.h - -commit 7c66c6c020edf40383681a6e691c1451ff90b9f7 -Author: Alexander Larsson -Date: 2009-12-16 - - Only update toolbar items when active pane changes - -M src/nemo-window-manage-views.c - -commit cc3241aa713b99c72f30b01be9179f9b7a4635fc -Author: Alexander Larsson -Date: 2009-12-16 - - Fix indentation - -M src/nemo-window-slot.c - -commit 3a9fae22b64e4c4c3fa66520314285b4a8b836bb -Author: Alexander Larsson -Date: 2009-12-16 - - Move sync_search_widgets from window to pane - - Since the search widgets are per pane we need only update them - for the pane, never for all the window. - -M src/nemo-navigation-window-pane.c -M src/nemo-navigation-window.c -M src/nemo-navigation-window.h -M src/nemo-window-manage-views.c -M src/nemo-window-pane.c -M src/nemo-window-pane.h -M src/nemo-window-slot.c -M src/nemo-window.c -M src/nemo-window.h - -commit a6b53ce4d5b811c854ef8987d1bf6af7ab355b68 -Author: Alexander Larsson -Date: 2009-12-16 - - On view selection failure, reload the right window - -M src/nemo-window-manage-views.c - -commit 1d62423f6518be0a063e93cc160a0ffdae26ff6d -Author: Alexander Larsson -Date: 2009-12-16 - - Remove nemo_window_sync_location_widgets - - Not used anymore - -M src/nemo-window-manage-views.c -M src/nemo-window-private.h - -commit 8a0ca66f2c2d69cc50cdbcc319f80529b1b30d00 -Author: Alexander Larsson -Date: 2009-12-16 - - Only sync the location bar on the affected pane - -M src/nemo-window-manage-views.c -M src/nemo-window-slot.c - -commit bc87c744f84fe3c787fd504d811db4ba5c50de79 -Author: Alexander Larsson -Date: 2009-12-16 - - Fix window slot close crash - - On window close via nemo_window_close when the viewed file - closed there was a ref on the slot living past the window. This - caused crashes when disposing the slot as it referenced the window. - We fix this by running the dispose handler when closing a slot - and by making the dispose handler able to run multiple times. - -M src/nemo-window.c - -commit 9d8f34fa253c9c2812cfc7a738e4751fff18c1dd -Author: Alexander Larsson -Date: 2009-12-16 - - Remove fm_directory_view_move_copy_items_between_views - - not used anymore - -M src/file-manager/fm-directory-view.c - -commit ce2e90c30506cbce28addf3258938824a1a61494 -Author: Alexander Larsson -Date: 2009-12-16 - - Revert "Pass the window instead of the view to action callbacks." - - This reverts commit f3390c4f9a277ffd95bc5f3c6e475d9dad7d8935. - - It makes no sense to pass the window for all view specific callbacks. - If anything needs to access the window that is easily doable from - the view reference. - - Conflicts: - - src/file-manager/fm-directory-view.c - -M src/file-manager/fm-directory-view.c - -commit 0a6c249015c7ab1cfa62e64428652970d397f57b -Author: Alexander Larsson -Date: 2009-12-16 - - Rearrange copy/move to menus and add home + desktop items - -M src/file-manager/fm-actions.h -M src/file-manager/fm-directory-view.c -M src/file-manager/nemo-directory-view-ui.xml - -commit 3bd562283262314fc8dd9840a3c1b5d390ab1860 -Author: Alexander Larsson -Date: 2009-12-16 - - Don't disable next pane ops if tabs are disabled - -M src/file-manager/fm-directory-view.c - -commit ef9b76bc41992a0bd9bb870e64ee0749bfe74d8b -Author: Alexander Larsson -Date: 2009-12-16 - - Remove unnecessary includes - -M src/nemo-window.c - -commit dc26bef3e209d654c8f952ff4837beb34c0fa8ae -Author: Alexander Larsson -Date: 2009-12-16 - - Remove next_pane functions from NemoWindowInfo - - No need for these, and they put FMDirectoryView at the wrong place. - -M libnemo-private/nemo-window-info.c -M libnemo-private/nemo-window-info.h -M src/nemo-window.c - -commit 0ea5a1bfe0815f71fcacec151852bada86b477f2 -Author: Alexander Larsson -Date: 2009-12-16 - - Remove use of nemo_window_info_copy_move_selection_to_next_pane - - Doing this via the window is unnecessary. - Also, we simplify the copy operation by not using cut+paste. - -M src/file-manager/fm-directory-view.c - -commit e0a6c302d23fde1e4781671f70d501fdeffb7c8f -Author: Alexander Larsson -Date: 2009-12-16 - - Don't use nemo_window_info_next_pane_is_writable - - Instead we can use get_extra_slot and other existing functions, thus - avoiding referencing fm-directory-view from the main code. - -M src/file-manager/fm-directory-view.c - -commit 1545e04eaf41068c3add34792815b2df84b7fd5d -Author: Alexander Larsson -Date: 2009-12-16 - - Use window_get_extra_slot instead of get_directory_view_of_next_pane - - We want to remove get_directory_view_of_next_pane as the main code - should not reference FMDirectoryView. - -M src/file-manager/fm-directory-view.c - -commit 6a71f0f996e7c946a10e263951a906dd9795c4dc -Author: Alexander Larsson -Date: 2009-12-16 - - Add nemo_window_info_get_extra_slot - -M libnemo-private/nemo-window-info.c -M libnemo-private/nemo-window-info.h -M src/nemo-window-private.h -M src/nemo-window.c - -commit 7545b45b7c1c1f849b01814304b24af5238dba7e -Author: Alexander Larsson -Date: 2009-12-16 - - Remove unnecessary includes - -M src/nemo-navigation-window.c - -commit fa563623570eeb6a0ab8d90aae386ecbbd740721 -Author: Emilio Pozuelo Monfort -Date: 2009-12-15 - - Bug 604574 - Fix NAME section in nemo-connect-server.1 - -M docs/nemo-connect-server.1 - -commit 9c7c2c9d2cc0a8648abf2dbc851e9efec3e3df1c -Author: Alexander Larsson -Date: 2009-12-15 - - Make trash keybindings only work if the action is sensitive - - This fixes https://bugzilla.gnome.org/show_bug.cgi?id=603413 in - a way not causing regressions. - -M src/file-manager/fm-directory-view.c - -commit d87cf7e75c37d139631807bc22c07ba879f8218f -Author: Alexander Larsson -Date: 2009-12-15 - - Use right signal handler for delete signal action - - This is not actually called atm, since an action overrides it, but - we should do it right anyway. - -M src/file-manager/fm-directory-view.c - -commit d5d94cdf05a8f775494e5445e0c899a4548d2690 -Author: Alexander Larsson -Date: 2009-12-15 - - Revert "Disable Trash/Delete key bindings when appropriate" - - This reverts commit e7c171acb8060436969139210060874f3a43d835. - It causes regressions (see bug 603413) - - Conflicts: - - src/file-manager/fm-directory-view.c - -M src/file-manager/fm-actions.h -M src/file-manager/fm-directory-view.c -M src/file-manager/nemo-directory-view-ui.xml - -commit 75bcfea177c837215ea46c970bfea24ec04a3dae -Author: Alexander Larsson -Date: 2009-12-14 - - Don't access uninitialized variable - - gdk_property_get doesn't set prop_text if it fails. - -M libnemo-private/nemo-icon-dnd.c -M libnemo-private/nemo-tree-view-drag-dest.c - -commit fb39afae9bf1027cf405f7309685327abd67f1bf -Author: Alexander Larsson -Date: 2009-12-14 - - Better tab size - - This removes the minimum size of tabs, since that causes problems - when there are little availible horizontal size (such as in split - view), as it caused ellipsizion to only work for strings larger - than the minimum set size. - - However, doing *just* this causes the tabs by default to be only - 3 chars wide, which is obviously also bad. So we enable tab-expansio - to solve this. - - The new situation is not ideal either, but its the best we can do - before this gtk bug is fixed: - - https://bugzilla.gnome.org/show_bug.cgi?id=125250 - -M src/nemo-notebook.c - -commit 7fb432ba6b6816076e9eb5cd6f586df2e90ed33a -Author: Alexander Larsson -Date: 2009-12-14 - - Better split view size allocation - - Ensure that the views always get *some* size so that we can at least - always see the scrollbars, etc. - - Also make the toplevel size of a pane be a fixed size, thus - guaranteeing - the two panes in a split view return the same size request, thereby - guaranteeing a default (if unset by user) position of 50%. Without - this - we could get e.g. a size request from the tabs or the location - bar size - change causing a change in the view splitter position. - -M src/nemo-navigation-window-pane.c -M src/nemo-navigation-window.c - -commit 50fece012964a9bea091a21bb51d65bf877a1ff4 -Author: Alexander Larsson -Date: 2009-12-14 - - Don't allow the right part of the sidebar split be shrunk - - Views at 0x0 pixels make no sense. - -M libnemo-private/nemo-horizontal-splitter.c - -commit ee66bca8b74b1530e29414ef226e12157e92d9b7 -Author: Alexander Larsson -Date: 2009-12-14 - - Make slot label/icon update work right - - We move the update calls to a bit later when all the slot-internal - state (like slot->location, etc) has been updated. - -M src/nemo-window-manage-views.c - -commit 53ae0522ab2ee458eb8235beaf6c8e3afefe49b6 -Author: Alexander Larsson -Date: 2009-12-14 - - Minor cleanup - - Use temporary variable to avoid casts. - -M src/nemo-navigation-window.c - -commit 451aafee60cd171650993c5b7640116319eebc9e -Author: Alexander Larsson -Date: 2009-12-11 - - Require latest gnome-desktop for gnome-bg changes - -M configure.in - -commit 04c26296fb78b6de1a5bf933e543734ce18bd062 -Author: Alexander Larsson -Date: 2009-12-11 - - Move status bar to under view in navigational view - - This means the status bar moves closer to what it shows the status - of. Additionally it gives more space for the sidebar, which is not - needed for the normally small status messages we have. - -M src/nemo-navigation-window.c -M src/nemo-spatial-window.c -M src/nemo-window.c - -commit 7c1207aa1317e95762b9773f7a2ca72a96177942 -Author: Alexander Larsson -Date: 2009-12-11 - - If starting with split view, create extra slot durin construction - -M src/nemo-navigation-window.c - -commit 1a6db1b3ff79971f75ad309c22d60c14b2af2857 -Author: Alexander Larsson -Date: 2009-12-11 - - Don't show the window until all views in it are visible - - For the dual-pane at startup case we want to delay window - change until all views are loaded. Also when switching to - split view we want to delay showing until the view is loaded. - -M libnemo-private/nemo-window-info.c -M libnemo-private/nemo-window-info.h -M src/file-manager/fm-directory-view.c -M src/nemo-navigation-window-pane.c -M src/nemo-window-pane.c -M src/nemo-window-pane.h -M src/nemo-window-slot.h -M src/nemo-window.c -M src/nemo-window.h - -commit 84631cacd1909000ebd43b7267b7cacb8115d857 -Author: Alexander Larsson -Date: 2009-12-11 - - When loading a location in a slot also load in other non-loaded panes - - This makes sure that if a window is created with more than one pane - we'll load something in each of them. - -M src/nemo-window-manage-views.c - -commit fbbf8701595d4b6ad3cef93cc83e861d35b34859 -Author: Alexander Larsson -Date: 2009-12-11 - - Fix up indentation - -M src/nemo-window.c - -commit fb87db4e78a494623921a1ad844b86448965a924 -Author: Alexander Larsson -Date: 2009-12-11 - - Update location for all active slots - - When the location changes for a slot we should update it if its - the active slot in its pane (since each pane has a location bar), - not only if its in the active pane. - -M src/nemo-window-manage-views.c - -commit 605cdcc062c77c3badcb03eb0c8f97385b4739a4 -Author: Alexander Larsson -Date: 2009-12-11 - - Remove nemo_window_get_pane_from_slot - - This is useless, just look at slot->pane - -M src/nemo-window-private.h -M src/nemo-window.c - -commit 877da7dab374c4ae66ee57b7e5c10e672058b523 -Author: Alexander Larsson -Date: 2009-12-11 - - Only sync tab name in menu for the active pane - -M src/nemo-navigation-window.c - -commit 55f1438bf898c819504dae540a7540ec30508f1e -Author: Alexander Larsson -Date: 2009-12-11 - - Don't rewrite bookmarks file when file appearance changes - - We no longer write the icon to the bookmarks file so this is just - unnecessary. Also this means we don't rewrite the bookmark file - on each - startup. - -M src/nemo-bookmark-list.c - -commit 3fab1d20298552000369480a694186fd7354f586 -Author: Alexander Larsson -Date: 2009-12-11 - - Fix up background setting for non-desktop windows - -M eel/eel-background.c - -commit c68a696dcb8884ded4571c375e368f3f3375d068 -Author: Alexander Larsson -Date: 2009-12-10 - - Only fade the desktop background, not normal windows - - All this flashing is just in the way, especially when the - color changes as part of a pane going inactive. - -M eel/eel-background.c - -commit 6e5323188fc6af5d8920a01c3e34496df3320760 -Author: Alexander Larsson -Date: 2009-12-10 - - Remove border width on notebook - - This makes the view line up with the sidebar, etc. - -M src/nemo-navigation-window-pane.c - -commit 09efd40fbb2cd924bfee6650bea50e2ffb21a349 -Author: Alexander Larsson -Date: 2009-12-10 - - Remove border on statusbar - - https://bugzilla.gnome.org/show_bug.cgi?id=499361 - -M src/nemo-window.c - -commit 9bc68d825f3e928e736caf213b84371607a6bd41 -Author: Baptiste Mille-Mathias -Date: 2009-12-10 - - Put border around file views - - https://bugzilla.gnome.org/show_bug.cgi?id=499361 - -M src/file-manager/fm-directory-view.c - -commit c6ee7553fd029239eff50d32dbcb57223ffa185e -Author: Alexander Larsson -Date: 2009-12-10 - - Put tabs at the bottom - - There is way to much visual clutter at the top already, with the - location - bars and toolbars. - -M src/nemo-notebook.c - -commit 4b49aab5aa6a9ef9ab288ff2ce463affca1eacf2 -Author: Alexander Larsson -Date: 2009-12-10 - - Remove location button - - This takes a lot of space for something thats not commonly used. - Especially with two of it visible in split view mode. - - Maybe we should make a preference for it, but its not interesting - in the main UI. - -M src/nemo-navigation-window-pane.c -M src/nemo-navigation-window-pane.h - -commit df7048157403efefb560c5d1075f04088af3048b -Author: Holger Berndt -Date: 2009-12-05 - - Improve search button handling in split view mode - - This commit fixes issues that were introduced in - merge commit e92c336df90df012746d08d9af8121edc38b0f3c - Now the escape key during temporary search toggles the search key - off again, - as does changing active pane during temporary searches. - -M src/nemo-navigation-window-pane.c -M src/nemo-navigation-window.c -M src/nemo-navigation-window.h - -commit 8bafe8109f2151ee1febfc4a00255b92053c2ef8 -Author: Holger Berndt -Date: 2009-06-25 - - Fix View -> Location Bar in dual pane mode. - - Although each pane has a separate location bar, the show/hide location - bar setting is window-global instead of applying to individual panes: - Either both panes have a location bar, or neither one - does. Inconsistencies with remembered show/hide location bar gconf - setting were also fixed. - -M src/nemo-navigation-window-menus.c -M src/nemo-navigation-window.c - -commit ee3c49268205cd6fd99694706a4b2b7e3aca8086 -Author: Alexander Larsson -Date: 2009-12-10 - - Remember extra pane status access windows. - - The status of the extra pane display is remembered in a gconf key, - analog to show/hide statusbar and other window display properties. As - the extra-pane action implementation does a lot of widget and action - re-ordering, this can only be done when a windows is set up - completely, and is thus delayed in an idle-callback. If splitting the - view is to be done on startup, the showing of the window is delayed to - avoid ugly visible reordering. - -M libnemo-private/apps_nemo_preferences.schemas.in -M libnemo-private/nemo-global-preferences.c -M libnemo-private/nemo-global-preferences.h -M src/nemo-actions.h -M src/nemo-navigation-window-menus.c -M src/nemo-navigation-window.c -M src/nemo-navigation-window.h -M src/nemo-window-slot.c -M src/nemo-window.c - -commit 5d236a20aadd291196e6ead3a2220e9c0258b126 -Author: Holger Berndt -Date: 2009-06-13 - - Make it possible for Nemo Scripts to access the other pane. - - This is accomplished by placing additional variables into the - environment of the script, analoguous to the single-pane ones: - - NEMO_SCRIPT_NEXT_PANE_SELECTED_FILE_PATHS - - NEMO_SCRIPT_NEXT_PANE_SELECTED_URIS - - NEMO_SCRIPT_NEXT_PANE_CURRENT_URI - - If there is no second pane in the window, these are set to empty - strings. - -M libnemo-private/nemo-window-info.c -M libnemo-private/nemo-window-info.h -M src/file-manager/fm-directory-view.c -M src/nemo-window.c - -commit 09359fd13b52c5f5cebe55a9efae21c0290fe86f -Author: Holger Berndt -Date: 2009-06-13 - - Implement "Go to same location as other pane" menu item. - -M src/nemo-navigation-window-menus.c -M src/nemo-navigation-window-ui.xml - -commit a0bd4bc51d556a44ada296b3d3ec22e6c19f04f4 -Author: Holger Berndt -Date: 2009-06-13 - - Implement "Switch to other pane" menu item. - -M src/nemo-navigation-window-menus.c -M src/nemo-navigation-window-ui.xml -M src/nemo-window-pane.c -M src/nemo-window-pane.h -M src/nemo-window-private.h - -commit 0a5d182ac274a0b11a39daa41285fbf1d39b1e70 -Author: Holger Berndt -Date: 2009-07-20 - - Also draw background of inactive pane in insensitive color when in - list view - -M src/nemo-window-slot.c - -commit 2f843f0ed243a1c1f184c69e166c9da710fe1618 -Author: Holger Berndt -Date: 2009-06-13 - - Draw background of inactive panes in INSENSITIVE color. - - In order to make it easier to visually distinguish active and inactive - panes, the background of inactive panes is drawn in the theme's - INSENSITIVE color. Like the inactive location bar widgets, this is - only a visual marker, and does not mean that that pane is - insensitive. It's still clickable, and in fact a click makes the - corresponding pane active. - -M eel/eel-background.c -M eel/eel-background.h -M src/nemo-window-pane.c -M src/nemo-window-slot.c -M src/nemo-window-slot.h - -commit 4cc909a668692551db92a67bcb36b7cdeb473579 -Author: Holger Berndt -Date: 2009-06-11 - - Implement "{copy,move} to other pane" menus. - -M libnemo-private/nemo-window-info.c -M libnemo-private/nemo-window-info.h -M src/file-manager/fm-actions.h -M src/file-manager/fm-directory-view.c -M src/file-manager/fm-directory-view.h -M src/file-manager/nemo-directory-view-ui.xml -M src/nemo-shell-ui.xml -M src/nemo-window-private.h -M src/nemo-window.c - -commit 7191f6fa4f3013481463c1181b51b705d5c48d9a -Author: Holger Berndt -Date: 2009-06-11 - - Fix tab menus in split view mode. Only the menu of the active pane - is inserted. - -M src/nemo-navigation-window-menus.c -M src/nemo-navigation-window-pane.c -M src/nemo-navigation-window.c -M src/nemo-window.c - -commit c3da9152ce3efadbeaf92340ca832af6dbfc6266 -Author: Holger Berndt -Date: 2009-06-11 - - Make location bar more reactive, part 2: navigation bar - - Followup to the last commit: The location bar of the inactive pane now - has an insensitive apprearance, but is in fact clickable/focusable. A - click makes the corresponding pane active via the focus-in event of - the entry widget. - -M src/nemo-location-bar.c -M src/nemo-location-bar.h -M src/nemo-navigation-window-pane.c - -commit 689fd8e7ac943f1bed48dc0f6aad4b0e418e1005 -Author: Holger Berndt -Date: 2009-06-11 - - Make location bar more reactive: path bar, toggle button and zoom - control - - The buttons in the directory button bar are made inactive when the - corresponding pane is inactive. This means that the buttons have an - insensitive appearance, but are in fact clickable. Clicking on them - will make the corresponding pane active while changing into the - respective directory. - - This required the pathbar to export the button widget, done with the - new function nemo_path_bar_get_button_from_button_list_entry(). - -M src/nemo-navigation-window-pane.c -M src/nemo-pathbar.c -M src/nemo-pathbar.h -M src/nemo-zoom-control.c -M src/nemo-zoom-control.h - -commit 531ff030ef016b118f174252b1ac9aee0e385c63 -Author: Holger Berndt -Date: 2009-06-07 - - Don't use a function to get the active slot. - -M src/nemo-window-slot.c - -commit f3390c4f9a277ffd95bc5f3c6e475d9dad7d8935 -Author: Holger Berndt -Date: 2009-06-07 - - Pass the window instead of the view to action callbacks. - - With dual pane, actions may work on more than one view. Thus it makes - sense to pass the window instead of the view to the callbacks. If the - callbacks want the old behaviour, they first need to get the active - view of the window, and work with that. - -M src/file-manager/fm-directory-view.c - -commit 3cb24525f5e3681592900a3db49f2862debf084d -Author: Holger Berndt -Date: 2009-06-07 - - Also active/deactive panes based on focus-in-event for list views - -M src/file-manager/fm-list-view.c - -commit 02529b86015195128ebcbe3702888445727d5679 -Author: Holger Berndt -Date: 2009-06-06 - - Propagate activation in slot-info interface - -M libnemo-private/nemo-window-slot-info.c -M libnemo-private/nemo-window-slot-info.h -M src/file-manager/fm-icon-view.c -M src/nemo-window-slot.c - -commit 01e94440638904b0bc546b1ef1081a88e92d3e8e -Author: Holger Berndt -Date: 2009-05-27 - - Start implementation of "add extra pane" menu item callback - - Upon activating that menu item, create new pane and pack into the - split view hpane. - - On deactivation, delete non-active pane. - -M src/file-manager/fm-list-view.c -M src/file-manager/fm-list-view.h -M src/nemo-navigation-window-pane.c -M src/nemo-navigation-window.c - -commit 8babbe1095134861e4e57f482557587ee9b78576 -Author: Holger Berndt -Date: 2009-05-25 - - Add skeleton for split view. - - Add a new menu item "View -> Extra pane", and corresponding skeleton - callback functions and UI containers. - -M src/nemo-navigation-window-menus.c -M src/nemo-navigation-window-pane.h -M src/nemo-navigation-window-ui.xml -M src/nemo-navigation-window.c -M src/nemo-navigation-window.h -M src/nemo-window-private.h - -commit 6fc12915c7e3b8e92696630117afb5d5f5aaf60c -Author: Alexander Larsson -Date: 2009-12-10 - - Move location from toolbar to pane widget - -M src/nemo-navigation-window-menus.c -M src/nemo-navigation-window-pane.c -M src/nemo-navigation-window-pane.h -M src/nemo-navigation-window-slot.c -M src/nemo-navigation-window.c -M src/nemo-window-manage-views.c -M src/nemo-window-pane.c -M src/nemo-window-pane.h -M src/nemo-window.c - -commit e1fe45ddde92aece9aafdeb2febcfe76178e48b1 -Author: Holger Berndt -Date: 2009-05-24 - - Move notebook from window into pane - - This is another refactorisation commit. A notebook is also pane - specific, not window specific. In particular, the following function - logic has been moved: - - notebook_popup_menu_move_left_cb - notebook_popup_menu_move_right_cb - notebook_popup_menu_close_cb - notebook_popup_menu_show - notebook_tab_close_requested - notebook_button_press_cb - notebook_popup_menu_cb - notebook_switch_page_cb - nemo_navigation_window_pane_setup_notebook - - The following functions have been renamed: - - nemo_navigation_window_initialize_tabs_menu to - nemo_navigation_window_pane_initialize_tabs_menu - (also made public) - - nemo_window_get_slot_for_content_box to - nemo_window_pane_get_slot_for_content_box - -M src/nemo-navigation-window-menus.c -M src/nemo-navigation-window-pane.c -M src/nemo-navigation-window-pane.h -M src/nemo-navigation-window-slot.c -M src/nemo-navigation-window.c -M src/nemo-navigation-window.h -M src/nemo-notebook.c -M src/nemo-window-pane.c -M src/nemo-window-pane.h -M src/nemo-window-private.h -M src/nemo-window.c - -commit f14e7d47456867899016889756f32120dda847fb -Author: Alexander Larsson -Date: 2009-12-09 - - Move location bar entries to pane - - Location bar entries are pane-specific, not window - specific. Therefore, it is neccessary to move significant parts of the - logic around, mainly from NemoWindow to NemoWindowPane, and - NemoNavigationWindow to NautilisNavigationWindowPane. - - In particular, the following functions have been moved into the pane: - - bookmark_list_get_uri_index - restore_focus_widget - search_bar_activate_callback - search_bar_cancel_callback - navigation_bar_cancel_callback - navigation_bar_location_changed_callback - location_button_should_be_active - location_button_toggled_cb - path_bar_location_changed_callback - path_bar_button_pressed_callback - path_bar_button_released_callback - path_bar_button_drag_begin_callback - path_bar_path_set_callback - nemo_navigation_window_show_location_bar_temporarily - nemo_navigation_window_show_navigation_bar_temporarily - nemo_navigation_window_path_bar_showing - nemo_navigation_window_set_bar_mode - nemo_navigation_window_search_bar_showing - nemo_navigation_window_hide_location_bar - nemo_navigation_window_show_location_bar - nemo_navigation_window_location_bar_showing - nemo_window_zoom_{in,out,to_level,to_default} - - The location bar setup parts of nemo_navigation_window_init() have - been moved to nemo_navigation_window_pane_setup_location_bar. - - The following fuctions have been made public: - - hide_temporary_bars - load_view_as_menu - unset_focus_widget - update_up_button - - Much logic of the following functions has been moved to the pane, but - the functions themselves have been left in the window as triggers: - - nemo_navigation_window_hide_temporary_bars - nemo_window_sync_location_widgets - -M src/nemo-application.c -M src/nemo-location-bar.c -M src/nemo-location-bar.h -M src/nemo-navigation-window-menus.c -M src/nemo-navigation-window-pane.c -M src/nemo-navigation-window-pane.h -M src/nemo-navigation-window-slot.c -M src/nemo-navigation-window.c -M src/nemo-navigation-window.h -M src/nemo-window-manage-views.c -M src/nemo-window-manage-views.h -M src/nemo-window-pane.c -M src/nemo-window-pane.h -M src/nemo-window-private.h -M src/nemo-window.c - -commit 014b488d184fafe59f29810d372eccebd3c66876 -Author: Holger Berndt -Date: 2009-05-18 - - Use the new NemoNavigationWindowPane class in - NemoNavigationWindow's - -M src/nemo-navigation-window.c - -commit 651053fec975b95536b7e967c7e8b81732b1f740 -Author: Holger Berndt -Date: 2009-05-18 - - Add new class NemoNavigationWindowPane, derived from - NemoWindowPane - - NemoWindowPane is the base class for window panes, while - NemoNavigationWindowPane will add some functionality spefic - to panes - in a Nemo navigation window. - -M po/POTFILES.in -M src/Makefile.am -A src/nemo-navigation-window-pane.c -A src/nemo-navigation-window-pane.h - -commit e1db3d61f6510a8f6cc063ba84b5fa26bebf6189 -Author: Alexander Larsson -Date: 2009-12-07 - - Associate basic slot functions to panes instead of windows. - -M src/nemo-application.c -M src/nemo-navigation-window-menus.c -M src/nemo-navigation-window.c -M src/nemo-spatial-window.c -M src/nemo-window-manage-views.c -M src/nemo-window-manage-views.h -M src/nemo-window-pane.h -M src/nemo-window-private.h -M src/nemo-window.c -M src/nemo-window.h - -commit e7f2144e38c02f6aeba7b563e8bc1fb195616477 -Author: Alexander Larsson -Date: 2009-12-07 - - Move slots from NemoWindow to NemoWindowPane - - A window does not hold lists of slots anymore, but lists of panes, - which - in turn hold lists of slots, making a slot effectively a layer between - a window and a slot. Much of the remaining part of the patch is - simply replacing "window->details->active_slot" with - "window->details->active_pane->active_slot" and similar - changes. Commits - to move corresponding parts of the logic out of the window into - the pane - are to follow. - -M src/nemo-application.c -M src/nemo-location-bar.c -M src/nemo-location-dialog.c -M src/nemo-navigation-action.c -M src/nemo-navigation-window-menus.c -M src/nemo-navigation-window-slot.c -M src/nemo-navigation-window.c -M src/nemo-spatial-window.c -M src/nemo-window-bookmarks.c -M src/nemo-window-manage-views.c -M src/nemo-window-pane.c -M src/nemo-window-pane.h -M src/nemo-window-private.h -M src/nemo-window-slot.c -M src/nemo-window-toolbars.c -M src/nemo-window.c - -commit d3ee81d3021204786c3c51bf9f651fffbd10ff0b -Author: Holger Berndt -Date: 2009-01-31 - - Associate a slot to a pane instead of a window - - NemoWindowSlot->window is removed and NemoWindowSlot->pane - is added. All references to window is then replaces with - ->pane->window. - -M src/nemo-application.c -M src/nemo-navigation-window-menus.c -M src/nemo-navigation-window-slot.c -M src/nemo-navigation-window.c -M src/nemo-spatial-window.c -M src/nemo-window-manage-views.c -M src/nemo-window-slot.c -M src/nemo-window-slot.h -M src/nemo-window.c - -commit adc0b289f6f92751bd40a6005375eae2a79439c3 -Author: Alexander Larsson -Date: 2009-12-07 - - Add a NemoWindowPane to all windows - -M src/nemo-navigation-window.c -M src/nemo-spatial-window.c -M src/nemo-window-private.h -M src/nemo-window.c - -commit daa113b66fbf4193cdb049c11bd3df9f98f4ba0a -Author: Holger Berndt -Date: 2009-01-30 - - Introduce concept of a NemoWindowPane - - A pane is another layer around a slot. For spatial windows, a pane - will contain a single slot. For navigation windows, a pane will - contain a - list of slots, as well as a corresponding toolbar items. - -M src/Makefile.am -A src/nemo-window-pane.c -A src/nemo-window-pane.h -M src/nemo-window-private.h -M src/nemo-window.c - -commit 8e69e90733dcb1bd65d2fdcc2a026cb458c25ed2 -Author: Alexander Larsson -Date: 2009-12-09 - - Remove all traces of old view-as and zoom widgets - -M src/nemo-navigation-window.c -M src/nemo-navigation-window.h -M src/nemo-window.c -M src/nemo-window.h - -commit 14def79a4e1cd7d78d0dd155fa5b643f440859e7 -Author: Alexander Larsson -Date: 2009-12-09 - - Add a view as toolbar item using the view-as action - -M src/nemo-navigation-window-menus.c -M src/nemo-navigation-window-ui.xml - -commit c7aeb63442007fbdac9feff66cc4541972162738 -Author: Alexander Larsson -Date: 2009-12-09 - - Add NemoViewAsAction - - This is an action that makes it easy to create a view as toolbar item. - -M src/Makefile.am -A src/nemo-view-as-action.c -A src/nemo-view-as-action.h - -commit bff56af563ee232815c6bd0502869fac7eb97476 -Author: Alexander Larsson -Date: 2009-12-09 - - Add NemoWindow::view-as-changed - -M src/nemo-window.c - -commit 946f377fc531b47ba71f85b8d57a4f2f20c9c432 -Author: Alexander Larsson -Date: 2009-12-09 - - Use NemoZoomAction to put zoom item in toolbar - -M src/nemo-navigation-window-menus.c -M src/nemo-navigation-window-ui.xml - -commit da25dfdc1e94aae68bb9ff35497e7c2481449389 -Author: Alexander Larsson -Date: 2009-12-09 - - Add NemoZoomAction - - This is an action that can be used to easily put zoom items in - toolbars. - -M src/Makefile.am -A src/nemo-zoom-action.c -A src/nemo-zoom-action.h - -commit 70298f3dfc04c6c7cc995c94af7b67d97d60a66a -Author: Alexander Larsson -Date: 2009-12-09 - - Add NemoWindow::zoom-changed signal - -M src/nemo-window.c - -commit 27b7859f2aa6d61b0b4cf5ae48333dc089ddf56f -Author: Alexander Larsson -Date: 2009-12-09 - - Add VOID:INT,BOOLEAN,BOOLEAN,BOOLEAN,BOOLEAN marshaller - - Needed for zoom-changed signal - -M libnemo-private/nemo-marshal.list - -commit 3add7e368af3ea9f37e2f5f386543cf228b0b74f -Author: Baptiste Mille-Mathias -Date: 2009-12-10 - - Add border on sidebar (remove on header) - - https://bugzilla.gnome.org/show_bug.cgi?id=499361 - -M src/file-manager/fm-tree-view.c -M src/nemo-emblem-sidebar.c -M src/nemo-history-sidebar.c -M src/nemo-places-sidebar.c -M src/nemo-side-pane.c - -commit 49193a40792ba8df413a3b361940f977dc009aef -Author: Alexander Larsson -Date: 2009-12-10 - - Add shadow_type arg to eel_scrolled_wrap_table_new - -M eel/eel-wrap-table.c -M eel/eel-wrap-table.h -M src/file-manager/fm-properties-window.c -M src/nemo-emblem-sidebar.c - -commit 60dd20355079003afe3ba342e6233834afeffd39 -Author: William Jon McCann -Date: 2009-12-03 - - Fixes to enable per-monitor backgrounds - - https://bugzilla.gnome.org/show_bug.cgi?id=147808 - -M eel/eel-background.c - -commit 90b8c56e64caa7fd2435cdb619c8ed83971b9519 -Author: Aron Xu -Date: 2009-12-09 - - Update Simplified Chinese translation, - -M po/zh_CN.po - -commit 2d61fcdf4987802441b7d9dab5364a28fb2dbd7c -Author: Alexander Larsson -Date: 2009-12-08 - - Don't leak NemoDirectory - -M libnemo-private/nemo-file.c - -commit ac9f08eb1f74b32c432b0a4904fb57e982202a4c -Author: Alexander Larsson -Date: 2009-12-08 - - Don't leak NemoDirectory - -M src/nemo-navigation-window.c - -commit 8c3e5abb396bb67274d9e3d769295ece33b52091 -Author: Alexander Larsson -Date: 2009-12-08 - - Use nemo_directory_unref to unref directories - - Its nice to have nemo_directory_ref/unref paired for help when - debugging. - -M src/file-manager/fm-tree-model.c - -commit 18763611ef08a6915b4bfd03a3c0bc287ba142ca -Author: Alexander Larsson -Date: 2009-12-07 - - Forgot to add nemo-extension-private.h in last commit - -A libnemo-extension/nemo-extension-private.h - -commit 09877bd2c4da7282f3d341297af75eda197f3e33 -Author: Kjartan Maraas -Date: 2009-12-05 - - Updated Norwegian bokmål translation. - -M po/nb.po - -commit 881f208b876c6e4386d54a0db3fca26aaa34ff71 -Author: Alexander Larsson -Date: 2009-12-04 - - Add lookup and creator functions for NemoFileInfo objects - - This has been requested by many extension developers. - -M libnemo-extension/nemo-file-info.c -M libnemo-extension/nemo-file-info.h -M libnemo-private/nemo-file.c - -commit 002bea81792cdfe6f4e45da95a59708040566171 -Author: Alexander Larsson -Date: 2009-12-04 - - Don't change background on the initial style_set call - - This results in queueing an unnecessary background change - which causes the EelBackground to be unrealized wrongly. - - This fixes https://bugzilla.gnome.org/show_bug.cgi?id=578136 - -M eel/eel-background.c - -commit fd2e7311edd0d673adc21efdd7d4c6585723c730 -Author: Alexander Larsson -Date: 2009-12-04 - - Revert commit 7b86b78e2ff6a0f1b45ac8f8a9c30cf3d0c6ae96 - - This is not the right solution - -M eel/eel-background.c - -commit d876890dfdbcd7c6255f14f9b910255598fcf84b -Author: Khaled Hosny -Date: 2009-12-04 - - Fix typo - -M po/ar.po - -commit 7ad4b090a3d90f9333d2efdd52f2019a1cab1292 -Author: Ivar Smolin -Date: 2009-12-01 - - Updating Estonian translation - -M po/et.po - -commit e7c171acb8060436969139210060874f3a43d835 -Author: Michael Terry -Date: 2009-12-01 - - Disable Trash/Delete key bindings when appropriate - - This makes trash/delete key binding be enabled/disabled just like - the menu items are. - -M src/file-manager/fm-actions.h -M src/file-manager/fm-directory-view.c -M src/file-manager/nemo-directory-view-ui.xml - -commit 523a87744cdf86123da2de4e42a650aa0e891259 -Author: Daniel Nylander -Date: 2009-11-30 - - Updated Swedish translation - -M po/sv.po - -commit 2fb27dad4661dfce14a1ac5c7bc23e68fec7ee5c -Author: Yaron Shahrabani -Date: 2009-11-30 - - Update Hebrew translation - -M po/he.po - -commit 529ebf07a31e3a460f0ebde97833235136e50cf4 -Author: Ivar Smolin -Date: 2009-11-29 - - Updating Estonian translation - -M po/et.po - -commit 519ec1ef646f5edeff75801e592ab8f9e7423f82 -Author: Alexander Larsson -Date: 2009-11-27 - - Don't free uninitilized errors - - test_dir_is_parent doesn't set error, so no need to free it. - -M libnemo-private/nemo-file-operations.c - -commit 58e8653a8b0eb885f73c65eebc5926539eef9687 -Author: Gabor Kelemen -Date: 2009-11-27 - - Updated Hungarian translation - -M po/hu.po - -commit c125ec694bb7f7159cb72a3eb15f5845fc2c10ef -Author: Alexander Larsson -Date: 2009-11-27 - - Go to default location (not root) when clicking on mount in sidebar - -M src/nemo-places-sidebar.c - -commit ce39f704ff3494893a1198697cc2ae7b12f0d7ee -Author: Alexander Larsson -Date: 2009-11-27 - - Use mount default location for desktop links - -M libnemo-private/nemo-desktop-link.c - -commit 817803aaeefd9ebf6ee1df4053f8f986943d91f5 -Author: Alexander Larsson -Date: 2009-11-27 - - Handle GMount default_location in pathbar as fake root - -M src/nemo-pathbar.c - -commit d9d860a8e2fa5d41ff941ce5dc8e80672c05d5b8 -Author: Alexander Larsson -Date: 2009-11-27 - - Clean up fake-root handling - -M src/nemo-pathbar.c - -commit 5b1159927b98b569fcb22f05986a140a7c42ba0a -Author: Alexander Larsson -Date: 2009-11-26 - - Ensure show-hidden-files UI is uptodate - - When we read the per-location show-hidden-files setting, also - update the UI. - - Fixes bug #568089. - -M src/nemo-window-manage-views.c - -commit 09f24d05eae830fd0ec696267f85e02debdc95a7 -Author: Jorge González -Date: 2009-11-27 - - Updated Spanish translation - -M po/es.po - -commit 5e86595f45d8470732dee1bd820512f5229bf160 -Author: Matej Urbančič -Date: 2009-11-26 - - Updated Slovenian translation - -M po/sl.po - -commit 04c84927339a18aac3c8ee2fa3b2f6edc88e969f -Author: Nils-Christoph Fiedler -Date: 2009-11-25 - - Updated LowGerman translation - -M po/nds.po - -commit 6f0c44a70f62395e6281604601075994fa921afc -Author: Alexander Larsson -Date: 2009-11-25 - - Add entry icon to search bar - - This way you can activate a search using the mouse. - (Bug #598256) - -M src/nemo-search-bar.c - -commit eee73c5eb6d83955a7b7a1af9a86f8294eea218a -Author: Nikos Verschore -Date: 2009-11-25 - - Make search button a toggle button - - Make the search button on the toolbar toggle between search - and normal mode. - See: https://bugzilla.gnome.org/show_bug.cgi?id=332078 - -M src/nemo-navigation-window-menus.c -M src/nemo-navigation-window-ui.xml -M src/nemo-navigation-window.c -M src/nemo-navigation-window.h -M src/nemo-query-editor.c - -commit 6ff1e3881e070a0a235208cc10dfdc53e8faa0aa -Author: Alexander Larsson -Date: 2009-11-25 - - Avoid deprecated gtk_button_pressed/released - - We replace these with direct use of deprecated signals, - which is not ideal either. However, it makes us not reference - depcrecated symbols and makes it works. I don't know how else - to solve this. - -M src/nemo-navigation-action.c -M src/nemo-window-menus.c - -commit 6161343d9d3eaa4fa044613085c00415852f8b55 -Author: Pierre Wieser -Date: 2009-11-25 - - Allow absolute pathnames for plugin menu/toolbar item icons. - -M libnemo-private/nemo-ui-utilities.c -M src/file-manager/fm-directory-view.c - -commit 36d83807cc0744e131e3532714849a7d1bbbf65d -Author: Pierre Wieser -Date: 2009-11-25 - - Add nemo_icon_info_lookup_from_path() - -M libnemo-private/nemo-icon-info.c -M libnemo-private/nemo-icon-info.h - -commit 4ea889ee82a66fb929920589322eb0565984f31d -Author: Tao Wei -Date: 2009-11-24 - - Updated Simplified Chinese translation. - -M po/zh_CN.po - -commit 2c50a8dea92273286404ba1e87f892354fb9b777 -Author: Jorge González -Date: 2009-11-19 - - Updated Spanish translation - -M po/es.po - -commit 7a890c3f5adb8eb35e208958b293e03c691c7830 -Author: Alexander Larsson -Date: 2009-11-19 - - Ensure range checking works below zero - - We add an int to an unsigned and then check for underflow, but - this check will never trigger for unsigned variables like an enum. - We fix this by using a signed value for the addition result. - -M src/file-manager/fm-list-view.c - -commit 1f8f54f4777343dda87043e444a24c3f86e90439 -Author: Alexander Larsson -Date: 2009-11-19 - - Ensure ABS calls work on difference of unsigned values - - guint64 - guint64 is of type guint64, so ABS doesn't work on it. - Cast to gint64 to make sure this works. - -M libnemo-private/nemo-file-operations.c - -commit 3c0cc87da5eccab0c022d5bfee6191af4a3f4ea9 -Author: Matej Urbančič -Date: 2009-11-18 - - Updated Slovenian translation - -M po/sl.po - -commit a76fe6975c0e3a31aa8d8ab4ddf3b7afbafbe274 -Author: James Dietrich -Date: 2009-10-27 - - Complete XDS support - - https://bugzilla.gnome.org/show_bug.cgi?id=585790 - -M libnemo-private/nemo-dnd.h -M libnemo-private/nemo-file-dnd.c -M libnemo-private/nemo-file-operations.c -M libnemo-private/nemo-file-operations.h -M libnemo-private/nemo-icon-container.c -M libnemo-private/nemo-icon-container.h -M libnemo-private/nemo-icon-dnd.c -M libnemo-private/nemo-marshal.list -M libnemo-private/nemo-tree-view-drag-dest.c -M libnemo-private/nemo-tree-view-drag-dest.h -M src/file-manager/fm-directory-view.c -M src/file-manager/fm-directory-view.h -M src/file-manager/fm-icon-view.c -M src/file-manager/fm-list-view.c - -commit f146e054849fef9300e9fc8786c11e2d9b7c91d7 -Author: Marcus Carlson -Date: 2009-10-12 - - Changed the "event-after" signal to "changed" to update the "Location" - / "Go to" label Change the secondary icon in the location to a "Go" - (play) icon when the label is "Go to" otherwise a clear icon - - https://bugzilla.gnome.org/show_bug.cgi?id=163245 - -M src/nemo-location-bar.c -M src/nemo-location-entry.c -M src/nemo-location-entry.h - -commit 3ee90909fa92feaf3df0964eed2b95c5d968ba98 -Author: Tomas Bzatek -Date: 2009-11-10 - - Unfreeze updates in directory list view after rename cancellation - - We successfully cancelled rename operation but the directory view - was left in frozen state, containing pseudo items with NULL elements. - - Fixes bug 590591. - -M src/file-manager/fm-list-view.c - -commit e487552287e5970dbbb39199b55026f2788bb42b -Author: Alexander Larsson -Date: 2009-11-17 - - Correctly update the request counters - - The request counters weren't updated by - nemo_directory_add_file_monitors - and nemo_directory_remove_file_monitors. This can cause a number - of weird - problems, including those described in bug #598931. - - This checkin fixes this, and fixes bug #598931. - -M libnemo-private/nemo-directory-async.c - -commit f60a28846a32543849a4916d032efdf71e167548 -Author: Alexander Larsson -Date: 2009-11-17 - - Add debug code for tracking down errors in request counters - - nemo_directory_verify_request_counts can be uncommented and called - in various places to catch when the request counters are not properly - updated. - -M libnemo-private/nemo-directory-async.c - -commit 0f638d6505b3adbd2d73fa1bd5894d62d40a2844 -Author: Kjartan Maraas -Date: 2009-11-15 - - Updated Norwegian bokmål translation. - -M po/nb.po - -commit f829c8fe28f221a153f9bedb5f7c86073f082550 -Author: Aron Xu -Date: 2009-11-14 - - Updated Simplified Chinese translation. - -M po/zh_CN.po - -commit 50836f6b37714516a7fb561475b3fe36666b1749 -Author: Alexander Shopov -Date: 2009-11-13 - - Updated Bulgarian translation - -M po/bg.po - -commit e5247083a16425171858e2a61ec54efee8191eac -Author: Thomas Thurman -Date: 2009-11-11 - - Further Shavian translation - -M po/en@shaw.po - -commit 97d98d9c7aeef53378bd07dfac78bf9ea770383e -Author: Mario Blättermann -Date: 2009-11-10 - - Added nds to LINGUAS - -M po/LINGUAS - -commit a0216f02be4793f8d0a19a3cdff5ae1619748472 -Author: Nils-Christoph Fiedler -Date: 2009-11-10 - - Added Low German translation - -A po/nds.po - -commit 13f4560aeeedd3f1626556d688e008aaf9b97f20 -Author: Thomas Thurman -Date: 2009-11-10 - - Shavian translation - -M po/LINGUAS -A po/en@shaw.po - -commit 2bad8fcd7c67439826b7174bad4d2bfa5dee36c9 -Author: Kjartan Maraas -Date: 2009-11-09 - - Single gtk/gdk includes. - -M eel/eel-canvas.h - -commit c0d618993a79f655f474532ed8d1d0118d479a68 -Author: Jovan Naumovski -Date: 2009-11-06 - - Minor fix in Macedonian translation. - -M po/mk.po - -commit 0458c87d2f5561d03eb1bae593a867135c3c14a5 -Author: Matej Urbančič -Date: 2009-11-06 - - Updated Slovenian translation - -M po/sl.po - -commit 6613262f4e6d40d153299d7fd4726210268a2a53 -Author: Cosimo Cecchi -Date: 2009-11-02 - - Don't get drag data in list mode if we don't support the target. - - This fixes bug #600183. - -M libnemo-private/nemo-tree-view-drag-dest.c - -commit 71e7b576751c1192fe0c05529619f4c0aba674c0 -Author: Cosimo Cecchi -Date: 2009-11-02 - - Emit the selection-changed signal when inverting. - - Do emit the selection-changed signal in NemoIconContainer when we - invert the selection, so that the views can update the UI items - accordingly (#600308). - -M libnemo-private/nemo-icon-container.c - -commit 51150a7fb834a7e6e64511e7f7cf7070328222c8 -Author: Kostas Papadimas -Date: 2009-11-01 - - Updated Greek translation - -M po/el.po - -commit a16d73fa256e7bcf15f36136dea2bec7b37aefaf -Author: Gintautas Miliauskas -Date: 2009-10-30 - - Updated Lithuanian translation. - -M po/lt.po - -commit d727babc5ebbc7d282d80fbace69a7401eb3795e -Author: Gintautas Miliauskas -Date: 2009-10-25 - - Updated Lithuanian translation. - -M po/lt.po - -commit bf8571a78f1f8c73ea449e56fa413abb3f40b91c -Author: Cosimo Cecchi -Date: 2009-10-25 - - Move functions outside of #ifdefs (#599290) - - This unbreaks the build if you compile without EXIF/EXEMPI. - -M src/nemo-image-properties-page.c - -commit ec8b2f666d175860b36a29870160a41446e0c160 -Author: drtvasudevan -Date: 2009-10-23 - - Updated Tamil translation - -M po/ta.po - -commit 04025fea82e720c6704da76c5e4d786775a7fb00 -Author: Tomas Bzatek -Date: 2009-10-20 - - Handle failed connection to tracker daemon 0.7 series - - Also, consolidate string memory management, to be consistent and clear - on a first sight. - - Related to changes in bug 596082. - -M libnemo-private/nemo-search-engine-tracker.c - -commit 9be1fc059a2f7ce429592be5a6e2a56e7a36a8d7 -Author: Jorge González -Date: 2009-10-20 - - Updated Spanish translation - -M po/es.po - -commit fe2d7c35cc4f35c2dfd3e9345e354bd388fceca8 -Author: Reşat SABIQ -Date: 2009-10-20 - - Another minor update for Crimean Tatar (Crimean Turkish) translation - -M po/crh.po - -commit ed199bbd9762a248d9b5036b7130d8965d13dfb9 -Author: Reşat SABIQ -Date: 2009-10-19 - - Update for Crimean Tatar (Crimean Turkish) translation - -M po/crh.po - -commit 7f3453af4c59331e77dc09f07fdd9b24d533620a -Author: Cosimo Cecchi -Date: 2009-10-18 - - Use separate labels for attributes (#598545). - - This is useful so that we can easily select the text for each - attribute. - -M src/nemo-image-properties-page.c - -commit 67d827e10e34186b4d3c1410817a5f7aac507b14 -Author: Kjartan Maraas -Date: 2009-10-17 - - Updated Norwegian nynorsk translation and fixed a typo. Closes bug - #598607 reported by Torstein A. W. - -M po/nn.po - -commit f2ab25b7705e4f320e0fdb33a8ad8f302cb1cf0d -Author: Sveinn í Felli -Date: 2009-10-16 - - Updated Icelandic translation - -M po/is.po - -commit 006abaefbb5d30718678a212cd595a8a7d436d58 -Author: Anna Jonna Ármannsdóttir -Date: 2009-10-02 - - Updated Icelandic translation - -M po/is.po - -commit d1f92784496217f82c4f38b64f51b6820efc6fba -Author: Nguyễn Thái Ngọc Duy -Date: 2009-10-13 - - po/vi.po: update translation of "Places" - -M po/vi.po - -commit 16226ab944780b9b5a65fe2a38e02f4bcf470254 -Author: Jorge González -Date: 2009-10-11 - - Updated Spanish translation - -M po/es.po - -commit 3b96ca69946453a4744a58f997289b86f7d41d5d -Author: drtvasudevan -Date: 2009-10-10 - - Updated Tamil translation - -M po/ta.po - -commit 23278532505862816bd5c8c0ab7d17f7a07b4790 -Author: Cosimo Cecchi -Date: 2009-10-09 - - Always check if the drag dest supports the source. - - In the "drag-motion" callback, make sure we check for target != - GDK_NONE - before getting non-existent data for it. - -M libnemo-private/nemo-dnd.c -M src/nemo-places-sidebar.c - -commit 8ef1a18f81a588525fe2cf069ecc9f58a8b6b6ba -Author: Ivar Smolin -Date: 2009-10-10 - - Updating Estonian translation - -M po/et.po - -commit a2e04a10329f5391b968f82b6110112de0dc2fad -Author: Stephen Cook -Date: 2009-10-07 - - Remove very old unnecessary FIXMEs. - - Closes bug #41245. - -M libnemo-private/nemo-global-preferences.c -M src/nemo-navigation-window.c -M src/nemo-window.c - -commit af9f607c258270cd08e3b994017bc1ca134099fc -Author: A. Walton -Date: 2009-10-07 - - Bug 589375 - Crashes with empty location in edit bookmarks - - Check that the length of the text in the entry is non-NULL. - -M src/nemo-bookmarks-window.c - -commit 488a462382bd43a0ad04e274441537d508669c8a -Author: Matthias Clasen -Date: 2009-10-07 - - Remove an ugly hack to detect KDE desktop (#564208). - -M src/nemo-application.c - -commit f28404dd6af7e95c8038e9f73a31f19398b148c2 -Author: Xu Li -Date: 2009-07-17 - - correct the value of GtkRecentData.app_exec in - nemo_recent_add_file() - -M libnemo-private/nemo-recent.c - -commit 1dd60a63b0048e093da2e2f710bca6a922e4029e -Author: Frédéric Péters -Date: 2009-08-22 - - Remove deprecated Encoding key from desktop files - -M data/nemo-autorun-software.desktop.in.in -M data/nemo-browser.desktop.in.in -M data/nemo-computer.desktop.in.in -M data/nemo-file-management-properties.desktop.in.in -M data/nemo-folder-handler.desktop.in.in -M data/nemo-home.desktop.in.in -M data/nemo.desktop.in.in -M src/network-scheme.desktop.in - -commit cbec5342514b7f52bf654fff418f10bea3aac7ca -Author: Nelson Benítez León -Date: 2009-05-01 - - Avoid crash when holding space bar on focused navigation buttons - - Fixes bgo#580926 - -M src/nemo-navigation-window-menus.c -M src/nemo-window-menus.c - -commit 370ebf572e4e8d401f65fa7b575899e82fc9dfa7 -Author: Cosimo Cecchi -Date: 2009-10-07 - - Use the right GConf key for the disable_tabs setting (#580220). - -M libnemo-private/nemo-global-preferences.h - -commit 3ef9873b86ec14ccd33680acb232fa0df0eb11ce -Author: Cosimo Cecchi -Date: 2009-10-07 - - Chain up to the parent handler if we click outside any row. - - By doing so, the tree view widget will gain focus anyway. - Fix bug #589088. - -M src/file-manager/fm-list-view.c - -commit f29571245545750e26ae84b3b383ab7619ea10bc -Author: Marcus Carlson -Date: 2009-10-06 - - Show tooltips in places sidebar - - https://bugzilla.gnome.org/show_bug.cgi?id=595616 - -M src/nemo-places-sidebar.c - -commit 3966879080237672d41e2aab0499a5852ef00ea9 -Author: Marcus Carlson -Date: 2009-10-03 - - Make changing visible columns instant. Wasn't like always like this - before because nemo-vfs-file.c saved metadata async. - - https://bugzilla.gnome.org/show_bug.cgi?id=597227 - -M src/file-manager/fm-list-view.c - -commit 143fd025cc20423cc9eb8b3a255b4a102a58efce -Author: Marcus Carlson -Date: 2009-10-03 - - Adds a "Copy Anyway" option when copying files and disk space is - not enough - - https://bugzilla.gnome.org/show_bug.cgi?id=324361 - -M libnemo-private/nemo-file-operations.c - -commit c7bfedfbf8883ddeacfdd0818d7c1af9530c4f52 -Author: Marcus Carlson -Date: 2009-10-06 - - Select all on F2 in rename mode - - This is a another quick way to switch from not selecting extension - to selecting everything (in addition to the existing shift-F2 combo). - -M libnemo-private/nemo-icon-container.c -M src/file-manager/fm-list-view.c - -commit 56f33af7601fb8a1ce28a953ae7516eb7e46c7a5 -Author: Jochen Skulj -Date: 2009-10-05 - - Updated German translation - -M po/de.po - -commit 7bff0191b0c94c6570c5ffd3d34e8b1cf30da408 -Author: Denis ARNAUD -Date: 2009-10-05 - - Updated breton translation - -M po/br.po - -commit 58a073303977708516d3a1ff4528a7ef7ace7f26 -Author: Marcus Carlson -Date: 2009-09-29 - - Adds an option to select the application to open an unkown file type - upon error opening the file. - - https://bugzilla.gnome.org/show_bug.cgi?id=92497 - -M libnemo-private/nemo-mime-actions.c - -commit d013bf32daa0db99693bc86b6930b56c3d59b42a -Author: Kostas Papadimas -Date: 2009-09-29 - - Updated Greek translation. - -M po/el.po - -commit 3dd2ddccb759b41762026de8c3f82b0257a73ff8 -Author: Jennie Petoumenou -Date: 2009-09-29 - - Updated Greek translation - -M po/el.po - -commit 8fe1a569690abd8a472041886b883b55852d445f -Author: Marcus Carlson -Date: 2009-09-29 - - Add multiselect capability to list view - - Use Ctrl+shift to do multiple range selects (#410497) - -M src/file-manager/fm-list-view.c - -commit 0b8af64dc9ca5994215362f163e2c09a2d79e9bd -Author: Jorge González -Date: 2009-09-28 - - Updated Spanish translation - -M po/es.po - -commit 6abf7ba3b026306493ee40f8164e7f632f5c5265 -Author: Marcus Carlson -Date: 2009-09-28 - - Add checkbox for not associating a filetype on open with - - https://bugzilla.gnome.org/show_bug.cgi?id=92497 - -M libnemo-private/nemo-open-with-dialog.c - -commit b6112210f2b4c26951c4104a5d46d5b54ec58e2b -Author: Alexander Larsson -Date: 2009-09-28 - - Bump version to 2.29.1 on master - -M configure.in - -commit 80e87af1b4956e0c1dcb252564a71cf51286ab3f -Author: A -Date: 2009-09-28 - - Fix Bug 593523 - Typo in nemo volume mgmt. - -M src/file-manager/fm-directory-view.c - -commit 08e6114dbdf4553b4bcc12a38b0955da153c8efe -Author: Jürg Billeter -Date: 2009-09-23 - - Update tracker support for version 0.7 - - Fixes bug 596082. - -M configure.in -M libnemo-private/nemo-search-engine-tracker.c - -commit a2a7f3a2a7909824c7a2643d9251c0e74f17b548 -Author: Timo Jyrinki -Date: 2009-09-25 - - Update Finnish translation (transition from ”taltio” to - ”asema”) - -M po/fi.po - -commit 541c225fea1d616d01862d0f6b0ff9086317540a -Author: Tomas Bzatek -Date: 2009-09-24 - - Don't rely on activation_uri when detecting mounts - - We test for the activation_uri - (i.e. G_FILE_ATTRIBUTE_STANDARD_TARGET_URI) - which is usually not exposed from computer:// items until the item - is mounted - (and that's up to particular gvfs volume monitor). - - Simply don't test for activation_uri, file type of - G_FILE_TYPE_MOUNTABLE - should be enough. - - This fixes https://bugzilla.redhat.com/show_bug.cgi?id=518570 - -M libnemo-private/nemo-directory-async.c - -commit e15707648d6d92abe455107718a1e0a440c7fe1f -Author: Christian Neumair -Date: 2009-09-24 - - Correctly position icons for text, netscape URI and URI list drops - - When dropping text, a netscape URI or a URI list to the desktop, - remember - the position where the drop happened and position the created icon - accordingly. - Fixes #350022. - -M src/file-manager/fm-directory-view.c - -commit 069494e971bba9bfad5cd6997ecf9138677a9bc0 -Author: Takayuki KUSANO -Date: 2009-09-23 - - Fix Japanese translation - -M po/ja.po - -commit 6fec4348ef56f1df6f7609f9632a5bf4c6512e4d -Author: Takayuki KUSANO -Date: 2009-09-23 - - Updated Japanese translation - -M po/ja.po - -commit 1055993807fe882a3588f59fe0d93b0b0bb063d8 -Author: Alexander Larsson -Date: 2009-09-21 - - Post release version bump - -M configure.in - -commit c3b8ec1d6927ccc743e57c315cc2a3ba007ec769 -Author: Alexander Larsson -Date: 2009-09-21 - - Update for 2.28.0 release - -M NEWS -M configure.in - -commit 9fc52ea33822f02e2b5ab876f7ae3ddbcea67523 -Author: Shankar Prasad -Date: 2009-09-21 - - Updated Kannada(kn) translation - -M po/kn.po - -commit 0cdc94d5345c17e2e929dbd18290ad3e933eb3e5 -Author: Petr Kovar -Date: 2009-09-20 - - Updated Czech translation by Lucas Lommer - - Thanks goes to Tomas Bzatek. - -M po/cs.po - -commit cd62ad01e18c0b3b0932af4a9262da1906f2f63a -Author: Amitakhya Phukan -Date: 2009-09-20 - - Updating Assamese translations - -M po/as.po - -commit 40df45a49785a31c2bdbafef3c8a99766333c5a1 -Author: A S Alam -Date: 2009-09-19 - - Updating Translation for Punjabi by A S Alam - -M po/pa.po - -commit 8823a3815e0dfcdf92059140d72556ab3acd3b8e -Author: Theppitak Karoonboonyanan -Date: 2009-09-19 - - Updated Thai translation. - -M po/th.po - -commit 0f075e8e97ad070796584d086678c0e1ad539188 -Author: Takayuki KUSANO -Date: 2009-09-19 - - Updated Japanese translation - -M po/ja.po - -commit 752e68860bd37941c5fdef3ae29113d12f8dc195 -Author: Manoj Kumar Giri -Date: 2009-09-18 - - Upadated Oriya Translation - -M po/or.po - -commit 7242f95d083cebfff768d693d2ebf4282154d508 -Author: Matej Urbančič -Date: 2009-09-18 - - Updated Slovenian translation - -M po/sl.po - -commit a728376835fdd39fa505acb84584f7d2600801f2 -Author: Luca Ferretti -Date: 2009-09-18 - - Updated Italian translation - -M po/it.po - -commit a8097e57788ad735227489e6c51d06bedc796889 -Author: Alexander Larsson -Date: 2009-09-18 - - Don't load files for thumbnailing that we can't thumbnail anyway - - When zooming out we read the real image and use that as the thumbnail. - However, we should only do this for files gdk-pixbuf can read as other - things can't be read anyway and may potentially be very large (such as - videos) since the thumbnail size limit only applies for images. - -M libnemo-private/nemo-file.c -M libnemo-private/nemo-thumbnails.c -M libnemo-private/nemo-thumbnails.h - -commit 4a88ecde61a52ac058999d95388ade9f668482d4 -Author: Maxim V. Dziumanenko -Date: 2009-09-17 - - Added Ukrainian translation - -M po/uk.po - -commit 51a2a0abd0bd3f6f36737b5afef3ff49a7fa602c -Author: Denis ARNAUD -Date: 2009-09-17 - - Updated breton translation - -M po/br.po - -commit 5d641153c201f4cbc4d62ac10eb2437a8be5fb78 -Author: Mohammad Anwari -Date: 2009-09-16 - - Updated Indonesian translation by Andika Triwidada - -M po/id.po - -commit adc53a499c5c143612d7e9b22340efc38240da1d -Author: Ilkka Tuohela -Date: 2009-09-15 - - Updated Finnish translation - -M po/fi.po - -commit b5af4e6c9c6af492210514af922aa0ed4029dce6 -Author: Ilkka Tuohela -Date: 2009-09-15 - - Updated Finnish translation - -M po/fi.po - -commit 8da7fdac2375f5b5d0354926b6c130ced602aaaa -Author: Rajesh Ranjan -Date: 2009-09-15 - - hindi update by Rajesh Ranjan - -M po/hi.po - -commit ba75188ad883fc3be36ebad0740512b03a6e373c -Author: Sweta Kothari -Date: 2009-09-15 - - Updated Gujarati Translations - -M po/gu.po - -commit 43275654dc3b762841339f2771137d8013f0fe43 -Author: Astur -Date: 2009-09-14 - - Updated Asturian translation - -M po/ast.po - -commit bd87d7555759021a012691d59d8707c4118a17c7 -Author: Gil Forcada -Date: 2009-09-14 - - Minor fix to Catalan translation - -M po/ca.po - -commit 96781b9d29259e175f73b87a30eaadf1e12c7490 -Author: Carles Ferrando -Date: 2009-09-14 - - Updated Catalan (Valencian) translation - -M po/ca@valencia.po - -commit d6b8cb28c7208e0776bb483cde464472249c73ba -Author: Alexander Larsson -Date: 2009-09-14 - - Avoid refing NULL icons - -M src/file-manager/fm-directory-view.c - -commit eb05225a794de9c7b9326d1e1c56f54902bb6bb5 -Author: Kjartan Maraas -Date: 2009-09-14 - - Update Norwegian bokmål translation. - -M po/nb.po - -commit 58a9e227e519369bca5c7c9897e386110bdda242 -Author: Ani -Date: 2009-09-14 - - Updaeted Malayalam Translations - -M po/ml.po - -commit 4fb28a5541e564adff7f3a03582c2cb7ed4e294f -Author: Lucian Adrian Grijincu -Date: 2009-09-14 - - Updated Romanian translation - -M po/ro.po - -commit 979be859028ba20384eee4f907fc647a060cb9fc -Author: Ilkka Tuohela -Date: 2009-09-13 - - Updated Finnish translation - -M po/fi.po - -commit 78244d5d698786a98d00ef1513e8294825b8813c -Author: Bruce Cowan -Date: 2009-09-12 - - Updated British English translation - -M po/en_GB.po - -commit e8610aaf1e276993a9942697decc4dc81a5c0168 -Author: Ask H. Larsen -Date: 2009-09-12 - - Updated Danish translation - -M po/da.po - -commit da24fa0b829c31c4417fed03374b4ad4f63392e8 -Author: Reinout van Schouwen -Date: 2009-09-12 - - * 2009-09-12 Reinout van Schouwen - - - po/nl.po: Updated Dutch translation - -M po/nl.po - -commit 48744242700d5dc9de21ef6c33df8eedb757b715 -Author: Miloš Popović -Date: 2009-09-11 - - Fixes in Serbian translation - -M po/sr.po -M po/sr@latin.po - -commit 02ea89fd4f92faade026de9463aca4171f4c04d1 -Author: Gabor Kelemen -Date: 2009-09-11 - - Updated Hungarian translation - -M po/hu.po - -commit 8c636df9374993990ba8a23bbcb986e572508510 -Author: Žygimantas Beručka -Date: 2009-09-10 - - Updated Lithuanian translation - -M po/lt.po - -commit 46aefc46372624957509f971a325e06fe8249c21 -Author: Alexander Larsson -Date: 2009-09-10 - - Make the desktop window native so the backing pixmap is drawn by X - - Without this X draws the toplevel window background and then the - real background is drawn from exposes, which doesn't look nice. - Fixes bug #593658 - -M libnemo-private/nemo-icon-container.c - -commit 594f76e9231eeadfc7972560cf162e921d66aac6 -Author: Denis ARNAUD -Date: 2009-09-09 - - Updated breton translation - -M po/br.po - -commit d67e3e2377229e19128a2405b70580448fc5e487 -Author: Sweta Kothari -Date: 2009-09-09 - - Updated Gujarati Translations - -M po/gu.po - -commit b6e45ba165064f508aedad4212759700f0b99f7d -Author: A S Alam -Date: 2009-09-09 - - Updaitng for Punjabi - -M po/pa.po - -commit 714e8534c90addab5b795cc39c98142ddea17242 -Author: Piotr Drąg -Date: 2009-09-09 - - Updated Polish translation - -M po/pl.po - -commit e6e10b6facdd8a7058fa5c283462c9f4777a1079 -Author: Sandeep Shedmake -Date: 2009-09-08 - - Updated Marathi Translations - -M po/mr.po - -commit 21e5e7d3898764a8d493dede40606a9b9e6aa7aa -Author: Alexander Larsson -Date: 2009-09-08 - - Free get_types_table internal hashtable on exit - -M libnemo-private/nemo-thumbnails.c - -commit 5b075cfa665d07ee6c57e68f6f67aaca76a3b308 -Author: Alexander Larsson -Date: 2009-09-08 - - Fix minor leak - -M src/nemo-application.c - -commit d442315c303db2def885a00d0abed257156185ce -Author: Alexander Larsson -Date: 2009-09-08 - - Free return value from nemo_file_get_metadata_list - -M src/file-manager/fm-list-view.c - -commit 75298a3ded74e42b047f95f0746ea3dca8e0a6b7 -Author: Alexander Larsson -Date: 2009-09-08 - - Print leaked unique eel_ref_str:s at exit - -M eel/eel-string.c - -commit b698cf1932da077f07d99966a4c61568a1ae081e -Author: Alexander Larsson -Date: 2009-09-08 - - Fix threadsafety issue in eel_ref_str_unref - - Its not safe to just decrement count if we didn't read a 1, as we - could race with another decrement. - -M eel/eel-string.c - -commit 26714114eefe841c4b3eaa5a3a93b50ec69f76a8 -Author: Alexander Larsson -Date: 2009-09-08 - - Don't leak list of gconf entries - -M libnemo-private/nemo-desktop-directory-file.c - -commit 2434bd43cd43eb8ba97b1a956e4b3cd734cf2a91 -Author: Alexander Larsson -Date: 2009-09-07 - - Fix usage of sink, fixing many recently introduced leaks. - - The conversion away from gtk_object_sink was done wrongly - causing lots of leaks. fix this. - -M eel/eel-background.c -M eel/eel-gtk-extensions.c -M libnemo-private/nemo-dnd.c -M src/file-manager/fm-list-view.c -M src/file-manager/fm-tree-view.c -M src/nemo-emblem-sidebar.c -M src/nemo-history-sidebar.c -M src/nemo-information-panel.c -M src/nemo-notes-viewer.c -M src/nemo-places-sidebar.c -M src/nemo-spatial-window.c - -commit b4cd0d66db105822bfa5531a146428b548aff369 -Author: Alexander Larsson -Date: 2009-09-07 - - Update to latest foocanvas - - This has some cleanups and fixes a memory leak that was introduced - in the eel copy by removing gtk_object_sink. - -M eel/eel-canvas-rect-ellipse.c -M eel/eel-canvas-rect-ellipse.h -M eel/eel-canvas-util.c -M eel/eel-canvas.c -M eel/eel-canvas.h - -commit b17f8f7995aa1ba2b62d8272436d761bc1600bb1 -Author: Alexander Larsson -Date: 2009-09-07 - - Don't leak file metadata - -M libnemo-private/nemo-file.c - -commit 7c2c5f904d183d510e9fb4f4ac07fe7660274692 -Author: Alexander Larsson -Date: 2009-09-07 - - Free "remaining" returned from GOption - -M src/nemo-main.c - -commit 26a91c8e225f01363976485c782840135d50e6d8 -Author: Alexander Larsson -Date: 2009-09-07 - - Centralize extra view ref and sink if required - - Doing this in only one place makes sense as its clearer. - Previously we ref:ed one extra time for the window->view ref but left - the floating ref to be taked when adding the widget to a parent. - This breaks when we free the view before adding it to a parent, so - we need to properly sink it. - -M libnemo-private/nemo-view-factory.c -M src/file-manager/fm-desktop-icon-view.c -M src/file-manager/fm-empty-view.c -M src/file-manager/fm-icon-view.c -M src/file-manager/fm-list-view.c - -commit c302620c144c7968c7ae35b45ab55a3124fd2923 -Author: Alexander Larsson -Date: 2009-09-07 - - post release version bump - -M configure.in - -commit d0a6955e983ba112a65140ce3b55a7dd953fd8e8 -Author: Alexander Larsson -Date: 2009-09-07 - - Update NEWS - -M NEWS - -commit bd108f3700594e5c859d89287a59733a5585e4d9 -Author: Padraig O'Briain -Date: 2009-09-07 - - Don't crash on NULL gconf value - - This fixes bug #589520 - -M libnemo-private/nemo-desktop-directory-file.c - -commit 02a7a84229063f329731d3db61184207a91bf12e -Author: Chao-Hsiung Liao -Date: 2009-09-06 - - Updated Traditional Chinese translation(Hong Kong and Taiwan) - -M po/zh_HK.po -M po/zh_TW.po - -commit 3af7944871692b9e0c0754ed5351ac24d2a6f9ff -Author: Khaled Hosny -Date: 2009-09-05 - - Updated Arabic translation - -M po/ar.po - -commit 41a15a48a2d452078ae7845374ad9577b30e8155 -Author: Ivar Smolin -Date: 2009-09-05 - - Updating Estonian translation - -M po/et.po - -commit 7553bdccaddb56be2b156dfcd1e409ea30b870a7 -Author: Mario Blättermann -Date: 2009-09-04 - - Updated German translation - -M po/de.po - -commit 13ecc3e0eef4d9267f9919cd79180c0ed4ce4bbf -Author: Duarte Loreto -Date: 2009-09-04 - - Updated Portuguese translation - -M po/pt.po - -commit 2a562f03810a31a0cd2be36faff5059dab2b8fe2 -Author: Miloš Popović -Date: 2009-09-01 - - Updated Serbian translation - -M po/sr.po -M po/sr@latin.po - -commit 3901a97853dad9bf2d586e401a2542aa86703e65 -Author: Kjartan Maraas -Date: 2009-09-01 - - Update Norwegian bokmål translation. - -M po/nb.po - -commit 40164f40de5bcfec618da3f200eff5d2371f4bde -Author: Shankar Prasad -Date: 2009-09-01 - - Updated Kannada(kn) translation - -M po/kn.po - -commit e9b017891f7ab2586b92f4111637b2d02b0f4a51 -Author: krishnababu k -Date: 2009-08-31 - - Updated Telugu Translations - -M po/te.po - -commit 2cf936c4105f88a953f91c8bdf37d65553681684 -Author: Joan Duran -Date: 2009-08-30 - - Updated Catalan translation - -M po/ca.po - -commit 4d9e7a5bf3d180ae47b789b90ee56fc2cbde24c3 -Author: Baris Cicek -Date: 2009-08-30 - - Updated Turkish translation. - -M po/tr.po - -commit cf32d3a9429a08fa5fd9557c57e896d85064e9da -Author: Inaki Larranaga Murgoitio -Date: 2009-08-29 - - Updated Basque language - -M po/eu.po - -commit bd4180156f506861b335a71a4d6e54886a237527 -Author: Bruno Brouard -Date: 2009-08-28 - - Updated French translation - -M po/fr.po - -commit 04e3be13647469de3fe97c15b2fab28eb1cdd81c -Author: Inaki Larranaga Murgoitio -Date: 2009-08-27 - - Updated Basque language - -M po/eu.po - -commit 542f56ecb2af09c78dd7507d6e9f10b96d4d2e34 -Author: Runa Bhattacharjee -Date: 2009-08-27 - - Updated Bengali India Translations - -M po/bn_IN.po - -commit e6ef2d96f6adc507425123716961aa48281af83d -Author: A -Date: 2009-08-27 - - Fix test in uninhibit code - -M libnemo-private/nemo-file-utilities.c - -commit bf6bfde36bcadf43a39fb095650b7fc78741d62a -Author: Matthias Clasen -Date: 2009-08-26 - - Fix a duplicate id in a .ui file - - This caused nemo-file-management-properties to crash. - -M src/nemo-file-management-properties.ui - -commit 064086ef68a0692ac9050b7a0d3ded4a836c8180 -Author: Marcus Carlson -Date: 2009-08-26 - - Always show app icon for open-with in the popup menu as in the - normal menu - - Fixes bug #591663. - -M src/file-manager/fm-directory-view.c - -commit 3bd3f5f4d7a8ef10c6133c5957025df1560e9185 -Author: ifelix -Date: 2009-08-26 - - Updated Tamil Translations - -M po/ta.po - -commit b151573894ee19b4c13f3d35ac5cac7660caee63 -Author: Henrique P Machado -Date: 2009-08-24 - - Updated Brazilian Portuguese translation. - -M po/pt_BR.po - -commit 324e267fc916d5f16e505c2f57a69c271c1388ee -Author: Alexander Larsson -Date: 2009-08-24 - - Post release version bump - -M configure.in - -commit c685eae6206409ca4bbcec4c74367e5295f40461 -Author: Alexander Larsson -Date: 2009-08-24 - - Update NEWS - -M NEWS - -commit c1755706945092334af274f3a88049976baa4763 -Author: Alexander Larsson -Date: 2009-08-24 - - Bump version to 2.27.91 - -M configure.in - -commit d8337a4b7969b43bf5712cd5e85dc5f936ed5044 -Author: Ryan Lortie -Date: 2009-08-22 - - Cancel audio preview when deleting the file - - Fixes #137500. - -M src/file-manager/fm-icon-view.c - -commit b9cd9a5810e044c9351d2408186fb135f4452635 -Author: Jamil Ahmed -Date: 2009-08-24 - - Updated Bengali translation - -M po/bn.po - -commit 8ddb1d53eaa01f4c076c4d96e8da1a9a812e303b -Author: Changwoo Ryu -Date: 2009-08-23 - - Update Korean translation - -M po/ko.po - -commit da36928ac4d0989d2b6c3d54f7dc522fca7491ab -Author: Seán de Búrca -Date: 2009-08-22 - - Updated Irish translation - -M po/ga.po - -commit 97915f97bcbd047de2a5fd4b6bf25b01436085d3 -Author: Alexander Shopov -Date: 2009-08-22 - - Updated Bulgarian translation - -M po/bg.po - -commit 4a7af52ab6f964b9174b59e3f71252447158ffa4 -Author: Antón Méixome -Date: 2009-08-19 - - Updated Galician Translation - -M po/gl.po - -commit 72f65592a84cb8e9ad2ccaa6bbfd7fe4fbe7371b -Author: Alexander Larsson -Date: 2009-08-18 - - Migrate old nemo metadata to gvfs on startup - - If ~/.nemo/metadata/migrated-to-gvfs doesn't exist, migrate and - create it. - -M src/Makefile.am -M src/nemo-application.c - -commit 1d14824dc8ab6f1f8573b07c11ce437ae22dc77b -Author: Alexander Larsson -Date: 2009-08-17 - - Add nemo-convert-metadata tool - - This can be used to convert old-style nemo metafiles to gvfs - metadata. - -M src/Makefile.am -A src/nemo-convert-metadata.c - -commit a557cf30fe1f3761901a7248106840add2c1d105 -Author: Alexander Larsson -Date: 2009-08-18 - - Move NEMO_DESKTOP_METADATA_GCONF_PATH to nemo-metadata.h - - Need this in the metadata conversion code - -M libnemo-private/nemo-desktop-directory-file.c -M libnemo-private/nemo-metadata.h - -commit 7c316ae074658c8927e48ea00f4305767ea9f7dd -Author: A. Walton -Date: 2009-08-13 - - Bug 587316 – Truncate file names when deleting - - Files with extremely long file names could cause the dialog box to - become wider than the screen. Based on a patch contributed by - Marcus Carlson. - -M libnemo-private/nemo-file-operations.c - -commit ce36628b3d615204eebd60a9df67b88857321965 -Author: Yaron Shahrabani -Date: 2009-08-14 - - Updated Hebrew translation - -M po/he.po - -commit e0446d33be8ce22d1925c60db6a9b26c232020a8 -Author: Jochen Skulj -Date: 2009-08-13 - - Updated German translation - -M po/de.po - -commit 39b18f636baddcc3de5866ef3dbb6d66dc344a37 -Author: Rajesh Ranjan -Date: 2009-08-13 - - Updated Hindi Translations - -M po/hi.po - -commit bbdb3b31455d462c18afa3764293f06fb81df54b -Author: Daniel Nylander -Date: 2009-08-13 - - Updated Swedish translation - -M po/sv.po - -commit 477fdafe22aa0e3cb78ab73c7ec4e205468c0a75 -Author: Matthias Clasen -Date: 2009-08-12 - - Fix a typo - -M libnemo-private/apps_nemo_preferences.schemas.in - -commit e8f0c90ab9444511311f300f6b0596df01c38f1e -Author: Seán de Búrca -Date: 2009-08-11 - - Updated Irish translation - -M po/ga.po - -commit 13b85463fb7b9af0faac01b30e8459545e87b6f0 -Author: Mattias Põldaru -Date: 2009-08-11 - - Updating Estonian translation - -M po/et.po - -commit fdb2ccedb2bfd3b2d6dfd5759913875b8d93834a -Author: A. Walton -Date: 2009-08-10 - - Fix unintiallized GError in power management - -M libnemo-private/nemo-file-utilities.c - -commit f77c52ec952f25170338e6e896af035b4ef55cfe -Author: Jorge González -Date: 2009-08-10 - - Updated Spanish translation - -M po/es.po - -commit 37e7ceca45aea48129cf55ea2583f23330d26b91 -Author: A. Walton -Date: 2009-08-10 - - Bug 334806 – Inhibit power-manager when copying files - - Introduces code to inhibit GNOME power manager - whenever a file operation which may not complete - quickly is running. - -M libnemo-private/nemo-file-operations.c -M libnemo-private/nemo-file-utilities.c -M libnemo-private/nemo-file-utilities.h - -commit 4dd0fdef1d77cb6b9be83348ff5c00293e14a991 -Author: Ivar Smolin -Date: 2009-08-10 - - Updating Estonian translation - -M po/et.po - -commit fa1d8989b1b3e4d18c3f4c097d57c76ff86a7387 -Author: Luca Ferretti -Date: 2009-08-09 - - Remove unused variable to fix the build - -M src/nemo-navigation-window-menus.c - -commit 3c5be2ea6403ad071da5e350332e2890d9d53994 -Author: Khaled Hosny -Date: 2009-08-08 - - Updated Arabic translation - -M po/ar.po - -commit eb585679b6e4fad7d252a7458177c4e0a8468298 -Author: Matthias Clasen -Date: 2009-08-08 - - Always show icons in places menu in spatial mode. - - Part of bug #590647. - -M src/nemo-spatial-window.c - -commit 826d5237d2ea179006b62def4db376544e74d764 -Author: Marcus Carlson -Date: 2009-08-08 - - Always show icons in the history and go menu. - - Part of bug #590647. - -M src/nemo-navigation-window-menus.c -M src/nemo-window-menus.c - -commit 9cba51e5cb8827997eb4203c6eed4614efa34aaa -Author: Marcus Carlson -Date: 2009-08-08 - - Always show application icons in popup menus. - - Part of bug #590647. - -M src/file-manager/fm-directory-view.c - -commit 1604ee0ceb8026aff744981b893d8fc8da25ec6c -Author: Seán de Búrca -Date: 2009-08-06 - - Updated Irish translation - -M po/ga.po - -commit 339017547f1aa41d90cf31a6b985588f3ff64e4a -Author: Antón Méixome -Date: 2009-08-06 - - Updated Galician Translation - -M po/gl.po - -commit 47af29868f527a93acb1822b6bdb2537253a387e -Author: Kjartan Maraas -Date: 2009-08-06 - - Updated Norwegian bokmål translation. - -M po/nb.po - -commit a0b11f325a221c7ca46811ada00bad1035e4857a -Author: Khaled Hosny -Date: 2009-08-06 - - Misc. fixes to Arabic translation - -M po/ar.po - -commit 85bb10a2b4f7230e7a0aa5b9945d155c1a21b2b4 -Author: Khaled Hosny -Date: 2009-08-05 - - Updated Arabic translation - -M po/ar.po - -commit f8f6a95bc05353b4a68c07fc710742b9bcdc7d0d -Author: A. Walton -Date: 2009-08-03 - - Fix crash in connect server dialog - - Under custom locations, entering no URI will crash. - -M src/nemo-connect-server-dialog.c - -commit cfa61d576da08590bec118ce1ed03e7189a974b2 -Author: A. Walton -Date: 2009-08-03 - - Reorder assignments in mime application chooser - - Writing over toggle_renderer with the wrong cell renderer. - -M libnemo-private/nemo-mime-application-chooser.c - -commit a8ca44f54aea29ccb2eb0163f8ffe670fd6761b1 -Author: A. Walton -Date: 2009-08-03 - - Reverse back/forward mouse button sense. - - Be consistent with Firefox, etc. - -M libnemo-private/apps_nemo_preferences.schemas.in -M libnemo-private/nemo-global-preferences.c -M src/nemo-navigation-window.c - -commit aa5dbe04bc2d92e2603b34d44f486fd2bae95169 -Author: Seán de Búrca -Date: 2009-07-31 - - Updated Irish translation - -M po/ga.po - -commit 6d648632b8978590befcd867bd2c9920b6aa49ff -Author: Alan Monfort -Date: 2009-07-31 - - Updated breton translation - -M po/br.po - -commit 838d31d11e3fed0d98642397c9d986ddd5bea390 -Author: Denis Arnaud -Date: 2009-07-30 - - Updated breton translation - -M po/br.po - -commit e7d2f70203673d9a294460df164aec295db17234 -Author: Denis Arnaud -Date: 2009-07-30 - - Updated breton translation - -M po/br.po - -commit 97d348f792a2659fbb88de17d25e83c93b14414c -Author: Vincent Untz -Date: 2009-07-28 - - Respect /desktop/gnome/lockdown/disable_command_line - - We need to show/hide the "New Launcher" menu item in the context - menu, depending on this gconf key. - -M libnemo-private/nemo-global-preferences.c -M libnemo-private/nemo-global-preferences.h -M src/file-manager/fm-actions.h -M src/file-manager/fm-desktop-icon-view.c -M src/file-manager/fm-directory-view.c - -commit 359fa218a1a890bb87fb331acc30d62b57bc7c61 -Author: Ivar Smolin -Date: 2009-07-27 - - Updating Estonian translation - -M po/et.po - -commit aac26f4c0fce20e7cac87ca51c0629458e804ee8 -Author: Mattias Põldaru -Date: 2009-07-22 - - Updating Estonian translation - -M po/et.po - -commit 44c05bbc866fb4430a16b169aa3854bab1af6555 -Author: drtvasudevan -Date: 2009-07-21 - - Updated Tamil translation - -M po/ta.po - -commit c0c9bbc96228a8864eda9d0b7f4c82c7d1c0dba4 -Author: Ivar Smolin -Date: 2009-07-20 - - Updating Estonian translation - -M po/et.po - -commit 2a94803b44010e3c47a9f7b94894fab8d6062abc -Author: Jaap A. Haitsma -Date: 2009-07-18 - - Fix handling of small images/icons - - Small images with an alpha plane don't get a frame - Use different scaling strategy for small images. Small images/icons - won't get up scaled in default zoom view. They are shown in their - actual - Fixes bug #585186 - -M libnemo-private/nemo-file.c - -commit a8f82a8a00f672a3111d97070c3a6f34e2b46c90 -Author: Chao-Hsiung Liao -Date: 2009-07-18 - - Updated Traditional Chinese translation(Hong Kong and Taiwan) - -M po/zh_HK.po -M po/zh_TW.po - -commit bd6db659cb232d8b8f81a9ada748025aa1d16fff -Author: Alexander Larsson -Date: 2009-07-14 - - Clean up metadata key names now that they are public - - Prefix all internal keys with "nemo-". - Use dash, not underscore as delimitor (this is what gio file - attrs use) - Rename "keyword" to "emblems" - Rename "default_component" to "nemo-default-view" - -M libnemo-private/nemo-file.c -M libnemo-private/nemo-metadata.c -M libnemo-private/nemo-metadata.h -M src/nemo-window-manage-views.c - -commit c2951134aac83f4e8194e7cb71a92b5f9d273100 -Author: Sweta Kothari -Date: 2009-07-14 - - Updated Gujarati Translations - -M po/gu.po - -commit 53bcaac5fd2cf03f686f19dbdc9d889480cd8709 -Author: Cosimo Cecchi -Date: 2009-07-14 - - Post-release version bump - -M configure.in - -commit 608b7f5c2ab1c6e9c0d011e3fef3b506afa5f8ba -Author: Cosimo Cecchi -Date: 2009-07-14 - - Update for 2.27.4 - -M NEWS -M configure.in - -commit e4b5573bec0215006201b9a0dda60888a32debe6 -Author: Cosimo Cecchi -Date: 2009-07-14 - - Comment out the metadata tests for now - -M libnemo-private/nemo-directory.c - -commit 91cec6f5e6bbc672d2cebef162ea797eb5e9d55d -Author: Sweta Kothari -Date: 2009-07-13 - - Updated Gujarati Translations - -M po/gu.po - -commit 9ca82f0443f49bb80beb050f1d1bb3ef2a338698 -Author: Maxim V. Dziumanenko -Date: 2009-07-09 - - Updated Ukrainian translation - -M po/uk.po - -commit 3bd36d1a3b6f576e124a41800d7138cbfa34782f -Author: Maxim V. Dziumanenko -Date: 2009-07-09 - - Updated Ukrainian translation - -M po/uk.po - -commit fd9df908248be20bc5f79def1dd96a45bb9f56c8 -Author: Cosimo Cecchi -Date: 2009-07-09 - - Don't force no horizontal scrollbar in the note viewer - - This causes issues with long words in the notes viewer, as the window - will grow bigger along with the word. - Patch by Luke Symes, fix bug #399018. - -M src/nemo-notes-viewer.c - -commit c1b58565da21a6d9e95dc920afd632da6e906fc9 -Author: drtvasudevan -Date: 2009-07-09 - - Updated Tamil translation - -M po/ta.po - -commit 560e736891e9268c73171ef3afbbc5c2bde819b9 -Author: Jorge González -Date: 2009-07-08 - - Updated Spanish translation - -M po/es.po - -commit 72a17d86468291eb64fdc549753836e76e3add6a -Author: Daniel Nylander -Date: 2009-07-08 - - Updated Swedish translation - -M po/sv.po - -commit 2eb7e673837b32fe8c7d9b4431fd76213a908a3a -Author: Wang Yan -Date: 2009-07-04 - - Don't display the timeout dialog with broken launchers - - Don't display the timed wait dialog if we're already reporting - a broken - link to the user. Fix bug #579165. - - Signed-off-by: Wang Yan - -M libnemo-private/nemo-mime-actions.c - -commit 45c928d3cf112f22d69b25299898301c54d9e961 -Author: Cosimo Cecchi -Date: 2009-07-08 - - Use application icons in the context menu - - If it's possibile, use the application icons in the open with submenu. - This also removes quotation marks and useless duplicate "Open With" - strings from the submenu. - Patch by Marcus Carlson, fixes bug #587533 and #546916. - -M src/file-manager/fm-directory-view.c - -commit 4b434c4f73b56a92ff4bf50435487357719eebaf -Author: Cosimo Cecchi -Date: 2009-07-08 - - [build] bump up the required version of GLib - -M configure.in - -commit cf5538067776605cb031a58ce2f77271375db498 -Author: David Zeuthen -Date: 2009-06-30 - - Bug 587486 – Pass GMountOperation to unmount/eject/stop ops - - - Port everything to use _with_operation() variants of unmount/eject - methods - - - This includes changing the NemoFile a bit; see the patch - for details - - - Add support for g_drive_can_start_degraded() so we offer - to start (degraded) drives even when g_drive_can_start() - returns FALSE - - - Also add support for new mountable::* attributes so we can - have "Detect Media" items in the context menu when right-clicking - mounts/volumes/drives in computer:/// and on the desktop - -M libnemo-private/nemo-desktop-icon-file.c -M libnemo-private/nemo-file-operations.c -M libnemo-private/nemo-file-private.h -M libnemo-private/nemo-file.c -M libnemo-private/nemo-file.h -M libnemo-private/nemo-vfs-file.c -M src/file-manager/fm-actions.h -M src/file-manager/fm-directory-view.c -M src/file-manager/nemo-directory-view-ui.xml -M src/nemo-application.c -M src/nemo-places-sidebar.c - -commit 8b7599a8897e5f5314b8637e7523f35285db118c -Author: Daniel Nylander -Date: 2009-07-07 - - Updated Swedish translation - -M po/sv.po - -commit 547fa8e9f8fe654b92d5b8b0f2dcc074a7ad91d8 -Author: Claude Paroz -Date: 2009-07-07 - - Updated French translation - - Contributed by Laurent Coudeur and Claude Paroz - -M po/fr.po - -commit 9da3dacb61a5f70b0b5a62c57f3278169fdea56a -Author: Jorge González -Date: 2009-07-07 - - Updated Spanish translation - -M po/es.po - -commit f24c7689e1efb27dd2953bdee7de8c02f183d9be -Author: Alexander Larsson -Date: 2009-06-30 - - Properly escape names used as gconf keys - -M libnemo-private/nemo-desktop-directory-file.c - -commit b8995fce159472dac07666dfb4d7e3ff1412403a -Author: Alexander Larsson -Date: 2009-06-29 - - Support metadata for the virtual desktop icons - -M libnemo-private/nemo-desktop-directory-file.c -M libnemo-private/nemo-desktop-directory-file.h -M libnemo-private/nemo-desktop-icon-file.c -M libnemo-private/nemo-global-preferences.c - -commit 02f908f3d864f1f3bf0729158907f312e0306c05 -Author: Alexander Larsson -Date: 2009-06-29 - - Move metadata setting to a NemoFile vfunc - - This allows non-vfs backends to implement metadata - -M libnemo-private/nemo-file-private.h -M libnemo-private/nemo-file.c -M libnemo-private/nemo-file.h -M libnemo-private/nemo-vfs-file.c - -commit 28d5e790dbe7752de156e01610c3e5c354064192 -Author: Mattias Põldaru -Date: 2009-06-26 - - Updating Estonian translation - -M po/et.po - -commit 65425491f90194e3034b5b49e0e333b5717d1776 -Author: Alexander Larsson -Date: 2009-06-26 - - Forgot to remove some references to removed symbols - -M libnemo-private/nemo-file-changes-queue.c - -commit 7874f2d9422618107edabd7056b7167844c389ca -Author: Alexander Larsson -Date: 2009-06-25 - - Support unsetting metadata - -M libnemo-private/nemo-file.c - -commit 99b68670ad94bfb5db1b162ae0d84e27f226d18f -Author: Mattias Põldaru -Date: 2009-06-25 - - Updating Estonian translation - -M po/et.po - -commit 22a457fd40d09139e5d7bbe6404006d0e091bc15 -Author: drtvasudevan -Date: 2009-06-24 - - Updated Tamil translation - -M po/ta.po - -commit 37be3809bc0d25d28298b38bc0b893a6fd3a665f -Author: Alexander Larsson -Date: 2009-06-23 - - Remove all traces of former nemo metadata code - -M libnemo-private/Makefile.am -M libnemo-private/nemo-directory-async.c -M libnemo-private/nemo-directory-background.c -D libnemo-private/nemo-directory-metafile.c -D libnemo-private/nemo-directory-metafile.h -M libnemo-private/nemo-directory-private.h -M libnemo-private/nemo-directory.c -M libnemo-private/nemo-file-attributes.h -M libnemo-private/nemo-file-changes-queue.c -M libnemo-private/nemo-file-changes-queue.h -M libnemo-private/nemo-file-operations.c -M libnemo-private/nemo-file-utilities.c -M libnemo-private/nemo-file.c -M libnemo-private/nemo-file.h -M libnemo-private/nemo-link.c -D libnemo-private/nemo-metafile.c -D libnemo-private/nemo-metafile.h -M libnemo-private/nemo-mime-actions.c -M src/file-manager/fm-directory-view.c -M src/file-manager/fm-properties-window.c -M src/nemo-main.c -M src/nemo-notes-viewer.c -M src/nemo-sidebar-title.c -M src/nemo-window-manage-views.c -M test/test-nemo-directory-async.c - -commit fc4e74e6763000bac2a459e83811cf01e6cb7720 -Author: Alexander Larsson -Date: 2009-06-23 - - Use gvfs based metadata - -M libnemo-private/Makefile.am -M libnemo-private/nemo-file-private.h -M libnemo-private/nemo-file.c -M libnemo-private/nemo-file.h -A libnemo-private/nemo-metadata.c -M libnemo-private/nemo-metadata.h -M src/file-manager/fm-list-view.c - -commit c7b6875c98ecd25dc26853b783e1a4ffe96fab36 -Author: Alexander Larsson -Date: 2009-06-23 - - Add eel_g_strv_equal - -M eel/eel-glib-extensions.c -M eel/eel-glib-extensions.h - -commit ffc93d52d4650e63e01b488ef582983919c89de3 -Author: A. Walton -Date: 2009-06-22 - - Another missed FreeBSD build fix. - -M libnemo-private/nemo-metafile.c - -commit 08144422c582077664b878fecc9878fc785b94df -Author: Petr Kovar -Date: 2009-06-21 - - Fixed Czech translation by Lucas Lommer - - Thanks goes to Vladimir Burian. - -M po/cs.po - -commit 22c5e7beacd28a64b4ff82ad20df0c954128ba46 -Author: Jorge Gonzalez -Date: 2009-06-21 - - Updated Spanish translation - -M po/es.po - -commit 104557839d2cfb375e5729e17c3fba3810f538e7 -Author: Ivar Smolin -Date: 2009-06-19 - - Updating Estonian translation - -M po/et.po - -commit dec816b65de82e832e29c0cea1a8c330ffa5954a -Author: A. Walton -Date: 2009-06-19 - - Fix the build. - - self_start_stop_type uninitialized in fm-directory-view.c - -M src/file-manager/fm-directory-view.c - -commit bcf5f921cda6f582230d3d0707f93172c3fa65e6 -Author: A. Walton -Date: 2009-06-19 - - Bug 586346 – Build failure on FreeBSD - - Wasn't the wrong number of arguments, it was the wrong - type of argument (time_t, not long). So we add a cast - to make it more explicit to the compiler there. - -M libnemo-private/nemo-file.c - -commit 0fe78fa2ae3d1a1e46996cc27c66421965bce57c -Author: A. Walton -Date: 2009-06-19 - - Bug 586346 – Build failure on FreeBSD - - Use g_snprint() instead of snprintf(). - -M libnemo-private/nemo-file.c - -commit 66b53e82aa5d45cec89c99ab74e86caf2c49df00 -Author: David Zeuthen -Date: 2009-06-17 - - Bug 585591 – Starting/stopping drives - - This is the Nemo user for the new GIO API for starting/stopping - drives. See - - http://bugzilla.gnome.org/show_bug.cgi?id=585591 - - for details. - -M libnemo-private/nemo-file-private.h -M libnemo-private/nemo-file.c -M libnemo-private/nemo-file.h -M libnemo-private/nemo-mime-actions.c -M libnemo-private/nemo-vfs-file.c -M src/file-manager/fm-actions.h -M src/file-manager/fm-directory-view.c -M src/file-manager/nemo-directory-view-ui.xml -M src/nemo-places-sidebar.c - -commit 3af5d8c5bf61bdf206b9c79df0c27c0152b46496 -Author: Mattias Põldaru -Date: 2009-06-18 - - Updating Estonian translation - -M po/et.po - -commit 9ff24d6790da178fb8cba9c3c150a04ff4afea74 -Author: Ivar Smolin -Date: 2009-06-17 - - Updating Estonian translation - -M po/et.po - -commit 06e4eb732621b01c624b0e2665de523396e99f2f -Author: Vincent Untz -Date: 2009-06-17 - - Use gtk_cell_layout_get_cells instead of deprecated API - -M src/nemo-places-sidebar.c - -commit a2c338278cb82c4a2d8c4175d1db9ca7d7985d43 -Author: A. Walton -Date: 2009-06-17 - - Revert last commit as discussion in #gnome-hackers - - Turns out, g_app_info_should_show() is really broken, as this hides - some apps we shouldn't be hiding. Wondering how we can unbreak this.. - -M libnemo-private/nemo-open-with-dialog.c - -commit e9d7b28a49d2afa5d67a34ef568a9e390df9a052 -Author: A. Walton -Date: 2009-06-17 - - Bug 586040 – "Open With" dialog duplicates - - Turns out, Nemo was showing GAppInfo's which shouldn't be - shown in the UI. - -M libnemo-private/nemo-open-with-dialog.c - -commit b800160b430c17ddae5621a9af8b498d9092883d -Author: A. Walton -Date: 2009-06-16 - - Bug 563906 – Grammatical Error in String - - Fixes this bug. - -M src/nemo-window-manage-views.c - -commit 41975360a57115b5223e3466517df66b45c3fb63 -Author: Alexander Larsson -Date: 2009-06-15 - - Call g_reload_user_special_dirs_cache() when xdg-user-dirs change - - This means we will get the new special file icon for the changed - files. - - Also, invalidate the file when we change it ourself so that the icon - change is picked up. - -M libnemo-private/nemo-file-utilities.c - -commit a1ea86bd6c3d1123463e377e362dfffd047ef6a5 -Author: Alexander Larsson -Date: 2009-06-15 - - Post release version bump - -M configure.in - -commit e524b867b2653f6f92c8fb44f4b347b5fbc23c2c -Author: Alexander Larsson -Date: 2009-06-15 - - Update NEWS for 1.3.1 - -M NEWS - -commit b3f20601fe476d0af7b1175b14d9cb6729b96795 -Author: Daniel Nylander -Date: 2009-06-13 - - Updated sv translation (Daniel Nylander) - -M po/sv.po - -commit 5abcdbd43ef07460970ff2080dae121d908a0432 -Author: A. Walton -Date: 2009-06-12 - - Bug 547749 – "Open with" Applications not sorted. - - Use a sort model and add a sortable column to sort the application - by name. - -M libnemo-private/nemo-open-with-dialog.c - -commit 932fa70aade6c12b1ef7a0158c0247e79546452c -Author: Jorge Gonzalez -Date: 2009-06-11 - - Updated Spanish translation - -M po/es.po - -commit 7ef11edc4d1819fe40b9c238e4d4ed31c07a9f0e -Author: Manoj Kumar Giri -Date: 2009-06-10 - - Added entries for Hindi Translation updated by Rajesh Ranjan - -M po/ChangeLog - -commit c0a359c656280dc504ea138b9e52763852ea202a -Author: Manoj Kumar Giri -Date: 2009-06-10 - - Updated Hindi Translation on behalf of Rajesh Ranjan - -M po/hi.po - -commit 4cf7e22dc55b37e5678ff69ac02d4acc5ac989fa -Author: Kjartan Maraas -Date: 2009-06-10 - - Updated Norwegian bokmål translation. - -M po/nb.po - -commit 2316b80240b7b3c4e9627f31779b31d31cb1418d -Author: Ivar Smolin -Date: 2009-06-09 - - Updating Estonian translation - -M po/et.po - -commit 8db758307d49bf94c6e379b4439bb1fc61b7e28a -Author: Cosimo Cecchi -Date: 2009-06-08 - - Use a better string for schemas (#585134) - -M libnemo-private/apps_nemo_preferences.schemas.in - -commit 73443aae586eb99e6ca4406a03d91544def77968 -Author: Runa Bhattacharjee -Date: 2009-06-08 - - Updated Bengali India Translation - -M po/bn_IN.po - -commit 03e8e436fe57369ee1d28cfef77791dc258e8f22 -Author: Mattias Põldaru -Date: 2009-06-08 - - Updating Estonian translation - -M po/et.po - -commit 26d6ec74a5ebac6fb64e6ce0484ed96eefa7a78f -Author: Petr Kovar -Date: 2009-06-07 - - Fixed Czech translation by Lucas Lommer - - Thanks goes to Kamil Paral. - -M po/cs.po - -commit 437b01afc7ee7325ec8ba65bea05a13ef072063a -Author: A. Walton -Date: 2009-06-05 - - Bug 583214 – Nemo aborts when giving an empty dest. - - Follow up commit which fixes the code formatting and - ensures the 'Open' button is insensitive when the entry - is empty. - -M src/nemo-location-dialog.c - -commit 7b7a40130eb556fc7f32fb21a73c6437b29b0c73 -Author: Christian Persch -Date: 2009-06-04 - - Correct "srdcir" typo to "srcdir" - -M Makefile.am - -commit aa1afee5cc5b96161b6bb7c1639a180a39850653 -Author: Theppitak Karoonboonyanan -Date: 2009-06-04 - - Updated Thai translation. - -M po/th.po - -commit c0aa87793104abbea45fb1791a1a1cbb771f8b99 -Author: Ask H. Larsen -Date: 2009-05-30 - - Updated Danish translation - -M po/da.po - -commit 5bff677a0dc3ab5d5c68a2ef107cdbb34f133b34 -Author: Cosimo Cecchi -Date: 2009-05-28 - - Remove useless statfs/statvfs checks - - Those checks are now obsoletes. This also fixes bug #583264. - -M configure.in -M src/file-manager/fm-properties-window.c - -commit 0133e979531cd41ca7f1d76ff5adf66ddfa7d67a -Author: Cosimo Cecchi -Date: 2009-05-28 - - Clear text in the location entry - - Add a clear text icon in the location entry, now that the icon - entry is - available in GTK+ 2.16 (#145732). - -M src/nemo-connect-server-dialog.c -M src/nemo-location-entry.c - -commit 7b86b78e2ff6a0f1b45ac8f8a9c30cf3d0c6ae96 -Author: Cosimo Cecchi -Date: 2009-05-28 - - Emit APPEARANCE_CHANGED when setting the bg color - - Emit the APPEARANCE_CHANGED signal when we're setting the color, as - we're ignoring the pending changes after the backgorund is realized, - and - thus we're not getting color updates (#578136). - -M eel/eel-background.c - -commit 518a1ae6ba0a3e09236f944ee655334087d5ddee -Author: Cosimo Cecchi -Date: 2009-05-28 - - Display information about the selected object - - Display information about the selected object in the "Information" - sidebar, using thumbnails if possible. - Also, remove the "Open with" buttons there for directories. - Fix bug #122045, thanks to Amos Brocco. - -M src/nemo-information-panel.c -M src/nemo-sidebar-title.c - -commit 4bb61206b7dd4a3510ab15e8df0288e670f816d6 -Author: Alexander Larsson -Date: 2009-05-27 - - Dist COPYING.EXTENSIONS - -M Makefile.am - -commit 7d9b6812d006d9aeecfb33d072cb382184fb901b -Author: Alexander Larsson -Date: 2009-05-27 - - Add COPYING.EXTENSIONS clarifying some extension license issues - -A COPYING.EXTENSIONS - -commit 74782b711adccfb85273ac38484e4adac8e010b4 -Author: Jorge Gonzalez -Date: 2009-05-26 - - Updated Spanish translation - -M po/es.po - -commit 152b56a058dfd0c57cdc267a63fb3099c0c74e0c -Author: Yaron Shahrabani -Date: 2009-05-25 - - Updated Hebrew translation - -M po/he.po - -commit 5fc840a5f089c627b4e38e2cf99f907ad8abb1a6 -Author: drtvasudevan -Date: 2009-05-25 - - Updated Tamil translation - -M po/ta.po - -commit 3d8011ca8c095be884b603ccea261b955fa6518b -Author: JF Ding -Date: 2009-05-25 - - Support daemon mode (exit_with_last_window preference) - - This can be used if you want to run nemo just to handle volume - monitoring, etc. - -M libnemo-private/apps_nemo_preferences.schemas.in -M libnemo-private/nemo-global-preferences.c -M libnemo-private/nemo-global-preferences.h -M src/nemo-main.c - -commit b49db4e5c9a3d21d3bc20c075e76b98b9977eedf -Author: drtvasudevan -Date: 2009-05-23 - - Updated Tamil translation - -M po/ta.po - -commit 7ea93ff768efdbc106407719b96a46fc34227273 -Author: Ivar Smolin -Date: 2009-05-19 - - Updating Estonian translation - -M po/et.po - -commit 2a005bc2c308e3960e723ed5cc8748f168acda17 -Author: A. Walton -Date: 2009-05-19 - - Bug 583214 – Nemo aborts when giving an empty dest. - - Fixes crash caused by passing a null path. - -M src/nemo-location-dialog.c - -commit 2eb9e588f954f8700d143fdb9d6d1e33318d9a33 -Author: Alexander Shopov -Date: 2009-05-19 - - Updated Bulgarian translation - -M po/bg.po - -commit d850d4742f41957506500c290c2756193c2a776f -Author: Jorge Gonzalez -Date: 2009-05-17 - - Updated Spanish translation - -M po/es.po - -commit 9af920dc7ab772c134ecd754be89b5d2b1aab5e0 -Author: Petr Kovar -Date: 2009-05-17 - - Fixed Czech translation by Lucas Lommer - - Phase two. - -M po/cs.po - -commit 173731a6dae993b5f15e334f1ebfa4756302efb8 -Author: Petr Kovar -Date: 2009-05-17 - - Updated Czech translation by Lucas Lommer - -M po/cs.po - -commit de14cf64ec9179a32617b1b26ce28d47aea2d8d9 -Author: Matej Urban -Date: 2009-05-15 - - Updated Slovenian translation - -M po/sl.po - -commit 1aba1feef00ad87da6e6e775568d3d8fea371576 -Author: Matej Urban -Date: 2009-05-15 - - Updated Slovenian translation - -M po/sl.po - -commit 776823f11bc40d78d17db36a303d69de0363d090 -Author: Matej Urban -Date: 2009-05-15 - - Updated Slovenian translation - -M po/sl.po - -commit 5fde2c7156b5bb8c0411bdbe649dd08172853d3a -Author: Alexander Larsson -Date: 2009-05-13 - - Don't crash if parent button_press_event is NULL (#582457) - - This fixes a crash when you press on the empty area of the toolbars. - -M src/nemo-navigation-window.c - -commit 24d9d3715194ff1145550a7fe3e9b8414ca568d2 -Author: Holger Berndt -Date: 2009-04-29 - - Allow users to define shortcuts for extension menu items - -M src/nemo-window-menus.c - -commit a2ab15477e2e2d13642567316788e12b5ace8504 -Author: Tomas Bzatek -Date: 2009-05-11 - - Properly include m4 macros - - fixes error messages like: - ./configure: line 19939: syntax error near unexpected token `m4,' - ./configure: line 19939: `SHAVE_INIT(m4, enable)' - -M Makefile.am - -commit e595852237c70e56c9d56688e2729eb59f6268fb -Author: A. Walton -Date: 2009-05-11 - - Bug 549437 – ctrl + dnd file duplication in list view - - Fixes bug #549437. Patch provided by "logari81". - -M libnemo-private/nemo-tree-view-drag-dest.c - -commit 9d618732420d6d2ae9f666bbb78ee486746c7940 -Author: A. Walton -Date: 2009-05-10 - - Update About dialog for 2009. - -M src/nemo-window-menus.c - -commit bf1fe66266c96139138908c1f1e1b1cc48f2bd4a -Author: Marios Zindilis -Date: 2009-05-10 - - Updated Greek translation - -M po/el.po - -commit aeda70b4fa90990a538d37122d88f0a82d0578f5 -Author: Simos Xenitellis -Date: 2009-05-09 - - Updated Greek translation - -M po/el.po - -commit f7d425f9045dae6d1d79328e66019c3ce18b1f19 -Author: Simos Xenitellis -Date: 2009-05-09 - - Updated Greek translation - -M po/el.po - -commit 35be2bdcd58e20422d2c8f0cf61b6d2a027dfd93 -Author: Marios Zindilis -Date: 2009-05-09 - - Updated Greek translation - -M po/el.po - -commit a9d7dfc3efb948a88cb5acfce3db8891e3297499 -Author: Christian Kirbach -Date: 2009-05-06 - - Updated German translation. - -M po/de.po - -commit 8d3525a3c3d414fe67f8f8b3c183c95e1282bce1 -Author: Cosimo Cecchi -Date: 2009-05-05 - - Post release version bump to 2.27.2 - -M configure.in - -commit 956bf2c75079003c91774a675091f7133cc8be35 -Author: Cosimo Cecchi -Date: 2009-05-05 - - Prepare for 2.27.1 release - -M NEWS -M configure.in - -commit ec4ce1431bda72fc66ace675d860e7c2bb3bc3e6 -Author: Cosimo Cecchi -Date: 2009-05-05 - - Fix distcheck - -M Makefile.am -M data/Makefile.am -M src/nemo-main.c - -commit 057dabdd59a24d863d8b10dca336a3ca2bf8609f -Author: Shankar Prasad -Date: 2009-05-04 - - Updated the Kannda translations - -M po/kn.po - -commit 0a6012a48bd71c20d7cd32c05e1976f1127ce230 -Author: Jorge Gonzalez -Date: 2009-05-03 - - Updated Spanish translation - -M po/es.po - -commit a6f87ffe8133a4f9205dd1ab1d441fa06c40b497 -Author: Ivar Smolin -Date: 2009-05-02 - - Updating Estonian translation - -M po/et.po - -commit 86cacc2fd60dbed4397567edd08021513c1a60ae -Author: Jorge Gonzalez -Date: 2009-05-01 - - Updated Spanish translation - -M po/es.po - -commit bcbbc3f7853ab1a3a0f2b226312a41d5987e1d5a -Author: Vladimir Melo -Date: 2009-05-01 - - Updated Brazilian Portuguese translation. - -M po/pt_BR.po - -commit d6fa64ab439ac900a92a0467f39cdf72afa5870f -Author: Cosimo Cecchi -Date: 2009-05-01 - - Add building tips link - - Mention http://live.gnome.org/Nemo/Development/Nemo in the - README file. - -M README - -commit 1a8adc87b49603cf14ce139e66bde0fe7bddec8e -Author: Cosimo Cecchi -Date: 2009-05-01 - - Remove a reference to SVN - - Also, update the GIT info page link. - -M HACKING - -commit 7e17224a1e68bb755bd281d46e0533b1dcff52d8 -Author: Claude Paroz -Date: 2009-04-30 - - Updated French translation - -M po/fr.po - -commit c51ac9926e012267d305711b949a937d917f075b -Author: Gabor Kelemen -Date: 2009-04-30 - - Mark strings as translatable, fix bug #579769 - -M src/nemo-file-management-properties.ui - -commit 23ff2a21d2925945dde6e04a47190ebfa27ae8c7 -Author: Gabor Kelemen -Date: 2009-04-30 - - Update POTFILES.*, close bug #580784 - -M po/POTFILES.in -M po/POTFILES.skip - -commit a1a501224999d7abda06e9a2f7eb6da64c17d089 -Author: Shankar Prasad -Date: 2009-04-30 - - Updated Kannada translation - -M po/kn.po - -commit 90e5e1720d09188f3eabb67e502272a549c63dec -Author: Maxim V. Dziumanenko -Date: 2009-04-28 - - Updated Ukrainian translation - -M po/uk.po - -commit 48ed43f32668e5615ac64a3de55ec7ab2f254ef7 -Author: Cosimo Cecchi -Date: 2009-04-27 - - Reverse the order for folder icons overrides - - Use the correct order for folder icons overrides, so that we can - keep track of things like "folder-visiting" or "folder-drag-accept". - Patch by Krzysztof Kosiński (#567254). - -M libnemo-private/nemo-file.c - -commit 43c9802d618bcb0d035b4fb0dea4807367d893ea -Author: Cosimo Cecchi -Date: 2009-04-27 - - Don't display accelerators in Tabs menu - - Set use_underline == FALSE for items in the "Tabs" menu, so that - folders with underscores in their names will be displayed properly - in the menu items (#580392). - -M src/nemo-navigation-window-menus.c - -commit 9c0dddfbaddfe251814ff473d9f0a734c385d931 -Author: Cosimo Cecchi -Date: 2009-04-27 - - Display the application icon in the popup menu - - If available, display the application icon next to the "Open with" - item in the file manager window menus (#546916). - -M src/file-manager/fm-directory-view.c - -commit fe4ca76584061215547edb55b8a0bab4cdb8e034 -Author: Cosimo Cecchi -Date: 2009-04-27 - - Fix DOAP file - - Add "mailto:" prefixes to email addresses in the DOAP file. - -M nemo.doap - -commit 7f404a39f63ceb8d906809c2092cecca7b785574 -Author: Ivar Smolin -Date: 2009-04-25 - - Updating Estonian translation - -M po/et.po - -commit cffb9cf70254086a3737b37e8fad786a6e6de414 -Author: Cosimo Cecchi -Date: 2009-04-23 - - Don't show autorun hints for Win32 software media - - Now that shared-mime-info supports "x-content/win32-software" vs - "x-content/unix-software", use this distinction to inhibit autorun - prompts/hints for media containing Win32 software (#524270). - -M libnemo-private/nemo-autorun.c -M src/nemo-window-manage-views.c - -commit 7f74d06e270d89b6de1a3f23fe3388830f2c25ab -Author: Olav Vitters -Date: 2009-04-23 - - doap: Add desktop category - -M nemo.doap - -commit 9f1c7d03c45298701320f5503e8ba1afec9fb523 -Author: Cosimo Cecchi -Date: 2009-04-23 - - Add shave to the autotools setup - - Use shave to have some more meaningful build messages. - It can be turned off by using 'make V=1'. - -M Makefile.am -M configure.in -A m4/Makefile.am -A m4/shave-libtool.in -A m4/shave.in -A m4/shave.m4 - -commit 06dda37076c6e5b222f868a46fe84c070a04d680 -Author: Cosimo Cecchi -Date: 2009-04-23 - - Move desktop files into data/ - - Move desktop files into data/ subdirectory, so that they not clutter - the top source dir. - -M Makefile.am -M configure.in -M data/Makefile.am -R100 nemo-autorun-software.desktop.in.in -data/nemo-autorun-software.desktop.in.in -R100 nemo-browser.desktop.in.in -data/nemo-browser.desktop.in.in -R100 nemo-computer.desktop.in.in -data/nemo-computer.desktop.in.in -R100 nemo-file-management-properties.desktop.in.in -data/nemo-file-management-properties.desktop.in.in -R100 nemo-folder-handler.desktop.in.in -data/nemo-folder-handler.desktop.in.in -R100 nemo-home.desktop.in.in data/nemo-home.desktop.in.in -R100 nemo.desktop.in.in data/nemo.desktop.in.in - -commit dd10aa3618b195a127014ba033eb522f907077a1 -Author: Cosimo Cecchi -Date: 2009-04-23 - - Fix typo in ChangeLog generation script - - Set the right name for the start tag in the ChangeLog - generation script. - -M Makefile.am - -commit c0b27cce8d33ea8220434cf59b1e504fc9d2bcea -Author: Matej Urban -Date: 2009-04-22 - - Updated Slovenian translation - -M po/sl.po - -commit 9826f177cb72fc9f595356b773f51059bef6cd1e -Author: Andrew Walton -Date: 2009-04-22 - - Let forward/back mouse buttons work - - Install a handler to link forward/back mouse buttons to - forward/back actions in NemoNavigationWindow, with a preference - to set the right X button number in GConf. - - Signed-off-by: Cosimo Cecchi - -M libnemo-private/apps_nemo_preferences.schemas.in -M libnemo-private/nemo-global-preferences.c -M libnemo-private/nemo-global-preferences.h -M src/nemo-navigation-window.c - -commit b02ef0a7ec2d0de3064d322f5da103a8dfd492d3 -Author: Cosimo Cecchi -Date: 2009-04-22 - - Remove useless function - - Remove nemo_has_valid_failed_thumbnail(), as that's not used - anymore after the last commit. - -M libnemo-private/nemo-thumbnails.c -M libnemo-private/nemo-thumbnails.h - -commit 20f4389f7cd22bd001ebf17c0c3c459cca5483ad -Author: Matthias Clasen -Date: 2009-04-22 - - Avoid duplicate function call - - Don't call nemo_has_valid_failed_thumbnail, as - nemo_can_thumbnail will eventually call the same gnome_desktop - function (#574205). - - Signed-off-by: Cosimo Cecchi - -M libnemo-private/nemo-file.c - -commit 3ffebcdbf5b5ba7e6b018f542fdc39522a42d1b2 -Author: Cosimo Cecchi -Date: 2009-04-22 - - Remove some more GTK+ deprecated macros - - Remove some other bits (hopefully the last) of deprecated GTK+ macros. - -M src/nemo-history-sidebar.c - -commit c308f7f3e96094c4d5077655960a0910dbaa605c -Author: Cosimo Cecchi -Date: 2009-04-22 - - Remove other deprecated GTK+ symbols - - There were still some references to deprecated GTK+ symbols in some - files, or in some comments. Let's drop them all. - -M eel/eel-editable-label.c -M eel/eel-gdk-pixbuf-extensions.c -M libnemo-private/nemo-cell-renderer-text-ellipsized.h -M libnemo-private/nemo-directory.h -M libnemo-private/nemo-file.h -M libnemo-private/nemo-saved-search-file.h -M libnemo-private/nemo-undo-signal-handlers.c -M src/file-manager/fm-empty-view.c -M src/file-manager/fm-empty-view.h -M test/test-eel-background.c - -commit 4485d32d41f1519313ad49d43914bbd0b78d104b -Author: Jorge Gonzalez -Date: 2009-04-21 - - Updated Spanish translation - -M po/es.po - -commit 7da1601ba6288e48dc6ed3023de03fff04d20b2d -Author: Cosimo Cecchi -Date: 2009-04-21 - - Check for NULL when sorting columns - - Check for a NULL value of the order array when sorting the columns. - This might help when dealing with strange GConf setup issues - (#524341). - -M libnemo-private/nemo-column-utilities.c - -commit 3b5af96a5f41640d447f7215a758d4de4c0220fb -Author: Cosimo Cecchi -Date: 2009-04-21 - - Update EggSMClient from libegg - - Re-apply the reverted string freeze break commit now that we branched. - Don't check if the desktop file exists ourselves, as the Egg code will - take care of that itself. - Thanks to Christian Persch (#576619). - -M cut-n-paste-code/libegg/eggsmclient.c -M src/nemo-main.c - -commit 60e58366e06f42b03072e06a19f8adeece0ded6a -Author: Nelson Benitez -Date: 2009-04-21 - - Use g_timeout_add_seconds where appropriate - - Use g_timeout_add_seconds instead of g_timeout_add where appropriate. - Fix bug #574033. - - Signed-off-by: Cosimo Cecchi - -M libnemo-private/nemo-icon-container.c -M libnemo-private/nemo-thumbnails.c -M libnemo-private/nemo-tree-view-drag-dest.c -M libnemo-private/nemo-users-groups-cache.c -M src/file-manager/fm-desktop-icon-view.c -M src/file-manager/fm-icon-view.c -M src/file-manager/fm-list-view.c -M src/nemo-notes-viewer.c -M src/nemo-spatial-window.c - -commit 99e66a93605e056c80cebb4c3ac9b6b58167ad1c -Author: Matthias Clasen -Date: 2009-04-21 - - Avoid delays in background switching - - Don't delay background switching, so that users will immediately see - it changing when browsing the background list (#330168). - - Signed-off-by: Cosimo Cecchi - -M libnemo-private/nemo-directory-background.c - -commit 979d877c1803034be8a3ff69437974a1cfdbff30 -Author: Cosimo Cecchi -Date: 2009-04-21 - - Enforce {GDK,GTK}_DISABLE_DEPRECATED cflags - - Now that we build cleanly without deprecated symbols, widen the - deprecated check policy to GDK/GTK+. - -M configure.in - -commit b695c970182bbf19f2c38bf7405db506e7c23bb0 -Author: Cosimo Cecchi -Date: 2009-04-21 - - Remove deprecated GDK/GTK+ symbols - - Remove all uses of deprecated GDK and GTK+ symbols, replacing them - with the currently supported equivalents. - Based on a patch from Tal Benavidor (#565038). - -M eel/eel-background-box.h -M eel/eel-background.c -M eel/eel-background.h -M eel/eel-canvas-rect-ellipse.h -M eel/eel-canvas.c -M eel/eel-canvas.h -M eel/eel-debug-drawing.c -M eel/eel-editable-label.c -M eel/eel-editable-label.h -M eel/eel-gtk-extensions.c -M eel/eel-gtk-extensions.h -M eel/eel-gtk-macros.h -M eel/eel-image-table.c -M eel/eel-image-table.h -M eel/eel-labeled-image.h -M eel/eel-stock-dialogs.c -M eel/eel-types.c -M eel/eel-wrap-table.c -M eel/eel-wrap-table.h -M libnemo-private/nemo-autorun.c -M libnemo-private/nemo-bookmark.h -M libnemo-private/nemo-cell-renderer-pixbuf-emblem.h -M libnemo-private/nemo-clipboard-monitor.h -M libnemo-private/nemo-column-chooser.h -M libnemo-private/nemo-desktop-directory-file.h -M libnemo-private/nemo-desktop-directory.h -M libnemo-private/nemo-desktop-icon-file.h -M libnemo-private/nemo-desktop-link-monitor.h -M libnemo-private/nemo-desktop-link.h -M libnemo-private/nemo-directory.h -M libnemo-private/nemo-dnd.c -M libnemo-private/nemo-entry.h -M libnemo-private/nemo-file.h -M libnemo-private/nemo-horizontal-splitter.h -M libnemo-private/nemo-icon-canvas-item.h -M libnemo-private/nemo-icon-container.h -M libnemo-private/nemo-keep-last-vertical-box.h -M libnemo-private/nemo-merged-directory.h -M libnemo-private/nemo-metafile.h -M libnemo-private/nemo-open-with-dialog.c -M libnemo-private/nemo-progress-info.c -M libnemo-private/nemo-search-directory-file.h -M libnemo-private/nemo-search-directory.h -M libnemo-private/nemo-trash-monitor.h -M libnemo-private/nemo-undo-manager.h -M libnemo-private/nemo-undo-transaction.h -M libnemo-private/nemo-vfs-directory.h -M libnemo-private/nemo-vfs-file.h -M src/file-manager/fm-desktop-icon-view.c -M src/file-manager/fm-desktop-icon-view.h -M src/file-manager/fm-directory-view.c -M src/file-manager/fm-directory-view.h -M src/file-manager/fm-icon-container.h -M src/file-manager/fm-icon-view.c -M src/file-manager/fm-icon-view.h -M src/file-manager/fm-list-model.h -M src/file-manager/fm-list-view.c -M src/file-manager/fm-list-view.h -M src/file-manager/fm-properties-window.c -M src/file-manager/fm-properties-window.h -M src/file-manager/fm-tree-model.h -M src/file-manager/fm-tree-view.c -M src/file-manager/fm-tree-view.h -M src/nemo-application.h -M src/nemo-bookmark-list.h -M src/nemo-desktop-window.h -M src/nemo-emblem-sidebar.c -M src/nemo-emblem-sidebar.h -M src/nemo-history-sidebar.c -M src/nemo-history-sidebar.h -M src/nemo-image-properties-page.h -M src/nemo-information-panel.c -M src/nemo-information-panel.h -M src/nemo-location-bar.h -M src/nemo-location-entry.h -M src/nemo-navigation-bar.h -M src/nemo-navigation-window.h -M src/nemo-notes-viewer.c -M src/nemo-notes-viewer.h -M src/nemo-places-sidebar.c -M src/nemo-places-sidebar.h -M src/nemo-property-browser.h -M src/nemo-query-editor.h -M src/nemo-search-bar.c -M src/nemo-search-bar.h -M src/nemo-side-pane.h -M src/nemo-sidebar-title.h -M src/nemo-spatial-window.c -M src/nemo-spatial-window.h -M src/nemo-throbber.h -M src/nemo-window-menus.c -M src/nemo-window.h -M src/nemo-zoom-control.h -M test/test-nemo-directory-async.c -M test/test.c - -commit e2f711533e1008b62c9db70fb3bcf877191866d4 -Author: Alexander Larsson -Date: 2009-04-20 - - Fix broken pofile - - Lots of duplicated strings that makes msgfmt -c check fail. - -M po/ha.po - -commit 42bea16f00e93441a601f3279702d1bd60f07592 -Author: Alexander Larsson -Date: 2009-04-20 - - Comment out invalid pofile strings - - msgfmt -c bs.po said: - bs.po:3783: number of format specifications in 'msgid' and 'msgstr[0]' - does not match msgfmt: found 1 fatal error - which meant branching was impossible - -M po/bs.po - -commit f9585e4f4825ab1114cd4185ec8cdca9360da3c9 -Author: Jonathon Jongsma -Date: 2009-04-20 - - Allow shift+return during typeahead find - - Allow shift+rename to close parent + open when typeahead find window - is active. (#579551) - -M libnemo-private/nemo-icon-container.c - -commit 1f9ed9598a3324278eaef2153b95f22962dd2558 -Author: Khaled Hosny -Date: 2009-04-17 - - Updated Arabic translation - -M po/ar.po - -commit 9c4c0254d4788ac1d7e10df30fc74cc2d64c5d09 -Author: Alexander Larsson -Date: 2009-04-17 - - Preload /desktop/gnome/background from gconf - - We'll be reading a lot of background settings, so we want to preload - (and thus also add_dir) the gconf directory. (Fixes #578993) - -M libnemo-private/nemo-global-preferences.c - -commit e61a17f3445be7c77f092b717f1e64a1231e01c0 -Author: Cosimo Cecchi -Date: 2009-04-17 - - Fix a copy/paste typo. - -M README.commits - -commit bad7749c6cc88009ba5e0f9f96f9ab418a1f7193 -Author: Alexander Larsson -Date: 2009-04-17 - - Add .gitignore files - -A .gitignore -A data/.gitignore -A docs/reference/.gitignore -A docs/reference/libnemo-extension/.gitignore -A -docs/reference/libnemo-extension/libnemo-extension-overrides.txt -A -docs/reference/libnemo-extension/libnemo-extension-sections.txt -A eel/.gitignore -A libnemo-private/.gitignore -A po/.gitignore -A src/.gitignore - -commit 8acf8338c97387af3b93793760a3b1d64e752a2c -Author: Alexander Larsson -Date: 2009-04-17 - - Add makefile rules to generate ChangeLog - -M Makefile.am - -commit 3f4a5c97a23acbca33836d14edb2b5c8798a6dc5 -Author: Alexander Larsson -Date: 2009-04-17 - - Add doap file with name, description and developer info - -A nemo.doap - -commit a867c35e835128647396ad5b2df498c189944ca4 -Author: Alexander Larsson -Date: 2009-04-17 - - Add README.commits, update HACKING for git - -M HACKING -M Makefile.am -A README.commits - -commit 4a78eabc71df08bdf3d71877c3b3cb62d1b80bff -Author: Alexander Larsson -Date: 2009-04-17 - - Move ChangeLog to ChangeLog-20090417 - - With the switch to git we're moving to an autogenerated ChangeLog. - -R099 ChangeLog ChangeLog-20090417 -M Makefile.am - -commit 6a8673c7806ad7a014feb9bc780e0dfcadb5d71c -Author: Alexander Larsson -Date: 2009-04-16 - - Reversed check in last commit, fixed. - - 2009-04-16 Alexander Larsson - - * configure.in: - Reversed check in last commit, fixed. - - - - svn path=/trunk/; revision=15188 - -M ChangeLog -M configure.in - -commit ab550c223368c4d0bb9b7133e477430a38fe96d6 -Author: Alexander Larsson -Date: 2009-04-16 - - Bug 578983 – set_more_warnings check of WARNING_CFLAGS doesn't work - - 2009-04-16 Alexander Larsson - - Bug 578983 – set_more_warnings check of WARNING_CFLAGS - doesn't work - - * configure.in: - Actually check the options. - - - svn path=/trunk/; revision=15187 - -M ChangeLog -M configure.in - -commit 9870d42d6709fea0fd3c50d00f5a491902be27e5 -Author: Alexander Larsson -Date: 2009-04-16 - - Set typeahead column to the name column. - - 2009-04-16 Alexander Larsson - - * src/nemo-places-sidebar.c (nemo_places_sidebar_init): - Set typeahead column to the name column. - - - svn path=/trunk/; revision=15186 - -M ChangeLog -M src/nemo-places-sidebar.c - -commit 3125825a1cb10f38779b926050d4030f45a6003a -Author: Alexander Larsson -Date: 2009-04-16 - - Bug 578468 – Change of font DPI setting does not effect desktop - icons - - 2009-04-16 Alexander Larsson - - Bug 578468 – Change of font DPI setting does not effect - desktop icons - - * libnemo-private/nemo-icon-canvas-item.c: - (nemo_icon_canvas_item_invalidate_label_size): - Invalidate pango layouts since the context could have changed - For instance the font DPI. - - - - svn path=/trunk/; revision=15185 - -M ChangeLog -M libnemo-private/nemo-icon-canvas-item.c - -commit 4323f9b47229312a60093587724e1aa102a8c926 -Author: Alexander Larsson -Date: 2009-04-16 - - Bug 579086 – Excessive white-space on right-hand side in icon view - - 2009-04-16 Alexander Larsson - - Bug 579086 – Excessive white-space on right-hand side in - icon view - - * libnemo-private/nemo-icon-container.c: - (nemo_icon_container_update_scroll_region): - When using at allocation->width, take zoom into account - - - svn path=/trunk/; revision=15184 - -M ChangeLog -M libnemo-private/nemo-icon-container.c - -commit 649c39c7d8f6b3162e6f9142f3201eb254f26c8f -Author: Alexander Larsson -Date: 2009-04-13 - - Post release version bump - - 2009-04-13 Alexander Larsson - - * configure.in: - Post release version bump - - === nemo 2.26.2 === - - - svn path=/trunk/; revision=15183 - -M ChangeLog -M configure.in -M eel/ChangeLog -M po/ChangeLog + -- Clement Lefebvre Wed, 18 Jul 2012 18:43:00 +0000