updated estonian translation
[wmaker-crm.git] / wrlib / ChangeLog
blob592ea81941c15b58ce2169b6bebf65fdd957b0c6
1 - Added retain/release mechanism to RImage by adding RRetainImage() and
2   RReleaseImage(). RDestroyImage() is an alias to RReleaseImage() now, but
3   will be removed in a future release because it no longer fits with the
4   semantics. Will be kept for a while to allow a smoother transition.
5   More about in NEWS
6 - Fixed crashing for Pseudocolor visuals with BestMatchRendering
7 - Small speed improvement for 24 and 32 bpp, if internal converter is used
8 - Small speed improvement for generating gradients.
9 - Fixed RSaveXPM() to output correct xpm images.
10 - Fixed speckles (white dots) on dithered images (bug still present on the
11   PowerPC architecture, because on LinuxPPC char is unsigned by default, not
12   signed like on the other platforms).
13   Bug fixed by Philip Derrin <philipd@student.unsw.edu.au>
14 - Fixed not working Grayscale visual (was crashing)
15 - Fixed wrong display of images with alpha in StaticGray and GrayScale visuals
18 - fixed code dependant on the order of evaluation. code like
19   *ptr++ = *ptr++ = *ptr++ = color;
20   is wrong, because there is no guarantee that ptr will be incremented
21   _between_ the assignment operations. it can be incremented after all 
22   assignment operations as well. Because of this both of these are valid
23   implementations for a compiler:
24    a. assign, increment, assign, increment, assign, increment
25    b. assign, assign, assign, increment by 3
26   In case b. only the first memory location of the 3 will be modified, being
27   assigned 3 times the same value, while the other 2 remain unchanged.
28   For example egcs-2.91.66 (and possibly gcc-2.95.x too) implement this in
29   the second way (like in case b.)
30   Also the order in which the assignement is made is undefined (left to right 
31   or right to left).
33 - added RMakeCenteredImage()
35 - Added code to draw pixels and lines. Both writing absolute values, or
36   offseting existing pixels with delta values are supported.
37 - Remade the beveling code to be simpler, using the RAlterLine() functions.
38 - Fixed some pixels in the bevels.
39 - Changed RAlter* functions to more generic ROperate*