bump version

This commit is contained in:
Kyle Spearrin 2018-10-03 00:35:06 -04:00
parent a4f93eea45
commit b7c6b65a3d
5 changed files with 14 additions and 14 deletions

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.x8bit.bitwarden" android:versionName="1.19.1" android:installLocation="auto" android:versionCode="502" xmlns:tools="http://schemas.android.com/tools"> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.x8bit.bitwarden" android:versionName="1.19.3" android:installLocation="auto" android:versionCode="502" xmlns:tools="http://schemas.android.com/tools">
<uses-sdk android:minSdkVersion="19" android:targetSdkVersion="23" /> <uses-sdk android:minSdkVersion="19" android:targetSdkVersion="23" />
<uses-permission android:name="android.permission.INTERNET" /> <uses-permission android:name="android.permission.INTERNET" />

View file

@ -13,11 +13,11 @@
<key>CFBundlePackageType</key> <key>CFBundlePackageType</key>
<string>XPC!</string> <string>XPC!</string>
<key>CFBundleShortVersionString</key> <key>CFBundleShortVersionString</key>
<string>1.19.2</string> <string>1.19.3</string>
<key>CFBundleSignature</key> <key>CFBundleSignature</key>
<string>????</string> <string>????</string>
<key>CFBundleVersion</key> <key>CFBundleVersion</key>
<string>39</string> <string>40</string>
<key>NSExtension</key> <key>NSExtension</key>
<dict> <dict>
<key>NSExtensionMainStoryboard</key> <key>NSExtensionMainStoryboard</key>

View file

@ -13,11 +13,11 @@
<key>CFBundlePackageType</key> <key>CFBundlePackageType</key>
<string>XPC!</string> <string>XPC!</string>
<key>CFBundleShortVersionString</key> <key>CFBundleShortVersionString</key>
<string>1.19.2</string> <string>1.19.3</string>
<key>CFBundleSignature</key> <key>CFBundleSignature</key>
<string>????</string> <string>????</string>
<key>CFBundleVersion</key> <key>CFBundleVersion</key>
<string>39</string> <string>40</string>
<key>NSExtension</key> <key>NSExtension</key>
<dict> <dict>
<key>NSExtensionAttributes</key> <key>NSExtensionAttributes</key>

View file

@ -158,14 +158,14 @@ namespace Bit.iOS
MessagingCenter.Subscribe<Xamarin.Forms.Application, Tuple<string, bool>>( MessagingCenter.Subscribe<Xamarin.Forms.Application, Tuple<string, bool>>(
Xamarin.Forms.Application.Current, "UpsertedCipher", async (sender, data) => Xamarin.Forms.Application.Current, "UpsertedCipher", async (sender, data) =>
{ {
if (_deviceInfoService.Version >= 12) if(_deviceInfoService.Version >= 12)
{ {
if (await ASHelpers.IdentitiesCanIncremental()) if(await ASHelpers.IdentitiesCanIncremental())
{ {
if (data.Item2) if(data.Item2)
{ {
var identity = await ASHelpers.GetCipherIdentityAsync(data.Item1, _cipherService); var identity = await ASHelpers.GetCipherIdentityAsync(data.Item1, _cipherService);
if (identity == null) if(identity == null)
{ {
return; return;
} }
@ -181,12 +181,12 @@ namespace Bit.iOS
MessagingCenter.Subscribe<Xamarin.Forms.Application, Cipher>( MessagingCenter.Subscribe<Xamarin.Forms.Application, Cipher>(
Xamarin.Forms.Application.Current, "DeletedCipher", async (sender, cipher) => Xamarin.Forms.Application.Current, "DeletedCipher", async (sender, cipher) =>
{ {
if (_deviceInfoService.Version >= 12) if(_deviceInfoService.Version >= 12)
{ {
if (await ASHelpers.IdentitiesCanIncremental()) if(await ASHelpers.IdentitiesCanIncremental())
{ {
var identity = ASHelpers.ToCredentialIdentity(cipher); var identity = ASHelpers.ToCredentialIdentity(cipher);
if (identity == null) if(identity == null)
{ {
return; return;
} }

View file

@ -28,11 +28,11 @@
<key>CFBundleIdentifier</key> <key>CFBundleIdentifier</key>
<string>com.8bit.bitwarden</string> <string>com.8bit.bitwarden</string>
<key>CFBundleVersion</key> <key>CFBundleVersion</key>
<string>39</string> <string>40</string>
<key>UILaunchStoryboardName</key> <key>UILaunchStoryboardName</key>
<string>LaunchScreen</string> <string>LaunchScreen</string>
<key>CFBundleShortVersionString</key> <key>CFBundleShortVersionString</key>
<string>1.19.2</string> <string>1.19.3</string>
<key>UIMainStoryboardFile~ipad</key> <key>UIMainStoryboardFile~ipad</key>
<string>LaunchScreen</string> <string>LaunchScreen</string>
<key>UIViewControllerBasedStatusBarAppearance</key> <key>UIViewControllerBasedStatusBarAppearance</key>