Skip to content

Commit

Permalink
Bumped version
Browse files Browse the repository at this point in the history
  • Loading branch information
f-r00t committed Jul 18, 2023
1 parent 59b22c4 commit b37628d
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -132,8 +132,8 @@ android {
applicationId "com.hugin"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 037
versionName "v1.3.0"
versionCode 038
versionName "v1.3.1"
ndk {
abiFilters "armeabi-v7a", "x86", "arm64-v8a", "x86_64"
moduleName "TurtleCoin_jni"
Expand Down
2 changes: 1 addition & 1 deletion android/app/src/main/java/com/hugin/MainApplication.java
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ public void onCreate() {
upgradeSecurityProvider();

/* tonchan-vx.x.x */
setUserAgent("hugin-messenger-v1.3.0");
setUserAgent("hugin-messenger-v1.3.1");

SoLoader.init(this, /* native exopackage */ false);
}
Expand Down
2 changes: 1 addition & 1 deletion android/app/src/main/java/com/hugin/TurtleCoinModule.java
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,7 @@ else if (BLOCK_COUNT < 1)
connection.setRequestProperty("Accept", "application/json");

/* tonchan-vx.x.x */
connection.setRequestProperty("User-Agent", "hugin-messenger-v1.3.0");
connection.setRequestProperty("User-Agent", "hugin-messenger-v1.3.1");

/* Indicate we have a POST body */
connection.setDoOutput(true);
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "hugin-messenger-mobile",
"version": "1.3.0",
"version": "1.3.1",
"private": true,
"scripts": {
"start": "react-native start",
Expand Down
2 changes: 1 addition & 1 deletion src/Config.js
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ const Config = new function() {
/**
* Displayed in the settings screen
*/
this.appVersion = 'v1.3.0';
this.appVersion = 'v1.3.1';

/**
* Base URL for us to chuck a hash on the end, and find a transaction
Expand Down

0 comments on commit b37628d

Please sign in to comment.