Skip to content

Commit

Permalink
Updated to v0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
clbustos committed Jan 5, 2012
1 parent 8b174cf commit 71febf8
Show file tree
Hide file tree
Showing 4 changed files with 58 additions and 23 deletions.
32 changes: 32 additions & 0 deletions History.txt
@@ -1,3 +1,35 @@
=== 0.5.0 / 2012-01-05

* Added test for utf8. Test load implementation of rtf library on same path first [Claudio Bustos]
* Cleanup: remove executable bit [Marcello Barnaba]
* Converters: HTML: add H4 support [Marcello Barnaba]
* Converters: HTML: add tidy cleaning (and the tidy dependency of course) [Marcello Barnaba]
* Converters: HTML: carriage returns are not spaces in RTF [Marcello Barnaba]
* Converters: HTML: fix excess space bug [Marcello Barnaba]
* Converters: HTML: fixed a traversing bug [Marcello Barnaba]
* Converters: HTML: imported @panmind source previously published on gist:583061 [Marcello Barnaba]
* Converters: HTML: reduce headings font sizes - should be parametrized [Marcello Barnaba]
* Converters: HTML: rewrote without polluting nokogiri [Marcello Barnaba]
* Converters: HTML: whitespace [Marcello Barnaba]
* Converters: require them via require "rtf/converters" [Marcello Barnaba]
* Fix gemspec to reflect correct homepage [Chris O'Sullivan]
* Fixing rtf files to work with tempfiles opened from s3 [Dan Herrera]
* Gem: add nokogiri dependency (sucks, I know) [Marcello Barnaba]
* Gem: changed name and generated gemspec [Marcello Barnaba]
* Gem: update authors list [Marcello Barnaba]
* Rename README to have rdoc extension so it looks pretty on github [Chris O'Sullivan]
* Some pictures are not properly scaled without \picwgoal and \pichgoal [Marcin Urbanski]
* Update readme to reflect correct copyright [Chris O'Sullivan]
* Updated CHANGES with new version details [Chris O'Sullivan]
* Updated README; Use name-spaced class invocations instead of including RTF module; Open file with 'w'I thought adding the 'w' to your `File.open` was a bit [Jay Hayes]e doing it exactly as you've shown will
* Updated test file names [clbustos]
* add '\lastrow' tag to the lastrow. It's a fix for iOS. [Samuel Mullen]
* block syntax for ImageNode#open_file [Cygnus]
* improve speed and memory use of ImageNode#to_rtf [Cygnus]
* refactor to close and open ImageNode file only when needed [Cygnus]
* refactor to use a Constant for ImageNode dimensions reading rather than passing values around [Cygnus]
* usually fail since in all likelihood the user doesn't have an empty file by that name in their current dir. [Jay Hayes]

=== 0.4.2
* Fix bug causing TextNode.to_rtf to return nil under 1.8.7[Jason Langenauer]
* Tests run under Ruby 1.9.2 and later [clbustos]
Expand Down
45 changes: 24 additions & 21 deletions Manifest.txt
@@ -1,9 +1,9 @@
History.txt
LICENSE.txt
Manifest.txt
README.rdoc
README.txt
Rakefile
VERSION.yml
examples/example01.rb
examples/example02.rb
examples/example03.rb
Expand All @@ -12,38 +12,41 @@ examples/example04.rb
examples/rubyrtf.bmp
examples/rubyrtf.jpg
examples/rubyrtf.png
ifad-rtf.gemspec
lib/rtf.rb
lib/rtf/colour.rb
lib/rtf/converters.rb
lib/rtf/converters/html.rb
lib/rtf/font.rb
lib/rtf/information.rb
lib/rtf/list.rb
lib/rtf/node.rb
lib/rtf/paper.rb
lib/rtf/style.rb
test/character_style_test.rb
test/colour_table_test.rb
test/colour_test.rb
test/command_node_test.rb
test/container_node_test.rb
test/document_style_test.rb
test/document_test.rb
test/fixtures/bitmap1.bmp
test/fixtures/bitmap2.bmp
test/fixtures/jpeg1.jpg
test/fixtures/jpeg2.jpg
test/fixtures/png1.png
test/fixtures/png2.png
test/font_table_test.rb
test/font_test.rb
test/footer_node_test.rb
test/header_node_test.rb
test/image_node_test.rb
test/information_test.rb
test/node_test.rb
test/paragraph_style_test.rb
test/style_test.rb
test/table_cell_node_test.rb
test/table_node_test.rb
test/table_row_node_test.rb
test/test_helper.rb
test/helper_tests.rb
test/test_character_style.rb
test/test_colour.rb
test/test_colour_table.rb
test/test_command_node.rb
test/test_container_node.rb
test/test_document.rb
test/test_document_style.rb
test/test_font.rb
test/test_font_table.rb
test/test_footer_node.rb
test/test_header_node.rb
test/test_image_node.rb
test/test_information.rb
test/test_node.rb
test/test_paragraph_style.rb
test/test_style.rb
test/test_table_cell_node.rb
test/test_table_node.rb
test/test_table_row_node.rb
test/text_node_test.rb
2 changes: 1 addition & 1 deletion Rakefile
Expand Up @@ -12,7 +12,7 @@ h=Hoe.spec 'clbustos-rtf' do
# Original author: Peter Wood
self.developer 'Claudio Bustos', 'clbustos_at_gmail.com'
self.version=RTF::VERSION

self.git_log_author=true
path = File.expand_path("~/.rubyforge/user-config.yml")
config = YAML.load(File.read(path))
host = "#{config["username"]}@rubyforge.org"
Expand Down
2 changes: 1 addition & 1 deletion lib/rtf.rb
Expand Up @@ -12,7 +12,7 @@
# This module encapsulates all the classes and definitions relating to the RTF
# library.
module RTF
VERSION="0.4.2"
VERSION="0.5.0"
# This is the exception class used by the RTF library code to indicate
# errors.
class RTFError < StandardError
Expand Down

0 comments on commit 71febf8

Please sign in to comment.