Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adaptability and UI tweaks #770

Merged
merged 26 commits into from
Feb 1, 2025
Merged
Changes from 1 commit
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
8e563c0
error-dialog: Improve adaptability
oscfdezdz Jan 15, 2025
9740816
browse-page: Tweak spinner page
oscfdezdz Jan 17, 2025
3206b16
extension-row: Improve error row
oscfdezdz Jan 20, 2025
cd57ec3
extension-row: Replace deprecated action with suffix
oscfdezdz Jan 20, 2025
932b6d6
installed-page: Create placeholders in blueprint
oscfdezdz Jan 21, 2025
edf02c3
upgrade-assistant: Create placeholders in blueprint
oscfdezdz Jan 21, 2025
bb3c42d
detail-view: Drop dim-label style from links section
oscfdezdz Jan 21, 2025
22c638d
info-bar: Add downloads and version properties
oscfdezdz Jan 22, 2025
b23dc80
styles: Set CSS names of comment-tile and info-bar
oscfdezdz Jan 22, 2025
fcba93b
detail-view: Reset focus on each load
oscfdezdz Jan 23, 2025
ff73d76
comment-dialog: Clear cancellable on dispose
oscfdezdz Jan 24, 2025
979e7d2
info-bar: Improve separator style
oscfdezdz Jan 28, 2025
bdf0381
search-row: Display the first line of the description at most
oscfdezdz Jan 28, 2025
1b6470e
detail-view: Wrap title in up to 2 lines
oscfdezdz Jan 29, 2025
f2069fa
search-row: Wrap title and description in up to 2 lines
oscfdezdz Jan 29, 2025
74370b9
browse-page: Drop duplicate default search
oscfdezdz Jan 30, 2025
c34fa84
install-button: Improve adaptability in ExmSearchRow
oscfdezdz Jan 31, 2025
9df47cb
application: Save window state on close/shutdown
oscfdezdz Jan 31, 2025
9f84c10
main: Fix unused result warning
oscfdezdz Jan 31, 2025
34e83e5
flatpak: Update libbacktrace to the latest commit
oscfdezdz Jan 31, 2025
e7307e2
search-row: Drop accessible property label
oscfdezdz Jan 31, 2025
4bd9697
browse-page: Set error label use-markup property in code
oscfdezdz Jan 31, 2025
2894cd6
detail-view: Handle extensions with disabled comments
oscfdezdz Feb 1, 2025
830b103
data: Update installed screenshots
oscfdezdz Jan 31, 2025
3281e13
workflows: Use flathub-infra's actions
oscfdezdz Jan 31, 2025
e8e9c7e
general: Add more translation comments
oscfdezdz Feb 1, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
main: Fix unused result warning
oscfdezdz committed Feb 1, 2025

Verified

This commit was signed with the committer’s verified signature.
commit 9f84c10bb9fe591a529f620b05ae8826af4b7cbd
10 changes: 7 additions & 3 deletions src/main.c
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
/* main.c
/*
* main.c
*
* Copyright 2022-2024 Matthew Jakeman <[email protected]>
* Copyright 2022-2025 Matthew Jakeman <[email protected]>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -48,7 +49,10 @@ handler (int sig)
if (backtrace)
{
// Send backtrace string over pipe
write (pipe_fd[1], backtrace, strlen (backtrace));
ssize_t bytes_written = write (pipe_fd[1], backtrace, strlen (backtrace));

if (bytes_written < 0)
g_warning ("Failed to write backtrace to pipe: %s", g_strerror (errno));
}

close (pipe_fd[1]);