d29ca017d652984ab5d0a93315acbf1969b8e57d
[redact.git] / ChangeLog
1 --
2 $Id: ChangeLog 43 2005-06-08 17:31:47Z tilman $
3 ++
4
5 2005-06-08 Tilman Sauerbeck (tilman at code-monkey de)
6         * Rakefile: Code cleanup
7         * lib/redact/app.rb: Moved Redact::App's @options to
8           Redact::OPTIONS
9
10 2005-05-29 Tilman Sauerbeck (tilman at code-monkey de)
11         * Rakefile: Use FileUtils.mkdir_p to create the destination
12           directory
13
14 2005-05-25 Tilman Sauerbeck (tilman at code-monkey de)
15         * lib/redact/app.rb: Make sure to delete the output file if
16           there's an exception while we're writing it
17
18 2005-04-28 Tilman Sauerbeck (tilman at code-monkey de)
19         * lib/redact/app.rb: Don't abort if embryo_cc's return code is 1
20           (which means 'succeeded, but with warnings')
21
22 2005-04-25 Tilman Sauerbeck (tilman at code-monkey de)
23         * Rakefile: Don't include one FileList in another
24
25 2005-04-25 Tilman Sauerbeck (tilman at code-monkey de)
26         * Released version 0.1.1
27
28 2005-04-25 Tilman Sauerbeck (tilman at code-monkey de)
29         * NEWS, Rakefile: Added NEWS
30         * lib/redact/redact.rb: Bumped version number to 0.1.1
31
32 2005-04-24 Tilman Sauerbeck (tilman at code-monkey de)
33         * lib/redact/redact.rb: Fixed exception message
34         * lib/redact/part.rb: Added Relation#set_to
35         * lib/redact/program.rb: Initialize emission_signal and
36           emission_source to empty strings, they must not be nil
37
38 2005-04-23 Tilman Sauerbeck (tilman at code-monkey de)
39         * lib/redact/app.rb: Comment fix
40
41 2005-04-16 Tilman Sauerbeck (tilman at code-monkey de)
42         * lib/redact/part.rb: Added border_fill_middle attribute to
43           ImageDescription
44
45 2005-04-14 Tilman Sauerbeck (tilman at code-monkey de)
46         * lib/{redact,part,program}.rb: Replaced most attr_accessor
47           calls by explicit setter methods to ensure type safety
48         * lib/part.rb: Code cleanup
49         * lib/part.rb: Fixed the regular expression that checks
50           whether a font name is actually a filename
51         * lib/{redact,part,program}.rb: Added a few missing "protected" 
52           statements
53
54 2005-04-09 Tilman Sauerbeck (tilman at code-monkey de)
55         * test/crossfade.rb: Updated for recent tween mode fixes
56
57 2005-04-03 Tilman Sauerbeck (tilman at code-monkey de)
58         * lib/redact/part.rb: Made 'text_class' and 'color_class' parameters
59           writable
60         * lib/redact/part.rb: Some cosmetic changes
61         * lib/redact/part.rb: Use symbols instead of constants for text
62           effects
63         * lib/redact/part.rb: Code cleanup
64         * lib/redact/program.rb: Use symbols instead of constants for
65           tween modes
66
67 2005-04-02 Tilman Sauerbeck (tilman at code-monkey de)
68         * lib/redact/part.rb: Made 'step' and 'aspect' parameters
69           configurable
70
71 2005-03-29 Tilman Sauerbeck (tilman at code-monkey de)
72         * Released version 0.1.0
73
74 2005-03-29 Tilman Sauerbeck (tilman at code-monkey de)
75         * Rakefile: Tweak lookup of PKG_VERSION
76         * Rakefile: Require Rake 0.5.0 or greater
77         * Rakefile: Fixed the install task so it installs all Ruby files
78           found in lib/redact
79
80 2005-03-28 Tilman Sauerbeck (tilman at code-monkey de)
81         * lib/redact/app.rb: Tweaked "redact --version" output
82         * Rakefile, test/test_basic.rb: Use 'edj' instead of 'eet'
83           as the extension for the test Edjes
84         * README: Added basic documentation
85         * Rakefile: Added an RDocTask
86         * Rakefile: Added a PackageTask
87         * Rakefile:: Added a publish task
88
89 2005-03-26 Tilman Sauerbeck (tilman at code-monkey de)
90         * lib/redact/app.rb: Use Tempfile's for the Embryo source- and
91           amx code
92         * lib/redact/app.rb: Abort compilation if embryo_cc fails
93         * lib/redact/app.rb: Use Kernel#raise instead of Kernel#fail
94         * lib/redact/{redact,part}.rb: Added some RDoc documentation
95           modifiers
96         * lib/redact/redact.rb: Bumped version number to 0.1.0
97
98 2005-03-22 Tilman Sauerbeck (tilman at code-monkey de)
99         * lib/redact/app.rb: The default extension for Edje files is
100           'edj' now
101 2005-03-20 Tilman Sauerbeck (tilman at code-monkey de)
102         * lib/redact/redact.rb, test/{red_rect,crossfade}.rb:
103           Use symbols for part/program types. Also, you need to provide
104           the part/program type now, there's no default anymore. This
105           fixes/works around the problem where you accidentally defined
106           a part when you just wanted to get a reference to an existing
107           part
108
109 2005-03-19 Tilman Sauerbeck (tilman at code-monkey de)
110         * test/crossfade.rb: Updated to work with
111           TextDescription#set_fit change
112
113 2005-03-17 Tilman Sauerbeck (tilman at code-monkey de)
114         * lib/redact/app.rb: Store the source of files that are read
115           with File.read, too
116         * lib/redact/{source,app}.rb: Write a fontmap, so edje_decc can
117           dump the fonts that are used in the Edje
118         * lib/redact/part.rb: Added TextDescription#set_fit
119
120 2005-03-16 Tilman Sauerbeck (tilman at code-monkey de)
121         * lib/redact/{source,app}.rb: Write theme source to EET file,
122           too
123         * bin/redact, lib/redact/app.rb, test/test_basic.rb: Improved
124           commandline option handling
125         * lib/redact/redact.rb: Set the 'compiler' value in the
126           Edje_File EDD
127         * lib/redact/app.rb: Add support for the 'image_dir' and 'font_dir'
128           options. They aren't evaluated yet, though.
129
130 2005-03-14 Tilman Sauerbeck (tilman at code-monkey de)
131         * lib/redact/redact.rb: Fixed stupid exceptions
132
133 2005-03-06 Tilman Sauerbeck (tilman at code-monkey de)
134         * lib/redact/program.rb: Fixed a typo that resulted in an invalid
135           reader method
136         * lib/redact/{redact,program}.rb: Added support for basic
137           programs (signal, source, after parameters only)
138         * Rakefile: use FileUtils to for the install task
139
140 2005-03-02 Tilman Sauerbeck (tilman at code-monkey de)
141         * lib/redact/part.rb: Set the default offset for rel2 to -1,-1
142         * lib/redact/part.rb: Enable smoothing by default for non-image
143           parts, too.
144         * lib/redact/part.rb: Use sane defaults for the other fill
145           parameters
146         * lib/redact/part.rb: Fixed default values for outline and
147           shadow color
148
149 2005-02-26 Tilman Sauerbeck (tilman at code-monkey de)
150         * lib/redact/app.rb: Don't indent empty lines of Embryo code
151         * lib/redact/{app, redact, part}.rb: Added support for embedded
152           fonts
153         * lib/redact/redact.rb: When doing part/program-lookups in
154           Embryo code, use non-greedy matching of quotes
155         * lib/redact/program.rb: signal and source are set to empty
156           strings by default now, instead of nil
157         * lib/redact/part.rb: Rename color2 and color3 to outline_color
158           and shadow_color, respectively.
159         * lib/redact/part.rb: Make outline_color and shadow_color
160           writeable
161         * lib/redact/part.rb: Renamed clip_to to clip and made it
162           readable
163         * lib/redact/part.rb: Made TextDescription::text_min writeable
164         * lib/redact/part.rb: Made TextDescription::text_align writeable
165         * lib/redact/part.rb: Added support for tween images
166         * lib/redact/{redact, part}.rb: Split Part into various classes
167         * lib/redact/{redact, part, program}.rb: Code cleanup
168         * lib/redact/{redact, part}.rb: Don't make Part::type readable
169
170 2005-02-23 Tilman Sauerbeck (tilman at code-monkey de)
171         * lib/redact/app.rb: Use edje-config to figure out the
172           Embryo include directory
173
174 2005-02-22 Tilman Sauerbeck (tilman at code-monkey de)
175         * lib/redact/app.rb: Enable zlib compression for the edje_file
176           and collections EET entries
177         * lib/redact/app.rb, lib/redact/redact.rb: Reworked the way
178           Embryo scripts are saved/processed
179         * lib/redact/app.rb: Delete the temporary redact.sma file when
180           we're done with it