# HG changeset patch
# User Dan Pascu <[EMAIL PROTECTED]>
# Date 1145991564 25200
# Branch wm_0_92
# Node ID 2038d0f60239a70bb9685b2e830c8c4581b3347d
# Parent cc87d65fc6e2fbb90fca58062516dc3102911f01
- Improved Info panel display.
- Fixed missing library paths when linking some binaries on certain
platforms with a recent pkg-config
(transplanted from 8c5412f691933cc2e64f11abd67e5c90054d428d)
diff -r cc87d65fc6e2 -r 2038d0f60239 ChangeLog
--- a/ChangeLog Sun Jan 22 12:33:19 2006 -0800
+++ b/ChangeLog Tue Apr 25 11:59:24 2006 -0700
@@ -30,6 +30,10 @@
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 <[EMAIL PROTECTED]>)
+- 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 -r cc87d65fc6e2 -r 2038d0f60239 src/dialog.c
--- a/src/dialog.c Sun Jan 22 12:33:19 2006 -0800
+++ b/src/dialog.c Tue Apr 25 11:59:24 2006 -0700
@@ -862,8 +862,8 @@
#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 @@
Window parent;
WWindow *wwin;
char **strl;
- int i, width=50, sepWidth;
+ int i, width=50, sepHeight;
char *visuals[] = {
"StaticGray",
"GrayScale",
@@ -1266,13 +1266,13 @@
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 @@
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 -r cc87d65fc6e2 -r 2038d0f60239 util/Makefile.am
--- a/util/Makefile.am Sun Jan 22 12:33:19 2006 -0800
+++ b/util/Makefile.am Tue Apr 25 11:59:24 2006 -0700
@@ -55,7 +55,7 @@
wmsetbg_LDADD = \
$(top_builddir)/WINGs/libWINGs.a \
$(top_builddir)/wrlib/libwraster.la \
- @XLIBS@ @XFTLIBS@ @INTLIBS@ @DLLIBS@
+ @XLFLAGS@ @XLIBS@ @XFTLIBS@ @INTLIBS@ @DLLIBS@
CLEANFILES = wmaker.inst
--
To unsubscribe, send mail to [EMAIL PROTECTED]