]> git.lyx.org Git - lyx.git/blob - src/graphics/ChangeLog
some mods I had in my local tree, mostly small stuff, perhaps minus the the Makefile...
[lyx.git] / src / graphics / ChangeLog
1 2001-09-01  John Levon  <moz@compsoc.man.ac.uk>
2
3         * ImageLoadXPM.C: remove setting of alloc colour mask,
4           led to crash as we don't define a callback
5
6 2001-07-29  Baruch Even  <baruch@lyx.org>
7
8         * ImageLoaderXPM.C (runImageLoader): When loading agree to use non-exact
9         colors with closeness of 10000.
10
11         * GraphicsCacheItem.C: Fixed a compilation bug introduced earlier.
12
13 2001-07-29  Baruch Even  <baruch@lyx.org>
14
15         * GraphicsCacheItem.C (findTargetFormat): Removed error dialog box,
16         too annoying.
17
18 2001-07-23  Baruch Even  <baruch@lyx.org>
19
20         * GraphicsCacheItem.C (convertImage): Fixed a bug with regard to loading
21         the image after conversion.
22
23 2001-07-17  Baruch Even  <baruch@lyx.org>
24
25         * GraphicsCacheItem.h:
26         * GraphicsCacheItem.C: Shuffled things a bit to make it easier to switch
27         from synchronous to asynchronous and to ease the coming changes.
28
29 2001-07-03  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
30
31         * ImageLoaderXPM.C (runImageLoader): get display information from
32         GUIRunTime. 
33
34 2001-06-14  Angus Leeming  <a.leeming@ic.ac.uk>
35
36         * GraphicsCache.C:
37         * GraphicsCacheItem.C:
38         * ImageLoader.C:
39         * ImageLoaderXPM.C: removed // -*- C++ -*- as first line.
40
41 2001-04-17  Lars Gullik Bjønnes  <larsbj@birdstep.com>
42
43         * GraphicsCache.h: inherit privately from noncopyable
44         * ImageLoader.h: ditto
45         * GraphicsCacheItem.h: ditto
46
47 2001-04-16  Allan Rae  <rae@lyx.org>
48
49         * ImageLoaderXPM.C (runImageLoader): #warning triggers an error on Sun
50         CC 6.0 as an unrecognised preprocessor directive.  So ensure they're 
51         wrapped. 
52
53 2001-04-02  Baruch Even  <baruch@lyx.org>
54
55         * GraphicsCacheItem.[Ch]: Changed to used the Converter class instead
56         of hard coding ImageMagick.
57
58 2001-03-10  Baruch Even  <baruch@lyx.org>
59
60         * GraphicsCache.C: Style change from (*it).field to it->field
61
62 2001-03-15  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
63
64         * GraphicsCache.h: noncopyable is in namespace boost
65         * ImageLoader.h: ditto
66         * GraphicsCacheItem.h: ditto
67
68 2001-03-07  Baruch Even  <baruch@lyx.org>
69
70         * GraphicsCache.C (d-tor): Removed the assert, the assumption it carried
71         was false and it's not needed anyhow since the shared_ptr's in the cache
72         will destroy everything on exit.
73
74 2001-02-28  Baruch Even  <baruch@ev-en.org>
75
76         * GraphicsCache.h:
77         * GraphicsCache.C: Changed the singleton pattern implementation, the
78         former version "leaked" in the sense that it was not deallocated at
79         program end.
80
81 2001-02-20  Baruch Even  <baruch@ev-en.org>
82
83         * GraphicsCache.C: Changed to use shared_ptr<GraphicsCacheItem>
84         instead of a pure pointer.
85
86         * GraphicsCacheItem.[Ch]:
87         * GraphicsCacheItem_pimpl.[Ch]: Collapsed them into GraphicsCacheItem,
88         removed the reference counting that was inside. Also fixed a bug where
89         a temporary file wouldn't get erased.
90
91         * ImageLoader.[Ch]: Changed the semantics of the image_ pointers usage.
92         Ownership is now dropped when the caller requests the image_ pointer.
93
94 2001-02-20  Baruch Even  <baruch@ev-en.org>
95
96         * GraphicsCache.C: Cleared up the confusion on when and how it is
97         emptied.
98
99         * GraphicsCacheItem.C: Indentation change.
100
101         * GraphicsCacheItem_pimpl.C: Fixed the loading logic so that it will
102         figure correctly when the image has been loaded successfully.
103
104 2001-02-08  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
105
106         * ImageLoader.C: add a "using" directive.
107
108         * ImageLoader.h: remove extra comma at the end of enum; add an
109         std:: qualifier for vector.
110
111 2001-01-21  Baruch Even  <baruch@ev-en.org>
112
113         * GraphicsCacheItem.[Ch]: Changes due to the storage of width and
114         height in the image itself and minor cleanups.
115
116         * GraphicsCacheItem_impl.[Ch]: Changes due to the switch to use a
117         new ImageLoader class instead of the older Renderer class. This
118         means change of responsibilities.