summaryrefslogtreecommitdiffstats
path: root/src/widgets/process_table.rs
AgeCommit message (Collapse)Author
2023-05-13refactor: use macros for initializing canvas styles (#1149)Clement Tsang
* refactor: use macros for initializing canvas styles * add quotes * Simplify macro * update tests * more renaming
2023-05-09bug: fix certain custom column combinations causing issues (#1140)Clement Tsang
* docs: update some docs related to processes * bug: temp bandaid on column feature to avoid dupes issue
2023-05-02feature: show running time of processes (#801)Yuxuan Shui
* feature: show running time of processes * fix clippy * add time searching * update changelog * use safer duration for linux in case of 0 * some cleanup * quick hack to deal with some Windows processes returning unix epoch time as start time --------- Co-authored-by: Clement Tsang <34804052+ClementTsang@users.noreply.github.com>
2023-04-29feature: add customizable process columns (#1115)Clement Tsang
* feature: add customizable process columns * Add some tests and actual logic * more tests * update changelog * update config field * even more tests * update documentation * more testing
2023-04-23deps: remove const_format dependency (#1114)Clement Tsang
* deps: remove const_format dependency I was importing it for just one use case, but I could just define the const string manually and not pull it in at all. * update husky entry
2023-04-12deps: Switch to using hashbrown for general hashmap usage (#1092)Clement Tsang
* deps: replace fxhash with hashbrown + ahash * replace std hashmap with hashbrown + ahash * fmt * some more fmt
2023-02-25refactor: clean up some options code (#1029)Clement Tsang
* remove some dead code * use macros to help clean up clutter for binary flags * add test * group * fix using gpu feature
2023-02-20change: show process in tree if any ancestor or descendent matches (#1026)Clement Tsang
* refactor: optimize kept list in tree to just store filtered values in a set * change: show all direct children of a tree process children if the parent matches * change: show process in tree if any ancestor or descendent matches
2023-02-18bug: fix selected text bg colour being wrong if only the fg colour was set ↵Clement Tsang
(#1021) * rename file to be more generic * fix selected text BG colour being wrong by default * update changelog * add test for bug
2023-02-10feature: Add support for displaying process usernames on Windows (#1016)Michael Bikovitsky
2023-01-20refactor: change name of some stuff, add some comments (#992)Clement Tsang
* some quick refactoring first * add todo for bug report template
2022-12-31bug: fix search scrolling with wider Unicode characters. (#938)Clement Tsang
This should help make search scrolling more reliable larger Unicode characters like CJK/flag characters.
2022-11-28refactor: move widgets out of the app folder nesting (#917)Clement Tsang
Moves the widget folder away from being nested in the app hierarchy.