diff --git a/ChangeLog b/ChangeLog index e8c81961..21896606 100644 --- a/ChangeLog +++ b/ChangeLog @@ -30,6 +30,10 @@ Changes since version 0.92.0: applications cannot interoperate with GNUstep applications (which uses xdnd version 2). Xdnd version 4 and 5 are backwards compatible with version 3 though. (Sylvain Reynal ) +- Improved Info panel display. +- Fixed missing library paths when linking some binaries on certain + platforms with a recent pkg-config + Changes since version 0.91.0: ............................. diff --git a/src/dialog.c b/src/dialog.c index c71a8968..520e1c0f 100644 --- a/src/dialog.c +++ b/src/dialog.c @@ -862,8 +862,8 @@ typedef struct { #define COPYRIGHT_TEXT \ - "Copyright \xc2\xa9 1997-2005 Alfredo K. Kojima\n"\ - "Copyright \xc2\xa9 1998-2005 Dan Pascu" + "Copyright \xc2\xa9 1997-2006 Alfredo K. Kojima\n"\ + "Copyright \xc2\xa9 1998-2006 Dan Pascu" @@ -1221,7 +1221,7 @@ wShowInfoPanel(WScreen *scr) Window parent; WWindow *wwin; char **strl; - int i, width=50, sepWidth; + int i, width=50, sepHeight; char *visuals[] = { "StaticGray", "GrayScale", @@ -1266,13 +1266,13 @@ wShowInfoPanel(WScreen *scr) WMReleasePixmap(logo); } - sepWidth = 3; + sepHeight = 3; panel->name1L = WMCreateLabel(panel->win); - WMResizeWidget(panel->name1L, 240, 30 - sepWidth); - WMMoveWidget(panel->name1L, 100, 30); + WMResizeWidget(panel->name1L, 240, 30 + 2); + WMMoveWidget(panel->name1L, 100, 30 - 2 - sepHeight); name = "Lucida Sans,Comic Sans MS,URW Gothic L,Trebuchet MS" - ":bold:pixelsize=26:antialias=true"; + ":italic:pixelsize=28:antialias=true"; font = WMCreateFont(scr->wmscreen, name); strbuf = "Window Maker"; if (font) { @@ -1284,8 +1284,8 @@ wShowInfoPanel(WScreen *scr) WMSetLabelText(panel->name1L, strbuf); panel->lineF = WMCreateFrame(panel->win); - WMResizeWidget(panel->lineF, width, sepWidth); - WMMoveWidget(panel->lineF, 100+(240-width)/2, 60 - sepWidth); + WMResizeWidget(panel->lineF, width, sepHeight); + WMMoveWidget(panel->lineF, 100+(240-width)/2, 60 - sepHeight); WMSetFrameRelief(panel->lineF, WRSimple); WMSetWidgetBackgroundColor(panel->lineF, scr->black); diff --git a/util/Makefile.am b/util/Makefile.am index 008f89e5..c32327dd 100644 --- a/util/Makefile.am +++ b/util/Makefile.am @@ -55,7 +55,7 @@ wmsetup_LDADD = \ wmsetbg_LDADD = \ $(top_builddir)/WINGs/libWINGs.a \ $(top_builddir)/wrlib/libwraster.la \ - @XLIBS@ @XFTLIBS@ @INTLIBS@ @DLLIBS@ + @XLFLAGS@ @XLIBS@ @XFTLIBS@ @INTLIBS@ @DLLIBS@ CLEANFILES = wmaker.inst