Skip to content

Releases: QuickBlox/q-municate-services-ios

0.6.2

10 May 15:28
Compare
Choose a tag to compare

New

  • Added support for use_frameworks! for development podspec
  • Implemented isEmpty method of QMMemoryStorage protocol for all dependencies

Removed:

  • Removed deprecated login method through Twitter Digits

Fixed:

  • GitHub issue: _CDAttachment duplicated class, which conflicts with system library. Thanks to Serproger.
  • GitHub issue: - [QMAttachmentStoreService method cachedImageForAttachment:] always returns nil. Thanks to haarj.
  • Warnings: Block implicitly retains 'self'; explicitly mention 'self' to indicate this is intended behavior [-Wimplicit-retain-self]
  • Renamed - [QMChatCache deleteMessageWithDialogID:] with - [QMChatCache deleteMessagesWithDialogID:]

0.6.1

18 Apr 11:59
Compare
Choose a tag to compare

Fixed bug with images downloading: property image was always nil.

0.6

23 Jan 17:36
Compare
Choose a tag to compare
0.6

QMServices 0.6

  • Deployment target 9.0
  • Bugfixes and performance improvements
  • New CoreData logs

0.5.5

25 Oct 14:08
Compare
Choose a tag to compare

Added jpegCompressionQuality:

/*
  The quality of the resulting JPEG image, expressed as a value from 0.0 to 1.0. 
  The value 0.0 represents the maximum compression (or lowest quality)
  while the value 1.0 represents the least compression (or best quality). Default value - 1.0.
  */
 +@property (nonatomic) CGFloat jpegCompressionQuality;

0.5.4

06 Oct 10:59
Compare
Choose a tag to compare

0.5.3

02 Oct 10:18
Compare
Choose a tag to compare
  • Fixed Warnings (Xcode 9)

0.5.2

21 Sep 14:46
Compare
Choose a tag to compare
  • Added backward compatibility for old attachments with integer ID and with type photo.
  • Added universal attachment interface (See QBChatAttachment+QMFactory.h).

0.5.1

15 Sep 12:36
Compare
Choose a tag to compare
  • Fixed issue with chat dialog’s counters

0.5

15 Sep 12:34
Compare
Choose a tag to compare
0.5
  • Removed QB_GENERIC
  • Refactored Core Data
  • Added QMOpenGraphService
  • Added QMAttachmentContentService
  • Added QMAttachmentStoreService
  • Added QMMediaDownloadService
  • Added QMMediaUploadService
  • Fixed auto login issues
  • Updated inline documentation

0.4.6

19 Jan 11:25
Compare
Choose a tag to compare

QMServices v0.4.6:

  • Updated QMChatServiceModel xcdatamodel version;
    Regenerated models CDDialog, CDMessage, CDAttachment, CDContactListItem, CDUser using mogenerator
  • Added support for application groups:
    Implemented setupDBWithStoreNamed:applicationGroupIdentifier: method in QMDBStorage class. Use this method to setup shared CoreData stack.
    Added appGroupIdentifier delegate to QMServiceManagerProtocol. Use it to set app group identifier for cache storages related to this service.
    Use app groups to allow multiple apps access to shared containers and allow additional interprocess communication between apps.