Skip to content

Commit 35a5a03

Browse files
authored
Merge pull request #696 from fastfetch-cli/dev
Release v2.6.3
2 parents c151bf0 + f927b8e commit 35a5a03

File tree

3 files changed

+8
-1
lines changed

3 files changed

+8
-1
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
# 2.6.3
2+
3+
Bugfixes:
4+
* Fix module not working (Bluetooth)
5+
16
# 2.6.2
27

38
Bugfixes:

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.6.2
4+
VERSION 2.6.3
55
LANGUAGES C
66
DESCRIPTION "Fast neofetch-like system information tool"
77
HOMEPAGE_URL "https://github.com/fastfetch-cli/fastfetch"

src/modules/bluetooth/bluetooth.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@ static void printDevice(FFBluetoothOptions* options, const FFBluetoothResult* de
2424

2525
if (!device->connected)
2626
ffStrbufAppendS(&buffer, " [disconnected]");
27+
28+
ffStrbufPutTo(&buffer, stdout);
2729
}
2830
else
2931
{

0 commit comments

Comments
 (0)