mirror of
https://github.com/bitwarden/mobile
synced 2026-01-08 11:33:31 +00:00
bump version
This commit is contained in:
@@ -158,14 +158,14 @@ namespace Bit.iOS
|
||||
MessagingCenter.Subscribe<Xamarin.Forms.Application, Tuple<string, bool>>(
|
||||
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);
|
||||
if (identity == null)
|
||||
if(identity == null)
|
||||
{
|
||||
return;
|
||||
}
|
||||
@@ -181,12 +181,12 @@ namespace Bit.iOS
|
||||
MessagingCenter.Subscribe<Xamarin.Forms.Application, 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);
|
||||
if (identity == null)
|
||||
if(identity == null)
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
@@ -28,11 +28,11 @@
|
||||
<key>CFBundleIdentifier</key>
|
||||
<string>com.8bit.bitwarden</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>39</string>
|
||||
<string>40</string>
|
||||
<key>UILaunchStoryboardName</key>
|
||||
<string>LaunchScreen</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>1.19.2</string>
|
||||
<string>1.19.3</string>
|
||||
<key>UIMainStoryboardFile~ipad</key>
|
||||
<string>LaunchScreen</string>
|
||||
<key>UIViewControllerBasedStatusBarAppearance</key>
|
||||
|
||||
Reference in New Issue
Block a user