Git commit 0e9d6d30494816e9a9032d2cae416aa6ddc2aa50 by Allen Winter. Committed on 24/01/2026 at 12:55. Pushed by winterz into branch 'master'.
Agenda View: allow showing incidence description in the agenda items BUG: 478358 FIXED-IN: 6.7.0 M +1 -1 CMakeLists.txt M +5 -0 doc/index.docbook M +1 -0 src/prefs/koprefsdialogviews.cpp M +6 -0 src/settings/korganizer.kcfg M +2 -0 src/whatsnew/whatsnewtranslations.cpp https://invent.kde.org/pim/korganizer/-/commit/0e9d6d30494816e9a9032d2cae416aa6ddc2aa50 diff --git a/CMakeLists.txt b/CMakeLists.txt index 4f3f2e196..1ddf4fc03 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -127,7 +127,7 @@ set(PIMCOMMON_LIB_VERSION "6.6.40") set(LIBKDEPIM_LIB_VERSION "6.6.40") set(LIBINCIDENCEEDITOR_LIB_VERSION "6.6.40") set(CALENDARSUPPORT_LIB_VERSION "6.6.40") -set(EVENTVIEW_LIB_VERSION "6.6.43") +set(EVENTVIEW_LIB_VERSION "6.6.44") # Find KF6 package find_package(KF6I18n ${KF_MIN_VERSION} CONFIG REQUIRED) diff --git a/doc/index.docbook b/doc/index.docbook index f223b6832..28ca485d7 100644 --- a/doc/index.docbook +++ b/doc/index.docbook @@ -2209,6 +2209,11 @@ in the Agenda view.</para></listitem> in Agenda view items</para></listitem> </varlistentry> +<varlistentry> + <term><guilabel>Show incidence descriptions in agenda view items</guilabel></term> + <listitem><para>Check this box to display the incidence descriptions in agenda view items.</para></listitem> +</varlistentry> + <varlistentry> <term><guilabel>Show to-dos</guilabel></term> <listitem><para>This check box toggles the display of to-dos in the Day, Week diff --git a/src/prefs/koprefsdialogviews.cpp b/src/prefs/koprefsdialogviews.cpp index 1b31ca10d..f42c4d250 100644 --- a/src/prefs/koprefsdialogviews.cpp +++ b/src/prefs/koprefsdialogviews.cpp @@ -98,6 +98,7 @@ KOPrefsDialogViews::KOPrefsDialogViews(QObject *parent, const KPluginMetaData &d hourSizeLayout->addStretch(1); adisplayLayout->addWidget(addWidBool(KOPrefs::instance()->enableAgendaItemIconsItem())->checkBox()); + adisplayLayout->addWidget(addWidBool(KOPrefs::instance()->enableAgendaItemDescItem())->checkBox()); adisplayLayout->addWidget(addWidBool(KOPrefs::instance()->showTodosAgendaViewItem())->checkBox()); Korganizer::KPrefsWidBool *marcusBainsEnabled = addWidBool(KOPrefs::instance()->marcusBainsEnabledItem()); adisplayLayout->addWidget(marcusBainsEnabled->checkBox()); diff --git a/src/settings/korganizer.kcfg b/src/settings/korganizer.kcfg index 75f8cfa26..a804cde6f 100644 --- a/src/settings/korganizer.kcfg +++ b/src/settings/korganizer.kcfg @@ -120,6 +120,12 @@ <tooltip>Display icons in agenda view items</tooltip> <default>true</default> </entry> + <entry type="Bool" key="Show Incidence Descriptions in Agenda View" name="EnableAgendaItemDesc"> + <label>Show incidence descriptions in agenda view items</label> + <whatsthis>Check this box to display the incidence descriptions in agenda view items.</whatsthis> + <tooltip>Display inicidence descriptions agenda view items</tooltip> + <default>false</default> + </entry> <entry type="Bool" name="ShowTodosAgendaView"> <label>Show to-dos</label> <whatsthis>Check this box to display to-dos in the agenda view.</whatsthis> diff --git a/src/whatsnew/whatsnewtranslations.cpp b/src/whatsnew/whatsnewtranslations.cpp index ed4847e65..4ac055387 100644 --- a/src/whatsnew/whatsnewtranslations.cpp +++ b/src/whatsnew/whatsnewtranslations.cpp @@ -25,6 +25,8 @@ QList<KLazyLocalizedString> WhatsNewTranslations::lastNewFeatures() const kli18n("Navigator bar: improved by adding week scrolling and showing/hiding the sidebar on a per-view basis"), kli18n("Navigator bar: added a button to scroll the view to the current date"), kli18n("Agenda view: events with short durations are displayed with their starting time in addition to their summary"), + kli18n("Agenda view: optionally show the incidence descriptions inside the agenda items. To enable this behavior, check the \"Show incidence " + "descriptions in agenda view items\" option in the View->Agenda View tab"), kli18n("Search: the search settings are saved/restored"), };
