ChunEon Park [Thu, 29 Sep 2011 02:00:20 +0000 (02:00 +0000)]
elementary/main - elm_config_sub_shutdown is more sensible and removed duplicated codes
SVN revision: 63649
Mike Blumenkrantz [Thu, 29 Sep 2011 00:29:38 +0000 (00:29 +0000)]
add a todo file for elm to start keeping track of issues
SVN revision: 63647
Mike Blumenkrantz [Wed, 28 Sep 2011 23:07:18 +0000 (23:07 +0000)]
+elm_toolbar_item_icon_memfile_set
we should probably move towards an elm_object(_item)_icon_set api soon...
SVN revision: 63645
Carsten Haitzler [Wed, 28 Sep 2011 11:53:41 +0000 (11:53 +0000)]
Document how to use thread with EFL in nice detail for "beginners" who
know already how to use threads (pthread) and then how to use that
with EFL.
SVN revision: 63641
Hyoyoung Chang [Wed, 28 Sep 2011 06:48:44 +0000 (06:48 +0000)]
From: Hyoyoung Chang <hyoyoung.chang@samsung.com>
Subject: [E-devel] [patch] elm_cnp_helper - add ATOM handling
Date: Wed, 28 Sep 2011 15:42:20 +0900
blah blah blah, this fixes cnp compatibility with some apps good work hyoyoung
SVN revision: 63639
Daniel Juyung Seo [Wed, 28 Sep 2011 05:56:28 +0000 (05:56 +0000)]
elm genlist: Removed unnecessary local variable.
SVN revision: 63638
Vincent Torri [Tue, 27 Sep 2011 21:39:49 +0000 (21:39 +0000)]
bump gettext version
SVN revision: 63634
Gustavo Sverzut Barbieri [Tue, 27 Sep 2011 20:28:36 +0000 (20:28 +0000)]
elm_box: emit child,removed and child,added, allow smart-recalculate of box.
* proxy signals from evas_object_box: child,removed and child,added. Both
will carry event_info being the child element.
* elm_box_recalculate() to force recalculation of internal box, thus
applying the layout to children.
Thanks btdrucke for reporting!
SVN revision: 63630
Daniel Juyung Seo [Tue, 27 Sep 2011 15:04:57 +0000 (15:04 +0000)]
elm gengrid: Added "scroll,edge,top/bottom/left/right" smart callbacks.
SVN revision: 63625
Daniel Juyung Seo [Tue, 27 Sep 2011 06:40:06 +0000 (06:40 +0000)]
elm icon: Fixed build break from cedric commit r63537. Fixed build
warnings.
SVN revision: 63621
WooHyun Jung [Sun, 25 Sep 2011 04:14:17 +0000 (04:14 +0000)]
elementary/entry : Fix possible memory leak problem.
SVN revision: 63597
WooHyun Jung [Sun, 25 Sep 2011 03:50:28 +0000 (03:50 +0000)]
elementary/elm_entry : Deleted a line because this line could not be
reached.
SVN revision: 63596
WooHyun Jung [Sun, 25 Sep 2011 03:43:10 +0000 (03:43 +0000)]
elementary/elm_entry.c : small change for reducing codes.
SVN revision: 63595
WooHyun Jung [Sun, 25 Sep 2011 02:56:54 +0000 (02:56 +0000)]
elementary/elm_entry : add some null checking codes.
SVN revision: 63594
Daniel Juyung Seo [Fri, 23 Sep 2011 08:32:32 +0000 (08:32 +0000)]
elm genlist: Changed internal variable name. old_pan_y ->
reorder_old_pan_y.
SVN revision: 63561
ChunEon Park [Fri, 23 Sep 2011 00:34:50 +0000 (00:34 +0000)]
elementary/naviframe - updated doc.
fixed grammar. found by ShilpaOnkar Singh.
SVN revision: 63551
ChunEon Park [Fri, 23 Sep 2011 00:02:13 +0000 (00:02 +0000)]
elementary - fixed some logic errors patched by rajeev.r@samsung.com
Hi all,
I found few memory related issues in elementary package when performed static analysis on it.
These issues include:
Array indices getting out of bounds, freed memory address being passed to a function as parameter, memory not getting cleaned up because of earlier return statement.
Issues details:
1. In elm_widget.c inside function elm_widget_signal_callback_del(), it is possible that freed memory address esd is passed to the sd->callback_del_func(). I think it should be data, not esd.
Moreover what if the callback frees memory for data, then the other problem is that the return value is data from the function elm_widget_signal_callback_del() which in my opinion can be a problem.
2. Inside directory src/edje_externals for files elm_genlist.c, elm_notify.c, elm_list.c, elm_thumb.c and elm_map.c, array indices can go beyound bounary.
sizeof() operator for an array of character pointers will return [number of elements in the array * size of (char*)], basically 4 times the number of elements which has been taken care in assertion inside src/edje_extenarnals
while performing assertion but has been missed in the next statement in the loop condition.
3. In file src/lib/elm_config.c inside function _elm_config_profiles_list, freeing of file iterator has been missed out.
Please review the attached patch and let me know your opinion.
Thanks.
Regards,
Rajeev
SVN revision: 63550
Daniel Juyung Seo [Thu, 22 Sep 2011 17:40:44 +0000 (17:40 +0000)]
elm els_scroller.c: Always check and delete hold_animator on mouse up.
SVN revision: 63539
Cedric BAIL [Thu, 22 Sep 2011 13:51:22 +0000 (13:51 +0000)]
elementary: fix trying to use the best available icon size.
SVN revision: 63537
Daniel Juyung Seo [Thu, 22 Sep 2011 12:39:49 +0000 (12:39 +0000)]
elm genlist: Added genlist event hook boundary check routine.
SVN revision: 63536
Tom Hacohen [Thu, 22 Sep 2011 11:31:22 +0000 (11:31 +0000)]
Elm entry: Fixed a bug with inserting chunks.
Thanks a lot to WooHyun for finding this.
SVN revision: 63535
Cedric BAIL [Thu, 22 Sep 2011 07:00:10 +0000 (07:00 +0000)]
elementary: fix typo.
Patch by Guillaume "Kuri" Friloux <guillaume.friloux@asp64.com>.
SVN revision: 63532
Daniel Juyung Seo [Wed, 21 Sep 2011 10:44:06 +0000 (10:44 +0000)]
elm map: Coding convention.
SVN revision: 63513
Daniel Juyung Seo [Wed, 21 Sep 2011 10:37:23 +0000 (10:37 +0000)]
elm: Removed trailing whitespaces.
SVN revision: 63512
Kim Yunhan [Wed, 21 Sep 2011 07:04:34 +0000 (07:04 +0000)]
Elementary map : fix zoom-out bug
From: Kim Yunhan <spbear@gmail.com>
When you test elm_map with mouse wheel, it worked abnormally because of some bug.
So I made some more patch for fixing it.
This patch file also includes a previous patch (zoom-out issue).
SVN revision: 63510
Sangho Park [Wed, 21 Sep 2011 06:20:28 +0000 (06:20 +0000)]
Elementary map : a bug fix for zoom-out in elm_map by Kim Yunhan
I wrote a patch that handles a bug while zooming-out in elm_map.
When I try to zoom out, some tiles are broken.
But it is hard to notice because broken frame disappears quickly.
I investigated in a few days.
And I realize that there are something wrong.
When map is zoomed out, a tile is shrunk by evas_object_resize().
But evas_map handles its texture by just its origin image size not a shrunk size.
If evas_object's width & height is shrunk, I have to handle for its texture.
SVN revision: 63509
ChunEon Park [Tue, 20 Sep 2011 01:39:35 +0000 (01:39 +0000)]
Elementary/naviframe - doc more.
Since the users have no idea about elm_object_item content/text parts names which are available,
added those part names in doc here.
SVN revision: 63485
ChunEon Park [Tue, 20 Sep 2011 01:22:53 +0000 (01:22 +0000)]
Elementary/naviframe - documentation
SVN revision: 63484
ChunEon Park [Tue, 20 Sep 2011 00:31:44 +0000 (00:31 +0000)]
elementary/naviframe - fixed just indentation
SVN revision: 63483
ChunEon Park [Mon, 19 Sep 2011 10:27:22 +0000 (10:27 +0000)]
elementary/video - fixed typo
SVN revision: 63476
ChunEon Park [Mon, 19 Sep 2011 05:24:49 +0000 (05:24 +0000)]
elementary/elc_naviframe - modified to use a widget API
SVN revision: 63470
ChunEon Park [Mon, 19 Sep 2011 05:23:35 +0000 (05:23 +0000)]
elementary/naviframe - added one convenient API for users.
pop the items which are in the stack between the top and the upper one of the given item
SVN revision: 63469
WooHyun Jung [Mon, 19 Sep 2011 05:22:22 +0000 (05:22 +0000)]
elementary/elm_radio : Added accessibility for elm_radio.
SVN revision: 63468
ChunEon Park [Mon, 19 Sep 2011 04:59:43 +0000 (04:59 +0000)]
elementary/widget - added one missing stuff.
SVN revision: 63467
Vincent Torri [Sun, 18 Sep 2011 17:23:41 +0000 (17:23 +0000)]
fix compilation on Windows
SVN revision: 63458
Vincent Torri [Sun, 18 Sep 2011 17:23:10 +0000 (17:23 +0000)]
position of Elementary.h
SVN revision: 63457
Tom Hacohen [Sun, 18 Sep 2011 07:53:41 +0000 (07:53 +0000)]
Elm gettext: Only translate if the app using elm is translatable.
It assumes gettext is initialized before the call to elm_init.
SVN revision: 63452
ChunEon Park [Fri, 16 Sep 2011 12:21:11 +0000 (12:21 +0000)]
elementary/naviframe - removed items in reverse since the items are stacked.
SVN revision: 63439
ChunEon Park [Fri, 16 Sep 2011 06:17:19 +0000 (06:17 +0000)]
elementary/naviframe - modified naviframe theme for title clicked signal emit.
SVN revision: 63427
ChunEon Park [Fri, 16 Sep 2011 06:11:36 +0000 (06:11 +0000)]
elementary/naviframe - to be proper name.
SVN revision: 63426
ChunEon Park [Fri, 16 Sep 2011 02:20:02 +0000 (02:20 +0000)]
elementary/naviframe - added item signal emit func.
SVN revision: 63425
ChunEon Park [Fri, 16 Sep 2011 02:10:07 +0000 (02:10 +0000)]
elementary/elm_object_item - added signal emit func.
SVN revision: 63424
ChunEon Park [Fri, 16 Sep 2011 01:09:48 +0000 (01:09 +0000)]
elementary/naviframe - renamed internal function names.
SVN revision: 63423
ChunEon Park [Fri, 16 Sep 2011 01:05:15 +0000 (01:05 +0000)]
elementary/naviframe - added signal emit hook
SVN revision: 63422
Daniel Juyung Seo [Thu, 15 Sep 2011 14:39:43 +0000 (14:39 +0000)]
elm po: Updated po files.
SVN revision: 63411
Daniel Juyung Seo [Thu, 15 Sep 2011 14:39:03 +0000 (14:39 +0000)]
elm ko_KR.po: Korean is not an RTL language. How stupid I was...
SVN revision: 63410
Daniel Juyung Seo [Thu, 15 Sep 2011 02:20:26 +0000 (02:20 +0000)]
elm icon: Removed trailing whitespaces.
SVN revision: 63404
Daniel Juyung Seo [Thu, 15 Sep 2011 02:16:37 +0000 (02:16 +0000)]
elm gengrid: Added page feature to gengrid. Patch by Benjamin Drucker
<benjamin.t.drucker@alum.mit.edu>. Thanks a lot!
On Wed, Aug 31, 2011 at 1:52 PM, Benjamin Drucker
<benjamin.t.drucker@alum.mit.edu> wrote:
> Earlier this month, there was a svn commit
> (http://trac.enlightenment.org/e/changeset/62496) which added a few
> page-related APIs to the elm scroller. These should probably also be
> added to gengrid, genlist and maybe even grid and list. Right now,
> though, I need them for gengrid. So I propose this patch, based
> entirely on the change that went in before. I've built it and I'm
> using these new gengrid APIs in my code now.
On Fri, Sep 9, 2011 at 4:45 PM, Benjamin Drucker
<benjamin.t.drucker@alum.mit.edu> wrote:
> Slowly but surely....
>
> This version of the gengrid page APIs patch has the following changes:
> 1. fixed spacing issues
> 2. add const where needed
> 3. submitted a gengrid longpressed change in a separate patch
>
> I really want to try to squeak this in the upcoming release if at all
> possible. If I have an extra space in some file, I promise I'll not do
> it again for the next patch!
>
> Thanks!!
> Ben
SVN revision: 63403
ChunEon Park [Thu, 15 Sep 2011 00:41:12 +0000 (00:41 +0000)]
elementary/elm_common - fixed typo
SVN revision: 63402
ChunEon Park [Thu, 15 Sep 2011 00:15:12 +0000 (00:15 +0000)]
elementary/naviframe - modified to show the title area shadow.
SVN revision: 63401
Cedric BAIL [Wed, 14 Sep 2011 18:28:22 +0000 (18:28 +0000)]
elementary: decorelate fdo from thumbnail resizing.
SVN revision: 63393
cnook [Wed, 14 Sep 2011 14:12:13 +0000 (14:12 +0000)]
From: cnook <kimcinoo@gmail.com>
Subject: [E-devel] [Patch] elm_diskselector (ticket #853)
Date: Thu, 8 Sep 2011 12:41:27 +0900
Dear All, Hello~
The attached patch for resolving the ticket #853.
(http://trac.enlightenment.org/e/ticket/853)
There is an issue when it comes to rounded item.
Anyhow, I will fix it also.
Sincerely,
Shinwoo Kim
SVN revision: 63386
ChunEon Park [Wed, 14 Sep 2011 12:47:46 +0000 (12:47 +0000)]
Elementary/naviframe - removed blank APIs.
SVN revision: 63385
ChunEon Park [Wed, 14 Sep 2011 12:37:17 +0000 (12:37 +0000)]
elementary/naviframe - support default content/text part name
removed shadow var.
removed unuseful line.
SVN revision: 63384
Daniel Juyung Seo [Wed, 14 Sep 2011 11:30:21 +0000 (11:30 +0000)]
elm src/examples: Applied elm API changes.
SVN revision: 63382
ChunEon Park [Wed, 14 Sep 2011 11:21:01 +0000 (11:21 +0000)]
elementary/naviframe - removed white trailings
SVN revision: 63381
ChunEon Park [Wed, 14 Sep 2011 11:05:54 +0000 (11:05 +0000)]
elementary/naviframe - removed unproper method.
user needs to set their own style.
SVN revision: 63380
ChunEon Park [Wed, 14 Sep 2011 10:56:44 +0000 (10:56 +0000)]
elementary/naviframe - merged groups base and title
SVN revision: 63379
Daniel Juyung Seo [Wed, 14 Sep 2011 09:53:11 +0000 (09:53 +0000)]
elm button: Added _del_pre_hook to button. This reduces unnecessary calculations
and min setttings.
SVN revision: 63378
ChunEon Park [Wed, 14 Sep 2011 08:15:44 +0000 (08:15 +0000)]
elementary/naviframe - just updated signal name.
SVN revision: 63376
ChunEon Park [Wed, 14 Sep 2011 07:50:05 +0000 (07:50 +0000)]
elementry/ctxpopup - oopss. fixed ctxpopup according to changes
SVN revision: 63375
ChunEon Park [Wed, 14 Sep 2011 07:48:54 +0000 (07:48 +0000)]
elementry/ctxpopup - renamed more properly.
thanks govindaraju sm.
SVN revision: 63374
ChunEon Park [Wed, 14 Sep 2011 06:50:10 +0000 (06:50 +0000)]
elementary/naviframe - removed FIXME
SVN revision: 63372
ChunEon Park [Wed, 14 Sep 2011 06:49:23 +0000 (06:49 +0000)]
elementary/naviframe - filled the content_unset_hook
SVN revision: 63371
ChunEon Park [Wed, 14 Sep 2011 06:23:08 +0000 (06:23 +0000)]
elementary/naviframe - modified to support any parts of item content/text but not specified.
SVN revision: 63370
ChunEon Park [Wed, 14 Sep 2011 02:09:05 +0000 (02:09 +0000)]
elementary/win - added signal callback call for theme chanaged.
application developers may need to know when theme is changed.
SVN revision: 63368
Daniel Juyung Seo [Tue, 13 Sep 2011 16:59:25 +0000 (16:59 +0000)]
elm elm_widget.c: Fixed indentation.
SVN revision: 63361
Daniel Juyung Seo [Tue, 13 Sep 2011 16:58:10 +0000 (16:58 +0000)]
elm calendar: Internationalization of calendar title. Patch by Jihoon Kim <imfine98@gmail.com>
On Tue, Sep 13, 2011 at 10:47 PM, Jihoon Kim <imfine98@gmail.com> wrote:
> Hello, EFL developers.
>
> At this moment, the title format of elementary calendar widget is "%B %Y".
> However, it should be displayed as "%Y년 %B" in Korea.
> This patch is implemented for supporting this feature.
>
> Would you please apply this patch?
SVN revision: 63360
ChunEon Park [Mon, 12 Sep 2011 09:23:38 +0000 (09:23 +0000)]
elementary/ctxpopup - fixed indent.
SVN revision: 63346
ChunEon Park [Mon, 12 Sep 2011 09:22:36 +0000 (09:22 +0000)]
elementary/ctxpopup - minor changes.
used elm_widget_item_del.
and should be hidden when list is empty
SVN revision: 63345
Mike Blumenkrantz [Mon, 12 Sep 2011 03:14:53 +0000 (03:14 +0000)]
don't require "menu/" prefix for menu icons, fall back on regular icon name
SVN revision: 63335
Mike Blumenkrantz [Mon, 12 Sep 2011 02:06:27 +0000 (02:06 +0000)]
make ELM_CHECK_WIDTYPE & co macros useful. would you believe this macro came from my first ever code patch :D
SVN revision: 63334
Mike Blumenkrantz [Mon, 12 Sep 2011 02:05:30 +0000 (02:05 +0000)]
clicking a toolbar item is now a toggle:
clicking an unselected item -> item is selected
clicking a selected item -> item is unselected
SVN revision: 63333
Mike Blumenkrantz [Mon, 12 Sep 2011 01:56:57 +0000 (01:56 +0000)]
typos
SVN revision: 63332
Mike Blumenkrantz [Mon, 12 Sep 2011 01:05:07 +0000 (01:05 +0000)]
all this for elm_theme_data_get
SVN revision: 63331
Daniel Juyung Seo [Sun, 11 Sep 2011 12:24:40 +0000 (12:24 +0000)]
elm gengrid: Gengrid longpress documentation. Patch by Benjamin Drucker <benjamin.t.drucker@alum.mit.edu>
On Fri, Sep 9, 2011 at 4:18 PM, Benjamin Drucker <benjamin.t.drucker@alum.mit.edu> wrote:
> gengrid already emits "longpressed" signals, but it is not currently
> documented nor demonstrated in the examples. See the attached patch,
> please.
SVN revision: 63323
Mike Blumenkrantz [Sat, 10 Sep 2011 19:43:46 +0000 (19:43 +0000)]
greatly improve escape code for cnp escapes, also fixes all cnp escaping bugs
also fix another non-elm cnp crash
SVN revision: 63318
Mike Blumenkrantz [Sat, 10 Sep 2011 15:54:43 +0000 (15:54 +0000)]
add elm_object_item_data_get elm_object_item_data_set to wrap corresponding elm_widget_item calls
SVN revision: 63313
Mike Blumenkrantz [Sat, 10 Sep 2011 14:19:25 +0000 (14:19 +0000)]
revert this addition from r62857: breaks elm menus in some cases
SVN revision: 63312
Michael BOUCHAUD [Fri, 9 Sep 2011 12:49:54 +0000 (12:49 +0000)]
elementary: oups missing test add
SVN revision: 63307
Michael BOUCHAUD [Fri, 9 Sep 2011 12:43:34 +0000 (12:43 +0000)]
elementary: welcome to group in gengrid. Still need some work with reorder...
SVN revision: 63306
Daniel Juyung Seo [Thu, 8 Sep 2011 10:28:49 +0000 (10:28 +0000)]
elm po: Updated po files.
SVN revision: 63292
Daniel Juyung Seo [Thu, 8 Sep 2011 10:21:04 +0000 (10:21 +0000)]
elm test_genlist.c: I introduce "Genlist Textblock" test case into
elementary_test. This will help test textblock with genlist. Enjoy it!
SVN revision: 63291
Aharon Hillel [Thu, 8 Sep 2011 10:10:45 +0000 (10:10 +0000)]
Elm Glayer: Updated documentation
Signed-off-by: Aharon Hillel <a.hillel@partner.samsung.com>
SVN revision: 63290
Tom Hacohen [Thu, 8 Sep 2011 10:10:41 +0000 (10:10 +0000)]
Elm_glayer: Reset ZOOM, ROTATE to function as before continues.
SVN revision: 63289
Aharon Hillel [Thu, 8 Sep 2011 10:10:38 +0000 (10:10 +0000)]
Elm glayer: Moved is_mirrored definition and added comment.
Signed-off-by: Aharon Hillel <a.hillel@partner.samsung.com>
SVN revision: 63288
Aharon Hillel [Thu, 8 Sep 2011 10:10:34 +0000 (10:10 +0000)]
Elm glayer: Added glayer_continues_enable setting to elm-config-file.
Signed-off-by: Aharon Hillel <a.hillel@partner.samsung.com>
SVN revision: 63287
Aharon Hillel [Thu, 8 Sep 2011 10:10:30 +0000 (10:10 +0000)]
Elm glayer: Cleaned elm_gesture_layer.c.
Signed-off-by: Aharon Hillel <a.hillel@partner.samsung.com>
SVN revision: 63286
Aharon Hillel [Thu, 8 Sep 2011 10:10:27 +0000 (10:10 +0000)]
Elm glayer: Added Continues-gesture-feature of Line, Flick, Zoom, Rotate.
TODO: Clean code (added this version to have easy way of review), and maybe add pref-var of enabling disabline continues gestures
Signed-off-by: Aharon Hillel <a.hillel@partner.samsung.com>
SVN revision: 63285
Daniel Juyung Seo [Wed, 7 Sep 2011 15:02:27 +0000 (15:02 +0000)]
elm diskselector: Fixed elm_diskselector_item_selected_set() hanging bug. Patch by Hyoyoung Chang <hyoyoung.chang@samsung.com>
On Wed, Sep 7, 2011 at 6:51 PM, Hyoyoung Chang <hyoyoung.chang@samsung.com> wrote:
> Dear developers.
>
> This patch is fixing - hangs after using elm_diskselector_item_selected_set.
> Elm_diskselector add a idler and remove in _move_scroller with checking
> wd->idler
> But in elm_diskselector_item_selected_set, it's not use wd->idler.
> So idler is called infinite.
>
> It also registered in ticket ( http://trac.enlightenment.org/e/ticket/854 )
>
> Thank you
On Wed, Sep 7, 2011 at 7:00 PM, Hyoyoung Chang <hyoyoung.chang@samsung.com> wrote:
> I omitted about credit.
> With cnook, I can easily find this bug.
> Thanks to cnook
SVN revision: 63269
WooHyun Jung [Wed, 7 Sep 2011 06:15:55 +0000 (06:15 +0000)]
elementary : Elementary focus can be controlled only when top window's
canvas gets focus. If elementary's focus control is tried with
unfocused canvas, newest_focus_count is only updated.
SVN revision: 63245
WooHyun Jung [Wed, 7 Sep 2011 01:41:19 +0000 (01:41 +0000)]
elementary/elm_win : Elementary's focus control should be started
after the canvas gets focus. There can be a case that the canvas doesn't get
focus when elm_win is shown.
SVN revision: 63240
Cedric BAIL [Mon, 5 Sep 2011 20:31:51 +0000 (20:31 +0000)]
elementary: use sorted state to improve gengrid and genlist.
SVN revision: 63217
Cedric BAIL [Mon, 5 Sep 2011 20:30:12 +0000 (20:30 +0000)]
elementary: fix ordering bug in fileselector.
SVN revision: 63216
Cedric BAIL [Mon, 5 Sep 2011 20:09:02 +0000 (20:09 +0000)]
elementary: forgotten patch that cleanup callback.
SVN revision: 63212
Daniel Juyung Seo [Mon, 5 Sep 2011 12:16:36 +0000 (12:16 +0000)]
elm genlist: Fixed reordering mode bug.
1. Fixed floating item bug while reordering.
2. Fixed moving an item out of range bug while reordering.
SVN revision: 63195
Daniel Juyung Seo [Mon, 5 Sep 2011 12:14:20 +0000 (12:14 +0000)]
elm genlist: Fixed formatting.
SVN revision: 63194
Carsten Haitzler [Mon, 5 Sep 2011 07:15:41 +0000 (07:15 +0000)]
fix COPYING to say 2011.
SVN revision: 63187
Daniel Juyung Seo [Sun, 4 Sep 2011 04:28:02 +0000 (04:28 +0000)]
elm Elementary.h.in: Fixed typo.
SVN revision: 63149
Rui Seabra [Sat, 3 Sep 2011 17:57:36 +0000 (17:57 +0000)]
Adjust spec to existing modules.
SVN revision: 63130