summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2020-12-10uptick: 0.5.4 (#348)0.5.4Clement Tsang
2020-12-10bug: Fix some performance regressions (#344)Clement Tsang
Fixes some performance regressions and forgotten cleanup. Changes to attempt to improve performance to match 0.4.x: - Remove `trace!` and `--debug` for now. These were a significant hog. Removing this dropped initial memory usage by about half. - Add additional cleaning step for `pid_mapping` during process harvesting. This should hopefully improve memory usage as time goes on. - Slightly change how we do sorting to hopefully be a bit more optimal? This was just an easy change to make that I spotted. - Fix broken cleaning child thread task.
2020-12-10ci: Switch to musl for homebrew linux (#347)Clement Tsang
Move from gnu to musl to avoid glibc issues.
2020-12-10ci: Use ubuntu-16.04 for linux gnu deploys and CIClement Tsang
2020-12-10bug: Fix missing states in processes (#345)Clement Tsang
Fixes another change breaking states from showing in processes.
2020-12-08refactor: Refactor some canvas code (#342)Clement Tsang
2020-12-05refactor: Rename battery_harvester to batteries (#340)Clement Tsang
2020-12-04docs: Add FAQ document (#339)Clement Tsang
2020-12-03refactor: Clean up some parts of data harvesting (#336)Clement Tsang
2020-11-30refactor: Simplify data harvesting (#335)Clement Tsang
Refactors the data harvesting system function names.
2020-11-28deps: update dependencies (#334)Clement Tsang
2020-11-28feature: Add scroll indicator to keep track of table position in widgets. (#333)Clement Tsang
Adds the option to enable an "out of" indicator for scrollable table widgets (using --show_table_scroll_position).
2020-11-27ci: Fix post-deploy step to actually use the correct files (#332)Clement Tsang
Previously it was CURL-ing from a non-existent URL, giving the wrong SHA hashes. Changed to upload the binaries as artifacts and using those directly.
2020-11-26uptick: 0.5.30.5.3ClementTsang
2020-11-26bug: Fix inverted battery colours (#331)Clement Tsang
Fixes colour theming for batteries being flipped.
2020-11-26ci: Fix some bugs/typos with the deploy script and components (#329)Clement Tsang
- Fix bug with choco and homebrew using incorrect bash syntax causing broken downloads. Why this didn't fail, idk. - Add tag entry for manual runs to make it easier to deploy/re-run - Fixed some typos - Fixed incorrect string in choco python script
2020-11-26ci: Move post deploy steps to main deploy script0.5.2Clement Tsang
2020-11-25ci: Fix incorrect path.ClementTsang
2020-11-25ci: Fix post-deploy scriptClementTsang
2020-11-25uptick: 0.5.2ClementTsang
2020-11-25bug: Fix inverted hide_avg_cpu option in config (#327)Clement Tsang
2020-11-23docs: Update choco versionClementTsang
2020-11-22other: Switch to once_cell (#324)Clement Tsang
Switch from lazy_static to once_cell.
2020-11-22other: update default config.tomlClementTsang
2020-11-22ci: Fix windows deployments (#323)Clement Tsang
Fixes an issue in the windows deployment action.
2020-11-22ci: Fix missing CARGO_HUSKY_DONT_INSTALL_HOOKS in pkgbuild templateClementTsang
2020-11-22ci: Fix homebrew deploy template using wrong autocomplete fileClementTsang
2020-11-22ci: Fix post-deploy script0.5.1ClementTsang
2020-11-22ci: Fix deployment GitHub Action script (#322)Clement Tsang
2020-11-22ci: Add downloads for windows in post-deployClement Tsang
2020-11-22ci: uptick to 0.5.1, fix ciClementTsang
2020-11-21ci: Add initial github actions ciClementTsang
2020-11-21bug: [skip travis] Fix use_old_network_legendClementTsang
This was caused by invalid widths being set for the maximal widths in the table. This made it impossible to draw.
2020-11-21bug: [skip travis] Add a better check for default colors in the config fileClementTsang
2020-11-20bug: [skip travis] remove nord from possible valuesClementTsang
2020-11-20ci: [skip travis] Fix typo in completion generation...ClementTsang
2020-11-20ci: [skip travis] some github actions stuff...0.5.0ClementTsang
2020-11-20docs: [skip travis] fix weird italicsClementTsang
2020-11-20ci: Remove some redundant comments.ClementTsang
2020-11-20ci: [skip travis] fix missing fiClementTsang
2020-11-20docs: Update README and changelog for 0.5.0ClementTsang
2020-11-20docs: Update changelogClementTsang
2020-11-20feature: add tree flag (#312)Clement Tsang
Adds a --tree flag that defaults to tree mode for the process widget.
2020-11-19other: update gruvbox and some documentation (#310)Clement Tsang
2020-11-19feature: Add mem_as_value flag (#309)Clement Tsang
Adds a new flag, --mem_as_value (and its corresponding config option, mem_as_value = true), which defaults to showing process memory values by their amount rather than percentage.
2020-11-18bug: remove buggy auto-generated CPU colour implementation (#308)Clement Tsang
Removes the random automatically generated colours for the CPU metrics. This was not supported in all terminal emulators, and would cause some of them to break (namely macOS Terminal). Instead we'll default to colours we can be more certain will work and loop through them as required. Users can still override these colours with their own.
2020-11-18feature: Add collapsible tree entries (#304)Clement Tsang
Adds collapsible trees to the tree mode for processes. These can be toggled via the + or - keys and the mouse by clicking on a selected entry.
2020-11-15feature: default colour schemes (#296)Clement Tsang
Adds some default colour choices to choose from.
2020-11-14docs: add dm9pZCAq as a contributor (#301)allcontributors[bot]
* docs: update README.md [skip ci] * docs: update .all-contributorsrc [skip ci] Co-authored-by: allcontributors[bot] <46447321+allcontributors[bot]@users.noreply.github.com>
2020-11-14docs: Add Gentoo installation instructions (#299)dm9pZCAq