Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package nemo for openSUSE:Factory checked in at 2023-01-14 20:31:50 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/nemo (Old) and /work/SRC/openSUSE:Factory/.nemo.new.32243 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "nemo" Sat Jan 14 20:31:50 2023 rev:48 rq:1058314 version:5.6.1 Changes: -------- --- /work/SRC/openSUSE:Factory/nemo/nemo.changes 2022-12-06 14:23:45.329821263 +0100 +++ /work/SRC/openSUSE:Factory/.nemo.new.32243/nemo.changes 2023-01-14 20:32:03.973336348 +0100 @@ -1,0 +2,7 @@ +Mon Jan 2 19:28:14 UTC 2023 - Dirk Müller <dmuel...@suse.com> + +- update to 5.6.1: + * pathbar/entry: Give entry-preferred mode the same persistent behavior as + pathbar-preferred. + +------------------------------------------------------------------- Old: ---- nemo-5.6.0.tar.gz New: ---- nemo-5.6.1.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ nemo.spec ++++++ --- /var/tmp/diff_new_pack.MsQEKC/_old 2023-01-14 20:32:04.601340057 +0100 +++ /var/tmp/diff_new_pack.MsQEKC/_new 2023-01-14 20:32:04.605340081 +0100 @@ -1,7 +1,7 @@ # # spec file for package nemo # -# Copyright (c) 2022 SUSE LLC +# Copyright (c) 2023 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -20,7 +20,7 @@ %define sover 1 %define typelib typelib-1_0-Nemo-3_0 Name: nemo -Version: 5.6.0 +Version: 5.6.1 Release: 0 Summary: File browser for Cinnamon License: GPL-2.0-or-later ++++++ nemo-5.6.0.tar.gz -> nemo-5.6.1.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/nemo-5.6.0/debian/changelog new/nemo-5.6.1/debian/changelog --- old/nemo-5.6.0/debian/changelog 2022-11-21 11:36:51.000000000 +0100 +++ new/nemo-5.6.1/debian/changelog 2022-12-13 16:14:47.000000000 +0100 @@ -1,3 +1,10 @@ +nemo (5.6.1) vera; urgency=medium + + [ Michael Webster ] + * pathbar/entry: Give entry-preferred mode the same persistent behavior as pathbar-preferred. + + -- Clement Lefebvre <r...@linuxmint.com> Tue, 13 Dec 2022 15:14:28 +0000 + nemo (5.6.0) vera; urgency=medium [ veractor ] diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/nemo-5.6.0/meson.build new/nemo-5.6.1/meson.build --- old/nemo-5.6.0/meson.build 2022-11-21 11:36:51.000000000 +0100 +++ new/nemo-5.6.1/meson.build 2022-12-13 16:14:47.000000000 +0100 @@ -1,7 +1,7 @@ # Meson build file # https://github.com/linuxmint/nemo -project('nemo', 'c', version: '5.6.0', +project('nemo', 'c', version: '5.6.1', meson_version: '>=0.41.0' ) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/nemo-5.6.0/src/nemo-toolbar.c new/nemo-5.6.1/src/nemo-toolbar.c --- old/nemo-5.6.0/src/nemo-toolbar.c 2022-11-21 11:36:51.000000000 +0100 +++ new/nemo-5.6.1/src/nemo-toolbar.c 2022-12-13 16:14:47.000000000 +0100 @@ -163,8 +163,7 @@ widgetitem = self->priv->toggle_location_button; icon_toolbar = g_settings_get_boolean (nemo_preferences, NEMO_PREFERENCES_SHOW_EDIT_ICON_TOOLBAR); - gboolean entry_preferred = g_settings_get_boolean (nemo_preferences, NEMO_PREFERENCES_SHOW_LOCATION_ENTRY); - if (!icon_toolbar || entry_preferred) { gtk_widget_hide (widgetitem); } + if ( icon_toolbar == FALSE ) { gtk_widget_hide (widgetitem); } else {gtk_widget_show (GTK_WIDGET(widgetitem));} widgetitem = self->priv->icon_view_button; diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/nemo-5.6.0/src/nemo-window-menus.c new/nemo-5.6.1/src/nemo-window-menus.c --- old/nemo-5.6.0/src/nemo-window-menus.c 2022-11-21 11:36:51.000000000 +0100 +++ new/nemo-5.6.1/src/nemo-window-menus.c 2022-12-13 16:14:47.000000000 +0100 @@ -927,7 +927,7 @@ NemoWindowPane *pane, gboolean from_accel_or_menu) { - gboolean current_view, temp_toolbar_visible, default_toolbar_visible, grab_focus_only, already_has_focus, entry_preferred; + gboolean current_view, temp_toolbar_visible, default_toolbar_visible, grab_focus_only, already_has_focus; GtkToggleAction *button_action; GtkActionGroup *action_group; @@ -936,9 +936,8 @@ default_toolbar_visible = g_settings_get_boolean (nemo_window_state, NEMO_WINDOW_STATE_START_WITH_TOOLBAR); already_has_focus = nemo_location_bar_has_focus (NEMO_LOCATION_BAR (pane->location_bar)); - entry_preferred = g_settings_get_boolean (nemo_preferences, NEMO_PREFERENCES_SHOW_LOCATION_ENTRY); - grab_focus_only = from_accel_or_menu && (pane->last_focus_widget == NULL || !already_has_focus || entry_preferred) && current_view; + grab_focus_only = from_accel_or_menu && (pane->last_focus_widget == NULL || !already_has_focus) && current_view; if ((temp_toolbar_visible || default_toolbar_visible) && !grab_focus_only) { nemo_toolbar_set_show_location_entry (NEMO_TOOLBAR (pane->tool_bar), !current_view); diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/nemo-5.6.0/src/nemo-window-pane.c new/nemo-5.6.1/src/nemo-window-pane.c --- old/nemo-5.6.0/src/nemo-window-pane.c 2022-11-21 11:36:51.000000000 +0100 +++ new/nemo-5.6.1/src/nemo-window-pane.c 2022-12-13 16:14:47.000000000 +0100 @@ -219,16 +219,9 @@ { GtkAction *location; - if (g_settings_get_boolean(nemo_preferences, NEMO_PREFERENCES_SHOW_LOCATION_ENTRY)) { - nemo_window_pane_ensure_location_bar (pane); - nemo_window_pane_sync_location_widgets (pane); - - nemo_location_bar_activate (NEMO_LOCATION_BAR (pane->location_bar)); - return; - } + location = gtk_action_group_get_action (pane->action_group, + NEMO_ACTION_TOGGLE_LOCATION); - location = gtk_action_group_get_action (pane->action_group, - NEMO_ACTION_TOGGLE_LOCATION); gtk_toggle_action_set_active (GTK_TOGGLE_ACTION (location), FALSE); nemo_window_pane_hide_temporary_bars (pane);