summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2020-09-03Bump version, changelog for minor htop-3.0.1 release3.0.1Nathan Scott
2020-09-03Merge pull request #66 from ioquatix/patch-1Nathan Scott
Fix image logo and titles.
2020-09-03Merge pull request #57 from matthiasbeyer/patch-1Nathan Scott
Do not link INSTALL file, because link target does not exist
2020-09-02Merge branch 'eworm-de-unicode-runtime'Nathan Scott
2020-09-02Fix image logo and titles.Samuel Williams
2020-09-01Do not link INSTALL file, because link target does not existMatthias Beyer
2020-09-01add option (-U, --no-unicode) to disable unicode at runtimeChristian Hesse
2020-09-01Merge branch 'cgzones-oom2'Nathan Scott
2020-09-01Merge branch 'oom2' of https://github.com/cgzones/htop into cgzones-oom2Nathan Scott
2020-08-31CRT: note about possible use of replacement for `+` glyph in treeBert Wesarg
2020-08-31affinity panel: use the tree collapsing as in the process listBert Wesarg
With one exception, the root node does also have a `-`/`+` as a prefix.
2020-08-31affinity panel: show CPUs in the topology tree as `CPU x`Bert Wesarg
As it is in the non-topology list.
2020-08-31Revert "Use UTF-8 for check buttons and tree open/closed"Bert Wesarg
This reverts commit 5d5913d355b3a9f03da589b3542b8f55467b4ed6.
2020-08-31Reduce oom cast from long to intChristian Göttsche
Oom values should never be greater then INT_MAX, they should be in the range 0 - 1000. Improves: d9a5dd4b916636b5e7ba8631885427372f0cfcad
2020-08-31Merge branch 'configure' of https://github.com/cgzones/htop into ↵Nathan Scott
cgzones-configure
2020-08-31Merge branch 'master' of github.com:htop-dev/htopNathan Scott
2020-08-31Merge branch 'cov_fixes' of https://github.com/cgzones/htop into ↵Nathan Scott
cgzones-cov_fixes
2020-08-31Merge branch 'oom' of https://github.com/cgzones/htopDaniel Lange
Closes: #18, #22
2020-08-31Merge branch 'Ckath-vim_mode_setting'Nathan Scott
2020-08-31Merge branch 'vim_mode_setting' of https://github.com/Ckath/htop into ↵Nathan Scott
Ckath-vim_mode_setting
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-31Add a badge/link to the released source tarballsNathan Scott
2020-08-29add toggle for vim mode in optionsckath
2020-08-28Check btime sscanf parse from /proc/statChristian Göttsche
Found by Coverity
2020-08-28Avoid use of uninitialized variablesChristian Göttsche
Found by Coverity
2020-08-28Ignore sscanf return value of /proc/statChristian Göttsche
Found by Coverity
2020-08-28Fail on out-of-range CPU numberChristian Göttsche
Found by Coverity
2020-08-28Ignore wmove return valueChristian Göttsche
Found by Coverity
2020-08-28Improve OOM outputChristian Göttsche
* Fix sort by adding cast * Shrink column size to 4 * Drop unnecessary maximum field width specifier in sscanf
2020-08-28Really tell gcc to ignore return value of fscanfChristian Göttsche
2020-08-28Convert hwlock CI run to a full featured oneChristian Göttsche
2020-08-28Print configured stateChristian Göttsche
2020-08-28Improve indentChristian Göttsche
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-28Merge pull request #14 from zdykstra/masterNathan Scott
Normalize ZFS ARC caption
2020-08-28Increae the size of sysfs power supply path buffersNathan Scott
Resolves https://github.com/htop-dev/htop/issues/15
2020-08-28Normalize ZFS ARC captionZach Dykstra
Other captions take the form of LABEL:<space>. This moves the uncompressed ZFS ARC caption into the same style.
2020-08-27Update link to Coverity project, still pending.Nathan Scott
2020-08-27Merge branch 'bertwesarg-affinity-fix-panel-width'3.0.0Nathan Scott
2020-08-26fix width of `AffinitPanel`Bert Wesarg
The panel size of 15 includes the gap to the next panel, thus use 14 as the minimum size and let the caller of `AffinityPanel_new` handle the gap.
2020-08-26Update changelog with Berts latest addition3.0.0rc3Nathan Scott
2020-08-26Merge branch 'ci-hwloc-job' of https://github.com/bertwesarg/htop into ↵Nathan Scott
bertwesarg-ci-hwloc-job
2020-08-26Merge branch 'ci-hwloc-job' of https://github.com/bertwesarg/htop into ↵Nathan Scott
bertwesarg-ci-hwloc-job
2020-08-26Merge branch 'ci2' of https://github.com/cgzones/htop into cgzones-ci2Nathan Scott
2020-08-25ci: add clang buildChristian Göttsche
2020-08-25Avoid shadowing warningsChristian Göttsche
2020-08-25MakeHeader.py.in: remove unused importChristian Göttsche
2020-08-25MakeHeader.py.in: remove executable bitChristian Göttsche
2020-08-25Avoid discarding const qualifiersChristian Göttsche
2020-08-25Avoid string overflow warningChristian Göttsche
Use xStrdup instead of xMallow and strncpy StringUtils.c: In function ‘String_split’: StringUtils.c:86:7: error: ‘strncpy’ specified bound depends on the length of the source argument [-Werror=stringop-overflow=] 86 | strncpy(token, s, size + 1); | ^ StringUtils.c:84:18: note: length computed here 84 | int size = strlen(s); | ^