-
Notifications
You must be signed in to change notification settings - Fork 19
/
NEWS
46 lines (30 loc) · 1.35 KB
/
NEWS
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
** API and ABI modifications
----------------------------------------------------
Since wmaker 0.96.0
Sat 25 Feb 2023
RSaveImage: Improved
Able to save image on disk as PNG or JPEG file
RSaveTitledImage: Added
Image title can be set on the image to be saved
----------------------------------------------------
Since wmaker 0.92.0
RLightImage: ADDED
----------------------------------------------------
Sat Apr 21 09:12:09 EEST 2001 -Dan
API change
----------
To allow a retain/release mechanism to be implemented for RImages, the
following new functions were introduced:
RImage* RRetainImage(RImage* image);
void RReleaseImage(RImage* image);
RDestroyImage() is now aliased to RReleaseImage(), but because it's no
longer compatible with the new semantics, it was only kept to allow a
smoother transition and the ability to run programs that were not updated
yet.
Do _NOT_ continue to use RDestroyImage(), because it will be removed in a
future version. You should start using RReleaseImage() in your code, and
also update all your existing programs to use RReleaseImage().
Also keep in mind that its name is also misleading: RDestroyImage() no
longer destroys images, unless they are not retained in some other place.
All existing code will continue to function with the new lib, even if not
recompiled, but you are encouraged to update your code to these changes