Skip to content

Commit

Permalink
Bumped version
Browse files Browse the repository at this point in the history
  • Loading branch information
f-r00t committed Oct 24, 2022
1 parent 721023c commit 922a09f
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 11 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 027
versionName "v1.1.7"
versionCode 028
versionName "v1.1.8"
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.1.7");
setUserAgent("hugin-messenger-v1.1.8");

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.1.7");
connection.setRequestProperty("User-Agent", "hugin-messenger-v1.1.8");

/* Indicate we have a POST body */
connection.setDoOutput(true);
Expand Down
11 changes: 5 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "hugin-messenger-mobile",
"version": "1.1.7",
"version": "1.1.8",
"private": true,
"scripts": {
"start": "react-native start",
Expand All @@ -9,11 +9,10 @@
"lint": "eslint .",
"postinstall": "./node_modules/.bin/rn-nodeify --install fs,dgram,process,path,console,crypto,buffer,stream,vm,http,https,url,zlib,net,assert,tls --hack --yarn; ./node_modules/.bin/jetify",
"rnpm": {

"assets": [
"resources/fonts"
]
}
"assets": [
"resources/fonts"
]
}
},
"resolutions": {
"**/pbkdf2": "3.1.1",
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.1.7';
this.appVersion = 'v1.1.8';

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

0 comments on commit 922a09f

Please sign in to comment.