aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorluis <luis>2007-01-31 03:35:09 +0000
committerluis <luis>2007-01-31 03:35:09 +0000
commitfdc2747952c084c97d6beb4dc6ea30d7fa515809 (patch)
treed504587589493a8a1d93bd5af1682682094cc504
parent037dcb2c4fcf6211c0ae5ed6d5b851a6746264d0 (diff)
downloadfirma-fdc2747952c084c97d6beb4dc6ea30d7fa515809.tar.gz
firma-fdc2747952c084c97d6beb4dc6ea30d7fa515809.tar.bz2
Updating CHANGELOG.
-rwxr-xr-xCHANGELOG21
1 files changed, 5 insertions, 16 deletions
diff --git a/CHANGELOG b/CHANGELOG
index fbe9f37..fbff484 100755
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,6 +1,10 @@
Firma CHANGELOG
---------------
+31/01/2007 - 0.3-cvs (rev 1.152) - luis
+
+ - Removed firma dependecy on bc, cat and tac.
+
30/01/2007 - 0.3-cvs (rev 1.151) - luis
- Re-enabling passphrase complexity checking. Not sure why I had
@@ -13,22 +17,7 @@ Firma CHANGELOG
than one error message on the same execution. So ERROR_MESSAGE
is no more.
- - 1,$s/$(basename $0)/$BASENAME/. Since BASENAME=$(basename $0).
-
- - 1,$s/awk '{ print $* }'/cut -d " " -f */. The less dependencies,
- the better.
-
- - 1,$s/`*`/$(*)/. Since $() can be nested while `` can't.
-
- - 1,$s/if [ * ]/if [[ * ]]/. Since [[ is a bash builtin, being
- presumably faster. And again, the less dependencies, the better.
-
- - 1,$s/if [[ * ]] && [[ * ]]/if [[ * && * ]]/,
- 1,$s/if [[ * ]] || [[ * ]]/if [[ * || * ]]/. Since [[ allows it.
-
- - 1,$s/if [[ ! -z * ]]/if [[ -n * ]]/. Cosmetic.
-
- - And a few more cosmetic changes, specially on comments.
+ - Removed firma dependecy on awk and test/[.
19/01/2007 - 0.3-cvs (rev 1.150) - rhatto