diff --git a/jslib b/jslib index 51f041a959..76ece834d1 160000 --- a/jslib +++ b/jslib @@ -1 +1 @@ -Subproject commit 51f041a9596168af0caa5ca94c0c1c6e7568f084 +Subproject commit 76ece834d1d18e9cca71bb3c182d2284dae80958 diff --git a/src/app/tools/import.component.html b/src/app/tools/import.component.html index 8ac214a8bc..b78d8ae3ff 100644 --- a/src/app/tools/import.component.html +++ b/src/app/tools/import.component.html @@ -95,6 +95,10 @@ Using the mSecure desktop application, navigate to "File" → "Export" → "CSV File..." and save the CSV file. + + Using the Sticky Password desktop application, navigate to "Menu" (top right) → "Export" → "Export all". Select + the unencrypted format XML option and save the XML file. +
diff --git a/src/app/tools/import.component.ts b/src/app/tools/import.component.ts index 0384a8eb39..5b5b3d4274 100644 --- a/src/app/tools/import.component.ts +++ b/src/app/tools/import.component.ts @@ -42,6 +42,7 @@ import { PasswordDragonXmlImporter } from 'jslib/importers/passwordDragonXmlImpo import { PasswordSafeXmlImporter } from 'jslib/importers/passwordSafeXmlImporter'; import { SafeInCloudXmlImporter } from 'jslib/importers/safeInCloudXmlImporter'; import { SaferPassCsvImporter } from 'jslib/importers/saferpassCsvImport'; +import { StickyPasswordXmlImporter } from 'jslib/importers/stickyPasswordXmlImporter'; import { UpmCsvImporter } from 'jslib/importers/upmCsvImporter'; @Component({ @@ -266,6 +267,8 @@ export class ImportComponent implements OnInit { return new DashlaneCsvImporter(); case 'msecurecsv': return new MSecureCsvImporter(); + case 'stickypasswordxml': + return new StickyPasswordXmlImporter(); default: return null; }