Skip to content

Commit

Permalink
v1.4.0 Intel GPU support & NetBSD support
Browse files Browse the repository at this point in the history
  • Loading branch information
aristocratos committed Sep 22, 2024
1 parent e204329 commit 6c0cedd
Show file tree
Hide file tree
Showing 3 changed files with 40 additions and 3 deletions.
27 changes: 27 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
14 changes: 12 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/btop.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ namespace Global {
{"#801414", "██████╔╝ ██║ ╚██████╔╝██║ ╚═╝ ╚═╝"},
{"#000000", "╚═════╝ ╚═╝ ╚═════╝ ╚═╝"},
};
const string Version = "1.3.2";
const string Version = "1.4.0";

int coreCount;
string overlay;
Expand Down

0 comments on commit 6c0cedd

Please sign in to comment.