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