Skip to content

Commit

Permalink
Merge pull request #6 from codetoart/dev
Browse files Browse the repository at this point in the history
  • Loading branch information
Mahavir Jain authored Jun 25, 2018
2 parents 831bba6 + 05b36ea commit 428dba9
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion r2-fetcher/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ ext {
siteUrl = 'https://github.com/readium/r2-streamer-java'
gitUrl = 'https://github.com/readium/r2-streamer-java.git'

libraryVersion = '0.1.6'
libraryVersion = '0.1.7'

developerId = 'mobisystech'
developerName = 'CodeToArt'
Expand Down
2 changes: 1 addition & 1 deletion r2-parser/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ ext {
siteUrl = 'https://github.com/readium/r2-streamer-java'
gitUrl = 'https://github.com/readium/r2-streamer-java.git'

libraryVersion = '0.1.6'
libraryVersion = '0.1.7'

developerId = 'mobisystech'
developerName = 'CodeToArt'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,12 @@ public String rawData(String relativePath) throws NullPointerException {
String line;

while ((line = br.readLine()) != null) {
sb.append(line); //.append('\n');
sb.append(line).append('\n');
}

if (sb.length() > 0)
sb.deleteCharAt(sb.length() - 1);

return sb.toString();
} catch (URISyntaxException | ZipException | IOException e) {
e.printStackTrace();
Expand Down
2 changes: 1 addition & 1 deletion r2-server/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ ext {
siteUrl = 'https://github.com/readium/r2-streamer-java'
gitUrl = 'https://github.com/readium/r2-streamer-java.git'

libraryVersion = '0.1.6'
libraryVersion = '0.1.7'

developerId = 'mobisystech'
developerName = 'CodeToArt'
Expand Down

0 comments on commit 428dba9

Please sign in to comment.