Philipp Hörist pushed to branch emoji-parsing-darwin at gajim / gajim
Commits:
2f4fc205 by wurstsalat at 2022-09-29T09:49:22+02:00
ci: Windows: Add libheif dependency
This adds a GdkPixbuf loader for HEIF and AVIF images, see #11020
- - - - -
c947c797 by wurstsalat at 2022-09-29T17:18:37+00:00
perf: Styling: Parse emojis for Darwin only
- - - - -
2 changed files:
- gajim/common/styling.py
- win/_base.sh
Changes:
=====================================
gajim/common/styling.py
=====================================
@@ -18,6 +18,7 @@
from typing import Match
import string
+import sys
import re
from dataclasses import dataclass
from dataclasses import field
@@ -208,7 +209,11 @@ def process(text: Union[str, bytes], level: int = 0) ->
ParsingResult:
for line in block.text.splitlines(keepends=True):
block.spans += _parse_line(line, offset, offset_bytes)
block.uris += _parse_uris(line, offset, offset_bytes)
- block.emojis += _parse_emojis(line, offset)
+ if sys.platform == 'darwin':
+ # block.emojis is used for replacing emojis with Gtk.Images
+ # Necessary for MessageTextview (darwin) only
+ block.emojis += _parse_emojis(line, offset)
+
offset += len(line)
offset_bytes += len(line.encode())
=====================================
win/_base.sh
=====================================
@@ -89,6 +89,7 @@ function install_deps {
mingw-w64-"${ARCH}"-python-pip \
mingw-w64-"${ARCH}"-adwaita-icon-theme \
mingw-w64-"${ARCH}"-libwebp \
+ mingw-w64-"${ARCH}"-libheif \
mingw-w64-"${ARCH}"-sqlite3 \
mingw-w64-"${ARCH}"-goocanvas \
mingw-w64-"${ARCH}"-gspell \
View it on GitLab:
https://dev.gajim.org/gajim/gajim/-/compare/71010ae347ae2e70016c13733dc54c765163ee88...c947c797637a648d22cef70f9f08c912b7818436
--
View it on GitLab:
https://dev.gajim.org/gajim/gajim/-/compare/71010ae347ae2e70016c13733dc54c765163ee88...c947c797637a648d22cef70f9f08c912b7818436
You're receiving this email because of your account on dev.gajim.org.
_______________________________________________
Commits mailing list
[email protected]
https://lists.gajim.org/cgi-bin/listinfo/commits