Releases: AmityCo/Amity-Social-Cloud-UIKit-iOS
Releases · AmityCo/Amity-Social-Cloud-UIKit-iOS
Release 2.15.0
Version 2.15.0 (2022-04-21)
Fixes:
- Fix issue where the recent chat page indicates incorrect unread badge numbers
Compatibility:
- Xcode Version: 13.1
- Realm Version: 10.21.1
- AmitySDK Version: 5.16.0
- Minimum Target: iOS 12.0
Release 2.14.0
Version 2.14.0 (2022-03-31)
Fixes:
- Improve uploading speed while sending image messages
Breaking Changes:
- Hide leave button for conversation type channel from channel setting page
Compatibility:
- Xcode Version: 13.2
- Realm Version: 10.21.1
- AmitySDK Version: 5.15.0
- Minimum Target: iOS 12.0
Release 2.13.0
Version 2.13.0 (2022-03-17)
Fixes:
- Fix "No Internet Connection" showing even when there is internet connection
Compatibility:
- Xcode Version: 13.1
- Realm Version: 10.21.1
- AmitySDK Version: 5.14.0
- Minimum Target: iOS 12.0
Release 2.12.1
Version 2.12.0 (2022-03-11)
New Features:
- Image converter for chat
Fixes:
- Fix issue where
unreadCount
inAmityChannel
class isn’t updated and miscalculated - Fix issue where new messages sent by the other one don't appear while observing
AmityMessageListScreenViewModel.getMessages(:)
Compatibility:
- Xcode Version: 13.1
- Realm Version: 10.21.1
- Minimum Target: iOS 12.0
Release 2.12.0
Version 2.12.0 (2022-03-03)
New Features:
- Image converter for chat
Fixes:
- Fix image rotate issue
- Fix framework installation via Cocoapods doesn’t support running on M1 natively
Compatibility:
- Xcode Version: 13.1
- Realm Version: 10.21.1
- Minimum Target: iOS 12.0
Release 2.11.0
Version 2.11.0 (2022-02-17)
New Features
- Post video and photo with different formats
- Convert video and photo to supported formats
- Mention users in a live stream
Fixes
- Fix highlight issue after updating a comment reply
- Fix highlight mention issue for livestream
Compatibility
- Xcode Version: 13.1
- Realm Version: 10.21.1
- Minimum Target: iOS: 12.0
Release 2.10.0
Version 2.10.0 (2022-02-04)
New Features
- Create poll post with mentions
Fixes
- Fix banned user highlight issue
- Fix mention user disappear issue
Compatibility
- Xcode Version: 13.1
- Realm Version: 10.20.0
- Minimum Target: iOS 12.0
Release 2.9.0
Version 2.9.0 (2022-01-25)
Fixes
- Fix community list load issue
- Fix keyboard appearance issue
- Fix update community issue
Api:
- Support custom post ranking global feed
Compatibility
- Xcode Version: 13.1
- Realm Version: 10.21.1
- Minimum Target: iOS 12.0
Release 2.8.0
Version 2.8.0 (2021-12-24)
New Features
- Activate mention feature for comment
- Search users for mention in comment
- Ability to comment with mentions
- Activate mention feature for reply
- Search users for mention in reply
- Ability to reply with mentions
- Show alert about maximum mention limitations for comment/reply
- Show alert about maximum characters limitations for comment/reply
- Display banned user symbol for comment/reply
- Ability to update comment with mentions
- Ability to update reply with mentions
Fixes
- Fix community list load issue
- Fix tap on mention issue
- Fix compose bar text color change issue
- Fix create mention in comment/reply for My Timeline
- Fix mention list hide text view issue
- Fix crash after select a user to mention for comment/reply during editing
- Fix mention highlight issue after removing a mention
- Fix update mention issue after editing a comment/reply
- Fix highlight mention issue for comment/reply preview
- Fix pagination issue for searching users
- Fix ban symbol appearance issue
- Fix highlight issue for mentions in Add comment page
- Fix empty comment/reply save issue
- Fix pagination issue for searching users to mention
- Fix keyboard covers latest message and auto-scrolling breaks
- Fix issue where a photo taken by camera shows wrong orientation
Compatibility
- Xcode Version: 13.1
- Realm Version: 10.20.0
- Minimum Target: iOS 12.0
Release 2.7.0
New features
Transfer roles
- Remove all logic for the creator of the community
- Last community’s moderators are required to transfer moderation roles to other members
- Show banned symbol for banned users in Global Search list, Followers/Following list, posts and comments/reply
Mention
- Create/update text, image, video and file post with mention
- Search all users for mention
- Search members in community for mention
- Disable banned users selection to mention in post
- Show alert when characters count is greater than 50000 or mentions count is greater than 30
Others
- Show banned symbol for banned users in Global Search list, Followers/Following list, posts and comments/reply
Fixes
- Fix edit indicator appearance issue for messages
- Fix member avatar overridden issue for chat
Breaking changes
- Moderator case is deprecated in AmityCommunityRole enum. Do use the communityModerator case instead.
let roleController = AmityCommunityRoleController(communityId: "communityId")
roleController.remove(roles: [AmityCommunityRole.communityModerator.rawValue], userIds: ["userId]") { error in
...
}
- Moderator case is deprecated in AmityChannelRole enum. Do use the channelModerator case instead.
let roleController = AmityChannelRoleController(channelId: "channelId")
roleController.add(role: .channelModerator, userIds: ["userId"]) { error in
...
}