Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package libpanel for openSUSE:Factory checked in at 2022-11-07 13:52:17 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/libpanel (Old) and /work/SRC/openSUSE:Factory/.libpanel.new.1597 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "libpanel" Mon Nov 7 13:52:17 2022 rev:3 rq:1034155 version:1.0.2 Changes: -------- --- /work/SRC/openSUSE:Factory/libpanel/libpanel.changes 2022-09-29 18:12:50.179194203 +0200 +++ /work/SRC/openSUSE:Factory/.libpanel.new.1597/libpanel.changes 2022-11-07 13:52:26.316053553 +0100 @@ -1,0 +2,7 @@ +Thu Nov 3 11:09:32 UTC 2022 - Bj??rn Lie <[email protected]> + +- Update to version 1.0.2: + + CSS improvements for backdrop. + + Block tabbar from handling ctrl+home and similar shortcuts. + +------------------------------------------------------------------- Old: ---- libpanel-1.0.1.tar.xz New: ---- libpanel-1.0.2.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ libpanel.spec ++++++ --- /var/tmp/diff_new_pack.GJ7Nhe/_old 2022-11-07 13:52:26.828056431 +0100 +++ /var/tmp/diff_new_pack.GJ7Nhe/_new 2022-11-07 13:52:26.832056453 +0100 @@ -19,7 +19,7 @@ %define libname %{name}1-1 Name: libpanel -Version: 1.0.1 +Version: 1.0.2 Release: 0 Summary: IDE paneling library for GTK License: LGPL-3.0-or-later ++++++ libpanel-1.0.1.tar.xz -> libpanel-1.0.2.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libpanel-1.0.1/NEWS new/libpanel-1.0.2/NEWS --- old/libpanel-1.0.1/NEWS 2022-09-27 07:10:00.000000000 +0200 +++ new/libpanel-1.0.2/NEWS 2022-11-02 18:11:50.000000000 +0100 @@ -1,3 +1,9 @@ +libpanel 1.0.2 +============== + + * CSS improvements for backdrop + * Block tabbar from handling ctrl+home and similar shortcuts + libpanel 1.0.1 ============== diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libpanel-1.0.1/meson.build new/libpanel-1.0.2/meson.build --- old/libpanel-1.0.1/meson.build 2022-09-27 07:10:00.000000000 +0200 +++ new/libpanel-1.0.2/meson.build 2022-11-02 18:11:50.000000000 +0100 @@ -1,5 +1,5 @@ project('libpanel', 'c', - version: '1.0.1', + version: '1.0.2', meson_version: '>= 0.60', default_options: [ 'warning_level=2', 'c_std=gnu18' ], ) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libpanel-1.0.1/src/panel-frame-tab-bar.c new/libpanel-1.0.2/src/panel-frame-tab-bar.c --- old/libpanel-1.0.1/src/panel-frame-tab-bar.c 2022-09-27 07:10:00.000000000 +0200 +++ new/libpanel-1.0.2/src/panel-frame-tab-bar.c 2022-11-02 18:11:50.000000000 +0100 @@ -28,6 +28,12 @@ #include "panel-frame-tab-bar.h" #include "panel-widget.h" +#define REMOVED_SHORTCUTS \ + (ADW_TAB_VIEW_SHORTCUT_CONTROL_HOME \ + | ADW_TAB_VIEW_SHORTCUT_CONTROL_SHIFT_HOME \ + | ADW_TAB_VIEW_SHORTCUT_CONTROL_END \ + | ADW_TAB_VIEW_SHORTCUT_CONTROL_SHIFT_END) + struct _PanelFrameTabBar { GtkWidget parent_instance; @@ -95,6 +101,10 @@ if (self->frame) { + AdwTabView *tab_view = _panel_frame_get_tab_view (self->frame); + + adw_tab_view_add_shortcuts (tab_view, REMOVED_SHORTCUTS); + g_signal_handlers_disconnect_by_func (self->frame, G_CALLBACK (on_notify_closeable_cb), self); @@ -111,6 +121,8 @@ AdwTabView *tab_view = _panel_frame_get_tab_view (self->frame); GMenuModel *menu_model = _panel_frame_get_tab_menu (self->frame); + adw_tab_view_remove_shortcuts (tab_view, REMOVED_SHORTCUTS); + g_signal_connect_object (self->frame, "notify::closeable", G_CALLBACK (on_notify_closeable_cb), diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libpanel-1.0.1/src/stylesheet.css new/libpanel-1.0.2/src/stylesheet.css --- old/libpanel-1.0.1/src/stylesheet.css 2022-09-27 07:10:00.000000000 +0200 +++ new/libpanel-1.0.2/src/stylesheet.css 2022-11-02 18:11:50.000000000 +0100 @@ -65,6 +65,9 @@ background: @panel_bg_color; color: @panel_fg_color; } +panelpaned panelframe panelframeswitcher:backdrop { + color: alpha(currentColor, .5); +} panelpaned.horizontal panelframe panelframeswitcher { padding: 2px; min-width: 40px; @@ -240,6 +243,9 @@ border-bottom: 1px solid alpha(@borders,.6); min-height: 44px; } +panelframe panelframetabbar:backdrop { + color: alpha(currentColor, .5); +} panelframe panelframetabbar > overlay > box.focus-handle, paneldockchild.center panelgrid > panelpaned > panelresizer:first-child:last-child > panelgridcolumn > panelpaned panelresizer:first-child:last-child panelframetabbar box.focus-handle { min-height: 2px;
