2024-12-25 22:43:37 by pin | Files touched by this commit (3) | |
Log message:
editors/tp-note: update tp 1.24.12
Maintenance release: replace HTML to Markdown library
This maintenance release migrates to the `htmd` library used by
Tp-Note's internal HTML to Markdown clipboard filter to improve stability.
|
2024-12-08 18:24:08 by pin | Files touched by this commit (3) | |
Log message:
editors/tp-note: update to 1.24.11
Breaking change: rename `.tpnote.toml` to `tpnote.toml`
The former marker filename was `.tpnote.toml`. As the marker file
and the configuration file `~/.config/tpnote/tpnote.toml` have the same
syntax and semantics, it is more consistent that they have the same filename.
If you have used marker files, please rename them from `.tpnote.toml` to
`tpnote.toml`.
|
2024-11-17 08:17:06 by Thomas Klausner | Files touched by this commit (944) |
Log message:
*: recursive bump for default-on option of at-spi2-core
|
2024-11-10 22:28:20 by pin | Files touched by this commit (3) | |
Log message:
editors/tp-note: update to 1.24.10
Upgrade dependencies
|
2024-10-30 19:50:37 by pin | Files touched by this commit (3) | |
Log message:
editors/tp-note: update to 1.24.9
This release improves the internal HTML to Markdown filter `html_to_markup`,
which is used in the templates `from_clipboard_content` and
`from_clipboard_yaml_content` when the clipboard contains HTML content:
URLs containing spaces are now correctly enclosed with angle brackets.
|
2024-10-13 22:20:15 by pin | Files touched by this commit (3) | |
Log message:
editors/tp-note: update to 1.24.8
Group front-matter variables in templates
Breaking configuration change. If you use custom templates, please update them:
Front matter variables in templates must be preceeded with `fm.`, e.g.
`fm_author` becomes `fm.fm_author`, `fm_title` becomes `fm.fm_title`,
`fm_subtitle` becomes `fm.fm_subtitle` and so on.
|
2024-08-24 17:59:37 by pin | Files touched by this commit (1) |
Log message:
editors/tp-note: add note on the MSRV for newer versions
|
2024-07-19 11:51:14 by pin | Files touched by this commit (3) | |
Log message:
editors/tp-note: update to 1.24.7
v1.24.7
Viewer: add $$ syntax for inline formula
Since the version 1.19.8 Tp-Note can render mathematical formula. So far
inline formula had to be enclosed between `$ and $`. e.g. `$\alpha$`.
This former syntax, is still supported, is now deprecated.
The present release adds support for the standard syntax with simple $
enclosure, e.g. $\alpha$.
The former syntax for display formula:
```math
\alpha
```
can now be written as:
$$
\alpha
$$
v1.24.6
Revert migration to the `mdka` crate
The reverted change was introduced in v1.24.5. Unfortunately everyday usage
shows, that the `mdka` crate is not as mature as the former solution with
the `fast_html2md` crate.
Otherwise, no new features. The `extensions` table of the `zettel` scheme was
updated. This concerns only users of the `zettel` scheme _not_ using Markdown.
v1.24.5
Migrate to a different HTML to Markdown filter used in internal templates.
This release has no new features.
The `html_to_markup` template filter now resorts back to the `mdka` crate.
Unlike the previous dependency, this crate is published under the
Apache-2.0 license.
v1.24.4
Downgrade some dependencies to comply with rustc 1.77.2, no code changes
v1.24.3
Enhance the HTML clipboard configuration options
This release extends the `html_to_markup` filter by adding a `default=`
parameter in case the filter fails, its result is the empty string, or if
the filter is disabled for a certain markup language with the configuration
variable `extensions.1`.
The `clipboard` variable is replaced by the variables `txt_clipboard` and
`html_clipbaord`. They both represent the clipboard's text content. The
difference is, that the `html_clipboard` carries HTML formatting along the
text, while `txt_clipboard` holds the plain text only.
|
2024-06-24 10:36:36 by pin | Files touched by this commit (1) | |
Log message:
editors/tp-note: add note on required Rust
Cannot be updated, newer versions require Rust >= 1.77.2
|
2024-04-12 12:45:37 by pin | Files touched by this commit (3) | |
Log message:
editors/tp-note: update to 1.24.2
v1.24.2
Regression fix: repair broken Windows installer
This updates the tool chain that produces the Windows installer. The `.msi`
installer was broken in version 1.24.1.
Minor bug fix:
* Windows: do not insert double `\r\r` when input comes from both: stdin and
the clipboard.
v1.24.1
Regression bug fix: no HTML in X11 clipboard, fallback to text
This release fixes a regression (commit dc9fd8d) introduced with the
migration to the `clipboard-rs` crate (commit b532b71) under Linux/X11:
When the clipboard contains no HTML, now the plain text content is
correctly used (again).
Minor internal improvements:
* Refactor clipboard related templates
|