-
-
Notifications
You must be signed in to change notification settings - Fork 667
Release: v2.57.1 #2145
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
+271
−214
Merged
Release: v2.57.1 #2145
Changes from all commits
Commits
Show all changes
14 commits
Select commit
Hold shift + click to select a range
71d4612
Packaging: updates debian stuff [ci skip]
CarterLi af075b8
Github: update `logo_request.yml` [ci skip]
CarterLi fd3c87a
Github: adds pull_request_template.md [ci skip]
CarterLi 2f1e37b
Common (Windows): improves performance of `ffTimeGetTick`
CarterLi 1c066bc
Common: updates `ffTimeSleep` to return `true` on success
CarterLi 6496dcd
DisplayServer (Linux): refactors property handling in xcb and xlib
CarterLi 57aa0cf
Logo (Builtin): updates PrismLinux and adds a small variant (#2141)
rXelelo 3d84ad1
macOS: uses `MACH_PORT_NULL` to maintain compatibility with older SDKs
CarterLi 49fc956
Platform (Windows): improves hostname retrieval by adding fallback to…
CarterLi e6bd1c3
Common: add `on_scope_exit` utility for scope-based resource management
CarterLi 501746a
Logo: removes unneeded `#include`s
CarterLi 1699d14
Common: ensures thread safety of `ffTimeInitQpcMultiplier`
CarterLi 5ef630c
Release: v2.57.1
CarterLi ba0eeab
DisplayServer (Linux): cleanup code
CarterLi File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,26 @@ | ||
| ## Summary | ||
|
|
||
| <!-- Briefly describe what this PR does. --> | ||
|
|
||
| ## Related issue (required for new logos for new distros) | ||
|
|
||
| <!-- | ||
| If this PR adds a new logo, it MUST be linked to an existing "Logo Request" issue and has the requests fulfilled. | ||
|
|
||
| Use one of the following formats so GitHub links it properly: | ||
| - Closes #1234 | ||
| - Fixes #1234 | ||
| - Resolves #1234 | ||
|
|
||
| PRs that add logos without an associated Logo Request issue will not be accepted. | ||
| --> | ||
|
|
||
| Closes # | ||
|
|
||
| ## Changes | ||
|
|
||
| - | ||
|
|
||
| ## Checklist | ||
|
|
||
| - [ ] I have tested my changes locally. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,9 @@ | ||
| fastfetch (2.57.0~#UBUNTU_CODENAME#) #UBUNTU_CODENAME#; urgency=medium | ||
|
|
||
| * Update to 2.57.0 | ||
|
|
||
| -- Carter Li <[email protected]> Mon, 12 Jan 2026 10:11:21 +0800 | ||
|
|
||
| fastfetch (2.56.1~#UBUNTU_CODENAME#) #UBUNTU_CODENAME#; urgency=medium | ||
|
|
||
| * Update to 2.56.1 | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,19 @@ | ||
| #pragma once | ||
|
|
||
| #include <utility> | ||
| #include <type_traits> | ||
|
|
||
| template <typename Fn> | ||
| struct on_scope_exit { | ||
| static_assert(std::is_nothrow_move_constructible<Fn>::value, | ||
| "Fn must be nothrow move constructible"); | ||
|
|
||
| explicit on_scope_exit(Fn &&fn) noexcept | ||
| : _fn(std::move(fn)) {}; | ||
| on_scope_exit(const on_scope_exit&) = delete; | ||
| on_scope_exit& operator=(const on_scope_exit&) = delete; | ||
| ~on_scope_exit() noexcept { this->_fn(); } | ||
|
|
||
| private: | ||
| Fn _fn; | ||
| }; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.