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