Skip to content
This repository has been archived by the owner on Dec 12, 2022. It is now read-only.

Commit

Permalink
Prepare matrix-ios-kit release v0.3.4
Browse files Browse the repository at this point in the history
  • Loading branch information
giomfo committed Mar 17, 2016
1 parent 4e129cd commit 684f74d
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 6 deletions.
13 changes: 13 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -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)
===============================================

Expand Down
6 changes: 3 additions & 3 deletions MatrixKit.podspec
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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'

Expand Down
2 changes: 1 addition & 1 deletion MatrixKit/Utils/MXKConstants.m
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@

#import "MXKConstants.h"

NSString *const MatrixKitVersion = @"0.3.3";
NSString *const MatrixKitVersion = @"0.3.4";

NSString *const kMXKErrorNotification = @"kMXKErrorNotification";
4 changes: 2 additions & 2 deletions Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 684f74d

Please sign in to comment.