This repository has been archived by the owner on Nov 7, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 317
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'vanilla/stable' into gaps
- Loading branch information
Showing
8 changed files
with
45 additions
and
100 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains 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,27 @@ | ||
|
||
┌──────────────────────────────┐ | ||
│ Release notes for i3 v4.20.1 │ | ||
└──────────────────────────────┘ | ||
|
||
This is i3 v4.20.1. This version is considered stable. All users of i3 are | ||
strongly encouraged to upgrade. | ||
|
||
┌────────────────────────────┐ | ||
│ Bugfixes │ | ||
└────────────────────────────┘ | ||
|
||
• i3bar: fix crash with multiple monitors | ||
• xmlto: fix broken .TH line by extending title length | ||
• i3-msg: fix --raw short form (-r) in manpage | ||
• libi3: add missing sys/stat.h header | ||
• use getcwd(NULL, 0) instead of GNU extension get_current_dir_name() | ||
|
||
┌────────────────────────────┐ | ||
│ Thanks! │ | ||
└────────────────────────────┘ | ||
|
||
Thanks for testing, bugfixes, discussions and everything I forgot go out to: | ||
|
||
rvalieris, Jakob Haufe, lycurgus, Baptiste Daroussin | ||
|
||
-- Michael Stapelberg, 2021-11-03 |
This file contains 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 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 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 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 |
---|---|---|
|
@@ -6,7 +6,7 @@ | |
project( | ||
'i3', | ||
'c', | ||
version: '4.20', | ||
version: '4.20.1', | ||
default_options: [ | ||
'c_std=c11', | ||
'warning_level=1', # enable all warnings (-Wall) | ||
|
@@ -229,6 +229,8 @@ if get_option('mans') | |
output: '@[email protected]', | ||
command: [ | ||
xmlto, | ||
'--stringparam', | ||
'man.th.title.max.length=30', | ||
'man', | ||
'-o', | ||
'@OUTDIR@', | ||
|
This file contains 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 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