This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project wmaker-crm.git.

The branch, next has been updated
       via  58e8b089afd8be882954f45bebe5abdeaca4ada2 (commit)
       via  d94c8fa6ef807542c1bd601137364f8f379b6eab (commit)
       via  6c8396cd91744d07af8040c605bbecc9f2dec018 (commit)
      from  b964a5498e0a19e46ba78c0d357032405e44fd08 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://repo.or.cz/w/wmaker-crm.git/commit/58e8b089afd8be882954f45bebe5abdeaca4ada2

commit 58e8b089afd8be882954f45bebe5abdeaca4ada2
Author: David Maciejak <[email protected]>
Date:   Sat Aug 16 23:52:05 2014 +0800

    wmaker: update drag-nd-drop label related
    
    This patch is updating the drag and drop labels
    from docked app settings window. As i am not sure common users
    are aware of what 'DND' means.

diff --git a/src/dockedapp.c b/src/dockedapp.c
index 6a84afc6..a2002bc5 100644
--- a/src/dockedapp.c
+++ b/src/dockedapp.c
@@ -300,7 +300,7 @@ void ShowDockAppSettingsPanel(WAppIcon * aicon)
        WMMapSubwidgets(panel->pasteCommandFrame);
 
        panel->dndCommandFrame = WMCreateFrame(vbox);
-       WMSetFrameTitle(panel->dndCommandFrame, _("Command for files dropped 
with DND"));
+       WMSetFrameTitle(panel->dndCommandFrame, _("Command for dragged and 
dropped files"));
        WMAddBoxSubview(vbox, WMWidgetView(panel->dndCommandFrame), False, 
True, 70, 70, 5);
 
        panel->dndCommandField = WMCreateTextField(panel->dndCommandFrame);
@@ -315,7 +315,7 @@ void ShowDockAppSettingsPanel(WAppIcon * aicon)
        WMSetLabelText(panel->dndCommandLabel, _("%d will be replaced with the 
file name"));
 #else
        WMSetTextFieldEditable(panel->dndCommandField, False);
-       WMSetLabelText(panel->dndCommandLabel, _("DND support was not compiled 
in"));
+       WMSetLabelText(panel->dndCommandLabel, _("XDnD support was not compiled 
in"));
 
        WMSetFrameTitleColor(panel->dndCommandFrame, 
WMDarkGrayColor(scr->wmscreen));
        WMSetLabelTextColor(panel->dndCommandLabel, 
WMDarkGrayColor(scr->wmscreen));

http://repo.or.cz/w/wmaker-crm.git/commit/d94c8fa6ef807542c1bd601137364f8f379b6eab

commit d94c8fa6ef807542c1bd601137364f8f379b6eab
Author: David Maciejak <[email protected]>
Date:   Sat Aug 16 23:57:56 2014 +0800

    wmaker: unset default app logo size
    
    This patch is setting the app logo max size to 128 as what can
    be found in the rest of the code, so the logo is not restricted
    anymore to the icon size defined by WPrefs.
    The goal is to solve the resize issue that appears when the logo
    is used in Info and Exit panel.

diff --git a/src/screen.c b/src/screen.c
index bb9d9b3f..250f9962 100644
--- a/src/screen.c
+++ b/src/screen.c
@@ -398,7 +398,7 @@ static void createPixmaps(WScreen * scr)
 
 void create_logo_image(WScreen *scr)
 {
-       RImage *image = get_icon_image(scr, "Logo", "WMPanel", 
wPreferences.icon_size);
+       RImage *image = get_icon_image(scr, "Logo", "WMPanel", 128);
 
        if (!image) {
                wwarning(_("could not load logo image for panels: %s"), 
RMessageForError(RErrorCode));

http://repo.or.cz/w/wmaker-crm.git/commit/6c8396cd91744d07af8040c605bbecc9f2dec018

commit 6c8396cd91744d07af8040c605bbecc9f2dec018
Author: David Maciejak <[email protected]>
Date:   Sun Aug 17 00:03:27 2014 +0800

    wmaker: switch back icon name to the window name when needed
    
    This patch is setting the icon name to the window name when
    _NET_WM_ICON_NAME is not provided by the app.

diff --git a/src/icon.c b/src/icon.c
index 1aa27ea7..e1321fae 100644
--- a/src/icon.c
+++ b/src/icon.c
@@ -328,10 +328,12 @@ void wIconChangeTitle(WIcon *icon, WWindow *wwin)
        if (icon->icon_name != NULL)
                XFree(icon->icon_name);
 
-       /* Set the new one, using two methods */
+       /* Set the new one, using two methods to identify
+       the icon name or switch back to window name */
        icon->icon_name = wNETWMGetIconName(wwin->client_win);
        if (!icon->icon_name)
-               wGetIconName(dpy, wwin->client_win, &icon->icon_name);
+               if (!wGetIconName(dpy, wwin->client_win, &icon->icon_name))
+                       icon->icon_name = wNETWMGetWindowName(wwin->client_win);
 }
 
 RImage *wIconValidateIconSize(RImage *icon, int max_size)

-----------------------------------------------------------------------

Summary of changes:
 src/dockedapp.c |    4 ++--
 src/icon.c      |    6 ++++--
 src/screen.c    |    2 +-
 3 files changed, 7 insertions(+), 5 deletions(-)


repo.or.cz automatic notification. Contact project admin [email protected]
if you want to unsubscribe, or site admin [email protected] if you receive
no reply.
-- 
wmaker-crm.git ("The Window Maker window manager")


-- 
To unsubscribe, send mail to [email protected].

Reply via email to