Skip to content

Commit 6c0cedd

Browse files
committed
v1.4.0 Intel GPU support & NetBSD support
1 parent e204329 commit 6c0cedd

File tree

3 files changed

+40
-3
lines changed

3 files changed

+40
-3
lines changed

CHANGELOG.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,30 @@
1+
## v1.4.0
2+
3+
References | Description | Author(s)
4+
--- | --- | ---
5+
#703 | NetBSD Support | @fraggerfox
6+
#903 | Intel GPU support | @bjia56
7+
161e8f4 | Added warnings when toggling boxes and terminal size is to small | @aristocratos
8+
4210f5f | Fix missing core percentages, issue #792 | @aristocratos
9+
35857f8 | Various fixes for drawing GPU related information | @aristocratos
10+
#879 | fix divide 0 error when caculating disk usage percentage (#791) | @flylai
11+
#884 | fix io_graph_speeds parsing | @feihtthief
12+
#863 | V1 of Phoenix Night theme | @Firehawke
13+
3f384c0 | Fixed missing CPU core temps when too small to show core temp graphs, issues #792 #867 | @aristocratos
14+
97d2fb5 | Fixed missing IO graphs in IO mode, issue #867 | @aristocratos
15+
#840 | fix zero temp (#467) | @joske
16+
#850 | Fix comments (parsing) in theme files | @acidghost
17+
#806 | Add regex filtering | @imwints
18+
#836 | Fix typo in file existences check for voltage_now | @vsey
19+
#835 | Show time in days when remaining battery exceeds an estimation of 24h | @imwints
20+
#819 | (AMD Gpu) fix pwr_usage not being defined correctly during rsmi collection | @kalkafox
21+
#831 | macOS: fix crash if there exists a uid not associated with any user | @thecoder-001
22+
#796 | Fix rsmi device name buffer size | @davc0n
23+
#807 | Add gruvbox_light theme | @kk9uk
24+
#724 | Create man page for btop in Markdown | @ottok
25+
#734 | Include metadata in binary version output `btop --version` | @imwints
26+
#771 | collect: Fix reading of battery power draw on Linux | @Derppening
27+
128
## v1.3.2
229

330
Description | Author(s) | References

README.md

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,16 @@
4646

4747
## News
4848

49+
##### 22 September 2024
50+
51+
Btop release v1.4.0
52+
53+
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.
54+
55+
NetBSD support added. Thanks to [@fraggerfox](https://github.com/fraggerfox) for contributions.
56+
57+
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.
58+
4959
##### 7 January 2024
5060

5161
Btop release v1.3.0
@@ -299,7 +309,7 @@ Can be set with `make setcap` (preferred) or `make setuid` or by running btop wi
299309

300310
2. **Install (from created folder)**
301311

302-
* **Run install.sh or:**
312+
* **Run:**
303313

304314
```bash
305315
# 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
329339

330340
* **Uninstall**
331341

332-
* **Run uninstall.sh or:**
342+
* **Run:**
333343

334344
```bash
335345
sudo make uninstall

src/btop.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ namespace Global {
8080
{"#801414", "██████╔╝ ██║ ╚██████╔╝██║ ╚═╝ ╚═╝"},
8181
{"#000000", "╚═════╝ ╚═╝ ╚═════╝ ╚═╝"},
8282
};
83-
const string Version = "1.3.2";
83+
const string Version = "1.4.0";
8484

8585
int coreCount;
8686
string overlay;

0 commit comments

Comments
 (0)