Removed RCS-style IDs.
[ruby-eet.git] / ChangeLog
index d80c2195eb8edccc9892b2e983b5eeb5cc7c4e80..be21abb8e5676c46ac9e2d095cd3ad20bbfde1dc 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
---
-$Id: ChangeLog 2 2005-03-26 13:39:17Z 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
+          again, it's not needed
+        * 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:
+          Re-implemented Float#to_eet_chunks in C and switched format to
+          the one libeet uses.
+        * ext/ext.c, lib/eet.rb: Re-implemented Integer#to_eet_chunks
+          in C
+
+2005-06-02 Tilman Sauerbeck (tilman at code-monkey de)
+        * Released version 0.1.3
+
+2005-06-02 Tilman Sauerbeck (tilman at code-monkey de)
+        * ext/ext.c: Fixed to work on Ruby 1.8.{0,1} again
+        * lib/eet.rb: Bumped version number to 0.1.3
+        * ext/ext.c: Fixed RDoc comment for Object#to_eet
+        * Rakefile: If the CC environment variable is set, use its value
+          instead of calling "cc".
+        * NEWS: Updated for 0.1.3
+
+2005-05-31 Tilman Sauerbeck (tilman at code-monkey de)
+        * ext/ext.c: Optimized Object#to_eet slightly
+
+2005-05-30 Tilman Sauerbeck (tilman at code-monkey de)
+        * lib/eet.rb, ext/ext.c: Re-implemented Chunk#initialize in C
+        * ext/ext.c: Code cleanup
+        * lib/eet.rb, ext/ext.c: Re-implemented Object#to_eet in C
+        * ext/ext.c: Code cleanup
+
+2005-05-25 Tilman Sauerbeck (tilman at code-monkey de)
+        * test/test_array_sub.rb: Added a test for the :sub format
+          specifier
+        * lib/eet.rb, test/test_chunk.rb: Chunk.deserialize doesn't
+          modify its argument any more, instead, the number of bytes
+          consumed is now returned, too.
+        * lib/eet.rb: Stream.deserialize fails if the given buffer is
+          empty
+        * lib/eet.rb: Chunk.deserialize fails if the given buffer is
+          empty
+
+2005-05-19 Tilman Sauerbeck (tilman at code-monkey de)
+        * Rakefile: Code cleanup
+
+2005-05-18 Tilman Sauerbeck (tilman at code-monkey de)
+        * lib/eet.rb: Grammar fix
+        * lib/eet.rb: Don't use Array#pack when the result is constant
+
+2005-05-13 Tilman Sauerbeck (tilman at code-monkey de)
+        * ext/ext.c: Work around RDoc's limitations
+
+2005-05-11 Tilman Sauerbeck (tilman at code-monkey de)
+        * ext/ext.c: Don't define BSWAP16, it's not used
+        * lib/eet.rb: Don't specify the parent class of Eet::Stream when
+          we re-open it
+
+2005-05-10 Tilman Sauerbeck (tilman at code-monkey de)
+        * ext/ext.c: Store the result of rb_intern("include?") in a
+          global variable, since it's used very often
+
+2005-04-30 Tilman Sauerbeck (tilman at code-monkey de)
+        * lib/eet.rb: Tweaked Stream#serialize for performance
+        * lib/eet.rb, ext/ext.c: Re-implemented Stream#serialize and
+          Chunk#serialize in C
+
+2005-04-19 Tilman Sauerbeck (tilman at code-monkey de)
+        * Rakefile: Code cleanup
+
+2005-04-12 Tilman Sauerbeck (tilman at code-monkey de)
+        * ext/ext.c: Code cleanup
+        * ext/ext.c: Don't pass VALUEs to rb_raise()
+        * ext/ext.c: Sanitized StringValue() usage
+
+2005-04-11 Tilman Sauerbeck (tilman at code-monkey de)
+        * ext/ext.c: Use StringValue() instead of
+          Check_Type(blah, T_STRING)
+
+2005-04-09 Tilman Sauerbeck (tilman at code-monkey de)
+        * Released version 0.1.2
+
+2005-04-09 Tilman Sauerbeck (tilman at code-monkey de)
+        * Rakefile: Updated for rake 0.5.3
+        * lib/eet.rb: Bumped version number to 0.1.2
+        * NEWS: Updated for 0.1.2
+
+2005-03-29 Tilman Sauerbeck (tilman at code-monkey de)
+        * Released version 0.1.1
+
+2005-03-29 Tilman Sauerbeck (tilman at code-monkey de)
+        * README: Grammar fix
+        * Rakefile: Tweak lookup of PKG_VERSION
+        * NEWS, Rakefile: Added NEWS
+        * lib/eet.rb: Bumped version number to 0.1.1
+
+2005-03-28 Tilman Sauerbeck (tilman at code-monkey de)
+        * Rakefile: Fixed casing of "Ruby-EET"
+        * Rakefile: explicitly require compositepublisher
+
+2005-03-27 Tilman Sauerbeck (tilman at code-monkey de)
+        * README: Fixed casing of "Ruby-EET"
+        * ext/ext.c: Added support for compression parameters
+          to Eet::File#write_image and Eet::File#read_image
+
+2005-03-27 Tilman Sauerbeck (tilman at code-monkey de)
+        * Released version 0.1.0
+
+2005-03-27 Tilman Sauerbeck (tilman at code-monkey de)
+        * Rakefile: Added a publish task that uploads the current
+          tarball and the RDoc documentation to code-monkey.de
+        * README: Added a link to the online documentation
+        * Rakefile: Use Kernel#raise instead of Kernel#fail
+        * README: Improved project description
+        * Rakefile: Fixed the install task; eet.rb needs to be copied
+          to sitelibdir instead of sitearchdir
+        * README: Added a link to enlightenment.org to the description
 
 2005-03-26 Tilman Sauerbeck (tilman at code-monkey de)
         * README, Rakefile: Require Rake 0.5.0 or greater
         * Rakefile: Added a PackageTask
         * test/common.rb: Removed unused assertion
+        * lib/eet.rb: Bumped version number to 0.1.0
 
 2005-03-25 Tilman Sauerbeck (tilman at code-monkey de)
         * test/test_broken_classes.rb: Code cleanup