X-Git-Url: https://gitweb.stoutner.com/?p=PrivacyBrowserPC.git;a=blobdiff_plain;f=src%2Fmain.cpp;h=10ce579ca39829f90c6046fcc0ca560483aaa087;hp=c39eb883cb04bf8c282d1a38fa113c5a72633cf7;hb=refs%2Fheads%2Fmaster;hpb=7c6edb3608791950c6146ac242e2b6f493ca8e8c diff --git a/src/main.cpp b/src/main.cpp index c39eb88..9ff1e4d 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1,7 +1,7 @@ /* - * Copyright 2022-2023 Soren Stoutner . + * Copyright 2022-2024 Soren Stoutner . * - * This file is part of Privacy Browser PC . + * This file is part of Privacy Browser PC . * * Privacy Browser PC is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -18,22 +18,27 @@ */ // Application headers. +#include "GlobalVariables.h" #include "databases/BookmarksDatabase.h" #include "databases/CookiesDatabase.h" #include "databases/DomainsDatabase.h" +#include "helpers/FilterListHelper.h" #include "windows/BrowserWindow.h" // KDE Frameworks headers. #include #include -#include #include +#include // Qt headers. #include #include #include +// Declare the global variables. +FilterListHelper *globalFilterListHelperPointer; + int main(int argc, char *argv[]) { // Create the application. @@ -46,7 +51,7 @@ int main(int argc, char *argv[]) KCrash::initialize(); // Instantiate about data, setting the component name, the display name, and the version. - KAboutData aboutData(QStringLiteral("privacybrowser"), i18nc("Program Name", "Privacy Browser"), QStringLiteral("0.4")); + KAboutData aboutData(QStringLiteral("privacybrowser"), i18nc("Program Name", "Privacy Browser"), QStringLiteral("0.5")); // Add the author name, job description, email address, and website. aboutData.addAuthor(i18nc("Developer Information", "Soren Stoutner"),i18nc("Developer Information", "Principal developer"), QStringLiteral("soren@stoutner.com"), @@ -54,7 +59,7 @@ int main(int argc, char *argv[]) // Populate additional about data info. aboutData.setBugAddress("https://redmine.stoutner.com/projects/privacy-browser-pc/issues"); - aboutData.setCopyrightStatement(i18nc("Copyright", "Copyright 2016-2017,2021-2023 Soren Stoutner ")); + aboutData.setCopyrightStatement(i18nc("Copyright", "Copyright 2016-2017,2021-2024 Soren Stoutner ")); aboutData.setDesktopFileName(QStringLiteral("com.stoutner.privacybrowser")); aboutData.setHomepage(QStringLiteral("https://www.stoutner.com/privacy-browser-pc/")); //aboutData.setLicense(KAboutLicense::GPL_V3, KAboutLicense::OrLaterVersions); @@ -92,6 +97,9 @@ int main(int argc, char *argv[]) CookiesDatabase::addDatabase(); DomainsDatabase::addDatabase(); + // Populate the filter lists. + globalFilterListHelperPointer = new FilterListHelper; + // Create the main window. BrowserWindow *browserWindowPointer = new BrowserWindow();