Home
Name Modified Size InfoDownloads / Week
2.1.0_rc1 2013-12-23
2.0.4 2013-07-29
2.0.3 2013-07-19
2.0.2 2013-07-14
2.0.1 2013-07-14
2.0.0 2013-06-20
1.12pre_gamma.0 2013-06-14
1.12pre_delta.0 2013-06-05
1.12c.0 2013-06-04
1.12b.0 2013-05-30
README.md 2013-07-29 2.1 kB
Totals: 11 Items   2.1 kB 0

Release notes

Syntax

* Filename:

(A +): Added A.
(- A): Removed A.
(B +): Added B.
(B += foo): Added foo to B.
(B -= foo): Removed foo from B.
(foobar +- B): Replaced B with foobar.
(foobar): Modified foobar.  
(C +): Added C.
(C, foobar): Modified C and foobar.  
(C; D +): Modified C and added D.
(D +?): If D already exists, then D has been modified, else D is a new addition.  
(*): Miscellaneous changes made
(!): bug fixed

Linux/Unix/Mac/BSD

Version 2.0.4

  • defs_t.h:

    • (*): changed `const char*' to `char*' on line 58.
  • error.c:

    • (error): commmented out unreachable `break' statements from lines 47, 52, 57, 69.
  • help.c:

    • (help): replaced all uses of `fprintf' with `printf'... uhhh... I can't remember why I felt like it was necessary to do this... oh wait... Yes I do, I did this so that users can `grep' the output of `--help' without having to redirect STDERR to a file, which they would then have to `cat'. :)
  • hsz.c:

    • (*): removed an unused header include-y thingy. The header file in question is `unistd.h', and it was on line 29.

    • (main): splint found a few spots where there were some memory leaks--all the leaks have been plugged. Yay!

  • opts.h:

    • (*): added a comment on line 63.
  • rmchar.c:

    • (sfilter): replaced `const char*' with `char*' on line 52.
  • rmchar.h:

    • (sfilter): updated the prototype-y thingy to reflect the recent change in the definition of `sfilter' in `rmchar.c'.
  • unhsz.c:

    • (*): removed an unused header--same one that was unused in `hsz.c'.

    • (main): just like in `hsz.c', splint found some memory leaks in `unhsz.c' too, and I have fixed them.

    • (main): replaced `char* buf_it = *arga;' with `char* buf_it; (NEWLINE) buf_it = *arga;' to promote better readability.

  • xhsz.py:

    • (decode): fixed an incorrect reference of `self.debug' to `defs.debug'

Windows

Version 2.0.4

  • hsz.py:

    • (decode): fixed an incorrect reference of `self.debug' to `defs.debug'
Source: README.md, updated 2013-07-29