From Fabio to ~fabrixxm/confy-dev
Hi! Confy Gtk4/libadwaita branch `wip/gitk4` has been merged into `master`. It's not 100% at pair in features with last gtk3 version, but it's usable. What work: - get conferences from Giggty's json file - add custom event url - edit user-provided events details - search in events list - event info - browse by day / tracks / room / starred
From Fabio to ~fabrixxm/public-inbox
Implemented in commit [f1315c4a](https://git.sr.ht/~fabrixxm/pyslide/commit/f1315c4a7ae4c3b2e590a772328bcce41429e09f)
From Fabio to ~fabrixxm/public-inbox
Il 13/12/22 11:54, Alessandro Lorenzi ha scritto: > --- > pyslide.py | 6 +++--- > 1 file changed, 3 insertions(+), 3 deletions(-) > > diff --git a/pyslide.py b/pyslide.py > index 635bcdb..1e52f89 100755 > --- a/pyslide.py > +++ b/pyslide.py > @@ -6,7 +6,7 @@ from math import floor > from dataclasses import dataclass > from collections import namedtuple > from typing import List, Optional, Callable > -from moviepy.editor import ColorClip, VideoClip, ImageClip, AudioFileClip, VideoFileClip, CompositeVideoClip, concatenate
From Fabio to ~fabrixxm/confy-dev
Merged, thank you!
From Fabio to ~fabrixxm/confy-dev
Confy 0.6.4 has been released Thanks to all the contributors! https://git.sr.ht/~fabrixxm/confy/refs/0.6.4 Hopefully, the flatpak will be released soon, too..
From Fabio to ~fabrixxm/confy-dev
Applied, thank you!
From fabrixxm to ~valhalla/lesana-devel
This patch adds `Collection.count_search_results()` method which
counts results from a search.
It's much faster than count `get_all_search_results()`, as we avoid
to create Entry instances for every results.
On a collection with 264 items, doing a search for '+', counting
all results with
len(list(collection.get_all_search_results()))
takes ~930 ms on my system, while
collection.count_search_results()
[message trimmed]
From Fabio to ~valhalla/lesana-devel
running lesana search -e <query> (with `query` having or not any template var in it) results in: Traceback (most recent call last): File "scripts/lesana", line 39, in <module> Lesana().main() File "lesana/command.py", line 55, in main self.args.func(self.args) File "/lesana/command.py", line 65, in _main self.main()
From fabrixxm to ~valhalla/lesana-devel
- ignore libraries without typing info - add `py.typed` marker file - update .gitignore --- .gitignore | 5 +++++ lesana/collection.py | 2 +- lesana/command.py | 2 +- lesana/py.typed | 0 lesana/types.py | 2 +- setup.py | 2 +- 6 files changed, 9 insertions(+), 4 deletions(-) create mode 100644 lesana/py.typed diff --git a/.gitignore b/.gitignore
From fabrixxm to ~valhalla/lesana-devel
--- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index abda1b7..2545196 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ setup( packages=find_packages(), scripts=['scripts/lesana'], package_data={ '': ['*.yaml'] '': ['*.yaml', 'post-checkout'][message trimmed]