Partially support _NET_WM_STRUT_PARTIAL.
[wmaker-crm.git] / wrlib / NEWS
blob75047a8a089445be69c1f079a83ea70019587998
1 ** API and ABI modifications since wmaker 0.92.0
3 RLightImage: ADDED
6 ----------------------------------------------------
8 Sat Apr 21 09:12:09 EEST 2001 -Dan
10 API change
11 ----------
13 To allow a retain/release mechanism to be implemented for RImages, the
14 following new functions were introduced:
16    RImage* RRetainImage(RImage* image);
17    void RReleaseImage(RImage* image);
19 RDestroyImage() is now aliased to RReleaseImage(), but because it's no
20 longer compatible with the new semantics, it was only kept to allow a
21 smoother transition and the ability to run programs that were not updated
22 yet.
24 Do _NOT_ continue to use RDestroyImage(), because it will be removed in a
25 future version. You should start using RReleaseImage() in your code, and
26 also update all your existing programs to use RReleaseImage().
28 Also keep in mind that its name is also misleading: RDestroyImage() no
29 longer destroys images, unless they are not retained in some other place.
31 All existing code will continue to function with the new lib, even if not
32 recompiled, but you are encouraged to update your code to these changes