Skip to content

Commit

Permalink
Version 3.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jguerinet committed Feb 15, 2017
1 parent 952fba8 commit 37dac1e
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Change Log

## Version 3.0.0 (2017-02-15)
* Added String parsing for web

## Version 2.8.1 (2015-12-02)
* Fixed bug where the HTML tags would be parsed after the "<" and ">" symbols in Android

Expand Down
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## Summary
The Mobile String Parser takes an online CSV file and parses the content to produce the Strings files for an Android or iOS app.
It also parses the Strings for Web in the form of a JSON: an array of objects where the key is the String key and within each object are the Strings,
with their keys being the language keys.
It will also show any warnings or errors that the Strings file might have.
Please note that it assumes that the file is in UTF-8 and also produces UTF-8 files.

Expand All @@ -17,7 +19,7 @@ To use this:
For example, if you put ### General ### (or ### General), it will be parsed as `/* General */` on iOS and `<!-- General -->` on Android
* Run the jar

[1]:https://github.com/jguerinet/mobile-string-parser/releases/download/2.8.1/mobile-string-parser-2.8.1.jar
[1]:https://github.com/jguerinet/mobile-string-parser/releases/download/3.0.0/mobile-string-parser-3.0.0.jar

## Gradle Dependencies
* [okhttp](http://square.github.io/okhttp/)
Expand All @@ -31,7 +33,7 @@ For example, if you put ### General ### (or ### General), it will be parsed as `
See the [Change Log](CHANGELOG.md).

##Copyright
Copyright 2013-2015 Julien Guerinet
Copyright 2013-2017 Julien Guerinet

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ apply plugin: 'application'
apply plugin: 'com.github.ben-manes.versions'

sourceCompatibility = 1.7
version = '2.8.2'
version = '3.0.0'

repositories {
jcenter()
Expand Down

0 comments on commit 37dac1e

Please sign in to comment.