mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-04 21:17:43 +03:00
Refactor: Move to simple default builds
* Remove individual feature flags in favor of a single `KPXC_MINIMAL` flag that removes advanced features from the build. Basic features are no longer guarded by feature flags. * Basic features: Auto-Type, Yubikey, KeeShare * Advanced features include: Browser (and passkeys), SSH Agent, and Secret Service * Networking, Documentation, and Update Checking remain as feature flags to accommodate various distro requirements. This change also cleans up the main CMakeLists.txt by re-arranging some content and placing macros into a dedicated include file. The minimum CMake version was bumped to 3.16.0 to conform to our minimum Ubuntu support of Focal (20.04). This also allows us to default to C++20, we fall back to C++17 for Qt versions less than 5.15.0 due to lack of support. Lastly this change removes the KEEPASSXC_BUILD_TYPE="PreRelease" which is never used. We only support "Snapshot" and "Release" now.
This commit is contained in:
parent
9e29b5c7b6
commit
cfa94f69f3
76 changed files with 734 additions and 1200 deletions
|
@ -25,10 +25,8 @@
|
|||
#include "core/Totp.h"
|
||||
#include "gui/Font.h"
|
||||
#include "gui/Icons.h"
|
||||
#if defined(WITH_XC_KEESHARE)
|
||||
#include "keeshare/KeeShare.h"
|
||||
#include "keeshare/KeeShareSettings.h"
|
||||
#endif
|
||||
|
||||
#include <QScrollBar>
|
||||
#include <QTabWidget>
|
||||
|
@ -105,10 +103,6 @@ EntryPreviewWidget::EntryPreviewWidget(QWidget* parent)
|
|||
connect(m_ui->groupTabWidget, SIGNAL(tabBarClicked(int)), SLOT(updateTabIndexes()), Qt::QueuedConnection);
|
||||
|
||||
setFocusProxy(m_ui->entryTabWidget);
|
||||
|
||||
#if !defined(WITH_XC_KEESHARE)
|
||||
removeTab(m_ui->groupTabWidget, m_ui->groupShareTab);
|
||||
#endif
|
||||
}
|
||||
|
||||
EntryPreviewWidget::~EntryPreviewWidget() = default;
|
||||
|
@ -206,10 +200,7 @@ void EntryPreviewWidget::refresh()
|
|||
} else if (m_currentGroup) {
|
||||
updateGroupHeaderLine();
|
||||
updateGroupGeneralTab();
|
||||
|
||||
#if defined(WITH_XC_KEESHARE)
|
||||
updateGroupSharingTab();
|
||||
#endif
|
||||
|
||||
setVisible(!config()->get(Config::GUI_HidePreviewPanel).toBool());
|
||||
|
||||
|
@ -530,7 +521,6 @@ void EntryPreviewWidget::updateGroupGeneralTab()
|
|||
}
|
||||
}
|
||||
|
||||
#if defined(WITH_XC_KEESHARE)
|
||||
void EntryPreviewWidget::updateGroupSharingTab()
|
||||
{
|
||||
Q_ASSERT(m_currentGroup);
|
||||
|
@ -539,7 +529,6 @@ void EntryPreviewWidget::updateGroupSharingTab()
|
|||
m_ui->groupShareTypeLabel->setText(KeeShare::referenceTypeLabel(reference));
|
||||
m_ui->groupSharePathLabel->setText(reference.path);
|
||||
}
|
||||
#endif
|
||||
|
||||
void EntryPreviewWidget::updateTotpLabel()
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue