Re: [PATCH 0/4] Try centering first in Automatic Placement

2014-04-16 Thread Carlos R. Mafra
On Sat, 12 Apr 2014 at 18:55:53 +0300, Yuri Karaban wrote: > Hello, > > Originally in 9d3d345 I implemented centering placement to fall > through to automatic placement if there is no free space to place > window at center. But Carlos in 74aa65a made a change to center > unconditionally. > > I w

Re: [PATCH 0/3] Changes in NetPBM support

2014-04-16 Thread Carlos R. Mafra
Hi Christophe, I've just found out one of the reasons why I was puzzled by your series. I'm not seeing all the patches. Yuri Karaban pointed out in another thread that the patches I was not seeing in my inbox made it to the list. Unfortunately the same thing happened to your patches after this o

Re: [PATCH 0/3] Changes in NetPBM support

2014-04-16 Thread Yury Tarasievich
You have google's address, and google filters out some patches to its spam can. On 04/16/2014 10:55 AM, Carlos R. Mafra wrote: I've just found out one of the reasons why I was puzzled by your series. I'm not seeing all the patches. -- To unsubscribe, send mail to wmaker-dev-unsubscr...@list

wmaker-dev emails landing of SPAM folder (was Re: [PATCH 0/2] wrlib: changes in MagickWand implementation)

2014-04-16 Thread Carlos R. Mafra
On Sat, 12 Apr 2014 at 18:04:52 +0200, Christophe wrote: > > - Carlos R. Mafra a écrit : > > On Sat, 12 Apr 2014 at 16:34:35 +0200, Christophe wrote: > > > Carlos, > > > > > > As this series of replace-patches may be a little bit to replace > > > because of conflicts created by dependancies,

Re: wmaker-dev emails landing of SPAM folder (was Re: [PATCH 0/2] wrlib: changes in MagickWand implementation)

2014-04-16 Thread David Maciejak
hum Carlos, not sure you saw that email: Subject: [PATCH] Added clean functions to wrlib Newsgroups: gmane.compw.window-managers.windowmaker.devel Date: 2014-03-31 15:43:17 GMT (2 weeks, 1 day, 18 hours and 22 minutes ago) see: http://news.gmane.org/gmane.compw.window-managers.windowmaker.devel

Re: [PATCH] Added clean functions to wrlib

2014-04-16 Thread Carlos R. Mafra
On Mon, 31 Mar 2014 at 23:43:17 +0800, David Maciejak wrote: > Same as previous patches but this time to add some functions > to wrlib to release all memory allocated. But it should be pointed out that if you don't call these functions the memory is freed anyway by the operating system once the ap

[repo.or.cz] wmaker-crm.git branch next updated: wmaker-0.95.5-277-g25ae1fe0

2014-04-16 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 25ae1fe05308dd9326e00977d447ebc0a9ce290c (commit) via 125c50b5d103a1d98

[repo.or.cz] wmaker-crm.git branch next updated: wmaker-0.95.5-278-g4f99aa9d

2014-04-16 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 4f99aa9d6b470667d2b8791c065d946b279c8120 (commit) from 25ae1fe05308dd932

Re: [PATCH 0/3] Changes in NetPBM support

2014-04-16 Thread Christophe
- Carlos R. Mafra a écrit : > Hi Christophe, > > I've just found out one of the reasons why I was puzzled > by your series. I'm not seeing all the patches. > > Yuri Karaban pointed out in another thread that the patches > I was not seeing in my inbox made it to the list. Unfortunately > th

[PATCH 0/7] Improvements to NetPBM support commit

2014-04-16 Thread Christophe
Hello, These 7 patchs bring a number of improvements I proposed to the original patch from David: - patch 1: reverts a few things that are not related to the patch's function and that are re-added separateley through patch 4 and 6. This patch is supposed to be amended to 3c531e4878c1a4b8201dc9f71

[PATCH 4/7] wrlib: Improved file format detection

2014-04-16 Thread Christophe
From: David Maciejak load.c is used to identify the file format, I rebased some checks on what is defined in the spec of the format. --- wrlib/load.c | 14 ++ 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/wrlib/load.c b/wrlib/load.c index 8c76373..fe5cc1e 100644 --- a

[PATCH 2/7] wrlib: Improvements to Netpbm memory usage on errors

2014-04-16 Thread Christophe
From: David Maciejak This is actually taken from patch: wrlib: Added support for webp image in which it is out of place as it is unrelated --- wrlib/load_ppm.c | 46 +- 1 file changed, 33 insertions(+), 13 deletions(-) diff --git a/wrlib/load_ppm.c

[PATCH 1/7] wrlib: revert changes that are not related to improving Netpbm support

2014-04-16 Thread Christophe
From: Christophe CURIS The idea is to split the commit in 3 separate changes. --- wrlib/load.c| 14 -- wrlib/tests/Makefile.am | 2 +- wrlib/tests/testdraw.c | 1 - wrlib/tests/view.c | 6 ++ 4 files changed, 11 insertions(+), 12 deletions(-) diff --git a/wr

[PATCH 7/7] wrlib: cosmetic change to NETPBM example

2014-04-16 Thread Christophe
From: Christophe CURIS The reason is to separate statements from the declarative part for clarity. Signed-off-by: Christophe CURIS --- wrlib/tests/testdraw.c | 1 + 1 file changed, 1 insertion(+) diff --git a/wrlib/tests/testdraw.c b/wrlib/tests/testdraw.c index 2b209f5..df8c27d 100644 --- a/

[PATCH 3/7] wrlib: Improved NETPBM support

2014-04-16 Thread Christophe
From: Christophe CURIS - re-add PPM to the list of supported format, because legacy apps may expect to find it from the list; - add the copyright notice related to the code that have been borrowed from Netpbm; - fixed a small error in PPM format check in the loading procedure; - and a few mino

[PATCH 6/7] wrlib: Fixed and improved NETPBM examples

2014-04-16 Thread Christophe
From: David Maciejak The tests examples were not compiling because of a missing X11 lib. --- wrlib/tests/Makefile.am | 2 +- wrlib/tests/testdraw.c | 1 + wrlib/tests/view.c | 6 -- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/wrlib/tests/Makefile.am b/wrlib/tests/Mak

[PATCH 0/1] WPrefs: Improvements on fix to problems reported by compiler warnings

2014-04-16 Thread Christophe
From: Christophe CURIS Hello, This patch is supposed to be amended to 45afbd46e67719a38e700e8039c7616cf79eb6f6 Regards, Christophe WPrefs.app/Appearance.c| 5 +++-- WPrefs.app/MouseSettings.c | 3 ++- 2 files changed, 5 insertions(+), 3 deletions(-) -- 1.9.1 -- To unsubscribe, send

[PATCH 5/7] wrlib: Improved file format detection

2014-04-16 Thread Christophe
From: Christophe CURIS - remove header not needed anymore - revert change for XPM to stay in line with the standard - changed PNG to stuck to the standard - increased GIF to the complete signature Signed-off-by: Christophe CURIS --- wrlib/load.c | 22 +- 1 file changed, 13

[PATCH 1/1] WPrefs: Fix possible problems reported by compiler warnings

2014-04-16 Thread Christophe
From: Christophe CURIS This patch is used to catch some return function value to avoid possible misbehaviour, as reported by the compiler. - use of proper type for fread's ssize comparison - include command name in error message to help user understand what's going on Signed-off-by: Christophe

[PATCH 0/2] Changed WINGs function to created a resized pixmap

2014-04-16 Thread Christophe
Hello, patch 1 is supposed to be amended to commit 0c3b76a0c92beb3891891dbfd23d3b34dee4bd05 "Scale image to fit in preview panel" patch 2 is a proposed improvement to the scaling funtion. Please note that this will create conflict in commit: 9ee98b7... Fixed unknown image format detection in Ic

[PATCH 1/2] Added new WINGs function to created a resized pixmap

2014-04-16 Thread Christophe
From: Christophe CURIS In order to keep compatibility for the WINGs public API: - created a new function instead of changing the parameters of the legacy function as done in commit 0c3b76a0c92beb3891891dbfd23d3b34dee4bd05; - restore use of legacy function WMCreateBlendedPixmapFromFile where the

[PATCH 2/2] WINGs: Changed algorithm to resize a pixmap while keeping aspect ratio

2014-04-16 Thread Christophe
From: Christophe CURIS The original code would not provide correctly sized images in some cases of ratios on the original image and on the requested size. Signed-off-by: Christophe CURIS --- WINGs/wpixmap.c | 25 + 1 file changed, 17 insertions(+), 8 deletions(-) diff

Re: [PATCH 0/3] Changes in NetPBM support

2014-04-16 Thread Christophe
Hi Carlos, I have sent the first series, which was composed of 10 patches: [PATCH 0/7] Improvements to NetPBM support commit [PATCH 1/7] wrlib: revert changes that are not related to improving [PATCH 2/7] wrlib: Improvements to Netpbm memory usage on errors [PATCH 3/7] wrlib: Improved NETPBM supp

Re: [PATCH] Added clean functions to wrlib

2014-04-16 Thread David Maciejak
As far as I can see with the image viewer (wmiv) I am working on and which is using wrlib, without that patch some memory are lost. Thx, David On Wednesday, April 16, 2014, Carlos R. Mafra wrote: > On Mon, 31 Mar 2014 at 23:43:17 +0800, David Maciejak wrote: > > Same as previous patches but thi