mirror of
https://github.com/gryf/wmaker.git
synced 2025-12-21 13:28:05 +01:00
*** empty log message ***
This commit is contained in:
@@ -1,6 +1,8 @@
|
|||||||
Changes since version 0.64.0:
|
Changes since version 0.64.0:
|
||||||
.............................
|
.............................
|
||||||
- fix with gnome hints stuff, related to tasklist/bar
|
- fix with gnome hints stuff, related to tasklist/bar
|
||||||
|
- ripped off single appicon stuff
|
||||||
|
- added better appicon handling of apps of the same type
|
||||||
|
|
||||||
Changes since version 0.63.1:
|
Changes since version 0.63.1:
|
||||||
.............................
|
.............................
|
||||||
|
|||||||
9
NEWS
9
NEWS
@@ -2,7 +2,14 @@
|
|||||||
NEWS for veteran Window Maker users
|
NEWS for veteran Window Maker users
|
||||||
-----------------------------------
|
-----------------------------------
|
||||||
|
|
||||||
--- 0.64.0
|
--- 0.65.0
|
||||||
|
|
||||||
|
Removed --single-appicon patch and replaced it with a application
|
||||||
|
specific collapsing option. Check inspector panel and appicon menu.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
--- 0.63.2
|
||||||
|
|
||||||
No Polling of Configuration Files
|
No Polling of Configuration Files
|
||||||
---------------------------------
|
---------------------------------
|
||||||
|
|||||||
12
configure.in
12
configure.in
@@ -15,7 +15,7 @@ AC_INIT(src/WindowMaker.h)
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
AM_INIT_AUTOMAKE(WindowMaker, 0.64.0)
|
AM_INIT_AUTOMAKE(WindowMaker, 0.65.0)
|
||||||
|
|
||||||
AM_PROG_LIBTOOL
|
AM_PROG_LIBTOOL
|
||||||
|
|
||||||
@@ -808,16 +808,6 @@ wprefsdir=$with_appspath/WPrefs.app
|
|||||||
AC_SUBST(wprefsdir)
|
AC_SUBST(wprefsdir)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
dnl Enable single appicon per wm instance+class combo -cls
|
|
||||||
dnl =====================================================
|
|
||||||
AC_ARG_ENABLE(single-icon,
|
|
||||||
[ --enable-single-icon create one application icon per WM_INSTANCE+WM_CLASS],
|
|
||||||
if test "$enableval" = yes; then
|
|
||||||
AC_DEFINE(REDUCE_APPICONS)
|
|
||||||
fi
|
|
||||||
)
|
|
||||||
|
|
||||||
dnl Enable User Defined Menu thing
|
dnl Enable User Defined Menu thing
|
||||||
dnl ==================================
|
dnl ==================================
|
||||||
AC_ARG_ENABLE(usermenu,
|
AC_ARG_ENABLE(usermenu,
|
||||||
|
|||||||
@@ -500,11 +500,11 @@ wApplicationSetCollapse(WApplication *app, Bool flag)
|
|||||||
WApplication *list = app->main_window_desc->screen_ptr->wapp_list;
|
WApplication *list = app->main_window_desc->screen_ptr->wapp_list;
|
||||||
int index = 0;
|
int index = 0;
|
||||||
WWindow *wwin = app->main_window_desc;
|
WWindow *wwin = app->main_window_desc;
|
||||||
|
|
||||||
if (WFLAGP(app->main_window_desc, collapse_appicons) == flag)
|
if (WFLAGP(app->main_window_desc, collapse_appicons) == flag)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
|
|
||||||
while (list) {
|
while (list) {
|
||||||
if (strcmp(wwin->wm_instance,
|
if (strcmp(wwin->wm_instance,
|
||||||
list->main_window_desc->wm_instance) == 0
|
list->main_window_desc->wm_instance) == 0
|
||||||
@@ -515,7 +515,7 @@ wApplicationSetCollapse(WApplication *app, Bool flag)
|
|||||||
|
|
||||||
list = list->next;
|
list = list->next;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (app->app_icon && flag)
|
if (app->app_icon && flag)
|
||||||
wAppIconMove(app->app_icon, app->app_icon->x_pos, app->app_icon->y_pos);
|
wAppIconMove(app->app_icon, app->app_icon->x_pos, app->app_icon->y_pos);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -111,7 +111,7 @@
|
|||||||
* (in the root window) for switching to the previous workspace
|
* (in the root window) for switching to the previous workspace
|
||||||
* and 5 for the next. This will not work if you enable
|
* and 5 for the next. This will not work if you enable
|
||||||
* DisableWSMouseActions or compile wmaker with --enable-lite */
|
* DisableWSMouseActions or compile wmaker with --enable-lite */
|
||||||
#undef MOUSE_WS_SWITCH
|
#define MOUSE_WS_SWITCH
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Turn on a hack to make mouse and keyboard actions work even if
|
* Turn on a hack to make mouse and keyboard actions work even if
|
||||||
|
|||||||
Reference in New Issue
Block a user