-
-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
26 additions
and
13 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
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,4 +1,4 @@ | ||
.TH "BCAL" "1" "10 Oct 2017" "Version 1.7" "User Commands" | ||
.TH "BCAL" "1" "12 Mar 2018" "Version 1.8" "User Commands" | ||
.SH NAME | ||
bcal \- Storage conversion and expression calculator. | ||
.SH SYNOPSIS | ||
|
@@ -154,7 +154,7 @@ Arun Prakash Jana <[email protected]> | |
.SH REPORTING BUGS | ||
.I https://github.com/jarun/bcal/issues | ||
.SH LICENSE | ||
Copyright \(co 2016-2017 Arun Prakash Jana <[email protected]> | ||
Copyright \(co 2016-2018 Arun Prakash Jana <[email protected]> | ||
.PP | ||
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>. | ||
.br | ||
|
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 |
---|---|---|
|
@@ -55,7 +55,7 @@ typedef struct { | |
ulong s; | ||
} t_chs; | ||
|
||
static char *VERSION = "1.7"; | ||
static char *VERSION = "1.8"; | ||
static char *units[] = {"b", "kib", "mib", "gib", "tib", "kb", "mb", "gb", "tb"}; | ||
|
||
static char *FAILED = "1"; | ||
|
@@ -945,7 +945,7 @@ optional arguments:\n\ | |
-d enable debug information and logs\n\ | ||
-h show this help and exit\n\n\ | ||
Version %s\n\ | ||
Copyright © 2016-2017 Arun Prakash Jana <[email protected]>\n\ | ||
Copyright © 2016-2018 Arun Prakash Jana <[email protected]>\n\ | ||
License: GPLv3\n\ | ||
Webpage: https://github.com/jarun/bcal\n", VERSION); | ||
} | ||
|
a1bb800
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@shaggytwodope @szlin bcal v1.8 is released!
@zmwangx please submit this release to Homebrew.
@eclipseo please update your Fedora submission to this version.
a1bb800
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It is ready for 1.8. I'm waiting for the final package nnn to be accepted to launch every build at the same time.
a1bb800
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Awesome!!!
a1bb800
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@eclipseo I accepted a PR and made some changes in
nnn
for Fedora today and would be glad to assist with the progress any way I can. However, I think if we have the rest of the utils ready to go, we should launch the builds without waiting for this single utility.a1bb800
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Everything is approved, I plan to launch the builds tomorrow.
a1bb800
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That's great!
a1bb800
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@jarun The new version of bcal has been uploaded, I will start to investigate variadic macro issue afterwards.
a1bb800
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@eclipseo just noticed your builds are all successful! Thank you!!!
The new packages would be available on Fedora 27 and later, right?
a1bb800
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@szlin I took a look at the
-pedantic
issue. I think we will have to live with it if we want well-defined log levels. We can modify it to pass an extra variable line line number or even the level but that just increases the binary size and in many cases redundant info.When the say variable args, they should be ready to accept the number 0 without complaining is what I believe.
Do you see any issue in throwing off
-pedantic
?a1bb800
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@jarun Yes all builds have completed, they are now in testing phase for 8 days (for f27, f28 is in the freeze period right now).
a1bb800
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hi @jarun, I second that. The purpose of
-pedantic
is try to follow ISO C for being portable code. If bcal can achieve this goal, we don't need-pedantic
.