summaryrefslogtreecommitdiffstats
path: root/Settings.c
AgeCommit message (Collapse)Author
2015-12-09Fix fopen mode in Settings_read()Michael Klein
2015-12-02drop privileges during Settings_read()/Settings_write()Michael Klein
2015-08-19Rename String to StringUtils.David Hunt
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
2015-08-12Ensure default matches classic htop behavior.Hisham Muhammad
2015-08-12Merge pull request #148 from nckx/display-basenameHisham Muhammad
[PATCH] New setting: "Show program path"
2015-08-07New setting: "Show program path"Tobias Geerinckx-Rice
Add a setting to hide all but the last component from the programme path, leaving only the "basename". Makes htop more usable on smaller screens, or systems with longer than average paths. Off by default. "Highlight program basename" will still be respected, to further visually separate process names from their arguments.
2015-05-13store cpuCount in an attributeHisham Muhammad
2015-04-09Reset to the default scheme, not the last one.Hisham Muhammad
2015-04-09Fix saving new color scheme.Hisham Muhammad
2015-03-25Fix NULL-termination of array for later use by String_freeArray.Hisham Muhammad
2015-03-16Fix saving of header states, motion in Setup screen.Hisham Muhammad
2015-03-16Get FreeBSD tree to compile again with latest changes.Hisham Muhammad
2015-03-16Isolate portable and Linux-specific process fields.Hisham Muhammad
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-27Decouple Header from Meter classes.Hisham Muhammad
(Yes, that's dynamic typing!)
2014-04-24Improve function prototype, helping analysis.Hisham Muhammad
2014-04-24Fix resource leak.Hisham Muhammad
2014-04-22safer code, check result of lstatHisham Muhammad
2014-02-27alignment improvementsHisham Muhammad
2013-12-18Make CPU meter optionally account guest time in its percentagesHisham Muhammad
2013-05-24Performance improvements due to conditional parsing of IO data depending on ↵Hisham Muhammad
selected fields. On my machine, this gives a ~20% improvement in htop process time use with the default config.
2012-10-20Option to update process names on every refreshHisham Muhammad
(thanks to Rob Hoelz)
2012-03-05avoid deleting valid symbolic links to .htoprcHisham Muhammad
so that home directories can be used with both old and new versions of htop (see #3496731).
2011-12-26Remove old memory debugging routines. We have Valgrind nowadays.Hisham Muhammad
2011-12-26major header cleanupHisham Muhammad
2011-12-25Move .htoprc to XDG-compliant path ~/.config/htop/htoprc,Hisham Muhammad
respecting $XDG_CONFIG_HOME (thanks to Hadzhimurad Ustarkhan for the suggestion.)
2011-12-23Fix typo that has been lurking since 2006Hisham Muhammad
2011-11-18Mega-commit with features and tweaks for 1.0:Hisham Muhammad
* Performance improvements * Support for splitting CPU meters into two or four columns (thanks to Wim Heirman) * Switch from PLPA, which is now deprecated, to HWLOC. * Bring back support for native Linux sched_setaffinity, so we don't have to use HWLOC where we don't need to. * Support for typing in user names and column fields in selection panels.
2011-08-29Don't simply trust that string splits were successful...Hisham Muhammad
2011-08-12be more precise in the commentHisham Muhammad
2011-05-26Tempus fugit.Hisham Muhammad
2011-03-22* Option for counting CPUs from zeroHisham Muhammad
(thanks to Sean Noonan) * Meters update in every screen (no longer halting while on Setup, etc.)
2010-02-25Tempus fugit.Hisham Muhammad
2010-02-25show custom thread namesHisham Muhammad
2010-02-22minor tweaks by David WeberHisham Muhammad
2008-03-09Clean up headers by using 'static' whenever possible.Hisham Muhammad
Reduces resulting code size.
2008-03-08BUGFIX: Fix display of CPU count for threaded processes.Hisham Muhammad
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.
2007-11-26Avoid crashing when using many meters (thanks to David Cho for the report)Hisham Muhammad
2007-11-09IO-wait time now counts as idle time, which is a moreHisham Muhammad
accurate description. It is still available in split time, now called detailed CPU time. (thanks to Samuel Thibault for the report)
2007-08-10Add a trailing newline in .htoprcHisham Muhammad
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=420856 (sheesh, the things people get worked up about :) )
2006-10-04Contribution by Philipp Richter: Display IO-Wait, IRQ and Soft-IRQ values in ↵Hisham Muhammad
status bar (minor modifications: default to false, add help)
2006-06-06Updates for new version of the MakeHeader.py script.Hisham Muhammad
2006-05-09Minor fix to HTOPRC feature.Hisham Muhammad
2006-05-06Add support for $HTOPRC, as suggested by Luis LimonHisham Muhammad
2006-04-10- Overhaul meters implementation;Hisham Muhammad
- add AllCPUsMeter; - because of that, the new .htoprc is incompatible with previous released versions.
2006-03-23Update copyrights.Hisham Muhammad
2006-03-04Initial import.Hisham Muhammad