CHANGELOG.md in thinreports-0.8.0 vs CHANGELOG.md in thinreports-0.8.1

- old
+ new

@@ -1,5 +1,11 @@ +## 0.8.1 + +### Add OPTIONAL feature for converting a palette-based PNG w. transparency + +This feature is **DISABLED** by default. Please see [PR#32](https://github.com/thinreports/thinreports-generator/pull/32) for further details. + ## 0.8.0 This release is a stepping stone to next major version 1.0.0 release. * Upgrade to Prawn 1.3 and drop support for Ruby 1.8.7 (#11) @@ -111,14 +117,16 @@ ```ruby # New setter, same as `page.item(:text_block).value = 'tblock value'` page[:text_block] = 'tblock value' # New getter, same as `page.item(:text_block).value` -page[:text_block] # => "tblock value" +page[:text_block] # => <Tblock> +page[:text_block].value # => "tblock value" page.item(:text_block).value # => "tblock value" page[:image_block] = '/path/to/image.png' -page[:image_block] # => "/path/to/image.png" +page[:image_block].src # => "/path/to/image.png" +page.item(:image_block).src # => "/path/to/image.png" ``` See [Issue #22](https://github.com/thinreports/thinreports-generator/issues/22) for further details. ### Implement `Item#value=` method