X-Git-Url: http://git.code-monkey.de/?p=ruby-eet.git;a=blobdiff_plain;f=ChangeLog;h=be21abb8e5676c46ac9e2d095cd3ad20bbfde1dc;hp=26487df17b9e73c62ba6bc4990c85db7217f6872;hb=55a30d72d58511425905f5c25c9153a850710a6c;hpb=db79481964d28b069139851500a7482f4f56bb54 diff --git a/ChangeLog b/ChangeLog index 26487df..be21abb 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,6 +1,45 @@ --- -$Id: ChangeLog 62 2005-06-09 17:42:34Z tilman $ -++ +2006-05-14 Tilman Sauerbeck (tilman at code-monkey de) + * ext/ext.c: Fixed some warnings + +2006-05-13 Tilman Sauerbeck (tilman at code-monkey de) + * lib/eet.rb, ext/ext.c, test/test_misc.rb: Deprecated + Eet::File#list and introduced Eet::File#entries and + Eet::File#[] instead. + * README, Rakefile: Updated project homepage and documentation + locations + +2005-08-25 Tilman Sauerbeck (tilman at code-monkey de) + * README: Fixed bad link to project homepage + +2005-07-16 Tilman Sauerbeck (tilman at code-monkey de) + * ext/ext.c, test/test_stream.rb: Don't raise BadElementError if + Stream#serialize is called on a stream that includes non-Chunk + elements + * ext/ext.c, test/test_{chunk,stream}.rb: Internal API update. + Instead of using Chunk#serialize and Stream#serialize, rename + Chunk#serialize to Chunk#to_s and just use Stream#to_s to + serialize the streams + +2005-07-15 Tilman Sauerbeck (tilman at code-monkey de) + * ext/ext.c: Code cleanup + +2005-07-09 Tilman Sauerbeck (tilman at code-monkey de) + * ext/ext.c: Object#to_eet: clear the stream after serializing it, + which slightly increases performance + +2005-06-29 Tilman Sauerbeck (tilman at code-monkey de) + * ext/ext.c: Store the result of rb_intern("pack") in a + global variable + * ext/ext.c: Remove unneeded StringValue() calls in + chunk_serialize() + * ext/ext.c: Properly check for an integer overflow when + computing the total buffer size in Chunk#initialize + +2005-06-28 Tilman Sauerbeck (tilman at code-monkey de) + * ext/ext.c: Removed stray backslash + +2005-06-27 Tilman Sauerbeck (tilman at code-monkey de) + * ext/ext.c: Tweaked Stream#serialize to be more GC-friendly 2005-06-09 Tilman Sauerbeck (tilman at code-monkey de) * ext/ext.c: Object#to_eet: Don't put the final chunk in a stream @@ -8,6 +47,8 @@ $Id: ChangeLog 62 2005-06-09 17:42:34Z tilman $ * ext/ext.c, test/test_stream.rb: If Stream#serialize is called on a stream that includes non-Chunk elements, BadElementError is raised + * ext/ext.c: Tweaked for_each_prop; use rb_ary_push() to add + chunks to the stream instead of calling Stream#push 2005-06-08 Tilman Sauerbeck (tilman at code-monkey de) * ext/ext.c, lib/eet.rb, test/test_basic.rb: