- Dołączył
- 26 Maj 2010
- Posty
- 19509
- Reakcje/Polubienia
- 62164
QOwnNotes 26.2.9
Zaloguj
lub
Zarejestruj się
aby zobaczyć!
Zaloguj
lub
Zarejestruj się
aby zobaczyć!
- Extended the Markdown LSP integration with formatting and code action support for rumdl
(forZaloguj lub Zarejestruj się aby zobaczyć!)
- The editor context menu now provides a Markdown LSP section with format document, format selection,
and code actions- The completions menu now includes a filter field that starts with the current word
- Fixed Setext heading highlighting not clearing when the underline line loses its heading marker
(forZaloguj lub Zarejestruj się aby zobaczyć!)
- Fixed note filename changes from title updates incorrectly triggering the external modification
dialog when checksum checks are enabled (forZaloguj lub Zarejestruj się aby zobaczyć!)- Improved detection of current note updates when the Nextcloud desktop client replaces files via
temp file moves (forZaloguj lub Zarejestruj się aby zobaczyć!)- Added more French, Korean translation (thank you, jd-develop, venusgirl)
26.2.13
- Fixed indented fenced code blocks (with tabs or spaces before the opening fence) showing
raw CODEBLOCK placeholders instead of the actual code in the note preview
(forZaloguj lub Zarejestruj się aby zobaczyć!)- Fixed a backtick-fenced code block nested inside a 4-space/tab indented code block
causing highlight spans to be injected into verbatim content, making raw HTML like
<span class="code-keyword">test1</span>=test2 appear in the preview
(forZaloguj lub Zarejestruj się aby zobaczyć!)- Fixed a backtick-fenced code block nested inside a tilde-fenced code block causing raw
HTML span tags (e.g. <span class="code-keyword">test1</span>=test2) to appear as
visible literal text in the note preview (forZaloguj lub Zarejestruj się aby zobaczyć!)- Fixed angle-bracket content inside code blocks (also 4-Spaces fence) and inline code
(e.g., <stdio.h>) being incorrectly converted to file links in the note preview
(forZaloguj lub Zarejestruj się aby zobaczyć!)
- This also fixes regex preview issues (for
Zaloguj lub Zarejestruj się aby zobaczyć!)- Fixed Markdown highlighter incorrectly formatting a tab-indented list subitem as a heading when
followed by a lone - on the next line (forZaloguj lub Zarejestruj się aby zobaczyć!)
- isParagraph() now treats tab-indented lines starting with - , + , or * as list items,
so they are no longer considered paragraph text eligible for setext heading detection- Added search filtering for scripts in the settings Scripting panel, matching name and details
(forZaloguj lub Zarejestruj się aby zobaczyć!)- Fixed clicking a Nextcloud Deck link not opening the Nextcloud Deck dialog anymore
(forZaloguj lub Zarejestruj się aby zobaczyć!)
- The note editor's openUrl method now routes Nextcloud Deck card URLs (https://…/apps/deck/#/board/…/card/…)
through UrlHandler instead of handing them off to QDesktopServices- The note preview's anchor-click handler (onNotePreviewAnchorClicked) now also recognises Deck card URLs
and routes them through UrlHandler so the dialog opens correctly from the preview pane as well- The card ID is now parsed directly from the URL path instead of requiring a pre-configured board ID
that exactly matches the clicked link, so the dialog opens regardless of which board the card belongs to- Removed the isEnabled() gate from the link-click handler so the Nextcloud Deck dialog opens even when
the Deck integration is not fully configured for card creation- Fixed Ctrl+clicking a Deck link in the note editor not opening the Nextcloud Deck dialog;
the ignored-click URL regexp for Deck card links was causing openLinkAtCursorPosition()
to swallow the click before it could reach openUrl()- Added strikeout support to the QLiteHtml preview widget so that ~~strikeout~~ text
is rendered with a line-through decoration in the note preview
(forZaloguj lub Zarejestruj się aby zobaczyć!)
- QLiteHtml's built-in CSS has no rule for <del> or <s> elements, so the CSS
del, s, del *, s * { text-decoration: line-through; } is now injected into the HTML
head before passing it to the widget- Descendant elements such as links (<a>) inside ~~strikeout~~ are also struck out;
the del * selector is required because text-decoration is not an inherited CSS
property and the preview stylesheet's a { text-decoration: none; } would otherwise win- Improved multi-note selection preview styling in the QLiteHtml preview widget for dark mode
(forZaloguj lub Zarejestruj się aby zobaczyć!)
- Colors are now derived from the active editor schema instead of hardcoded light/dark fallback
values, so the preview correctly respects any user-configured theme- Body background, foreground, and link colors all follow the schema's NoState and Link states
- The alternating row background and muted date text are computed by blending the schema
background toward the foreground, keeping contrast consistent across all themes