File tree Expand file tree Collapse file tree 2 files changed +10
-0
lines changed Expand file tree Collapse file tree 2 files changed +10
-0
lines changed Original file line number Diff line number Diff line change 4
4
5
5
- The _Split note at cursor position_ action now has a confirmation dialog to
6
6
prevent accidental splits (for [#3293](https://github.com/pbek/QOwnNotes/issues/3293))
7
+ - In the _Debug settings_, there now is a line to show whether the system Botan library
8
+ is used or the internal Botan amalgamation (for [#2786](https://github.com/pbek/QOwnNotes/issues/2786))
7
9
8
10
## 25.6.2
9
11
Original file line number Diff line number Diff line change @@ -1614,6 +1614,14 @@ QString Utils::Misc::generateDebugInformation(bool withGitHubLineBreaks) {
1614
1614
1615
1615
output += prepareDebugInformationLine (QStringLiteral (" Qt Debug" ), debug, withGitHubLineBreaks);
1616
1616
1617
+ QString systemBotan = QStringLiteral (" no" );
1618
+ #ifdef USE_SYSTEM_BOTAN
1619
+ systemBotan = QStringLiteral (" yes" );
1620
+ #endif
1621
+
1622
+ output += prepareDebugInformationLine (QStringLiteral (" System Botan" ), systemBotan,
1623
+ withGitHubLineBreaks);
1624
+
1617
1625
output += prepareDebugInformationLine (QStringLiteral (" Locale (system)" ),
1618
1626
QLocale::system ().name (), withGitHubLineBreaks);
1619
1627
output += prepareDebugInformationLine (
You can’t perform that action at this time.
0 commit comments