Skip to content

Commit

Permalink
Merge pull request #735 from fastfetch-cli/dev
Browse files Browse the repository at this point in the history
Release: v2.8.5
  • Loading branch information
CarterLi committed Feb 23, 2024
2 parents ea162fd + 91dac15 commit d317997
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# 2.8.5

Bugfixes:
* Fix uninitialized variables

# 2.8.4

Bugfixes:
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
cmake_minimum_required(VERSION 3.12.0) # target_link_libraries with OBJECT libs & project homepage url

project(fastfetch
VERSION 2.8.4
VERSION 2.8.5
LANGUAGES C
DESCRIPTION "Fast neofetch-like system information tool"
HOMEPAGE_URL "https://github.com/fastfetch-cli/fastfetch"
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ There are [screenshots on different platforms](https://github.com/fastfetch-cli/

### Linux

* Ubuntu: `ppa:zhangsongcui3371/fastfetch`
* Debian / Ubuntu: Download `fastfetch-<version>-Linux.deb` from [Github release page](https://github.com/fastfetch-cli/fastfetch/releases/latest) and `dpkg -i fastfetch-<version>-Linux.deb`
* Arch Linux: `sudo pacman -S fastfetch`. You can also find fastfetch [on the AUR](https://aur.archlinux.org/packages/fastfetch-git).
* Fedora: `sudo dnf install fastfetch`
Expand Down
6 changes: 6 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
fastfetch (2.8.4) jammy; urgency=medium

* Update to 2.8.4

-- Carter Li <zhangsongcui@live.cn> Fri, 23 Feb 2024 16:14:57 +0800

fastfetch (2.7.1ubuntu2) jammy; urgency=medium

* Ignore .git
Expand Down
2 changes: 1 addition & 1 deletion debian/files
Original file line number Diff line number Diff line change
@@ -1 +1 @@
fastfetch_2.7.1ubuntu2_source.buildinfo universe/utils optional
fastfetch_2.8.4_source.buildinfo universe/utils optional
1 change: 1 addition & 0 deletions src/modules/diskio/diskio.c
Original file line number Diff line number Diff line change
Expand Up @@ -220,6 +220,7 @@ void ffInitDiskIOOptions(FFDiskIOOptions* options)
ffOptionInitModuleArg(&options->moduleArgs);

ffStrbufInit(&options->namePrefix);
options->detectTotal = false;
}

void ffDestroyDiskIOOptions(FFDiskIOOptions* options)
Expand Down
1 change: 1 addition & 0 deletions src/modules/netio/netio.c
Original file line number Diff line number Diff line change
Expand Up @@ -257,6 +257,7 @@ void ffInitNetIOOptions(FFNetIOOptions* options)
true
#endif
;
options->detectTotal = false;
}

void ffDestroyNetIOOptions(FFNetIOOptions* options)
Expand Down

0 comments on commit d317997

Please sign in to comment.