Compare commits
24 Commits
Author | SHA1 | Date | |
---|---|---|---|
3e9705b188 | |||
77db23a552 | |||
9c55ef5764 | |||
f1aa010457 | |||
3744fed6b7 | |||
4b47c78e09 | |||
bcb4df21de | |||
2a90fe2fe5 | |||
709fb8e96c | |||
77c982e8a2 | |||
ffce63241a | |||
df31277934 | |||
19af1994bc | |||
06eda725e4 | |||
0b9c972fce | |||
135d05c837 | |||
944f930ba8 | |||
f91500a50e | |||
f97642535e | |||
5a48b89d2e | |||
be8d9a3a76 | |||
d4ed3d73ac | |||
1222fb60f0 | |||
518ae20b6a |
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@@ -0,0 +1 @@
|
|||||||
|
.osc
|
@@ -1,4 +1,4 @@
|
|||||||
<servicedata>
|
<servicedata>
|
||||||
<service name="tar_scm">
|
<service name="tar_scm">
|
||||||
<param name="url">https://github.com/aristocratos/btop</param>
|
<param name="url">https://github.com/aristocratos/btop</param>
|
||||||
<param name="changesrevision">c4ee41ebc0f7fabbf4717450c889292464dbeb6d</param></service></servicedata>
|
<param name="changesrevision">7e50b03e391a346b2b6ce92be332c58d91f75a00</param></service></servicedata>
|
@@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:0ef6f79a9915b7057158931edb18d112f7a780d6c66a53297ac061c2d03c4108
|
|
||||||
size 990403
|
|
BIN
btop-1.2.13+git20230615.7e50b03.tar.gz
(Stored with Git LFS)
Normal file
BIN
btop-1.2.13+git20230615.7e50b03.tar.gz
(Stored with Git LFS)
Normal file
Binary file not shown.
43
btop.changes
43
btop.changes
@@ -1,3 +1,46 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Jun 23 17:22:29 UTC 2023 - scott.bradnick@suse.com
|
||||||
|
|
||||||
|
- Update to version 1.2.13+git20230615.7e50b03:
|
||||||
|
* Fix integer overflows in btop_collect.cpp
|
||||||
|
* Enable Clang as a compiler.
|
||||||
|
* Remove pthread_exit().
|
||||||
|
* Replace `statvfs64` with `statvfs` and define `_FILE_OFFSET_BITS=64`.
|
||||||
|
* Include <codecvt> required by Clang.
|
||||||
|
* Move `#include` to top level and exclude Clang from compiler version check.
|
||||||
|
* Insert `std::` for warning `unqualified call to std::move`.
|
||||||
|
* Include 3rd party headers with isystem to silence warnings.
|
||||||
|
* amend! update cpu load average display
|
||||||
|
* update cpu load average display
|
||||||
|
* chore: remove spaces before language in code blocks
|
||||||
|
* chore: update readme to include --recursive
|
||||||
|
* chore: adjust worflows to recursively clone the repository
|
||||||
|
* feat: prefer fmt submodule over copy-and-paste headers
|
||||||
|
* println -> fmt::println
|
||||||
|
* Readd using namespace fmt
|
||||||
|
* fix: prefix with `fmt::` to fix ambiguous call to `format()`, that also refers to `/usr/include/c++/13.1.1/format`
|
||||||
|
* Debug times thousand separator
|
||||||
|
* Debug times box changes
|
||||||
|
* btop.cpp -> fmt
|
||||||
|
* Fix link to themes folder
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Apr 26 19:24:18 UTC 2023 - scott.bradnick@suse.com
|
||||||
|
|
||||||
|
- Update to version 1.2.13+git20230318.872eb3e:
|
||||||
|
* Silence "warning: unqualified call to 'std::move'" in clang.
|
||||||
|
* Update everforest-dark-hard.theme
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Feb 23 18:38:20 UTC 2023 - scott.bradnick@suse.com
|
||||||
|
|
||||||
|
- Update to version 1.2.13+git20230223.471c68f:
|
||||||
|
* readme: Add zfs_arc_cached documentation
|
||||||
|
* Linux: subtract ZFS ARC min size from available memory
|
||||||
|
* Replace -ftree-loop-vectorize with -ftree-vectorize.
|
||||||
|
* Create adwaita.theme
|
||||||
|
* fix zfs on freebsd not reporting IO
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Jan 03 18:19:48 UTC 2023 - scott.bradnick@suse.com
|
Tue Jan 03 18:19:48 UTC 2023 - scott.bradnick@suse.com
|
||||||
|
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
name: btop
|
name: btop
|
||||||
version: 1.2.13+git20221215.c4ee41e
|
version: 1.2.13+git20230615.7e50b03
|
||||||
mtime: 1671122527
|
mtime: 1686843905
|
||||||
commit: c4ee41ebc0f7fabbf4717450c889292464dbeb6d
|
commit: 7e50b03e391a346b2b6ce92be332c58d91f75a00
|
||||||
|
@@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package btop
|
# spec file for package btop
|
||||||
#
|
#
|
||||||
# Copyright (c) 2022 SUSE LLC
|
# Copyright (c) 2023 SUSE LLC
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@@ -17,7 +17,7 @@
|
|||||||
|
|
||||||
|
|
||||||
Name: btop
|
Name: btop
|
||||||
Version: 1.2.13+git20221215.c4ee41e
|
Version: 1.2.13+git20230615.7e50b03
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Usage and stats for processor, memory, disks, network and processes
|
Summary: Usage and stats for processor, memory, disks, network and processes
|
||||||
License: Apache-2.0
|
License: Apache-2.0
|
||||||
|
Reference in New Issue
Block a user