summaryrefslogtreecommitdiffstats
path: root/htop.c
AgeCommit message (Collapse)Author
2020-09-01add option (-U, --no-unicode) to disable unicode at runtimeChristian Hesse
2020-08-31Merge branch 'configure' of https://github.com/cgzones/htop into ↵Nathan Scott
cgzones-configure
2020-08-31Simplify the --version output, old dates are confusing peopleNathan Scott
Drop the copyright notice from the version output as a number of people seem to be confused by what this means, and we can do without all the (well intentioned) bug reports.
2020-08-28Drop configure option --enable-procChristian Göttsche
Move to HTOP_LINUX, as --enable-proc implies my_htop_platform=linux, and the Linux features do not work without a proc fs.
2020-08-20Merge branch 'hishamhm-pull-1011'Nathan Scott
2020-08-20Merge branch 'hishamhm-pull-923'Nathan Scott
2020-08-20Merge branch 'hishamhm-pull-960'Nathan Scott
2020-08-20Merge branch 'hishamhm-pull-884'Nathan Scott
2020-06-11Let the user know about their errorJorge Pereira
If the user informed wrong value, then let them know about that.
2019-10-31Clean up existing whitespaceDaniel Flanagan
2019-07-12Added an option to disable the mouse.MartinJM
2019-02-10htop.c: remove unused "--io" / "-i" (#811)Lion Yang
Introduced from https://github.com/hishamhm/htop/commit/3383d8e5561dfc6fb2b65e0a194df94ccb5e08af (2.0.0) but never used.
2019-01-31User option "-u" now defaults to $USERsolanav
2018-08-25htop.c: remove unused "--io" / "-i" (#811)Lion Yang
Introduced from https://github.com/hishamhm/htop/commit/3383d8e5561dfc6fb2b65e0a194df94ccb5e08af (2.0.0) but never used.
2018-05-22fix option stringChristian Hesse
This broke with commit db05ba61065f64b59d0014518be0786b5439e54c.
2018-04-05Add -t command-line flag for tree viewDaniel Flanagan
2016-02-19Remove old commented code.Hisham
2016-02-19Fix error test — looks like nobody bumped into this one!Hisham
2016-02-02Check for failure in allocations.Hisham
2016-01-04align help outputChristian Hesse
2015-10-05gcc warning cleanups.Hisham Muhammad
2015-09-19Replace some remaining tabsMichael McConville
2015-09-19Change more fprintf(stderr, ...); exit(...); to err[x](...). Tweak a few ↵Michael McConville
existing ones and fix some style.
2015-09-18(Very) initial working OpenBSD portMichael McConville
2015-07-16remove duplicate codeChristian Hesse
2015-03-23Do not trust isalpha(c) for values > 255.Hisham Muhammad
Fixes #174. Conflicts: Panel.c
2015-03-23Move FunctionBar inside PanelHisham Muhammad
2015-03-22Working on integration of IncSet in new branch.Hisham Muhammad
2015-03-15Merge branch 'wip' of https://github.com/hishamhm/htop into freebsdHisham Muhammad
2015-03-15Merge branch 'wip' of https://github.com/hishamhm/htop into freebsdHisham Muhammad
Conflicts: htop.c unsupported/Platform.h
2015-03-15Move more Linux-specific code into Linux subdir.Hisham Muhammad
2015-01-23Another mega-patch for the refactoring process.Hisham Muhammad
Kinda runs, but functionality from the original main loop is still missing. Patience.
2015-01-21Sorry about the mega-patch.Hisham Muhammad
This is a work-in-progress, code is currently broken. (Some actions, and notably, the header, are missing.)
2014-11-27Merge branch 'master' of https://github.com/hishamhm/htopHisham Muhammad
2014-11-27Move "get max pid" code into platform specific area.Hisham Muhammad
2014-11-27check /proc only if using /procHisham Muhammad
2014-11-24Builds on Linux again!Hisham Muhammad
2014-11-24Changes for supporting separate platform subdirectories.Hisham Muhammad
2014-11-19Refactored key handlers.Hisham Muhammad
Made the logic more modular, hopefully easier to follow, and removed repeated code. Plus, some optimization in RichString code.
2014-06-04Get two data points for meters.Hisham Muhammad
Ensure one mini-reading-cycle runs before getting the UI active so we have two data points to get better meter measurements from the get-go.
2014-05-05Don't stop refreshing if clock was adjusted.Hisham Muhammad
2014-05-03Avoid weird behavior when exiting help pressing keys such as F2.Hisham Muhammad
2014-04-25Now, when you disable a filter (F4 → Esc), it will go back to unfiltered modeHisham Muhammad
but the current process will remain selected (so you can filter, choose and then go back to unfiltered mode to see the children of that process). Inspired by feedback at http://www.reddit.com/r/linux/comments/23wpc7/announcing_htop_103_with_new_features_bugfixes/ch1paos
2014-04-24Make blue text more readable. Closes #55.Hisham Muhammad
2014-04-22Fix compiler complaints.Hisham Muhammad
2014-04-21Remove use of usleep, which is sadly obsolete.Hisham Muhammad
2014-04-21avoid strtok and reduce scope of variables.Hisham Muhammad
2014-04-09Improve discoverability of the expand/collapse feature.Hisham Muhammad
It is now accessible via F6 when on tree view (as a bonus, it is now also reachable via the mouse). The function bar now dynamically changes to reflect the toggle nature of the tree-view mode (F5) and the F6 key serves as expand/collapse when on tree mode, and its previous behavior of bringing up the "Sort By" menu (which only made sense on non-tree mode). Users wishing to go to the "Sort By" menu straight from Tree View can still do so with the "<" and ">" keys (the top-compatible keys for sort selection).
2014-04-09Add missing check for return value and be more conservative in constructs to ↵Hisham Muhammad
avoid future slips of this kind.
2014-01-14Refactor the drawing of the help screenHisham Muhammad