summaryrefslogtreecommitdiffstats
path: root/CRT.c
Commit message (Collapse)AuthorAgeFilesLines
* Handle SIGQUIT. Closes #503.Hisham2016-05-301-0/+1
|
* Avoid overlapping key values defined by curses (Real fix).Explorer092016-03-091-1/+1
| | | | Real fix for issue #438.
* Avoid overlapping key values defined by curses.Hisham2016-03-081-1/+1
| | | | Closes #438.
* Fix behavior of ESC key, getting rid of the annoying delay.Hisham2016-02-191-0/+8
| | | | | Thank you @Explorer09 for the push! Closes #417.
* gcc warning cleanups.Hisham Muhammad2015-10-051-1/+1
|
* Replace some remaining tabsMichael McConville2015-09-191-2/+2
|
* Merge pull request #221 from eworm-de/define-array-sizeHisham Muhammad2015-08-201-3/+11
|\ | | | | use a define for graphical meter array size
| * remove UTF-8 code when compiling with --disable-unicodeChristian Hesse2015-08-191-3/+11
| |
* | Add expand/collapse on additional clicks!Hisham Muhammad2015-08-191-0/+1
| |
* | Support for NCurses 6.0 and mouse wheelHisham Muhammad2015-08-191-1/+11
|/
* Rename String to StringUtils.David Hunt2015-08-191-1/+1
| | | | | | | | | Fixes building on case-insensitive filesystems where String.h gets confused with <string.h>. From d734dacea0a10d0465dad4e95b3421511e7da112 Mon Sep 17 00:00:00 2001 From: David Hunt <dhunt@iolanthe.attlocal.net> Date: Sat, 11 Jul 2015 20:56:31 -0500 Subject: [PATCH 1/8] Rename String to StringUtils
* initialize locale for LC_CTYPE onlyChristian Hesse2015-07-291-1/+1
| | | | | | htop uses scanf functions to parse values from proc filesystem. This breaks when initializing locale for LC_NUMERIC because of unexpected commas. So initialize locale for LC_CTYPE only.
* simplify UTF-8 detectionChristian Hesse2015-07-161-8/+2
|
* initialize localeChristian Hesse2015-07-161-0/+3
| | | | | | | | This has two effects: * The locale may have impact on string formatting. So depending on the locale we may end up with different decimal point. * We can use nl_langinfo() for UTF-8 detection.
* paint PROCESS_LOW_PRIORITY in greenChristian Hesse2015-07-141-5/+5
| | | | ... and thus make it use a different color than PROCESS_HIGH_PRIORITY.
* Visual tweaks: change color when following, add Broken Gray theme.Hisham Muhammad2015-04-091-16/+31
|
* Let's see if responsiveness is still good using the full CRT_delayHisham Muhammad2015-02-041-6/+6
| | | | | in ncurses. CPU usage goes down noticeably. (Also, add missing comma, sorry.)
* Make the implementation of color schemes declarative.Hisham Muhammad2015-02-031-353/+364
|
* Sorry about the mega-patch.Hisham Muhammad2015-01-211-66/+67
| | | | | This is a work-in-progress, code is currently broken. (Some actions, and notably, the header, are missing.)
* Changes for supporting separate platform subdirectories.Hisham Muhammad2014-11-241-25/+2
|
* Added new color for 'D' state.Valmiky Arquissandas2014-10-141-0/+7
|
* Fix behavior of `htop -d 1`. Closes #72.Hisham Muhammad2014-04-281-4/+7
|
* Make blue text more readable. Closes #55.Hisham Muhammad2014-04-241-0/+14
|
* Report this as an exit function.Hisham Muhammad2014-04-241-0/+2
|
* Better support for Home and End keysHisham Muhammad2014-04-091-0/+2
|
* alignment improvementsHisham Muhammad2014-02-271-0/+6
|
* New home, new life!Hisham Muhammad2014-01-141-1/+1
|
* Remove explicit calls to curses.h in other filesHisham Muhammad2013-02-261-1/+2
|
* Changes in object model: separate class objects to store vtable. Also, nicer ↵Hisham Muhammad2012-12-051-4/+6
| | | | UTF-8 display of big numbers.
* Fail gracefully when /proc is not mountedHisham Muhammad2012-10-191-0/+9
| | | | | (thanks to Philipp Hagemeister)
* Add IO priority support ('i' key)Hisham Muhammad2012-10-041-1/+1
|
* improve crash message Hisham Muhammad2012-07-121-0/+5
|
* Remove old memory debugging routines. We have Valgrind nowadays.Hisham Muhammad2011-12-261-1/+0
|
* major header cleanupHisham Muhammad2011-12-261-8/+7
|
* show cursor when function bar allows typing an entry.Hisham Muhammad2011-09-081-0/+2
|
* Fix number of supported backtrace frames (thanks to Sebastian Pipping)Hisham Muhammad2011-08-261-1/+1
|
* Tempus fugit.Hisham Muhammad2011-05-261-1/+1
|
* make htop friendly to uclibc (thanks to Matt for the report)Hisham Muhammad2010-12-051-3/+7
|
* Split process and thread counts in tasks meterHisham Muhammad2010-11-231-1/+0
|
* Don't ask for bug reports when running on unsupported platforms.Hisham Muhammad2010-11-201-0/+4
|
* Fix IO-wait color on "Black on White" scheme. Closes #3054717.Hisham Muhammad2010-11-201-1/+1
|
* add support for steal/guest CPU time measurementHisham Muhammad2010-08-241-29/+49
| | | | | | simplify processor data accounting (add CPUData structure) remove Process_clone trick
* Tempus fugit.Hisham Muhammad2010-02-251-1/+1
|
* warning fixesHisham Muhammad2010-02-251-2/+4
|
* Option to display hostname in the meters areaHisham Muhammad2009-02-171-0/+7
|
* ACPI Battery meterHisham Muhammad2008-09-231-0/+7
| | | | | contributed by Ian Hands
* Clean up headers by using 'static' whenever possible.Hisham Muhammad2008-03-091-11/+11
| | | | | Reduces resulting code size.
* BUGFIX: Fix display of CPU count for threaded processes.Hisham Muhammad2008-03-081-5/+19
| | | | | | | | | | When user threads are hidden, process now shows the sum of processor usage for all processors. When user threads are displayed, each thread shows its own processor usage, including the root thread. (thanks to Bert Wesarg for the report) Also, add option to display thread colors differently.
* Fix display of time with the "Black on White" theme.Hisham Muhammad2008-03-051-1/+1
|
* IO-wait time now counts as idle time, which is a moreHisham Muhammad2007-11-091-5/+5
| | | | | | | accurate description. It is still available in split time, now called detailed CPU time. (thanks to Samuel Thibault for the report)

© 2014-2024 Faster IT GmbH | imprint | privacy policy