diff --git a/CHANGELOG.md b/CHANGELOG.md index d2c4bb4c..915b1168 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,30 @@ +## v1.4.0 + +References | Description | Author(s) +--- | --- | --- +#703 | NetBSD Support | @fraggerfox +#903 | Intel GPU support | @bjia56 +161e8f4 | Added warnings when toggling boxes and terminal size is to small | @aristocratos +4210f5f | Fix missing core percentages, issue #792 | @aristocratos +35857f8 | Various fixes for drawing GPU related information | @aristocratos +#879 | fix divide 0 error when caculating disk usage percentage (#791) | @flylai +#884 | fix io_graph_speeds parsing | @feihtthief +#863 | V1 of Phoenix Night theme | @Firehawke +3f384c0 | Fixed missing CPU core temps when too small to show core temp graphs, issues #792 #867 | @aristocratos +97d2fb5 | Fixed missing IO graphs in IO mode, issue #867 | @aristocratos +#840 | fix zero temp (#467) | @joske +#850 | Fix comments (parsing) in theme files | @acidghost +#806 | Add regex filtering | @imwints +#836 | Fix typo in file existences check for voltage_now | @vsey +#835 | Show time in days when remaining battery exceeds an estimation of 24h | @imwints +#819 | (AMD Gpu) fix pwr_usage not being defined correctly during rsmi collection | @kalkafox +#831 | macOS: fix crash if there exists a uid not associated with any user | @thecoder-001 +#796 | Fix rsmi device name buffer size | @davc0n +#807 | Add gruvbox_light theme | @kk9uk +#724 | Create man page for btop in Markdown | @ottok +#734 | Include metadata in binary version output `btop --version` | @imwints +#771 | collect: Fix reading of battery power draw on Linux | @Derppening + ## v1.3.2 Description | Author(s) | References diff --git a/README.md b/README.md index 6fee43ec..bcf06e12 100644 --- a/README.md +++ b/README.md @@ -46,6 +46,16 @@ ## News +##### 22 September 2024 + +Btop release v1.4.0 + +Intel GPU support added, note that only GPU utilization, power usage and clock speed available to monitor. Thanks to [@bjia56](https://github.com/bjia56) for contributions. + +NetBSD support added. Thanks to [@fraggerfox](https://github.com/fraggerfox) for contributions. + +See [CHANGELOG.md](CHANGELOG.md) and latest [release](https://github.com/aristocratos/btop/releases/latest) for detailed list of new features, bug fixes and new themes. + ##### 7 January 2024 Btop release v1.3.0 @@ -299,7 +309,7 @@ Can be set with `make setcap` (preferred) or `make setuid` or by running btop wi 2. **Install (from created folder)** - * **Run install.sh or:** + * **Run:** ```bash # use "make install PREFIX=/target/dir" to set target, default: /usr/local @@ -329,7 +339,7 @@ Can be set with `make setcap` (preferred) or `make setuid` or by running btop wi * **Uninstall** - * **Run uninstall.sh or:** + * **Run:** ```bash sudo make uninstall diff --git a/src/btop.cpp b/src/btop.cpp index 02501f88..cef76133 100644 --- a/src/btop.cpp +++ b/src/btop.cpp @@ -80,7 +80,7 @@ namespace Global { {"#801414", "██████╔╝ ██║ ╚██████╔╝██║ ╚═╝ ╚═╝"}, {"#000000", "╚═════╝ ╚═╝ ╚═════╝ ╚═╝"}, }; - const string Version = "1.3.2"; + const string Version = "1.4.0"; int coreCount; string overlay;