File tree Expand file tree Collapse file tree 2 files changed +10
-1
lines changed
src/libraries/sonnet/src/core Expand file tree Collapse file tree 2 files changed +10
-1
lines changed Original file line number Diff line number Diff line change 11# QOwnNotes Changelog
22
3+ ## 26.1.1
4+
5+ - The "Missing trigrams for languages" warning was changed to a debug message to reduce
6+ noise in the log output (for [#3417](https://github.com/pbek/QOwnNotes/issues/3417))
7+ - This informational message now only appears when debug logging is enabled
8+ - The warning was triggered when regional language variants (e.g., `it_CH`) were installed
9+ but didn't have corresponding trigram models for automatic language detection
10+ - Spell checking functionality remains completely unaffected
11+
312## 26.1.0
413
514- The **QOwnNotes webpage** has been completely **relaunched** with **VuePress 2**,
Original file line number Diff line number Diff line change @@ -672,7 +672,7 @@ void GuessLanguagePrivate::loadModels() {
672672#endif
673673 knownLanguages.subtract (availableLanguages);
674674 if (!knownLanguages.isEmpty ()) {
675- qWarning () << " Missing trigrams for languages:" << knownLanguages;
675+ qDebug () << " Missing trigrams for languages:" << knownLanguages;
676676 }
677677}
678678
You can’t perform that action at this time.
0 commit comments