-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Replace time_s::fmt_sprintf with time_s::fmt_str
Because uncontrolled sprintf usage may (and did) cause problems when compiled with _FORTIFY_SOURCE Also it's 1.4.6 - update build files
- Loading branch information
1 parent
5359dea
commit b21b712
Showing
5 changed files
with
32 additions
and
10 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -1,9 +1,16 @@ | ||
2021-01-31 GregTheMadMonk <[email protected]> | ||
* 1.4.6: Bugfix release | ||
- Replace potentially problematic time_s::fmt_sprintf with time_s::fmt_str | ||
- Update cmd::retval (command return value) after every command | ||
- Update cui::status (program status line) after with every return value that is not empty | ||
- Codebase: file naming changes, with errors causeed by it fixed | ||
|
||
2021-01-28 GregTheMadMonk <[email protected]> | ||
* 1.4.5r355.faca540 | ||
- Replace sprintf usage case that caused error when compiled with _FORTIFY_SOURCE | ||
|
||
2021-01-28 GregTheMadMonk <[email protected]> | ||
* 1.4.5r323.... | ||
* 1.4.5: TIMELINE mode release | ||
- Added TIMELINE mode: | ||
+ Displays tasks (surprizse) on a timeline | ||
+ Added commands: | ||
|
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
# Maintainer: Gregory Dushkin (GregTheMadMonk) <[email protected]> | ||
pkgname=noaftodo-git | ||
pkgver=1.4.5 | ||
pkgver=1.4.6 | ||
pkgrel=1 | ||
pkgdesc="An ncurses TODO manager that No-One-Asked-For." | ||
arch=(x86_64 i686) | ||
|
@@ -16,7 +16,7 @@ md5sums=('SKIP') | |
|
||
pkgver() { | ||
cd noaftodo | ||
printf "1.4.5r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)" | ||
printf "1.4.6r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)" | ||
} | ||
|
||
build() { | ||
|
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