Skip to content

Commit

Permalink
readme update (#12)
Browse files Browse the repository at this point in the history
* participant finished typing message in a conversation API and event (#4)

* foundation - moved foundation specific config to ComapiConfig class, extend Role builder APIs, Sender obj constructor added, APIs adjusted for chat module

* Foundation module - added messaging service method queryConversationEvents that fixes list of available events in the response. Messaging service method queryEvents has been deprecated.

(cherry picked from commit 07029b4)

* Added missing description getter in conversation.

* extended public MessageToSend obj API to allow injection of metadata by other modules

* added patch profile service API

* added eTags to conversation and profile socket events model

* moved isPublic conversation to base class

* Added new API for getting all conversations, the return type is extended with information about last sent event id, participant count and eTag per conversation.

* added event id to message sent response

* Added configuration to switch of FCM registration to avoid initialisation error if Firebase not configured. Added tests for patching profile.

* Updated Readme.

* Upload content API.

* Passing content file name, not calling push token update if token not available

* copying merged logs to provided file, logs formatting, logger cloning

* optimisation and comments in logs

* service call error login, cleanup

* fixed merging logs, tests

* fixed conflict

* Deprecated ConversationCreateEvent as this event won't be emitted by the SDK. The correct way to update local db with a conversation we were added to as a participant is to listen to ParticipantAddedEvent events (first per conversationId).

* upgraded dependencies

* version number change

* Readme update

* version number change to 1.1.1, removed versioning scripts

* readme update
  • Loading branch information
MarcinSwierczek authored and Ben Moore committed Oct 24, 2017
1 parent b0af0d7 commit b5aa863
Show file tree
Hide file tree
Showing 6 changed files with 4 additions and 30 deletions.
2 changes: 1 addition & 1 deletion COMAPI/foundation/src/main/java/com/comapi/BaseComapi.java
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ class BaseComapi {
/**
* Version of the ComapiImpl SDK MAJOR.MINOR.PATCH.BUILD
*/
private final static String SDK_VERSION = "VER_TO_REPLACE";
private final static String SDK_VERSION = "1.1.1";

private static final Set<String> apiSpaces = Collections.synchronizedSet(new HashSet<String>());

Expand Down
2 changes: 1 addition & 1 deletion COMAPI/foundation/version.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
*/

ext.foundationVersion = '1.1.0'
ext.foundationVersion = '1.1.1'

def isFoundationRelease = System.getenv("isparagonrelease")
ext.isReleaseVersion = isFoundationRelease != null ? isFoundationRelease : false
Expand Down
3 changes: 0 additions & 3 deletions COMAPI/removeBOM.ps1

This file was deleted.

12 changes: 0 additions & 12 deletions COMAPI/version.cmd

This file was deleted.

11 changes: 0 additions & 11 deletions COMAPI/version.sh

This file was deleted.

4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@ Via Maven
<dependency>
<groupId>com.comapi</groupId>
<artifactId>foundation</artifactId>
<version>1.0.2</version>
<version>1.1.1</version>
</dependency>
```

or Gradle

```
compile 'com.comapi:foundation:1.0.2'
compile 'com.comapi:foundation:1.1.1'
```

For more information about the integration please visit [the website](http://docs.comapi.com/reference#one-sdk-android-overview).

0 comments on commit b5aa863

Please sign in to comment.