Display garbled on Raspberry Pi
Version
Using latest version on Raspberry Pi repository. 1.14.4-3
Problematic Behavior
Display does not appear to start up correctly. Image attached-
Steps to Reproduce
- Install liferea
- Start up liferea
- Display garbled, as above.
If I run from the command line then no errors show up, even if I include the --debug-all option.
Expected Behavior
- Would have hoped for the application to start up and be able to use liferea!
- Could it be that the Raspberry Pi hardware I am using simply has insufficient memory? (Using Raspberry Pi with 1 GB memory)
- Or is there a fix or workaround for this?
- Should I try to build a newer version from sources?
Output from running from command line `XXXXX@raspberrypi:~/.config/liferea $ liferea --debug-all CONF : proxy auto detect is configured CONF : Manual proxy settings are now NULL:0 NULL:NULL NET : proxy set to http://(null):(null)@(null):0 DB : Opening DB file /home/brian/.local/share/liferea/liferea.db... DB : executing SQL: PRAGMA journal_mode=WAL DB : -> result: 0 (success) DB : executing SQL: PRAGMA page_size=32768 DB : -> result: 0 (success) DB : executing SQL: PRAGMA synchronous=NORMAL DB : -> result: 0 (success) DB : current DB schema version: 10 DB : No VACUUM as freelist count/page count ratio 0.00 <= 10 DB : executing SQL: CREATE TABLE items ( item_id INTEGER, parent_item_id INTEGER, node_id TEXT, parent_node_id TEXT, title TEXT, read INTEGER, updated INTEGER, popup INTEGER, marked INTEGER, source TEXT, source_id TEXT, valid_guid INTEGER, description TEXT, date INTEGER, comment_feed_id TEXT, comment INTEGER, PRIMARY KEY (item_id)); DB : -> result: 1 (table items already exists) DB : executing SQL: CREATE INDEX items_idx ON items (source_id); DB : -> result: 1 (index items_idx already exists) DB : executing SQL: CREATE INDEX items_idx2 ON items (comment_feed_id); DB : -> result: 1 (index items_idx2 already exists) DB : executing SQL: CREATE INDEX items_idx3 ON items (node_id); DB : -> result: 1 (index items_idx3 already exists) DB : executing SQL: CREATE INDEX items_idx4 ON items (item_id); DB : -> result: 1 (index items_idx4 already exists) DB : executing SQL: CREATE INDEX items_idx5 ON items (parent_item_id); DB : -> result: 1 (index items_idx5 already exists) DB : executing SQL: CREATE INDEX items_idx6 ON items (parent_node_id); DB : -> result: 1 (index items_idx6 already exists) DB : executing SQL: CREATE TABLE metadata ( item_id INTEGER, nr INTEGER, key TEXT, value TEXT, PRIMARY KEY (item_id, nr)); DB : -> result: 1 (table metadata already exists) DB : executing SQL: CREATE INDEX metadata_idx ON metadata (item_id); DB : -> result: 1 (index metadata_idx already exists) DB : executing SQL: CREATE TABLE subscription ( node_id STRING, source STRING, orig_source STRING, filter_cmd STRING, update_interval INTEGER, default_interval INTEGER, discontinued INTEGER, available INTEGER, PRIMARY KEY (node_id)); DB : -> result: 1 (table subscription already exists) DB : executing SQL: CREATE TABLE subscription_metadata ( node_id STRING, nr INTEGER, key TEXT, value TEXT, PRIMARY KEY (node_id, nr)); DB : -> result: 1 (table subscription_metadata already exists) DB : executing SQL: CREATE INDEX subscription_metadata_idx ON subscription_metadata (node_id); DB : -> result: 1 (index subscription_metadata_idx already exists) DB : executing SQL: CREATE TABLE node ( node_id STRING, parent_id STRING, title STRING, type INTEGER, expanded INTEGER, view_mode INTEGER, sort_column INTEGER, sort_reversed INTEGER, PRIMARY KEY (node_id)); DB : -> result: 1 (table node already exists) DB : executing SQL: CREATE TABLE search_folder_items ( node_id STRING, parent_node_id STRING, item_id INTEGER, PRIMARY KEY (node_id, item_id)); DB : -> result: 1 (table search_folder_items already exists) DB : executing SQL: DROP TRIGGER item_insert; DB : -> result: 1 (no such trigger: item_insert) DB : executing SQL: DROP TRIGGER item_update; DB : -> result: 1 (no such trigger: item_update) DB : executing SQL: DROP TRIGGER item_removal; DB : -> result: 0 (success) DB : executing SQL: DROP TRIGGER subscription_removal; DB : -> result: 0 (success) DB : Checking for items without a feed list node...
DB : executing SQL: DELETE FROM items WHERE comment = 0 AND node_id NOT IN (SELECT node_id FROM node); DB : -> result: 0 (success) DB : Checking for comments without parent item...
DB : executing SQL: BEGIN; CREATE TEMP TABLE tmp_id ( id ); INSERT INTO tmp_id SELECT item_id FROM items WHERE comment = 1 AND parent_item_id NOT IN (SELECT item_id FROM items WHERE comment = 0); DELETE FROM items WHERE item_id IN (SELECT id FROM tmp_id LIMIT 1000); DROP TABLE tmp_id;END; DB : -> result: 0 (success) DB : Checking for search folder items without a feed list node...
DB : executing SQL: DELETE FROM search_folder_items WHERE parent_node_id NOT IN (SELECT node_id FROM node); DB : -> result: 0 (success) DB : Checking for search folder items without a search folder...
DB : executing SQL: DELETE FROM search_folder_items WHERE node_id NOT IN (SELECT node_id FROM node); DB : -> result: 0 (success) DB : Checking for search folder with comments...
DB : executing SQL: DELETE FROM search_folder_items WHERE comment = 1; DB : -> result: 1 (no such column: comment) DB : Checking for subscription metadata without node...
DB : executing SQL: DELETE FROM subscription_metadata WHERE node_id NOT IN (SELECT node_id FROM node); DB : -> result: 0 (success) DB : Removing metadata without item...
DB : executing SQL: DELETE FROM metadata WHERE item_id NOT IN (SELECT item_id FROM items); DB : -> result: 0 (success) DB : DB cleanup finished. Continuing startup. DB : executing SQL: CREATE TRIGGER item_removal DELETE ON items BEGIN DELETE FROM metadata WHERE item_id = old.item_id; DELETE FROM search_folder_items WHERE item_id = old.item_id; END; DB : -> result: 0 (success) DB : executing SQL: CREATE TRIGGER subscription_removal DELETE ON subscription BEGIN DELETE FROM node WHERE node_id = old.node_id; DELETE FROM subscription_metadata WHERE node_id = old.node_id; DELETE FROM search_folder_items WHERE parent_node_id = old.node_id; END; DB : -> result: 0 (success) PERF : = db_init took 0,017s GUI : Setting up menus GUI : Setting up widget containers HTML : theme color "GTK-COLOR-FG" is FFFFFF HTML : theme color "GTK-COLOR-BG" is EDECEB HTML : theme color "GTK-COLOR-LIGHT" is FFFFFF HTML : theme color "GTK-COLOR-DARK" is A9A5A2 HTML : theme color "GTK-COLOR-MID" is D4D2D1 HTML : theme color "GTK-COLOR-BASE" is EDECEB HTML : theme color "GTK-COLOR-TEXT" is FFFFFF HTML : theme color "GTK-COLOR-NORMAL-LINK" is 000000 HTML : theme color "GTK-COLOR-VISITED-LINK" is 000000 CONF : GNOME reports color-schema 'default' CONF : Determined dark theme mode to be 0 HTML : Light GTK theme detected. HTML : theme color "FEEDLIST_UNREAD_FG" is EDECEB HTML : theme color "FEEDLIST_UNREAD_BG" is A9A5A2 GUI : Setting up status bar GUI : Setting up tabbed browsing GUI : Setting up feed list PERF : = feed_list_view_create took 0,003s GUI : Initialising menus GUI : Setting up item view GUI : Creating HTML widget NET : user-agent set to "Liferea/1.14.4 (Android 12; Mobile; https://lzone.de/liferea/) AppleWebKit (KHTML, like Gecko)" NET : Setting initial HTML widget proxy... GUI : Loading icons GUI : Setting toolbar style GUI : Restoring window position GUI : Previous window state indicators: dconf=0, CLI switch=(null) GUI : Restoring window state 'shown' HTML : theme color "GTK-COLOR-FG" is 000000 HTML : theme color "GTK-COLOR-BG" is EDECEB HTML : theme color "GTK-COLOR-LIGHT" is FFFFFF HTML : theme color "GTK-COLOR-DARK" is A9A5A2 HTML : theme color "GTK-COLOR-MID" is D4D2D1 HTML : theme color "GTK-COLOR-BASE" is EDECEB HTML : theme color "GTK-COLOR-TEXT" is 000000 HTML : theme color "GTK-COLOR-NORMAL-LINK" is 000000 HTML : theme color "GTK-COLOR-VISITED-LINK" is 000000 CONF : GNOME reports color-schema 'default' CONF : Determined dark theme mode to be 0 HTML : Light GTK theme detected. HTML : theme color "FEEDLIST_UNREAD_FG" is EDECEB HTML : theme color "FEEDLIST_UNREAD_BG" is A9A5A2 CACHE : Setting up root node PARSING: Registering node source type Static Feed List PARSING: Registering node source type Dummy Feed List Source PARSING: Registering node source type Planet, BlogRoll, OPML PARSING: Registering node source type Google Reader API PARSING: Registering node source type Reedah PARSING: Registering node source type Tiny Tiny RSS PARSING: Registering node source type TheOldReader PARSING: Registering node source type Miniflux CACHE : Importing OPML file: /home/brian/.config/liferea/feedlist.opml GUI : adding node "Example Feeds" as child of parent="root" HTML : Feed list unread CSS: foreground='#EDECEB' background='#A9A5A2'
GUI : folder empty check for node id "wyxhjxe" GUI : folder empty check for node id "qigcfmu" GUI : adding node "News" as child of parent="Example Feeds" GUI : folder empty check for node id "qigcfmu" GUI : folder empty check for node id "vwqbmrs" GUI : adding node "Ars Technica" as child of parent="News" GUI : folder empty check for node id "vwqbmrs" UPDATE : Setting last favicon poll time for mogtmme to 1760201776 CACHE : import feed: title=Ars Technica source=https://feeds.arstechnica.com/arstechnica/index typeStr=rss interval=-1 DB : updating node info mogtmme PERF : = import_parse_outline took 0,020s GUI : adding node "Slashdot" as child of parent="News" GUI : folder empty check for node id "vwqbmrs" UPDATE : Setting last favicon poll time for ljovfbi to 1760201776 CACHE : import feed: title=Slashdot source=https://rss.slashdot.org/Slashdot/slashdotMain typeStr=rss interval=-1 DB : updating node info ljovfbi PERF : = import_parse_outline took 0,003s GUI : adding node "BBC" as child of parent="News" GUI : folder empty check for node id "vwqbmrs" UPDATE : Setting last favicon poll time for ralisxh to 1760201775 CACHE : import feed: title=BBC source=https://feeds.bbci.co.uk/news/rss.xml?edition=int typeStr=rss interval=-1 DB : updating node info ralisxh PERF : = import_parse_outline took 0,002s GUI : adding node "Science" as child of parent="News" GUI : folder empty check for node id "vwqbmrs" CACHE : import feed: title=Science source=https://www.sciencenews.org/feed typeStr=rss interval=-1 DB : updating node info srvpyaq DB : updating node info vwqbmrs PERF : = import_parse_outline took 0,001s GUI : adding node "Knowledge" as child of parent="Example Feeds" GUI : folder empty check for node id "qigcfmu" GUI : folder empty check for node id "svstdvk" GUI : adding node "Aeon" as child of parent="Knowledge" GUI : folder empty check for node id "svstdvk" UPDATE : Setting last favicon poll time for cjingtr to 1760201776 CACHE : import feed: title=Aeon source=https://aeon.co/feed.rss typeStr=rss interval=-1 DB : updating node info cjingtr PERF : = import_parse_outline took 0,004s GUI : adding node "Quanta Magazine" as child of parent="Knowledge" GUI : folder empty check for node id "svstdvk" UPDATE : Setting last favicon poll time for vyvdaij to 1760201776 CACHE : import feed: title=Quanta Magazine source=https://api.quantamagazine.org/feed/ typeStr=rss interval=-1 DB : updating node info vyvdaij PERF : = import_parse_outline took 0,007s DB : updating node info svstdvk PERF : = import_parse_outline took 0,007s GUI : adding node "Open Source" as child of parent="Example Feeds" GUI : folder empty check for node id "qigcfmu" GUI : folder empty check for node id "nveljbi" GUI : adding node "Planet Debian" as child of parent="Open Source" GUI : folder empty check for node id "nveljbi" UPDATE : Setting last favicon poll time for ekvtxxc to 1760201776 CACHE : import feed: title=Planet Debian source=https://planet.debian.org/rss20.xml typeStr=rss interval=-1 DB : updating node info ekvtxxc DB : = node update took 0,001s PERF : = import_parse_outline took 0,006s GUI : adding node "Liferea Blog" as child of parent="Open Source" GUI : folder empty check for node id "nveljbi" UPDATE : Setting last favicon poll time for bjdhxho to 1760201777 CACHE : import feed: title=Liferea Blog source=https://feeds.feedburner.com/LifereaBlog typeStr=atom interval=-1 DB : updating node info bjdhxho PERF : = import_parse_outline took 0,003s CACHE : -> URL found assuming type feed GUI : adding node "Planet GNOME" as child of parent="Open Source" GUI : folder empty check for node id "nveljbi" UPDATE : Setting last favicon poll time for gacpsfk to 1760201778 CACHE : import feed: title=Planet GNOME source=https://planet.gnome.org/atom.xml typeStr=(null) interval=-1 DB : updating node info gacpsfk PERF : = import_parse_outline took 0,006s DB : updating node info nveljbi PERF : = import_parse_outline took 0,006s GUI : adding node "Podcasts" as child of parent="Example Feeds" GUI : folder empty check for node id "qigcfmu" GUI : folder empty check for node id "yfhxxpl" GUI : adding node "EscapePod" as child of parent="Podcasts" GUI : folder empty check for node id "yfhxxpl" UPDATE : Setting last favicon poll time for jkuapaq to 1760201779 CACHE : import feed: title=EscapePod source=https://escapepod.org/feed/atom/ typeStr=atom interval=-1 DB : updating node info jkuapaq PERF : = import_parse_outline took 0,002s DB : updating node info yfhxxpl PERF : = import_parse_outline took 0,003s GUI : adding node "Music Blogs" as child of parent="Example Feeds" GUI : folder empty check for node id "qigcfmu" GUI : folder empty check for node id "wlsnfyd" CACHE : -> URL found assuming type feed GUI : adding node "Free Music Archive" as child of parent="Music Blogs" GUI : folder empty check for node id "wlsnfyd" UPDATE : Setting last favicon poll time for hioohsd to 1760201777 CACHE : import feed: title=Free Music Archive source=https://freemusicarchive.org/recent.atom typeStr=(null) interval=-1 DB : updating node info hioohsd PERF : = import_parse_outline took 0,003s GUI : adding node "Gorilla vs. Bear" as child of parent="Music Blogs" GUI : folder empty check for node id "wlsnfyd" UPDATE : Setting last favicon poll time for gmgbpxm to 1760201781 CACHE : import feed: title=Gorilla vs. Bear source=https://www.gorillavsbear.net/category/mp3/feed/ typeStr=rss interval=-1 DB : updating node info gmgbpxm PERF : = import_parse_outline took 0,003s CACHE : -> URL found assuming type feed GUI : adding node "KEXP" as child of parent="Music Blogs" GUI : folder empty check for node id "wlsnfyd" UPDATE : Setting last favicon poll time for eekuupl to 1760201782 CACHE : import feed: title=KEXP source=http://feeds.kexp.org/kexp/songoftheday typeStr=(null) interval=-1 DB : updating node info eekuupl PERF : = import_parse_outline took 0,002s GUI : adding node "Fluxblog" as child of parent="Music Blogs" GUI : folder empty check for node id "wlsnfyd" UPDATE : Setting last favicon poll time for ygsewgp to 1760201784 CACHE : import feed: title=Fluxblog source=http://www.fluxblog.org/feed typeStr=rss interval=-1 DB : updating node info ygsewgp PERF : = import_parse_outline took 0,005s DB : updating node info wlsnfyd PERF : = import_parse_outline took 0,005s GUI : adding node "Comics" as child of parent="Example Feeds" GUI : folder empty check for node id "qigcfmu" GUI : folder empty check for node id "sonyisx" GUI : adding node "xkcd" as child of parent="Comics" GUI : folder empty check for node id "sonyisx" UPDATE : Setting last favicon poll time for ocvvhvw to 1760201778 CACHE : import feed: title=xkcd source=https://xkcd.com/atom.xml typeStr=atom interval=-1 DB : updating node info ocvvhvw PERF : = import_parse_outline took 0,005s DB : updating node info sonyisx PERF : = import_parse_outline took 0,006s DB : updating node info qigcfmu PERF : = import_parse_outline took 0,006s GUI : adding node "Unread" as child of parent="root" GUI : folder empty check for node id "wyxhjxe" CACHE : import vfolder: title=Unread CACHE : loading rule "unread" "" DB : updating node info ttdrfej PERF : = import_parse_outline took 0,001s GUI : adding node "Important" as child of parent="root" GUI : folder empty check for node id "wyxhjxe" CACHE : import vfolder: title=Important CACHE : loading rule "flagged" "" DB : updating node info xgthnpt PERF : = default_source_source_import took 0,108s PERF : = node_source_setup_root took 0,905s PERF : function "node_source_setup_root" is slow! Took 905ms. CACHE : Initializing node state UPDATE : Performing initial feed update UPDATE : initial update: resetting feed counter UPDATE : Resetting last poll counter of https://feeds.arstechnica.com/arstechnica/index to 1760203711608067. UPDATE : Resetting last poll counter of https://rss.slashdot.org/Slashdot/slashdotMain to 1760203711608067. UPDATE : Resetting last poll counter of https://feeds.bbci.co.uk/news/rss.xml?edition=int to 1760203711608067. UPDATE : Resetting last poll counter of https://www.sciencenews.org/feed to 1760203711608067. UPDATE : Resetting last poll counter of https://aeon.co/feed.rss to 1760203711608067. UPDATE : Resetting last poll counter of https://api.quantamagazine.org/feed/ to 1760203711608067. UPDATE : Resetting last poll counter of https://planet.debian.org/rss20.xml to 1760203711608067. UPDATE : Resetting last poll counter of https://feeds.feedburner.com/LifereaBlog to 1760203711608067. UPDATE : Resetting last poll counter of https://planet.gnome.org/atom.xml to 1760203711608067. UPDATE : Resetting last poll counter of https://escapepod.org/feed/atom/ to 1760203711608067. UPDATE : Resetting last poll counter of https://freemusicarchive.org/recent.atom to 1760203711608067. UPDATE : Resetting last poll counter of https://www.gorillavsbear.net/category/mp3/feed/ to 1760203711608067. UPDATE : Resetting last poll counter of http://feeds.kexp.org/kexp/songoftheday to 1760203711608067. UPDATE : Resetting last poll counter of http://www.fluxblog.org/feed to 1760203711608067. UPDATE : Resetting last poll counter of https://xkcd.com/atom.xml to 1760203711608067. DB : Cleaning node ids... CONF : Scheduling feedlist save PERF : = feedlist_init took 0,929s PERF : function "feedlist_init" is slow! Took 929ms. DB : loading item 0 DB : Could not load item with id 0! GUI : Setting item list layout mode: 0 (auto=1) GUI : feed list selection changed to "Science" GUI : new selected node: Science GUI : loading item list with node "Science" DB : loading itemset for node "srvpyaq" DB : loading of itemset finished GUI : reloading item list with node "Science" DB : loading item 3495 DB : = item load took 0,002s DB : loading item 3496 DB : loading item 3497 PARSING: SAX parser error : xmlParseEntityRef: no name
DB : loading item 3498 DB : loading item 3499 DB : loading item 3500 PARSING: SAX parser error : xmlParseEntityRef: no name
DB : loading item 3501 PARSING: SAX parser error : xmlParseEntityRef: no name
DB : loading item 3502 DB : loading item 3503 DB : loading item 3504 DB : loading item 3505 PARSING: SAX parser error : xmlParseEntityRef: no name
DB : = item load took 0,002s DB : loading item 3506 DB : loading item 3507 DB : loading item 3508 PARSING: SAX parser error : xmlParseEntityRef: no name
DB : loading item 3509 DB : loading item 3510 DB : loading item 3511 DB : loading item 3512 DB : loading item 3513 DB : loading item 3514 HTML : XSLT localisation: setlocale(LC_MESSAGES, NULL) reports 'en_GB' HTML : XSLT localisation: lang='en_GB' shortlang='en' GUI : = itemlist merge took 0,058s PERF : = itemlist_merge_itemset took 0,059s PERF : = itemlist_load took 0,059s PERF : = feedlist_selection_changed took 0,060s PERF : = liferea_shell_create took 2,076s PERF : function "liferea_shell_create" is slow! Took 2076ms. NET : network manager: connecting to StateChanged signal NET : network manager: connected to StateChanged signal: yes GUI : Acquired the name org.gnome.feed.Reader on the session bus
CONF : Setting last-window-state to 0 CONF : Setting last-window-state to 0 HTML : theme color "GTK-COLOR-FG" is 000000 HTML : theme color "GTK-COLOR-BG" is EDECEB HTML : theme color "GTK-COLOR-LIGHT" is FFFFFF HTML : theme color "GTK-COLOR-DARK" is A9A5A2 HTML : theme color "GTK-COLOR-MID" is D4D2D1 HTML : theme color "GTK-COLOR-BASE" is EDECEB HTML : theme color "GTK-COLOR-TEXT" is 000000 HTML : theme color "GTK-COLOR-NORMAL-LINK" is 000000 HTML : theme color "GTK-COLOR-VISITED-LINK" is 000000 CONF : GNOME reports color-schema 'default' CONF : Determined dark theme mode to be 0 HTML : Light GTK theme detected. HTML : theme color "FEEDLIST_UNREAD_FG" is EDECEB HTML : theme color "FEEDLIST_UNREAD_BG" is A9A5A2 CONF : Setting last-window-state to 0 HTML : theme color "GTK-COLOR-FG" is 000000 HTML : theme color "GTK-COLOR-BG" is EDECEB HTML : theme color "GTK-COLOR-LIGHT" is FFFFFF HTML : theme color "GTK-COLOR-DARK" is A9A5A2 HTML : theme color "GTK-COLOR-MID" is D4D2D1 HTML : theme color "GTK-COLOR-BASE" is EDECEB HTML : theme color "GTK-COLOR-TEXT" is 000000 HTML : theme color "GTK-COLOR-NORMAL-LINK" is 000000 HTML : theme color "GTK-COLOR-VISITED-LINK" is 000000 CONF : GNOME reports color-schema 'default' CONF : Determined dark theme mode to be 0 HTML : Light GTK theme detected. HTML : theme color "FEEDLIST_UNREAD_FG" is EDECEB HTML : theme color "FEEDLIST_UNREAD_BG" is A9A5A2 GUI : Retrieved saved setting: size 0x0 position 0:0 GUI : Restoring pane proportions (left:213 normal:189 wide:234) CONF : Setting last-window-state to 0 DB : loading item 0 DB : Could not load item with id 0! GUI : Setting item list layout mode: 1 (auto=1) GUI : loading item list with node "Science" DB : loading itemset for node "srvpyaq" DB : loading of itemset finished GUI : reloading item list with node "Science" DB : loading item 3495 DB : loading item 3496 DB : loading item 3497 PARSING: SAX parser error : xmlParseEntityRef: no name
DB : loading item 3498 DB : loading item 3499 DB : loading item 3500 PARSING: SAX parser error : xmlParseEntityRef: no name
DB : loading item 3501 PARSING: SAX parser error : xmlParseEntityRef: no name
DB : loading item 3502 DB : loading item 3503 DB : loading item 3504 DB : loading item 3505 PARSING: SAX parser error : xmlParseEntityRef: no name
DB : loading item 3506 DB : loading item 3507 DB : loading item 3508 PARSING: SAX parser error : xmlParseEntityRef: no name
DB : loading item 3509 DB : loading item 3510 DB : loading item 3511 DB : loading item 3512 DB : loading item 3513 DB : loading item 3514 GUI : = itemlist merge took 0,035s PERF : = itemlist_merge_itemset took 0,035s PERF : = itemlist_load took 0,036s GUI : Enabling reader mode for 'liferea://' CONF : Setting last-window-state to 0 HTML : theme color "GTK-COLOR-FG" is 000000 HTML : theme color "GTK-COLOR-BG" is EDECEB HTML : theme color "GTK-COLOR-LIGHT" is FFFFFF HTML : theme color "GTK-COLOR-DARK" is A9A5A2 HTML : theme color "GTK-COLOR-MID" is D4D2D1 HTML : theme color "GTK-COLOR-BASE" is EDECEB HTML : theme color "GTK-COLOR-TEXT" is 000000 HTML : theme color "GTK-COLOR-NORMAL-LINK" is 000000 HTML : theme color "GTK-COLOR-VISITED-LINK" is 000000 CONF : GNOME reports color-schema 'default' CONF : Determined dark theme mode to be 0 HTML : Light GTK theme detected. HTML : theme color "FEEDLIST_UNREAD_FG" is EDECEB HTML : theme color "FEEDLIST_UNREAD_BG" is A9A5A2 CACHE : adding feed: source=https://feeds.arstechnica.com/arstechnica/index interval=-1 cacheLimit= CACHE : adding feed: source=https://rss.slashdot.org/Slashdot/slashdotMain interval=-1 cacheLimit= CACHE : adding feed: source=https://feeds.bbci.co.uk/news/rss.xml?edition=int interval=-1 cacheLimit= CACHE : adding feed: source=https://www.sciencenews.org/feed interval=-1 cacheLimit= CACHE : adding feed: source=https://aeon.co/feed.rss interval=-1 cacheLimit= CACHE : adding feed: source=https://api.quantamagazine.org/feed/ interval=-1 cacheLimit= CACHE : adding feed: source=https://planet.debian.org/rss20.xml interval=-1 cacheLimit= CACHE : adding feed: source=https://feeds.feedburner.com/LifereaBlog interval=-1 cacheLimit= CACHE : adding feed: source=https://planet.gnome.org/atom.xml interval=-1 cacheLimit= CACHE : adding feed: source=https://escapepod.org/feed/atom/ interval=-1 cacheLimit= CACHE : adding feed: source=https://freemusicarchive.org/recent.atom interval=-1 cacheLimit= CACHE : adding feed: source=https://www.gorillavsbear.net/category/mp3/feed/ interval=-1 cacheLimit= CACHE : adding feed: source=http://feeds.kexp.org/kexp/songoftheday interval=-1 cacheLimit= CACHE : adding feed: source=http://www.fluxblog.org/feed interval=-1 cacheLimit= CACHE : adding feed: source=https://xkcd.com/atom.xml interval=-1 cacheLimit= CACHE : adding vfolder: title=Unread CACHE : adding vfolder: title=Important PERF : = export_OPML_feedlist took 0,003s PERF : = default_source_source_export took 0,003s`
From this image it looks like I have somehow ended up with two different versions of the libwebkit2gtk library?
The 2 webkit version are no problem. Liferea is linked only against one of them.
Sadly I have no idea why the display is garbled. Looks like the application is frozen and it shows garbage.
@brightyu777
May you pkease install Lagrange and see whether its interface be rendered properly?
Please also report of the responsiveness of Lagrange.
https://gmi.skyjake.fi/lagrange/