mirror of
https://github.com/gryf/wmaker.git
synced 2025-12-19 20:38:08 +01:00
A few small fixes before 0.52.0 release.
This commit is contained in:
21
NEWS
21
NEWS
@@ -12,11 +12,12 @@ Added Appearance/Texture editing capability in WPrefs. Workspace background
|
||||
selection is not yet finished.
|
||||
|
||||
|
||||
New Themes
|
||||
----------
|
||||
Themes
|
||||
------
|
||||
|
||||
Added 2 new cool themes (actually I added in 0.51.1, but forgot
|
||||
to put it here...) from largo (LeetWM) and BadlandZ (STEP2000).
|
||||
Removed all themes from the source tree, and moved them in a separate package.
|
||||
You can download the new package from the same place as this package.
|
||||
Look after WindowMaker-themes.tar.gz
|
||||
|
||||
|
||||
Full Screen Maximization
|
||||
@@ -29,6 +30,18 @@ for programs that must use the whole screen, like games or things
|
||||
like presentation programs.
|
||||
|
||||
|
||||
get-wraster-flags script change
|
||||
-------------------------------
|
||||
|
||||
The name of the options passed to get-wraster-flags changed, to allow a better
|
||||
name compatibility with the naming conventions used by other software.
|
||||
The name change was as follows:
|
||||
--lflags was changed in --ldflags
|
||||
To allow backward compatibility, with already written software, the old
|
||||
--lflags option is still recognized, but you are encouraged to move the the
|
||||
new --ldflags.
|
||||
|
||||
|
||||
--- 0.51.1
|
||||
|
||||
KDE Application Menu script
|
||||
|
||||
@@ -202,7 +202,7 @@ DIST_COMMON = README ChangeLog Makefile.am Makefile.in TODO
|
||||
|
||||
DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST)
|
||||
|
||||
TAR = gtar
|
||||
TAR = tar
|
||||
GZIP_ENV = --best
|
||||
SOURCES = $(libWINGs_a_SOURCES) $(wtest_SOURCES) $(wmquery_SOURCES) $(wmfile_SOURCES) $(fontl_SOURCES) $(testmywidget_SOURCES) $(testcolorpanel_SOURCES) $(testnot_SOURCES)
|
||||
OBJECTS = $(libWINGs_a_OBJECTS) $(wtest_OBJECTS) $(wmquery_OBJECTS) $(wmfile_OBJECTS) $(fontl_OBJECTS) $(testmywidget_OBJECTS) $(testcolorpanel_OBJECTS) $(testnot_OBJECTS)
|
||||
|
||||
@@ -52,7 +52,7 @@ typedef struct W_PopUpButton {
|
||||
#define MENU_BLINK_DELAY 60000
|
||||
#define MENU_BLINK_COUNT 2
|
||||
|
||||
#define SCROLL_DELAY 30
|
||||
#define SCROLL_DELAY 10
|
||||
|
||||
|
||||
W_ViewProcedureTable _PopUpButtonViewProcedures = {
|
||||
|
||||
@@ -144,7 +144,7 @@ DIST_COMMON = README Makefile.am Makefile.in
|
||||
|
||||
DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST)
|
||||
|
||||
TAR = gtar
|
||||
TAR = tar
|
||||
GZIP_ENV = --best
|
||||
SOURCES = $(WPrefs_SOURCES)
|
||||
OBJECTS = $(WPrefs_OBJECTS)
|
||||
|
||||
@@ -1571,7 +1571,7 @@ testOKButton(WMWidget *self, void *data)
|
||||
RImage *image;
|
||||
|
||||
TexturePanel *panel = (TexturePanel*)data;
|
||||
// test = GetTexturePanelTextureString(panel);
|
||||
/* test = GetTexturePanelTextureString(panel); */
|
||||
|
||||
wwarning(test);
|
||||
|
||||
@@ -1581,7 +1581,7 @@ testOKButton(WMWidget *self, void *data)
|
||||
XMapRaised(dpy, win);
|
||||
XFlush(dpy);
|
||||
|
||||
// image = RenderTexturePanelTexture(panel, 250, 250);
|
||||
/* image = RenderTexturePanelTexture(panel, 250, 250); */
|
||||
|
||||
RConvertImage(WMScreenRContext(WMWidgetScreen(panel->okB)), image, &pix);
|
||||
|
||||
|
||||
@@ -165,7 +165,7 @@ main(int argc, char **argv)
|
||||
wfatal(_("could not open display %s"), XDisplayName(display_name));
|
||||
exit(0);
|
||||
}
|
||||
#if 1
|
||||
#if 0
|
||||
XSynchronize(dpy, 1);
|
||||
#endif
|
||||
scr = WMCreateScreen(dpy, DefaultScreen(dpy));
|
||||
|
||||
@@ -106,7 +106,7 @@ DIST_COMMON = README Makefile.am Makefile.in
|
||||
|
||||
DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST)
|
||||
|
||||
TAR = gtar
|
||||
TAR = tar
|
||||
GZIP_ENV = --best
|
||||
all: all-redirect
|
||||
.SUFFIXES:
|
||||
|
||||
4
configure
vendored
4
configure
vendored
@@ -5685,7 +5685,7 @@ WCFLAGS="-I\$prefix/include $inc_search_path"
|
||||
WLFLAGS="-L\$exec_prefix/lib $lib_search_path"
|
||||
WLIBS="-lwraster $GFXLIBS $XLIBS -lm"
|
||||
|
||||
usage="Usage: get-wraster-flags #lp#--cflags#rp# #lp#--lflags#rp# #lp#--libs#rp#"
|
||||
usage="Usage: get-wraster-flags #lp#--cflags#rp# #lp#--ldflags#rp# #lp#--libs#rp#"
|
||||
|
||||
if test \$# -eq 0; then
|
||||
echo "\${usage}" 1>&2
|
||||
@@ -5697,7 +5697,7 @@ while test \$# -gt 0; do
|
||||
--cflags)
|
||||
echo \$WCFLAGS
|
||||
;;
|
||||
--lflags)
|
||||
--ldflags|--lflags)
|
||||
echo \$WLFLAGS
|
||||
;;
|
||||
--libs)
|
||||
|
||||
@@ -783,7 +783,7 @@ WCFLAGS="-I\$prefix/include $inc_search_path"
|
||||
WLFLAGS="-L\$exec_prefix/lib $lib_search_path"
|
||||
WLIBS="-lwraster $GFXLIBS $XLIBS -lm"
|
||||
|
||||
usage="Usage: get-wraster-flags #lp#--cflags#rp# #lp#--lflags#rp# #lp#--libs#rp#"
|
||||
usage="Usage: get-wraster-flags #lp#--cflags#rp# #lp#--ldflags#rp# #lp#--libs#rp#"
|
||||
|
||||
if test \$# -eq 0; then
|
||||
echo "\${usage}" 1>&2
|
||||
@@ -795,7 +795,7 @@ while test \$# -gt 0; do
|
||||
--cflags)
|
||||
echo \$WCFLAGS
|
||||
;;
|
||||
--lflags)
|
||||
--ldflags|--lflags)
|
||||
echo \$WLFLAGS
|
||||
;;
|
||||
--libs)
|
||||
|
||||
@@ -104,7 +104,7 @@ DIST_COMMON = Makefile.am Makefile.in
|
||||
|
||||
DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST)
|
||||
|
||||
TAR = gtar
|
||||
TAR = tar
|
||||
GZIP_ENV = --best
|
||||
all: all-redirect
|
||||
.SUFFIXES:
|
||||
|
||||
@@ -114,7 +114,7 @@ DIST_COMMON = README Makefile.am Makefile.in
|
||||
|
||||
DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST)
|
||||
|
||||
TAR = gtar
|
||||
TAR = tar
|
||||
GZIP_ENV = --best
|
||||
all: all-redirect
|
||||
.SUFFIXES:
|
||||
|
||||
@@ -140,7 +140,7 @@ wconfig.h.in
|
||||
|
||||
DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST)
|
||||
|
||||
TAR = gtar
|
||||
TAR = tar
|
||||
GZIP_ENV = --best
|
||||
SOURCES = $(wmaker_SOURCES)
|
||||
OBJECTS = $(wmaker_OBJECTS)
|
||||
|
||||
@@ -337,7 +337,7 @@ listIconPaths(WMList *lPtr)
|
||||
/* do not sort, because the order implies the order of
|
||||
* directories searched */
|
||||
if (access(tmp, X_OK)==0)
|
||||
WMAddListItem(lPtr, tmp);
|
||||
WMAddListItem(lPtr, path);
|
||||
free(tmp);
|
||||
} while ((path=strtok(NULL, ":"))!=NULL);
|
||||
|
||||
|
||||
@@ -502,7 +502,7 @@ wManageWindow(WScreen *scr, Window window)
|
||||
Bool withdraw = False;
|
||||
|
||||
/* mutex. */
|
||||
// XGrabServer(dpy);
|
||||
/* XGrabServer(dpy); */
|
||||
XSync(dpy, False);
|
||||
/* make sure the window is still there */
|
||||
if (!XGetWindowAttributes(dpy, window, &wattribs)) {
|
||||
|
||||
@@ -125,7 +125,7 @@ DIST_COMMON = Makefile.am Makefile.in
|
||||
|
||||
DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST)
|
||||
|
||||
TAR = gtar
|
||||
TAR = tar
|
||||
GZIP_ENV = --best
|
||||
SOURCES = $(wtest_SOURCES)
|
||||
OBJECTS = $(wtest_OBJECTS)
|
||||
|
||||
@@ -186,7 +186,7 @@ DIST_COMMON = README Makefile.am Makefile.in
|
||||
|
||||
DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST)
|
||||
|
||||
TAR = gtar
|
||||
TAR = tar
|
||||
GZIP_ENV = --best
|
||||
SOURCES = $(wxcopy_SOURCES) $(wxpaste_SOURCES) $(wdwrite_SOURCES) $(getstyle_SOURCES) $(setstyle_SOURCES) $(seticons_SOURCES) $(geticonset_SOURCES) $(wmsetbg_SOURCES)
|
||||
OBJECTS = $(wxcopy_OBJECTS) $(wxpaste_OBJECTS) $(wdwrite_OBJECTS) $(getstyle_OBJECTS) $(setstyle_OBJECTS) $(seticons_OBJECTS) $(geticonset_OBJECTS) $(wmsetbg_OBJECTS)
|
||||
|
||||
@@ -1249,7 +1249,9 @@ main(int argc, char **argv)
|
||||
wfatal("could not open display");
|
||||
exit(1);
|
||||
}
|
||||
#if 0
|
||||
XSynchronize(dpy, 1);
|
||||
#endif
|
||||
|
||||
root = DefaultRootWindow(dpy);
|
||||
|
||||
|
||||
@@ -126,7 +126,7 @@ DIST_COMMON = COPYING.LIB Makefile.am Makefile.in
|
||||
|
||||
DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST)
|
||||
|
||||
TAR = gtar
|
||||
TAR = tar
|
||||
GZIP_ENV = --best
|
||||
SOURCES = $(libWMaker_a_SOURCES)
|
||||
OBJECTS = $(libWMaker_a_OBJECTS)
|
||||
|
||||
@@ -165,7 +165,7 @@ Makefile.in NEWS TODO alloca.c configure.in
|
||||
|
||||
DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST)
|
||||
|
||||
TAR = gtar
|
||||
TAR = tar
|
||||
GZIP_ENV = --best
|
||||
SOURCES = $(libwraster_la_SOURCES) $(testgrad_SOURCES) $(testdraw_SOURCES) $(view_SOURCES)
|
||||
OBJECTS = $(libwraster_la_OBJECTS) $(testgrad_OBJECTS) $(testdraw_OBJECTS) $(view_OBJECTS)
|
||||
|
||||
Reference in New Issue
Block a user