Skip to content

Commit

Permalink
- fix validation range for TypeSymbol ( issue #19 )
Browse files Browse the repository at this point in the history
  • Loading branch information
swapnibble committed Oct 18, 2018
1 parent 1bc744c commit 6eb426e
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ You should have running nodeos node.
Set "http-server-address" other than "127.0.0.1" .
EOS commander includes wallet function, you don't need to specify "wallet_api_plugin" in config.ini.

EOS Commander has been tested with EOSIO version [1.1.0](https://github.com/EOSIO/eos/tree/v1.1.0).
EOS Commander has been tested with EOSIO version [1.3.2](https://github.com/EOSIO/eos/tree/v1.3.2).

See [EOSIO github](https://github.com/EOSIO/eos).

Expand Down
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ android {
applicationId "io.plactal.eoscommander"
minSdkVersion 18
targetSdkVersion 27
versionCode 18
versionName "2.5.0"
versionCode 19
versionName "2.5.1"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"

// 벡터 이미지
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ public static boolean validName( String name ) {
int value = (int) name.charAt( index );

// check range 'A' to 'Z'
if ( (value < 97) || ( value > 122)) {
if ( (value < 65) || ( value > 90)) {
return false;
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ HostInterceptor providesHostInterceptor() {
@Provides
@Singleton
OkHttpClient providesOkHttpClient(HostInterceptor interceptor) {

return new OkHttpClient.Builder()
.addInterceptor(interceptor)
.build();
Expand Down

0 comments on commit 6eb426e

Please sign in to comment.