Removed migrations. New onboarding screen and wizard like steps.

This commit is contained in:
Burak Kaan Köse
2026-03-06 03:42:08 +01:00
parent db5ecd60e4
commit aaa6e8a2c9
56 changed files with 1843 additions and 554 deletions
@@ -317,20 +317,6 @@ public class NotificationBuilder : INotificationBuilder
return Task.CompletedTask;
}
public void CreateMigrationRequiredNotification()
{
var builder = new ToastContentBuilder();
builder.SetToastScenario(ToastScenario.Default);
builder.AddText(Translator.WhatIsNew_MigrationNotification_Title);
builder.AddText(Translator.WhatIsNew_MigrationNotification_Message);
builder.AddArgument(Constants.ToastMigrationRequiredKey, bool.TrueString);
builder.AddArgument(Constants.ToastModeKey, Constants.ToastModeMail);
ShowToast(builder);
}
private static void ShowToast(ToastContentBuilder builder, string? tag = null)
{
var toastNotification = new ToastNotification(builder.GetToastContent().GetXml());