Files
driftwood/data/app.driftwood.Driftwood.gschema.xml
lashman 6526f92a6f Fix icon extraction, drop overlay styling, and card padding
- Fix upsert_appimage returning 0 for existing records by falling
  back to a SELECT query when last_insert_rowid is 0
- Replace --appimage-offset execution with binary squashfs magic scan
  to avoid hanging on AppImages with custom AppRun scripts
- Add 5-second timeout fallback if binary scan fails
- Extract desktop files from usr/share/applications/ for reverse-DNS
  named entries that root-level *.desktop glob misses
- Add root-level png/svg fallback in icon search
- Add CSS for drop overlay scrim, drop zone card, and drop zone icon
- Add card padding (24px 20px) so content does not touch card edges
- Always scan on startup to discover new AppImages
2026-02-27 17:49:04 +02:00

91 lines
3.9 KiB
XML

<?xml version="1.0" encoding="UTF-8"?>
<schemalist gettext-domain="driftwood">
<schema id="app.driftwood.Driftwood" path="/app/driftwood/Driftwood/">
<key name="window-width" type="i">
<default>900</default>
<summary>Window width</summary>
<description>The width of the main application window.</description>
</key>
<key name="window-height" type="i">
<default>600</default>
<summary>Window height</summary>
<description>The height of the main application window.</description>
</key>
<key name="window-maximized" type="b">
<default>false</default>
<summary>Window maximized</summary>
<description>Whether the main application window is maximized.</description>
</key>
<key name="scan-directories" type="as">
<default>['~/Applications', '~/Downloads']</default>
<summary>Scan directories</summary>
<description>Directories to scan for AppImage files.</description>
</key>
<key name="view-mode" type="s">
<default>'grid'</default>
<summary>Library view mode</summary>
<description>The library view mode: grid or list.</description>
</key>
<key name="color-scheme" type="s">
<default>'default'</default>
<summary>Color scheme</summary>
<description>Application color scheme: default (follow system), force-light, or force-dark.</description>
</key>
<key name="auto-scan-on-startup" type="b">
<default>true</default>
<summary>Auto scan on startup</summary>
<description>Whether to automatically scan for AppImages when the application starts.</description>
</key>
<key name="detail-tab" type="s">
<default>'overview'</default>
<summary>Last detail view tab</summary>
<description>The last selected tab in the detail view (overview, system, security, storage).</description>
</key>
<key name="auto-check-updates" type="b">
<default>false</default>
<summary>Auto check updates</summary>
<description>Automatically check for AppImage updates periodically.</description>
</key>
<key name="auto-integrate" type="b">
<default>false</default>
<summary>Auto integrate</summary>
<description>Automatically integrate newly discovered AppImages into the desktop menu.</description>
</key>
<key name="auto-backup-before-update" type="b">
<default>false</default>
<summary>Auto backup before update</summary>
<description>Create a config backup before applying an update.</description>
</key>
<key name="backup-retention-days" type="i">
<default>30</default>
<summary>Backup retention days</summary>
<description>Number of days to keep config backups before auto-cleanup.</description>
</key>
<key name="confirm-before-delete" type="b">
<default>true</default>
<summary>Confirm before delete</summary>
<description>Show a confirmation dialog before deleting AppImages or backups.</description>
</key>
<key name="update-cleanup" type="s">
<default>'ask'</default>
<summary>Update cleanup mode</summary>
<description>What to do with old versions after update: ask, keep, or delete.</description>
</key>
<key name="auto-security-scan" type="b">
<default>false</default>
<summary>Auto security scan</summary>
<description>Automatically scan AppImages for security vulnerabilities during scan.</description>
</key>
<key name="security-notifications" type="b">
<default>false</default>
<summary>Security notifications</summary>
<description>Send desktop notifications when new CVEs are found.</description>
</key>
<key name="security-notification-threshold" type="s">
<default>'high'</default>
<summary>Security notification threshold</summary>
<description>Minimum CVE severity for desktop notifications: critical, high, medium, or low.</description>
</key>
</schema>
</schemalist>