diff options
author | David Walter Seikel | 2012-01-04 18:41:13 +1000 |
---|---|---|
committer | David Walter Seikel | 2012-01-04 18:41:13 +1000 |
commit | dd7595a3475407a7fa96a97393bae8c5220e8762 (patch) | |
tree | e341e911d7eb911a51684a7412ef7f7c7605d28e /libraries/eina/ChangeLog | |
parent | Add the skeleton. (diff) | |
download | SledjHamr-dd7595a3475407a7fa96a97393bae8c5220e8762.zip SledjHamr-dd7595a3475407a7fa96a97393bae8c5220e8762.tar.gz SledjHamr-dd7595a3475407a7fa96a97393bae8c5220e8762.tar.bz2 SledjHamr-dd7595a3475407a7fa96a97393bae8c5220e8762.tar.xz |
Add the base Enlightenment Foundation Libraries - eina, eet, evas, ecore, embryo, and edje.
Note that embryo wont be used, but I'm not sure yet if you can build edje without it.
Diffstat (limited to '')
-rw-r--r-- | libraries/eina/ChangeLog | 149 |
1 files changed, 149 insertions, 0 deletions
diff --git a/libraries/eina/ChangeLog b/libraries/eina/ChangeLog new file mode 100644 index 0000000..0d1ccdf --- /dev/null +++ b/libraries/eina/ChangeLog | |||
@@ -0,0 +1,149 @@ | |||
1 | 2011-01-29 Carsten Haitzler (The Rasterman) | ||
2 | |||
3 | 1.0.0 release | ||
4 | |||
5 | 2011-02-01 Cedric Bail | ||
6 | |||
7 | * Improve scalability and raw speed of Chained Mempool. | ||
8 | |||
9 | 2011-02-08 Tom Hacohen | ||
10 | |||
11 | * Added eina_unicode_strndup | ||
12 | |||
13 | 2011-02-16 Mike Blumenkrantz | ||
14 | |||
15 | * Added EINA_INLIST_FOREACH_SAFE | ||
16 | |||
17 | 2011-02-16 Tom Hacohen | ||
18 | |||
19 | * Added eina_unicode_utf8* functions for utf8 string handling | ||
20 | and conversions to and from Eina_Unicode | ||
21 | |||
22 | 2011-02-17 Mike Blumenkrantz | ||
23 | |||
24 | * Added eina_list_move* functions for moving list node data to other lists | ||
25 | |||
26 | 2011-02-24 Vincent Torri | ||
27 | |||
28 | * Fix a compilation failure when --disable-posix-threads | ||
29 | --disable-valgrind are passed to configure | ||
30 | |||
31 | 2011-03-09 Cedric Bail | ||
32 | |||
33 | * Fix stat failure when file size in bytes or the number of blocks | ||
34 | allocated to the file or the file serial number didn't fit in 32bits. | ||
35 | |||
36 | 2011-03-18 Mike Blumenkrantz | ||
37 | |||
38 | * Use stringshare for eina_error messages | ||
39 | * add eina_error_find to match an error message with its Eina_Error | ||
40 | |||
41 | 2011-04-06 Gustavo Sverzut Barbieri | ||
42 | |||
43 | * Add Simple XML parser API. | ||
44 | |||
45 | 2011-04-11 Cedric Bail | ||
46 | |||
47 | * Add eina_inlist_sort. | ||
48 | * Add eina_mempool_repack. | ||
49 | |||
50 | 2011-04-13 Cedric Bail & Vincent Torri | ||
51 | |||
52 | * Add Eina_File API, a portable mmap helper with some cache and tracking feature. | ||
53 | |||
54 | 2011-04-22 Vincent Torri | ||
55 | |||
56 | * Add Eina_Lock API, a portable solution across various system for locking/unlocking mutex. | ||
57 | |||
58 | 2011-04-24 Carsten Haitzler (The Rasterman) | ||
59 | |||
60 | * Add a prefix location finder api to eina. Beta status. needs | ||
61 | more use from higher up libs/apps first. | ||
62 | |||
63 | 2011-04-24 Vincent Torri | ||
64 | |||
65 | * Fix uninstallation of the mempools modules | ||
66 | |||
67 | 2011-04-27 Vincent Torri | ||
68 | |||
69 | * Fix static build of the buddy mempool | ||
70 | |||
71 | 2011-04-29 Cedric Bail | ||
72 | |||
73 | * Add Eina_Refcount macro helper. You should really use them when running with thread ! | ||
74 | |||
75 | 2011-05-14 Vincent Torri | ||
76 | |||
77 | * Add Eina_Condition API on Windows. | ||
78 | |||
79 | 2011-05-17 Tom Hacohen (TAsn) | ||
80 | |||
81 | * Added eina_binbuf: This is just like strbuf but for binary blobs. | ||
82 | Requested by discomfitor and honestly it looks needed. | ||
83 | |||
84 | 2011-05-18 Cedric Bail | ||
85 | |||
86 | * Fix eina_share_common_init to be called only once. | ||
87 | |||
88 | 2011-05-24 Vincent Torri | ||
89 | |||
90 | * Implement eina_sched_prio_drop() on Windows | ||
91 | |||
92 | 2011-05-24 Cedric Bail | ||
93 | |||
94 | * Add eina_inlist_sorted_insert. | ||
95 | |||
96 | 2011-05-30 Cedric Bail | ||
97 | |||
98 | * Add eina_condition_timedwait. | ||
99 | |||
100 | 2011-05-31 Cedric Bail | ||
101 | |||
102 | * Fix eina_hash_set to handle data == NULL like eina_hash_del. | ||
103 | |||
104 | 2011-06-03 Vincent Torri | ||
105 | |||
106 | * Fix static linking with eina (iconv could potentially not be | ||
107 | passed to the linker) | ||
108 | |||
109 | 2011-06-15 Cedric Bail | ||
110 | |||
111 | * Add eina_hash_free_cb_set to change the free callback during the | ||
112 | life of an Eina_Hash. | ||
113 | |||
114 | 2011-06-23 Cedric Bail | ||
115 | |||
116 | * Add Eina_LockRW. | ||
117 | |||
118 | 2011-07-04 Carsten Haitzler (The Rasterman) | ||
119 | |||
120 | * Add eina_mmap safety handling. | ||
121 | |||
122 | 2011-07-29 Cedric Bail | ||
123 | |||
124 | * Add eina_main_loop_is. | ||
125 | |||
126 | 2011-08-03 Myungjae Lee | ||
127 | |||
128 | * Fix eina_share_common_del and eina_share_common_ref to release lock on failure. | ||
129 | |||
130 | 2011-09-05 Cedric Bail | ||
131 | |||
132 | * Add eina_inlist_sorted_state_insert and helper. | ||
133 | |||
134 | 2011-09-06 Tom Hacohen | ||
135 | |||
136 | * Strbuf + Ustrbuf: Added eina_(u)strbuf_manage_new. This lets us | ||
137 | take a string and use it as the string buffer instead of copying | ||
138 | and allocating. | ||
139 | |||
140 | 2011-09-15 Cedric Bail | ||
141 | |||
142 | * Add eina_xattr_ls, eina_xattr_get, eina_xattr_set, eina_xattr_string_set, | ||
143 | eina_xattr_string_get, eina_xattr_double_set, eina_xattr_double_get, | ||
144 | eina_xattr_int_set, eina_xattr_int_get. | ||
145 | |||
146 | 2011-11-10 Boris Faure (billiob) | ||
147 | |||
148 | * Add new hash function eina_hash_murmur3 that should be better at | ||
149 | hashing strings. | ||