diff --git a/CHANGES.rst b/CHANGES.rst index 6e5760442..fb369e2e6 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,3 +1,16 @@ +Changes in MatrixKit in 0.3.4 (2016-03-17) +=============================================== + +Improvements: + * MXKWebViewViewController: add view controller for webview display. + +Bug fixes: + * Chat Screen: scrolling to bottom when opening new rooms seems unreliable. + * Chat Screen: Wrong displayName and wrong avatar are displayed on invitation. + * Chat Screen: Some messages are displayed twice. + * Chat Screen: Some unsent messages are persistent. + * Fix missing loading wheel when app is resumed. + Changes in MatrixKit in 0.3.3 (2016-03-07) =============================================== diff --git a/MatrixKit.podspec b/MatrixKit.podspec index 60029db7d..407984ec4 100644 --- a/MatrixKit.podspec +++ b/MatrixKit.podspec @@ -1,7 +1,7 @@ Pod::Spec.new do |s| s.name = "MatrixKit" - s.version = "0.3.3" + s.version = "0.3.4" s.summary = "The Matrix reusable UI library for iOS based on MatrixSDK." s.description = <<-DESC @@ -17,13 +17,13 @@ Pod::Spec.new do |s| s.platform = :ios, "7.0" - s.source = { :git => "https://github.com/matrix-org/matrix-ios-kit.git", :tag => "v0.3.3" } + s.source = { :git => "https://github.com/matrix-org/matrix-ios-kit.git", :tag => "v0.3.4" } s.source_files = "MatrixKit", "MatrixKit/**/*.{h,m}" s.resources = "MatrixKit/**/*.{xib}", "MatrixKit/Assets/MatrixKitAssets.bundle" s.requires_arc = true - s.dependency 'MatrixSDK', '~> 0.6.3' + s.dependency 'MatrixSDK', '~> 0.6.4' s.dependency 'HPGrowingTextView', '~> 1.1' s.dependency 'libPhoneNumber-iOS', '~> 0.8.7' diff --git a/MatrixKit/Utils/MXKConstants.m b/MatrixKit/Utils/MXKConstants.m index 63640b2b7..2dba3d5cc 100644 --- a/MatrixKit/Utils/MXKConstants.m +++ b/MatrixKit/Utils/MXKConstants.m @@ -16,6 +16,6 @@ #import "MXKConstants.h" -NSString *const MatrixKitVersion = @"0.3.3"; +NSString *const MatrixKitVersion = @"0.3.4"; NSString *const kMXKErrorNotification = @"kMXKErrorNotification"; \ No newline at end of file diff --git a/Podfile b/Podfile index 7c3790128..c2a229e25 100644 --- a/Podfile +++ b/Podfile @@ -8,13 +8,13 @@ target "MatrixKitSample" do # Different flavours of pods to Matrix SDK # The tagged version on which this version of MatrixKit has been built -#pod 'MatrixSDK', '~> 0.6.3' +pod 'MatrixSDK', '~> 0.6.4' # The lastest release available on the CocoaPods repository #pod 'MatrixSDK' # The develop branch version -pod 'MatrixSDK', :git => 'https://github.com/matrix-org/matrix-ios-sdk.git', :branch => 'develop' +#pod 'MatrixSDK', :git => 'https://github.com/matrix-org/matrix-ios-sdk.git', :branch => 'develop' # The one used for developping both MatrixSDK and MatrixKit # Note that MatrixSDK must be cloned into a folder called matrix-ios-sdk next to the MatrixKit folder