Re: Problem with GNUstep and latest WindowMaker

2014-11-23 Thread Carlos R. Mafra
On Sat, 22 Nov 2014 at 19:35:30 -0600, Germán Arias wrote: After update the version of WindowMaker to latest release I noticed some problems. In my desktop PC (i386) and my laptop (amd64) some GNUstep panels don't have border as show the attached image. Any suggestion? Thanks Thanks for

Re: Problem with GNUstep and latest WindowMaker

2014-11-23 Thread Christophe
- Germán Arias germanan...@gmx.es a écrit : Hi all, After update the version of WindowMaker to latest release I noticed some problems. In my desktop PC (i386) and my laptop (amd64) some GNUstep panels don't have border as show the attached image. Any suggestion? Thanks

Re: Window Maker as the official window manager of the GNU operating system

2014-11-23 Thread Torrance, Douglas
On 11/23/2014 11:49 AM, kix wrote: On 21/11/2014 14:52, Torrance, Douglas wrote: Reading through the GNU Maintainer's guide, a lot of things seem optional. For example: We recommend using savannah.gnu.org for the source code repository for your package, but that’s not required. Although it

Re: Problem with GNUstep and latest WindowMaker

2014-11-23 Thread Germán Arias
On 2014-11-23 12:02:47 -0600 Christophe christophe.cu...@free.fr wrote: - Germán Arias germanan...@gmx.es a écrit : Hi all, After update the version of WindowMaker to latest release I noticed some problems. In my desktop PC (i386) and my laptop (amd64) some GNUstep panels don't

Re: Problem with GNUstep and latest WindowMaker

2014-11-23 Thread Christophe
- Christophe christophe.cu...@free.fr a écrit : - Germán Arias germanan...@gmx.es a écrit : Here the output: german@german-desktop:~$ xprop [...] _NET_WM_WINDOW_TYPE(ATOM) = _NET_WM_WINDOW_TYPE_MENU This attributes is set from the application to tell that the window is only

[PATCH 1/1] wmaker: do not remove Title Bar for windows that declare themselves as Toolbar or Tear-off menu

2014-11-23 Thread Christophe
From: Christophe CURIS christophe.cu...@free.fr As pointed by Germán Arias, some windows in GNUstep did not have a title bar because they declare themselves with the NET_WM type MENU. A closer look at the spec shows that this type is meant for stuff like tear off menus, and thus like for toolbar

[PATCH 2/3] merge with 34435563e7d7f2c4b6d54a96e5dada635b1aba32

2014-11-23 Thread Christophe
From: Christophe CURIS christophe.cu...@free.fr Missed the default value that should be updated to be in pixels too --- src/defaults.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/defaults.c b/src/defaults.c index a4b8261..1310399 100644 --- a/src/defaults.c +++

[PATCH 1/3] merge with f314933229013ae4b13930cbcb718bd68cdc817e

2014-11-23 Thread Christophe
From: Christophe CURIS christophe.cu...@free.fr When removing trailing dots in translation, missed some strings in chinese tanslation because they have a specil unicode character for the dot. --- WPrefs.app/po/zh_TW.po | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git

[PATCH 3/3] merge with 34435563e7d7f2c4b6d54a96e5dada635b1aba32

2014-11-23 Thread Christophe
From: Christophe CURIS christophe.cu...@free.fr Do not worry the user with a warning if he did not enable the feature --- src/defaults.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/defaults.c b/src/defaults.c index 1310399..fff239f 100644 --- a/src/defaults.c +++

[PATCH 1/6] wmacpi: Remove deprecated /usr/X11R6/include directory from CFLAGS.

2014-11-23 Thread Doug Torrance
--- wmacpi/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wmacpi/Makefile b/wmacpi/Makefile index 8b90efd..716e683 100644 --- a/wmacpi/Makefile +++ b/wmacpi/Makefile @@ -13,7 +13,7 @@ BUILD_CLI = 1 #OPT = -pg -g CC := gcc -CFLAGS += $(OPT) -Wall -W -g -ansi

[PATCH 2/6] wmacpi: Merge clean and clean-all targets in Makefile.

2014-11-23 Thread Doug Torrance
make clean should do the expected thing. --- wmacpi/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wmacpi/Makefile b/wmacpi/Makefile index 716e683..44fb5bd 100644 --- a/wmacpi/Makefile +++ b/wmacpi/Makefile @@ -57,9 +57,9 @@ endif clean: rm -f TAGS *.o *~

[PATCH 3/6] wmacpi: Respect DESTDIR variable in Makefile, e.g., for package creation.

2014-11-23 Thread Doug Torrance
--- wmacpi/Makefile | 8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/wmacpi/Makefile b/wmacpi/Makefile index 44fb5bd..5c6f0aa 100644 --- a/wmacpi/Makefile +++ b/wmacpi/Makefile @@ -62,10 +62,10 @@ clean: clean-all: clean install: $(targets) - install -d

[PATCH 0/6] wmacpi updates

2014-11-23 Thread Doug Torrance
Here are a few patches for wmacpi. They clean up the Makefile a bit (mostly to make Debian packaging slightly more trivial) and fix some compiler warnings. Carlos, could you tag the last patch wmacpi-2.3? Thanks! Doug Torrance (6): wmacpi: Remove deprecated /usr/X11R6/include directory from

[PATCH 5/6] wmacpi: Fix -Wunused-result compiler warnings.

2014-11-23 Thread Doug Torrance
In particular, libacpi.c: In function ‘power_init’: libacpi.c:339:5: warning: ignoring return value of ‘fread’, declared with attribute warn_unused_result [-Wunused-result] fread(buf, 4096, 1, acpi); ^ libacpi.c: In function ‘procfs_get_power_status’: libacpi.c:434:5: warning: ignoring

[PATCH 4/6] wmacpi: Fix -Wunused-but-set-variable compiler warning.

2014-11-23 Thread Doug Torrance
In particular, libacpi.c: In function ‘procfs_get_battery_info’: libacpi.c:582:9: warning: variable ‘buflen’ set but not used [-Wunused-but-set-variable] int buflen; ^ --- wmacpi/libacpi.c | 4 1 file changed, 4 insertions(+) diff --git a/wmacpi/libacpi.c b/wmacpi/libacpi.c

[PATCH 6/6] wmacpi: Bump to version 2.3.

2014-11-23 Thread Doug Torrance
--- wmacpi/ChangeLog| 11 +++ wmacpi/wmacpi-cli.c | 2 +- wmacpi/wmacpi.c | 2 +- 3 files changed, 13 insertions(+), 2 deletions(-) diff --git a/wmacpi/ChangeLog b/wmacpi/ChangeLog index d3793e2..64a7329 100644 --- a/wmacpi/ChangeLog +++ b/wmacpi/ChangeLog @@ -1,3 +1,14 @@