Skip to content

Commit

Permalink
For #8 - Update docs after 0.0.1-RC5 release. [ci skip]
Browse files Browse the repository at this point in the history
  • Loading branch information
danfickle committed Sep 28, 2016
1 parent 898b381 commit fb84e95
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,10 @@ from ````/openhtmltopdf-examples/src/main/java/com/openhtmltopdf/testcases/Testc
CHANGELOG
========

head - 0.0.1-RC5-SNAPSHOT
head - 0.0.1-RC6-SNAPSHOT
========

0.0.1-RC5
========
+ [Reimplemented text justification](https://github.com/danfickle/openhtmltopdf/pull/33) Thanks @hiddendog
+ [Fixed bug in table borders](https://github.com/danfickle/openhtmltopdf/pull/34) Thanks @rototor
Expand Down
8 changes: 4 additions & 4 deletions docs/integration-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@ OPEN HTML TO PDF
GETTING OPEN HTML TO PDF
========
New releases of Open HTML to PDF will be distributed through Maven. Search maven for [com.openhtmltopdf](http://mvnrepository.com/artifact/com.openhtmltopdf).
Current maven release is ````0.0.1-RC4````. If you would like to be notified of new releases, please subscribe to the [Maven issue](https://github.com/danfickle/openhtmltopdf/issues/7).
Current maven release is ````0.0.1-RC5````. If you would like to be notified of new releases, please subscribe to the [Maven issue](https://github.com/danfickle/openhtmltopdf/issues/7).

MAVEN ARTIFACTS
========
Add these to your maven dependencies section as needed:
````xml
<properties>
<!-- Define the version of OPEN HTML TO PDF in the properties section of your POM. -->
<openhtml.version>0.0.1-RC4</openhtml.version>
<openhtml.version>0.0.1-RC5</openhtml.version>
</properties>

<dependency>
Expand Down Expand Up @@ -118,8 +118,8 @@ import com.openhtmltopdf.bidi.support.ICUBidiReorderer;
import com.openhtmltopdf.bidi.support.ICUBidiSplitter;

// Then call on the builder.
builder.useBidiSplitter(new ICUBidiSplitter.ICUBidiSplitterFactory());
builder.useBidiReorderer(new ICUBidiReorderer());
builder.useUnicodeBidiSplitter(new ICUBidiSplitter.ICUBidiSplitterFactory());
builder.useUnicodeBidiReorderer(new ICUBidiReorderer());
builder.defaultTextDirection(TextDirection.LTR); // OR RTL
````

Expand Down

0 comments on commit fb84e95

Please sign in to comment.