Compare commits

..

4 Commits

Author SHA1 Message Date
B. Petersen 9123210f69 bump version 2017-12-15 17:27:07 +01:00
B. Petersen 630a259a5a add missing MrLotUnref() function, fixes #218 2017-12-15 17:26:54 +01:00
B. Petersen f0183064ed show a 'not yet implemented' message when trying to enter the setup code 2017-12-15 17:08:28 +01:00
B. Petersen 11bca87a47 update gradle 2017-12-15 08:22:56 +01:00
4 changed files with 12 additions and 6 deletions
+2 -2
View File
@@ -1,7 +1,7 @@
# Delta Chat Changelog
## v0.11.1
2017-12-14
## v0.11.2
2017-12-15
* Add option to initiate Autocrypt Key Transfer
* Connect after importing a backup
+3 -3
View File
@@ -32,7 +32,7 @@ dependencies {
android {
compileSdkVersion 25
buildToolsVersion '25.0.2'
buildToolsVersion '26.0.2'
useLibrary 'org.apache.http.legacy'
defaultConfig.applicationId = "com.b44t.messenger"
@@ -122,7 +122,7 @@ android {
targetSdkVersion 25 // 25: Nougat. CAVE: Do NOT target "Andoid O" without checking the background tasks carefully, see https://developer.android.com/preview/behavior-changes.html#back-all . As long as we target "Nougat", everything works as expected even for "Andoid O" or later
// in general, we should not change the target without reason; eg. after the switch to Nougat, the camera stops working (see https://inthecheesefactory.com/blog/how-to-share-access-to-file-with-fileprovider-on-android-nougat/en )
versionName "0.11.1" // do NOT forget to increase defaultConfig.versionCode!
versionCode 506
versionName "0.11.2" // do NOT forget to increase defaultConfig.versionCode!
versionCode 507
}
}
+6
View File
@@ -1197,6 +1197,12 @@ JNIEXPORT jint Java_com_b44t_messenger_MrLot_getState(JNIEnv *env, jobject obj)
}
JNIEXPORT void Java_com_b44t_messenger_MrLot_MrLotUnref(JNIEnv *env, jclass c, jlong hLot)
{
mrlot_unref((mrlot_t*)hLot);
}
/*******************************************************************************
* Tools
******************************************************************************/
@@ -2671,8 +2671,8 @@ public class ChatActivity extends BaseFragment implements NotificationCenter.Not
@Override
public void didPressedSetupMessage(ChatMessageCell cell) {
//querySetupCode(cell.getMessageObject().getId(), null);
Toast.makeText(getParentActivity(), ApplicationLoader.applicationContext.getString(R.string.NotYetImplemented), Toast.LENGTH_SHORT).show();
querySetupCode(cell.getMessageObject().getId(), null);
}
@Override