After fetching articles, all remote images referenced in article content are downloaded to ~/.local/share/net.jeena.FeedTheMonkey/images/ and their src attributes rewritten to file:// URIs. Subsequent loads of the same article (including from the cache on the next startup) display images without a network connection. Metered-connection awareness: image caching is skipped automatically when GIO reports the network connection as metered, regardless of the preference setting. A "Cache Images" toggle in Preferences lets the user disable caching entirely (stored in the cache-images GSettings key). After each refresh, images no longer referenced by any article in the current unread list are deleted from the cache directory to prevent unbounded disk growth.
38 lines
907 B
Text
38 lines
907 B
Text
using Gtk 4.0;
|
|
using Adw 1;
|
|
|
|
template $PreferencesDialog : Adw.Dialog {
|
|
title: _("Preferences");
|
|
content-width: 500;
|
|
content-height: 400;
|
|
|
|
Adw.ToolbarView {
|
|
[top]
|
|
Adw.HeaderBar {}
|
|
|
|
Adw.PreferencesPage {
|
|
Adw.PreferencesGroup {
|
|
title: _("Images");
|
|
|
|
Adw.SwitchRow cache_images_row {
|
|
title: _("Cache Images");
|
|
subtitle: _("Download images for offline reading (skipped on metered connections)");
|
|
}
|
|
}
|
|
|
|
Adw.PreferencesGroup {
|
|
title: _("Content Filters");
|
|
description: _("One rule per line: domain find replace [find replace …]\n\nExample:\n www.imycomic.com -150x150.jpg .jpg");
|
|
|
|
TextView filters_text_view {
|
|
monospace: true;
|
|
wrap-mode: word;
|
|
top-margin: 8;
|
|
bottom-margin: 8;
|
|
left-margin: 8;
|
|
right-margin: 8;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|