aboutsummaryrefslogtreecommitdiff
path: root/shell
AgeCommit message (Collapse)Author
2020-10-09Add stub to set title in GTK3 load graphLeandro Pereira
2020-10-09Ensure LoadGraph title is cleared when LG is cleared tooLeandro Pereira
2020-10-09Show graph's title at selecting sensor itemSergio Vieira
2020-08-09Revert "Move the Privacy Policy link to the button area"Leandro Pereira
This reverts commit 8e508ae979492df6e214609d6672fc8a5e44d2b9, because it caused issues in locales where "Privacy Policy" is too long of a string.
2020-07-26Move the Privacy Policy link to the button areaLeandro Pereira
2020-07-26Fix more missed calls to gettext in syncmanagerLeandro Pereira
2020-07-22Synchronize window should show translated labelsLeandro Pereira
Fixes #572
2020-07-07Hide Privacy Policy button when synchronizing startsLeandro Pereira
2020-07-04Break lines so that dialogs are not that wide in GTK3Leandro Pereira
2020-07-04Show a "Privacy Policy" to the Synchronize dialogLeandro Pereira
2020-05-25Fix build with GTK+3Leandro Pereira
2020-05-18s/Network Updater.../Synchronize/Leandro Pereira
2020-05-15Show Network Updater button in the toolbar if availableLeandro Pereira
2020-05-15Fix compile warnings in SyncManager/ShellLeandro Pereira
2020-05-13Show "Benchmarking..." dialog on top of sync managerLeandro Pereira
2020-05-13Splice contents from downloads into recently-created filesLeandro Pereira
When testing in another computer, these files were always empty. Turns out they were not being overwritten in my main computer, so the data received by libsoup was never written to these files... d'oh. (They were there in one computer because this function was written slightly differently before.) Also plugs one memory leak.
2020-05-13Try to save the contents of the downloaded file even if the stream isn't readyLeandro Pereira
2020-05-10Propagate error from g_file_replace() when syncingLeandro Pereira
2020-05-10Avoid getting redirects from API serverLeandro Pereira
2020-05-10Use async soup messages to not block the UI event loop when updatingLeandro Pereira
2020-05-09Update SyncManager to use the new APILeandro Pereira
2020-05-03hi_module_get_about() should return a const pointerLeandro Pereira
2020-05-03Reindent syncmanager.[ch]Leandro Pereira
2020-02-08Added fan iconOndrej Čerman
Original source: https://www.gnome-look.org/p/1115367/
2020-01-17shell: remove some debug printfsBurt P
Signed-off-by: Burt P <pburt0@gmail.com>
2020-01-17shell: new flag/funcs for escaping label part in keysBurt P
Will allow formerly forbidden characters in a label, "#$=" See: https://github.com/lpereira/hardinfo/issues/509 Signed-off-by: Burt P <pburt0@gmail.com>
2019-12-27report: set fmt_opts for HTML reportsBurt P
Signed-off-by: Burt P <pburt0@gmail.com>
2019-12-27shell: fix key_mi_tag()Burt P
new flag ^ wasn't skipped Signed-off-by: Burt P <pburt0@gmail.com>
2019-12-27shell: cleanupBurt P
Signed-off-by: Burt P <pburt0@gmail.com>
2019-12-27fmt_opts param for pango/html/text formattingBurt P
Signed-off-by: Burt P <pburt0@gmail.com>
2019-12-27shell: add key flag for strings expected to contian vendorsBurt P
Signed-off-by: Burt P <pburt0@gmail.com>
2019-10-24report: handle newlines in valuesBurt P
Signed-off-by: Burt P <pburt0@gmail.com>
2019-08-22various: entry hide flag, fix text format report, fix key_*() funcsBurt P
* fix key_is_highlighted() and key_wants_details() so that they don't look for flags in the label. * fix -r -f text, g_hash-related warnings from icon cache * add MODULE_FLAG_HIDE flag to hide module entries instead of using the '#' at the beginning of string hack, which didn't work everywhere, and screwed up translated strings. * hide GPU Drawing benchmark See: https://github.com/lpereira/hardinfo/issues/329 Signed-off-by: Burt P <pburt0@gmail.com>
2019-08-14report: show icons for module entry in HTML reportBurt P
Signed-off-by: Burt P <pburt0@gmail.com>
2019-08-10Clear detail view when switching view typesLeandro Pereira
This avoids the detail view to be populated should the new view type be empty (e.g. no printers set up in the machine).
2019-08-10shell/info: allow newlines in valuesBurt P
Also fixed a FIXME: use g_key_file_get_string_list(). Signed-off-by: Burt P <pburt0@gmail.com>
2019-07-31Remove old open_url() in favor or uri_open()Burt P
See: https://github.com/lpereira/hardinfo/pull/417#discussion_r308512774 Signed-off-by: Burt P <pburt0@gmail.com>
2019-07-29uri_handler functions from sysobjBurt P
This allows link clicks to be intercepted so that they might be used by the application internally before falling back to the system uri handler. I've also found the default GTK label link handler to be unreliable outside of GNOME Shell, and this will use xdg-open instead. Signed-off-by: Burt P <pburt0@gmail.com>
2019-07-29shell: strend('#') group label in new detail viewBurt P
Signed-off-by: Burt P <pburt0@gmail.com>
2019-07-29shell.c: small fix for labelBurt P
Signed-off-by: Burt P <pburt0@gmail.com>
2019-07-12Tweak border in detailviewLeandro Pereira
2019-07-12Show links for vendorsLeandro Pereira
2019-07-11info struct bug Fixes, add tagged update fieldsBurt P
* tag was always included even when it didn't need to be. Now only include it when tag specified, flagged, or includes an icon. This messed up the existing update fields system. * The update fields system has been changed to allow updating by tag instead of the translated label. By label still works, however. I think it would be best to switch to using tags in the future. * info_flatten() calls flatten_shell_param() after flatten_group() which could cause a field name or tag to be used after it was freed. Created special free functions to handle this after all is used. Signed-off-by: Burt P <pburt0@gmail.com>
2019-07-11Ensure UpdateInterval $ShellParam$ have a dollar signLeandro Pereira
2019-07-10shell/report.c: fix "return with no value"Juro Bystricky
Fix the warning: report.c: In function ‘make_icon_css’: shell/report.c:103:9: warning: ‘return’ with no value, in function returning non-void [-Wreturn-type] Failure of the sanity test at the beginning of "make_icon_css" will result in returning of a random value instead of a gchar*. With this patch we return a gchar* to an empty string instead. Signed-off-by: Juro Bystricky <juro.bystricky@intel.com>
2019-07-10Add SVG icon support in report HTML and Xubuntu icon to demonstrateBurt P
Signed-off-by: Burt P <pburt0@gmail.com>
2019-07-06Ensure DetailView is cleared out when more_info used to be clearedLeandro Pereira
2019-07-05[v3] shell: fix icons with flagsBurt P
Signed-off-by: Burt P <pburt0@gmail.com>
2019-07-05shell: key_* functions use constBurt P
Signed-off-by: Burt P <pburt0@gmail.com>
2019-07-04shell/report: icon cache using cssBurt P
Only include one copy of each icon in the source, by using css class rather than img with src for each instance. Signed-off-by: Burt P <pburt0@gmail.com>