Merge remote-tracking branch 'origin/release'

This commit is contained in:
Overhang.IO 2025-04-16 15:02:16 +00:00
commit e2a5c2b613
5 changed files with 16 additions and 4 deletions

View File

@ -20,6 +20,11 @@ instructions, because git commits are used to generate release notes:
<!-- scriv-insert-here -->
<a id='changelog-19.0.2'></a>
## v19.0.2 (2025-04-16)
- [Bugfix] Prevent images in plugin description from overflowing. (by @mlabeeb03)
<a id='changelog-19.0.1'></a>
## v19.0.1 (2025-04-16)

View File

@ -1,5 +1,5 @@
[scriv]
version = literal: tutormfe/__about__.py: __version__
version = literal: tutordeck/__about__.py: __version__
categories =
format = md
md_header_level = 2

View File

@ -1 +1 @@
__version__ = "19.0.1"
__version__ = "19.0.2"

View File

@ -1,6 +1,7 @@
import asyncio
import json
import logging
import re
import sys
import typing as t
@ -81,7 +82,7 @@ async def plugin_store_list() -> str:
"url": p.url,
"index": p.index,
"author": p.author.split("<")[0].strip(),
"description": markdown(p.description.replace("\n", " ")),
"description": p.short_description,
"is_installed": p.name in g.installed_plugins,
"is_enabled": p.name in g.enabled_plugins,
}
@ -109,7 +110,7 @@ async def plugin_installed_list() -> str:
"url": p.url,
"index": p.index,
"author": p.author.split("<")[0].strip(),
"description": markdown(p.description.replace("\n", " ")),
"description": p.short_description,
"is_enabled": p.name in g.enabled_plugins,
}
for p in tutorclient.Client.plugins_in_store()

View File

@ -290,6 +290,12 @@ main {
#plugin-full-description {
border-top: 1px solid $gray-1;
padding: 1em 0em;
p {
img {
width: 100%;
}
}
}
.search-and-button {
display: flex;