Skip to content

Commit 1a663e7

Browse files
authored
Release: v2.65.2 (#2425)
2 parents b79a336 + e0ae1ac commit 1a663e7

24 files changed

Lines changed: 310 additions & 109 deletions

CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
1+
# 2.65.2
2+
3+
Changes:
4+
* Memory usage calculations now exclude the ZFS ARC cache on Linux, FreeBSD, NetBSD, and SunOS. (#1995 / #2418, Memory)
5+
* This prevents the Memory module from reporting artificially high memory usage on systems with the ZFS kmod enabled.
6+
7+
Bugfixes:
8+
* The GPU module no longer pings sleeping dedicated GPUs on dual-GPU laptops. (#2419, GPU)
9+
* As a result, PCIe link speed detection (introduced in v2.65.0) is now only enabled in `driverSpecific` mode.
10+
* Fixed a crash when detecting hardware codec support with the `amdgpu` driver on Linux. (#2419, Codec, Linux)
11+
12+
Logos:
13+
* Updated CachyOS_small
14+
* Added Turkish
15+
16+
# 2.65.1
17+
18+
No changes
19+
120
# 2.65.0
221

322
Changes:

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
cmake_minimum_required(VERSION 3.12.0) # target_link_libraries with OBJECT libs & project homepage url
22

33
project(fastfetch
4-
VERSION 2.65.1
4+
VERSION 2.65.2
55
LANGUAGES C
66
DESCRIPTION "Fast neofetch-like system information tool"
77
HOMEPAGE_URL "https://github.com/fastfetch-cli/fastfetch"

debian/changelog.tpl

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
fastfetch (2.65.1~#UBUNTU_CODENAME#) #UBUNTU_CODENAME#; urgency=medium
2+
3+
* Update to 2.65.1
4+
5+
-- Carter Li <zhangsongcui@live.cn> Wed, 24 Jun 2026 14:21:06 +0800
6+
17
fastfetch (2.64.2~#UBUNTU_CODENAME#) #UBUNTU_CODENAME#; urgency=medium
28

39
* Update to 2.64.2

debian/publish.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ SCRIPT_DIR="$(cd -- "$(dirname "${BASH_SOURCE[0]}")" >/dev/null 2>&1 && pwd)"
1010
ROOT_DIR="$(cd -- "$SCRIPT_DIR/.." >/dev/null 2>&1 && pwd)"
1111
OUT_DIR="$(dirname "$ROOT_DIR")"
1212
PPA="ppa:zhangsongcui3371/fastfetch"
13-
CODENAMES=( jammy noble plucky questing resolute )
13+
CODENAMES=( jammy noble plucky questing resolute stonking )
1414
DRY_RUN=0
1515

1616
if [[ -d "$OUT_DIR/build" ]]; then

presets/examples/13.jsonc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Inspired by Catnap
1+
// Inspired by Catnap (https://github.com/iinsertNameHere/catnap)
22
{
33
"$schema": "https://github.com/fastfetch-cli/fastfetch/raw/dev/doc/json_schema.json",
44
"logo": {

presets/examples/14.jsonc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Inspired by Catnap
1+
// Inspired by Catnap (https://github.com/iinsertNameHere/catnap)
22
{
33
"$schema": "https://github.com/fastfetch-cli/fastfetch/raw/dev/doc/json_schema.json",
44
"logo": {

presets/examples/15.jsonc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Inspired by Catnap
1+
// Inspired by Catnap (https://github.com/iinsertNameHere/catnap)
22
{
33
"$schema": "https://github.com/fastfetch-cli/fastfetch/raw/dev/doc/json_schema.json",
44
"logo": {

presets/examples/16.jsonc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Inspired by Catnap
1+
// Inspired by Catnap (https://github.com/iinsertNameHere/catnap)
22
{
33
"$schema": "https://github.com/fastfetch-cli/fastfetch/raw/dev/doc/json_schema.json",
44
"logo": {

src/common/impl/settings.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -391,7 +391,7 @@ int ffSettingsGetSQLite3Int(const char* dbPath, const char* query) {
391391
}
392392

393393
sqlite3* db;
394-
if (data->ffsqlite3_open_v2(dbPath, &db, SQLITE_OPEN_READONLY, NULL) != SQLITE_OK) {
394+
if (data->ffsqlite3_open_v2(dbPath, &db, SQLITE_OPEN_READONLY | SQLITE_OPEN_NOMUTEX, NULL) != SQLITE_OK) {
395395
return 0;
396396
}
397397

src/detection/codec/codec_linux.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@ static const char* detectCodecByVaDrm(FFVAData* vaData, FFCodecOptions* options,
237237
continue;
238238
}
239239

240-
FF_AUTO_CLOSE_FD int fd = openat(drifd, entry->d_name, O_RDONLY | O_CLOEXEC);
240+
FF_AUTO_CLOSE_FD int fd = openat(drifd, entry->d_name, O_RDWR | O_CLOEXEC);
241241
if (fd < 0) {
242242
continue;
243243
}

0 commit comments

Comments
 (0)