1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-17 08:43:21 +00:00

[Auto Logout] Final review of feature (#932)

* Initial commit of LockService name refactor (#831)

* [Auto-Logout] Update Service layer logic (#835)

* Initial commit of service logic update

* Added default value for action

* Updated ToggleTokensAsync conditional

* Removed unused variables, updated action conditional

* Initial commit: lockOption/lock refactor app layer (#840)

* [Auto-Logout] Settings Refactor - Application Layer Part 2 (#844)

* Initial commit of app layer part 2

* Updated biometrics position

* Reverted resource name refactor

* LockOptions refactor revert

* Updated method casing :: Removed VaultTimeout prefix for timeouts

* Fixed dupe string resource (#854)

* Updated dependency to use VaultTimeoutService (#896)

* [Auto Logout] Xamarin Forms in AutoFill flow (iOS) (#902)

* fix typo in PINRequireMasterPasswordRestart (#900)

* initial commit for xf usage in autofill

* Fixed databinding for hint button

* Updated Two Factor page launch - removed unused imports

* First pass at broadcast/messenger implentation for autofill

* setting theme in extension using theme manager

* extension app resources

* App resources from main app

* fix ref to twoFactorPage

* apply resources to page

* load empty app for sytling in extension

* move ios renderers to ios core

* static ref to resources and GetResourceColor helper

* fix method ref

* move application.current.resources refs to helper

* switch login page alerts to device action dialogs

* run on main thread

* showDialog with device action service

* abstract action sheet to device action service

* add support for yubikey

* add yubikey iimages to extension

* support close button action

* add support to action extension

* remove empty lines

Co-authored-by: Jonas Kittner <54631600+theendlessriver13@users.noreply.github.com>
Co-authored-by: Kyle Spearrin <kyle.spearrin@gmail.com>

* [Auto Logout] Update lock option to be default value (#929)

* Initial commit - make lock action default

* Removed extra whitespace

Co-authored-by: Jonas Kittner <54631600+theendlessriver13@users.noreply.github.com>
Co-authored-by: Kyle Spearrin <kyle.spearrin@gmail.com>
Co-authored-by: Kyle Spearrin <kspearrin@users.noreply.github.com>
This commit is contained in:
Vincent Salucci
2020-05-29 11:26:36 -05:00
committed by GitHub
parent 39e10ff01c
commit 4c3df2e1e1
80 changed files with 744 additions and 379 deletions

View File

@@ -1,7 +1,6 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
@@ -755,39 +754,51 @@ namespace Bit.App.Resources {
}
}
public static string LockOption15Minutes {
public static string FifteenMinutes {
get {
return ResourceManager.GetString("LockOption15Minutes", resourceCulture);
return ResourceManager.GetString("FifteenMinutes", resourceCulture);
}
}
public static string LockOption1Hour {
public static string OneHour {
get {
return ResourceManager.GetString("LockOption1Hour", resourceCulture);
return ResourceManager.GetString("OneHour", resourceCulture);
}
}
public static string LockOption1Minute {
public static string OneMinute {
get {
return ResourceManager.GetString("LockOption1Minute", resourceCulture);
return ResourceManager.GetString("OneMinute", resourceCulture);
}
}
public static string LockOption4Hours {
public static string FourHours {
get {
return ResourceManager.GetString("LockOption4Hours", resourceCulture);
return ResourceManager.GetString("FourHours", resourceCulture);
}
}
public static string LockOptionImmediately {
public static string Immediately {
get {
return ResourceManager.GetString("LockOptionImmediately", resourceCulture);
return ResourceManager.GetString("Immediately", resourceCulture);
}
}
public static string LockOptions {
public static string VaultTimeout {
get {
return ResourceManager.GetString("LockOptions", resourceCulture);
return ResourceManager.GetString("VaultTimeout", resourceCulture);
}
}
public static string VaultTimeoutAction {
get {
return ResourceManager.GetString("VaultTimeoutAction", resourceCulture);
}
}
public static string VaultTimeoutLogOutConfirmation {
get {
return ResourceManager.GetString("VaultTimeoutLogOutConfirmation", resourceCulture);
}
}
@@ -2501,15 +2512,9 @@ namespace Bit.App.Resources {
}
}
public static string LockOption30Minutes {
public static string ThirtyMinutes {
get {
return ResourceManager.GetString("LockOption30Minutes", resourceCulture);
}
}
public static string LockOption5Minutes {
get {
return ResourceManager.GetString("LockOption5Minutes", resourceCulture);
return ResourceManager.GetString("ThirtyMinutes", resourceCulture);
}
}
@@ -2555,12 +2560,6 @@ namespace Bit.App.Resources {
}
}
public static string OneMinute {
get {
return ResourceManager.GetString("OneMinute", resourceCulture);
}
}
public static string TenSeconds {
get {
return ResourceManager.GetString("TenSeconds", resourceCulture);
@@ -2687,9 +2686,9 @@ namespace Bit.App.Resources {
}
}
public static string LockOptionOnRestart {
public static string OnRestart {
get {
return ResourceManager.GetString("LockOptionOnRestart", resourceCulture);
return ResourceManager.GetString("OnRestart", resourceCulture);
}
}