-- $Id: ChangeLog 25 2005-04-09 17:49:17Z tilman $ ++ 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 2005-03-23 Tilman Sauerbeck (tilman at code-monkey de) * ext/ext.c, test/test_misc.rb: Eet::File methods check whether EET entry keys contain binary zeroes 2005-03-16 Tilman Sauerbeck (tilman at code-monkey de) * lib/eet.rb: Fixed Eet::Stream#initialize 2005-03-06 Tilman Sauerbeck (tilman at code-monkey de) * Rakefile: fixed file permissions for eet.rb 2005-03-05 Tilman Sauerbeck (tilman at code-monkey de) * Rakefile: use FileUtils to install eet.rb and eet_ext.so 2005-03-03 Tilman Sauerbeck (tilman at code-monkey de) * ext/ext.c: EET_FILE_MODE_RW has been renamed to EET_FILE_MODE_READ_WRITE 2005-02-15 Tilman Sauerbeck (tilman at code-monkey de) * lib/eet.rb, test/hash.rb: Removed the :hash format hack * test/basic.rb: Renamed to test_basic.rb * test/broken_classes.rb: Renamed to test_broken_classes.rb * test/chunk.rb: Renamed to test_chunk.rb * test/hash.rb: Renamed to test_hash.rb * test/list.rb: Renamed to test_list.rb * test/misc.rb: Renamed to test_misc.rb * test/stream.rb: Renamed to test_stream.rb * test/sub.rb: Renamed to test_sub.rb * README: Removed documentation for the :hash format hack * lib/eet.rb: Added :sub format specifier to Array#to_eet_chunks * lib/eet.rb, README: Removed edd_name entry from property hash 2005-02-14 Tilman Sauerbeck (tilman at code-monkey de) * ext/ext.c: Enable highest compression for images * lib/eet.rb: Added Eet::VERSION 2005-02-13 Tilman Sauerbeck (tilman at code-monkey de) * lib/eet.rb: If a hash is encoded with the :hash type specifier, make sure that the keys/values are strings * README: Documentation update * Rakefile: Split out eet-config calls, to catch missing libeet early 2005-02-10 Tilman Sauerbeck (tilman at code-monkey de) * lib/eet.rb, test/broken_classes.rb: Implemented Object#to_eet_name and Object#to_eet_properties. Adapted Object#to_eet's error checking and the broken classes test. * test/misc.rb: Use the new implementations of #to_eet_name and #to_eet_properties * test/misc.rb: Added a test for Object#to_eet_name and Object#to_eet_properties * Rakefile, test/hash.[rb,c], test/utils.c: Reworked the hash test to not depend on hash.c/utils.c anymore. * lib/eet.rb: Added documentation for Object#to_eet_name and Object#to_eet_properties 2005-02-09 Tilman Sauerbeck (tilman at code-monkey de) * test/sub.rb, test/sub.c: Reworked the sub test to not depend on sub.c anymore * test/list.rb, test/list.c: Reworked the list test to not depend on list.c anymore 2005-02-08 Tilman Sauerbeck (tilman at code-monkey de) * lib/eet.rb: Eet::Chunk.new checks the tag for binary zeroes again * test/chunk.rb: Added a test for binary zeroes in tags * lib/eet.rb: Added Eet::Chunk.deserialize * test/chunk.rb: Added a test for Eet::Chunk.deserialize * lib/eet.rb: Make sure Eet::Chunk.new is passed strings only * lib/eet.rb: Added Eet::ChunkError * test/chunk.rb: Added tests for the error handling in Eet::Chunk.deserialize * lib/eet.rb, test/stream.rb: Added Eet::Stream.deserialize * test/basic.rb, test/basic.c: Rewrote basic test to not depend on basic.c anymore 2005-02-07 Tilman Sauerbeck (tilman at code-monkey de) * test/list.rb, test/sub.rb: Make sure to use an array as the hash values in Object#to_eet_properties * lib/eet.rb: Perform more aggressive type checking in Object#to_eet. Added Eet::EetError, Eet::PropertyError and Eet::NameError. * test/chunk.rb, test/stream.rb: Added tests for the Eet::Chunk and Eet::Stream classes * ext/ext.c, test/misc.rb: Raise IOError if Eet::File#list is called in write-only mode * test/broken_classes.rb: Added tests for the errors that Object#to_eet may raise * test/basic.[c,rb]: Added a test for 64bit integers * lib/eet.rb: Pack 32bit integers with the "V" specifier instead of "i", to enforce little-endian format 2005-02-05 Tilman Sauerbeck (tilman at code-monkey de) * ext/ext.c: Added Eet::File#read_image 2005-02-04 Tilman Sauerbeck (tilman at code-monkey de) * test/misc.rb: Removed nested assertions * ext/ext.c: raise IOError on zero writes * test/misc.rb: added test_zero_write 2005-02-03 Tilman Sauerbeck (tilman at code-monkey de) * test/misc.rb: Added some test for Eet::File#read and improved other tests * lib/eet.rb: Don't check for binary zeroes in tags 2005-02-01 Tilman Sauerbeck (tilman at code-monkey de) * lib/eet.rb: Reworked Stream/Chunk interfaces * lib/eet.rb: Validate input data in Chunk.new 2005-01-20 Tilman Sauerbeck (tilman at code-monkey de) * Added some documentation