[PATCH] XRandR info in info dialog

2013-05-02 Thread kix
From: "Rodolfo García Peñas (kix)" This patch includes info about XRandR extension in the info panel dialog. If wmaker was compiled with xrandr support, then the dialog show the XRandR info. The info includes if the X-Server supports or not XRandR (wmaker could be compiled with XRandR support, bu

Re: Re : Re: Re : Question about XRandR info dialog

2013-05-02 Thread Rodolfo García Peñas
On Sun, 28 Apr 2013, Christophe escribió: > > > > - Rodolfo García Peñas a écrit : > > >> > > >> [...] > > >> > > >> +#ifdef HAVE_XRANDR > > >> + if (has_randr) > > >> + strbuf = wstrappend(strbuf, " XRandR (In use)"); > > >> + else > > >> + strbuf = w

[PATCH 0/3] Dialog panels small changes

2013-05-02 Thread kix
From: "Rodolfo García Peñas (kix)" These patches uses a const int values to set the height and the widht for the dialog window. Now is easier change the dialog window size. The patches removes some empty lines and some brackets. Because the changes are not deep, I did in the same patches. The p

[PATCH 1/3] Info Panel size with variables

2013-05-02 Thread kix
From: "Rodolfo García Peñas (kix)" This patch uses two variables to set the width and the height for the Info Panel. Now the panel has the same size than the window. Finally, this patch moves the center definition to the beginning, and removes the curly brackets. --- src/dialog.c | 20 ++

[PATCH 2/3] Window Maker Developers Team Copyright

2013-05-02 Thread kix
From: "Rodolfo García Peñas (kix)" This patch includes the Dev Team Copyright in the info panel. --- src/dialog.c |7 --- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/dialog.c b/src/dialog.c index 482d21f..5b15a7e 100644 --- a/src/dialog.c +++ b/src/dialog.c @@ -1084

[PATCH 3/3] Legal Panel size with variables

2013-05-02 Thread kix
From: "Rodolfo García Peñas (kix)" This patch uses two variables to set the width and the height for the Info Panel. It also includes a margin space. --- src/dialog.c | 34 +++--- 1 file changed, 11 insertions(+), 23 deletions(-) diff --git a/src/dialog.c b/src/dia

[repo.or.cz] wmaker-crm.git branch next updated: wmaker-0.95.4-94-g94777b9

2013-05-02 Thread crmafra
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project wmaker-crm.git. The branch, next has been updated via 94777b97156db1a2bcdfcc8fd486fcc79b0bd7f7 (commit) via 8cb6a787264cc0ade

Re: Patches: Switchpanel tweaks

2013-05-02 Thread Carlos R. Mafra
On Mon, 22 Apr 2013 at 19:19:41 +0100, Iain Patterson wrote: > > The sixth patch allows you to configure custom shortcuts when the > switchpanel is open. Previously you could select windows with Left, > Right, Home and End. With this patch those keys still work but you > can additionally bind

[repo.or.cz] wmaker-crm.git branch next updated: wmaker-0.95.4-103-g9a895dc

2013-05-02 Thread crmafra
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project wmaker-crm.git. The branch, next has been updated via 9a895dcda5121a7934a9e17470ea666b7b2219ff (commit) via 9e4253f6706fe3fdf

[PATCH] Added missing headers to the list of source files of the project

2013-05-02 Thread Christophe
From: Christophe CURIS This is needed in order to have all the expected files in the archive of sources when using: make dist --- src/Makefile.am |2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Makefile.am b/src/Makefile.am index a205c4d..f67e1cf 100644 --- a/src/Makefile.am +++ b

Re: [PATCH] Added missing headers to the list of source files of the project

2013-05-02 Thread Rodolfo García Peñas
On Thu, 02 May 2013, Christophe escribió: > From: Christophe CURIS > > This is needed in order to have all the expected files in the > archive of sources when using: > make dist > --- > src/Makefile.am |2 ++ > 1 file changed, 2 insertions(+) > > diff --git a/src/Makefile.am b/src/Makefi

Re: [PATCH 0/8] Code improvment on WRaster lib

2013-05-02 Thread Rodolfo García Peñas
On Wed, 01 May 2013, Christophe escribió: > Hello, > > I am proposing these 8 patches that make some updates to the WRaster > (wrlib) with no functional change, the goal is to have cleaner code. > > Patchs 1 to 3 move some things to a new internal header; > Patchs 4 to 7 add some 'const' attribu

Re: Best way to compile git WM under Debian

2013-05-02 Thread Rodolfo García Peñas
On Tue, 09 Apr 2013, Daniel Déchelotte escribió: > Hi, > > After all this time compiling and using git WM under Debian, I still wonder > if there is a better way to do it. > 1. I had to make debian/rules executable > 2. I had to an entry in debian/changelog, updating it everytime it gets > upda

More comments about wmdrawer

2013-05-02 Thread Rodolfo García Peñas
Hi, one comment more about wmdrawer. 1 If set, unset "Keep on top" option 2 If no drawers, add one 3 Open a window, and put over the dock and the drawer. 4 Change a new workspace 5 Left click on dock (one click) 6 Return to the previous workspace: The dock and the other icons (dock, drawers, app

Re: Move the "Add drawer" option down

2013-05-02 Thread Rodolfo García Peñas
On Thu, 18 Apr 2013, Daniel Déchelotte escribió: > Kix wrote: > > IMO, the option "Add drawer" should be moved down in the dock's menu. > > [...] > > I use sometimes the "Launch" option and now I am adding drawers every > > time. > > Ouch, sorry for messing with your muscle memory. Admittedly I d

[PATCH] WRaster: Bugfix, added missing 'const' to RLoad* functions

2013-05-02 Thread Christophe
From: Christophe CURIS Prototype of function changed in commit d1e1c13fa3bd60ba6c33011f58bbeb664e175198 but two of them were not updated in the source. Thanks to Rodolfo García Peñas for taking the time to test and report. --- wrlib/gif.c |2 +- wrlib/nxpm.c |2 +- 2 files changed, 2

Re : Re: [PATCH 0/8] Code improvment on WRaster lib

2013-05-02 Thread Christophe
- Rodolfo García Peñas a écrit : > On Wed, 01 May 2013, Christophe escribió: > > > Hello, > > > > I am proposing these 8 patches that make some updates to the WRaster > > (wrlib) with no functional change, the goal is to have cleaner code. > > > > Patchs 1 to 3 move some things to a new in