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