Merge pull request #2130 from mattermost/release-1.12
Merge Release 1.12
This commit is contained in:
commit
6471bcbed3
6 changed files with 12 additions and 7 deletions
|
|
@ -113,7 +113,7 @@ android {
|
|||
applicationId "com.mattermost.rnbeta"
|
||||
minSdkVersion 21
|
||||
targetSdkVersion 26
|
||||
versionCode 141
|
||||
versionCode 142
|
||||
versionName "1.12.0"
|
||||
multiDexEnabled = true
|
||||
ndk {
|
||||
|
|
|
|||
|
|
@ -50,10 +50,14 @@ export default class OptionsContext extends PureComponent {
|
|||
}
|
||||
};
|
||||
|
||||
handleShow = () => {
|
||||
this.isShowing = true;
|
||||
this.props.toggleSelected(true);
|
||||
}
|
||||
|
||||
handleShowUnderlay = () => {
|
||||
this.beforeShow();
|
||||
this.props.toggleSelected(true);
|
||||
this.isShowing = this.state.actions.length > 0;
|
||||
};
|
||||
|
||||
hide = () => {
|
||||
|
|
@ -93,6 +97,7 @@ export default class OptionsContext extends PureComponent {
|
|||
arrowDirection='down'
|
||||
longPress={true}
|
||||
onHide={this.handleHide}
|
||||
onShow={this.handleShow}
|
||||
onPress={this.handlePress}
|
||||
underlayColor='transparent'
|
||||
>
|
||||
|
|
|
|||
|
|
@ -2427,7 +2427,7 @@
|
|||
CODE_SIGN_ENTITLEMENTS = Mattermost/Mattermost.entitlements;
|
||||
CODE_SIGN_IDENTITY = "iPhone Developer";
|
||||
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
|
||||
CURRENT_PROJECT_VERSION = 141;
|
||||
CURRENT_PROJECT_VERSION = 142;
|
||||
DEAD_CODE_STRIPPING = NO;
|
||||
DEVELOPMENT_TEAM = UQ8HT4Q2XM;
|
||||
ENABLE_BITCODE = NO;
|
||||
|
|
@ -2476,7 +2476,7 @@
|
|||
CODE_SIGN_ENTITLEMENTS = Mattermost/Mattermost.entitlements;
|
||||
CODE_SIGN_IDENTITY = "iPhone Developer";
|
||||
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
|
||||
CURRENT_PROJECT_VERSION = 141;
|
||||
CURRENT_PROJECT_VERSION = 142;
|
||||
DEAD_CODE_STRIPPING = NO;
|
||||
DEVELOPMENT_TEAM = UQ8HT4Q2XM;
|
||||
ENABLE_BITCODE = NO;
|
||||
|
|
|
|||
|
|
@ -34,7 +34,7 @@
|
|||
</dict>
|
||||
</array>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>141</string>
|
||||
<string>142</string>
|
||||
<key>ITSAppUsesNonExemptEncryption</key>
|
||||
<false/>
|
||||
<key>LSRequiresIPhoneOS</key>
|
||||
|
|
|
|||
|
|
@ -23,7 +23,7 @@
|
|||
<key>CFBundleShortVersionString</key>
|
||||
<string>1.12.0</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>141</string>
|
||||
<string>142</string>
|
||||
<key>NSAppTransportSecurity</key>
|
||||
<dict>
|
||||
<key>NSAllowsArbitraryLoads</key>
|
||||
|
|
|
|||
|
|
@ -19,6 +19,6 @@
|
|||
<key>CFBundleSignature</key>
|
||||
<string>????</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>141</string>
|
||||
<string>142</string>
|
||||
</dict>
|
||||
</plist>
|
||||
|
|
|
|||
Loading…
Reference in a new issue