QOwnNotes

Camel1965

Bardzo aktywny
Zasłużony
Dołączył
8 Wrzesień 2010
Posty
52289
Reakcje/Polubienia
39564

QOwnNotes 26.2.11

  • Extended the Markdown LSP integration with formatting and code action support for rumdl
    (for
    Zaloguj 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
    (for
    Zaloguj lub Zarejestruj się aby zobaczyć!
    )
Zaloguj lub Zarejestruj się aby zobaczyć!
 

Camel1965

Bardzo aktywny
Zasłużony
Dołączył
8 Wrzesień 2010
Posty
52289
Reakcje/Polubienia
39564

QOwnNotes 26.2.12​

  • Fixed note filename changes from title updates incorrectly triggering the external modification
    dialog when checksum checks are enabled (for
    Zaloguj lub Zarejestruj się aby zobaczyć!
    )
  • Improved detection of current note updates when the Nextcloud desktop client replaces files via
    temp file moves (for
    Zaloguj lub Zarejestruj się aby zobaczyć!
    )
  • Added more French, Korean translation (thank you, jd-develop, venusgirl)
Zaloguj lub Zarejestruj się aby zobaczyć!
 

Camel1965

Bardzo aktywny
Zasłużony
Dołączył
8 Wrzesień 2010
Posty
52289
Reakcje/Polubienia
39564

QOwnNotes 26.2.13

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
    (for
    Zaloguj 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
    (for
    Zaloguj 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 (for
    Zaloguj 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
    (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 (for
    Zaloguj 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
    (for
    Zaloguj lub Zarejestruj się aby zobaczyć!
    )
  • Fixed clicking a Nextcloud Deck link not opening the Nextcloud Deck dialog anymore
    (for
    Zaloguj 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
    (for
    Zaloguj 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
    (for
    Zaloguj 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
Zaloguj lub Zarejestruj się aby zobaczyć!
 

Camel1965

Bardzo aktywny
Zasłużony
Dołączył
8 Wrzesień 2010
Posty
52289
Reakcje/Polubienia
39564

QOwnNotes 26.2.14​

  • Added hanging indentation for wrapped Markdown list lines in the note text edit so that
    continuation lines align with the list content rather than the list marker
    (for
    Zaloguj lub Zarejestruj się aby zobaczyć!
    )
  • Added <meta name="viewport" content="width=device-width, initial-scale=1.0"> to the HTML
    export head for better responsiveness on mobile devices (for
    Zaloguj lub Zarejestruj się aby zobaczyć!
    )
  • Fixed horizontal rules (---) in the QLiteHtml preview widget always rendering with a black
    border in dark mode (for
    Zaloguj lub Zarejestruj się aby zobaczyć!
    )
    • QLiteHtml's built-in master CSS uses border-style: inset for <hr> with no color override,
      producing hardcoded black/gray borders regardless of the active color scheme
    • The hr { border-color: <color>; } rule is now injected into the HTML head alongside the
      existing strikeout fix, using the schema's "Horizontal rule" foreground color
      (MarkdownHighlighter::HorizontalRule) so the rule matches the color configured in
      the editor's font & color settings
Zaloguj lub Zarejestruj się aby zobaczyć!
 

Camel1965

Bardzo aktywny
Zasłużony
Dołączył
8 Wrzesień 2010
Posty
52289
Reakcje/Polubienia
39564

QOwnNotes 26.3.1​

26.3.1

  • Added a setting to toggle hanging indentation for wrapped Markdown list items
    in the note text edit (for
    Zaloguj lub Zarejestruj się aby zobaczyć!
    )
  • Fixed text selection start positions in wrapped Markdown list items with
    hanging indentation in the note text edit (for
    Zaloguj lub Zarejestruj się aby zobaczyć!
    )
  • Fixed wrapped list item continuation lines with hanging indentation sometimes
    clipping the last characters of a line (for
    Zaloguj lub Zarejestruj się aby zobaczyć!
    )
  • Fixed QLiteHtml preview selection drawing occasionally leaving vertical highlight
    stripes when dragging a selection (for
    Zaloguj lub Zarejestruj się aby zobaczyć!
    )
Zaloguj lub Zarejestruj się aby zobaczyć!
 

Camel1965

Bardzo aktywny
Zasłużony
Dołączył
8 Wrzesień 2010
Posty
52289
Reakcje/Polubienia
39564

QOwnNotes 26.3.2​

26.3.2

  • Moved the setting for hanging indentation in wrapped Markdown list items to the
    Tabs and Indents panel in the settings dialog (for
    Zaloguj lub Zarejestruj się aby zobaczyć!
    )
  • Try to fix hanging indentation in wrapped Markdown list items causing caret placement
    and drawing issues on mouse clicks on Windows (for
    Zaloguj lub Zarejestruj się aby zobaczyć!
    )
  • Try to better fix the end of the last line of text being cut off on hanging-indented
    wrapped list items when the text almost fits the available width
    (for
    Zaloguj lub Zarejestruj się aby zobaczyć!
    )
Zaloguj lub Zarejestruj się aby zobaczyć!
 

Camel1965

Bardzo aktywny
Zasłużony
Dołączył
8 Wrzesień 2010
Posty
52289
Reakcje/Polubienia
39564

QOwnNotes 26.3.3​

26.3.3

  • Added small inline Markdown image previews in the note text edit with a new
    setting (enabled by default), supporting local files, remote http(s) image URLs,
    base64 data:image/... images, and Nextcloud /core/preview image URLs
    (for
    Zaloguj lub Zarejestruj się aby zobaczyć!
    )
    • Inline Markdown image previews are currently only shown when no visible text
      follows the image tag on the same editor line, to avoid caret positioning
      mismatches after the image tag
  • Fixed caret blinking and visibility when the cursor is on hanging-indented
    wrapped lines in Markdown list items in the note text edit
    (for
    Zaloguj lub Zarejestruj się aby zobaczyć!
    )
Zaloguj lub Zarejestruj się aby zobaczyć!
 

Camel1965

Bardzo aktywny
Zasłużony
Dołączył
8 Wrzesień 2010
Posty
52289
Reakcje/Polubienia
39564

QOwnNotes 26.3.5​

  • Disabled hanging indentation for wrapped Markdown list items by default in the
    note text edit (for
    Zaloguj lub Zarejestruj się aby zobaczyć!
    )
  • Try to fix hanging-indented wrapped Markdown list items still occasionally showing
    no visible caret after clicking into continuation text in the note text edit
    (for
    Zaloguj lub Zarejestruj się aby zobaczyć!
    )
  • Fixed caret blink artifacts in hanging-indented wrapped Markdown list items,
    where the caret could appear partially clipped or show a stray tick while typing
    (for
    Zaloguj lub Zarejestruj się aby zobaczyć!
    )
  • Fixed caret visibility and blinking on the last wrapped visual line of
    hanging-indented Markdown list items, where the caret could disappear entirely
    while typing (for
    Zaloguj lub Zarejestruj się aby zobaczyć!
    )
Zaloguj lub Zarejestruj się aby zobaczyć!
 

Camel1965

Bardzo aktywny
Zasłużony
Dołączył
8 Wrzesień 2010
Posty
52289
Reakcje/Polubienia
39564

QOwnNotes 26.3.6​

26.3.6

  • Added a local
    Zaloguj lub Zarejestruj się aby zobaczyć!
    -compatible
    bookmark suggestion API endpoint (GET /suggest) based on existing bookmark
    parsing and Web Companion data sources, with prefix-first matching,
    deduplication, limit handling, and response format compatibility
    (for
    Zaloguj lub Zarejestruj się aby zobaczyć!
    )
    • Added a separate webpage documentation page for the Homepage suggestion API
      integration at
      Zaloguj lub Zarejestruj się aby zobaczyć!
      ,
      including links to reusable custom.js / custom.css assets for externally
      hosted Homepage instances
  • Fixed the default note sorting in the "Link to a URL or note" dialog regressing
    to alphabetical order when note subfolders are disabled; it now again defaults
    to modification date descending (for
    Zaloguj lub Zarejestruj się aby zobaczyć!
    )
  • Fixed switching note folders from the selector when multiple configured note
    folders point to the same local directory, ensuring folder-specific UI state
    like subfolder panel visibility updates correctly (for
    Zaloguj lub Zarejestruj się aby zobaczyć!
    )
Zaloguj lub Zarejestruj się aby zobaczyć!
 
Do góry