mirror of
https://github.com/oxen-io/session-ios.git
synced 2023-12-13 21:30:14 +01:00
5d604a796c
previously, edit menu was only positioned correctly for text bubbles, and centered for media bubbles. It wasn't that noticable for images/videos since those usually extended to the middle of the conversation view, but with narrower media bubbles (like arbitrary attachments) this became a bigger problem. // FREEBIE
18 lines
896 B
Ruby
18 lines
896 B
Ruby
platform :ios, '8.0'
|
|
source 'https://github.com/CocoaPods/Specs.git'
|
|
|
|
target 'Signal' do
|
|
pod 'SocketRocket', :git => 'https://github.com/facebook/SocketRocket.git'
|
|
pod 'AxolotlKit', git: 'https://github.com/WhisperSystems/SignalProtocolKit.git'
|
|
#pod 'AxolotlKit', path: '../SignalProtocolKit'
|
|
pod 'SignalServiceKit', git: 'https://github.com/WhisperSystems/SignalServiceKit.git'
|
|
#pod 'SignalServiceKit', path: '../SignalServiceKit'
|
|
pod 'OpenSSL'
|
|
pod 'SCWaveformView', '~> 1.0'
|
|
pod 'JSQMessagesViewController', git: 'https://github.com/WhisperSystems/JSQMessagesViewController.git', branch: 'mkirk/position-edit-menu'
|
|
#pod 'JSQMessagesViewController' path: '../JSQMessagesViewController'
|
|
pod 'PureLayout'
|
|
target 'SignalTests' do
|
|
inherit! :search_paths
|
|
end
|
|
end
|