diff --git a/ModernKeePass/Services/DatabaseService.cs b/ModernKeePass/Services/DatabaseService.cs
index 11d5991..9df5ce2 100644
--- a/ModernKeePass/Services/DatabaseService.cs
+++ b/ModernKeePass/Services/DatabaseService.cs
@@ -186,7 +186,9 @@ namespace ModernKeePass.Services
public void UpdateCompositeKey(CompositeKey newCompositeKey)
{
- if (newCompositeKey != null) _compositeKey = newCompositeKey;
+ if (newCompositeKey == null) return;
+ _compositeKey = newCompositeKey;
+ _pwDatabase.MasterKey = newCompositeKey;
}
private void CreateSampleData()
diff --git a/ModernKeePass/Strings/en-US/Resources.resw b/ModernKeePass/Strings/en-US/Resources.resw
index 46da78e..3ac653d 100644
--- a/ModernKeePass/Strings/en-US/Resources.resw
+++ b/ModernKeePass/Strings/en-US/Resources.resw
@@ -456,4 +456,10 @@
Sort groups
+
+ Database successfully updated
+
+
+ Composite Key
+
\ No newline at end of file
diff --git a/ModernKeePass/Strings/fr-FR/Resources.resw b/ModernKeePass/Strings/fr-FR/Resources.resw
index 54879be..c32b4be 100644
--- a/ModernKeePass/Strings/fr-FR/Resources.resw
+++ b/ModernKeePass/Strings/fr-FR/Resources.resw
@@ -391,7 +391,7 @@
Login copié avec succès !
- Mot de passe copié avec succès !
+ Mot de passe copié avec succès !URL copié avec succès !
@@ -456,4 +456,10 @@
Trier les groupes
+
+ Base de données mise à jour
+
+
+ Clé maître
+
\ No newline at end of file
diff --git a/ModernKeePass/Views/SettingsPageFrames/SettingsSecurityPage.xaml b/ModernKeePass/Views/SettingsPageFrames/SettingsSecurityPage.xaml
index 5180f0d..17b3d18 100644
--- a/ModernKeePass/Views/SettingsPageFrames/SettingsSecurityPage.xaml
+++ b/ModernKeePass/Views/SettingsPageFrames/SettingsSecurityPage.xaml
@@ -5,6 +5,9 @@
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:userControls="using:ModernKeePass.Views.UserControls"
+ xmlns:interactivity="using:Microsoft.Xaml.Interactivity"
+ xmlns:core="using:Microsoft.Xaml.Interactions.Core"
+ xmlns:actions="using:ModernKeePass.Actions"
mc:Ignorable="d">
@@ -14,6 +17,12 @@
-
+
+
+
+
+
+
+
diff --git a/ModernKeePass/Views/SettingsPageFrames/SettingsSecurityPage.xaml.cs b/ModernKeePass/Views/SettingsPageFrames/SettingsSecurityPage.xaml.cs
index 8029a26..1ba70bb 100644
--- a/ModernKeePass/Views/SettingsPageFrames/SettingsSecurityPage.xaml.cs
+++ b/ModernKeePass/Views/SettingsPageFrames/SettingsSecurityPage.xaml.cs
@@ -1,8 +1,5 @@
// The Blank Page item template is documented at http://go.microsoft.com/fwlink/?LinkId=234238
-using ModernKeePass.Common;
-using ModernKeePass.Events;
-
namespace ModernKeePass.Views
{
///
@@ -14,10 +11,5 @@ namespace ModernKeePass.Views
{
InitializeComponent();
}
-
- private void CompositeKeyUserControl_OnValidationChecked(object sender, PasswordEventArgs e)
- {
- ToastNotificationHelper.ShowGenericToast("Composite key", "Database successfully updated.");
- }
}
}
diff --git a/ModernKeePass/Views/UserControls/TopMenuUserControl.xaml b/ModernKeePass/Views/UserControls/TopMenuUserControl.xaml
index 03c1532..ebc83a6 100644
--- a/ModernKeePass/Views/UserControls/TopMenuUserControl.xaml
+++ b/ModernKeePass/Views/UserControls/TopMenuUserControl.xaml
@@ -7,24 +7,24 @@
mc:Ignorable="d">
-
-
+
diff --git a/ModernKeePass/appMetadata/en-us/baselisting/releaseNotes.txt b/ModernKeePass/appMetadata/en-us/baselisting/releaseNotes.txt
index 9721e4a..8ddb6f2 100644
--- a/ModernKeePass/appMetadata/en-us/baselisting/releaseNotes.txt
+++ b/ModernKeePass/appMetadata/en-us/baselisting/releaseNotes.txt
@@ -2,6 +2,7 @@ Entry history feature added
App now uses Windows theme color as its base color
You can now change entries background and foreground colors
You can now change groups and entries icons
+Menu has moved from the App Bar to an always visible menu
Design improvements
Bug corrections
KeePassLib version bump to 2.39.1
\ No newline at end of file
diff --git a/ModernKeePass/appMetadata/fr-fr/baselisting/releaseNotes.txt b/ModernKeePass/appMetadata/fr-fr/baselisting/releaseNotes.txt
index d25ba45..3b92058 100644
--- a/ModernKeePass/appMetadata/fr-fr/baselisting/releaseNotes.txt
+++ b/ModernKeePass/appMetadata/fr-fr/baselisting/releaseNotes.txt
@@ -2,6 +2,7 @@ Ajout de la fonctionnalite d'historique des entrees
L'application utilise la couleur de theme de Windows en tant que couleur principale
Il est desormais possible de changer la couleur de fond et de texte des entrees
Il est desormais possible de changer l'icone des groupes et des entrees
+Le menu est desormais visible au lieu d'etre dans l'App Bar
Ameliorations de design
Corrections de bugs
Version de la KeePassLib passe a 2.39.1
\ No newline at end of file