Add what's new dialog

This commit is contained in:
Luis Ángel San Martín
2021-01-21 21:39:22 +01:00
parent 3f6c44ce7a
commit 58fdf0af23
16 changed files with 313 additions and 18 deletions

View File

@ -20,6 +20,8 @@
#include "edit_shortcuts_dialog.h"
#include "shortcuts_manager.h"
#include "whats_new_controller.h"
#include <ctime>
#include <algorithm>
#include <QApplication>
@ -73,6 +75,14 @@ MainWindowViewer::MainWindowViewer()
{
loadConfiguration();
setupUI();
afterLaunchTasks();
}
void MainWindowViewer::afterLaunchTasks()
{
WhatsNewController whatsNewController;
whatsNewController.showWhatsNewIfNeeded(this);
}
MainWindowViewer::~MainWindowViewer()