summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2015-09-10Remove conflicting declarations.Jardel Weyrich
2015-09-10Remove duplicate declaration.Jardel Weyrich
2015-09-08Merge pull request #262 from eworm-de/callocHisham Muhammad
fix calloc() calls
2015-09-07fix calloc() callsChristian Hesse
* size_t nmemb (number of elements) first, then size_t size * do not assume char is size 1 but use sizeof() * allocate for char, not pointer to char (found by Michael McConville, fixes #261)
2015-08-29Merge pull request #254 from eworm-de/kilobyte-precisionHisham Muhammad
kilobytes is the smallest unit and never has precision
2015-08-29kilobytes is the smallest unit and never has precisionChristian Hesse
Signed-off-by: Christian Hesse <mail@eworm.de>
2015-08-29Merge pull request #253 from eworm-de/clockHisham Muhammad
get a useful tolal for clock meter
2015-08-29Merge pull request #255 from eworm-de/missing-blankHisham Muhammad
add missing blank
2015-08-28add missing blankChristian Hesse
2015-08-28get a useful tolal for clock meterChristian Hesse
2015-08-27call for action!Hisham Muhammad
2015-08-27Updated READMEHisham Muhammad
2015-08-27Fixes for color glitches in ncurses ABI6.Hisham Muhammad
Could no longer reproduce #244 after these fixes.
2015-08-27Fix indentation.Hisham Muhammad
2015-08-27Merge branch 'master' of https://github.com/hishamhm/htopHisham Muhammad
2015-08-27Don't select last item when clicking past the end of the panel.Hisham Muhammad
2015-08-27Improve feedback when moving meters.Hisham Muhammad
2015-08-27Handle KEY_RECLICK events generated by ScreenManagerHisham Muhammad
2015-08-27Merge pull request #247 from eworm-de/dual-meters-marginHisham Muhammad
remove extra space in dual meters without margins
2015-08-27remove extra space in dual meters without marginsChristian Hesse
2015-08-27Merge pull request #208 from eworm-de/dynamic-unitHisham Muhammad
Dynamic unit
2015-08-27Merge pull request #250 from eworm-de/ascii-blankHisham Muhammad
use ASCII blank even for graphical meter in UTF-8 mode
2015-08-27use dynamic units for text displayChristian Hesse
Signed-off-by: Christian Hesse <mail@eworm.de>
2015-08-27make units more dynamicChristian Hesse
Signed-off-by: Christian Hesse <mail@eworm.de>
2015-08-26Merge pull request #248 from eworm-de/wctypeHisham Muhammad
include wctype.h for iswprint()
2015-08-25use ASCII blank even for graphical meter in UTF-8 modeChristian Hesse
If the terminal has no font with braille characters we see... Nothing useful. Use an ASCII blank at least, so we have an idea about what's going on.
2015-08-25include wctype.h for iswprint()Christian Hesse
2015-08-20A more portable version of the note suggested in #113.Hisham Muhammad
Closes #113.
2015-08-20Merge pull request #43 from ErkiDerLoony/masterHisham Muhammad
Fix tree view if userland threads are hidden.
2015-08-20Omit non-printable characters with widechar curses.Hisham Muhammad
Closes PR #111.
2015-08-20Fix mouse click on meters setup function barHisham Muhammad
2015-08-20Standardize variable name.Hisham Muhammad
2015-08-20Merge pull request #221 from eworm-de/define-array-sizeHisham Muhammad
use a define for graphical meter array size
2015-08-20Merge pull request #134 from jeffgarrett/pid-selectionHisham Muhammad
Interpret command line PIDs as PIDs, not TIDs
2015-08-20Extra checks.Hisham Muhammad
2015-08-20Reduce scope of variables.Hisham Muhammad
2015-08-20Make column width calculation dynamic.Hisham Muhammad
Closes #228.
2015-08-20Make Unicode strings safe for ncurses 6 ABI.Hisham Muhammad
Closes #241.
2015-08-19Add expand/collapse on additional clicks!Hisham Muhammad
2015-08-19Support for NCurses 6.0 and mouse wheelHisham Muhammad
2015-08-19simplify Meter loopChristian Hesse
* Use MIN() and MAX() to make sure values are inside bounds. This should fix an issue where Meters were missing dots at the bottom. * Remove variable 'level' and calculate on the fly.
2015-08-19remove UTF-8 code when compiling with --disable-unicodeChristian Hesse
2015-08-19make arrays one dimensionalChristian Hesse
With more dimensional arrays we have to define the array size. Use one dimensional arrays to be more flexible. Additionally this allows to shrink array size for ASCII.
2015-08-19Fix comment.Hisham Muhammad
2015-08-19Standardize indentation.Hisham Muhammad
2015-08-19CPU per process implementedDavid Hunt
2015-08-19Fix the thread countsDavid Hunt
2015-08-19Fixed CPU updatingDavid Hunt
2015-08-19Static CPU meterDavid Hunt
2015-08-19Start supporting actual dataDavid Hunt