Changes between Version 10 and Version 11 of dev/notes


Ignore:
Timestamp:
05/09/2011 09:06:12 AM (13 years ago)
Author:
Sam Hocevar
Comment:

changelog generator

Legend:

Unmodified
Added
Removed
Modified
  • dev/notes

    v10 v11  
    3131 * Wrap `l_user_stack` uses in a clean class.
    3232
    33 == The big data merge ==
     33== Changelog ==
    3434
    35 WAV files:
    36  * files in both `abuse-sfx` and `abuse-mac` are exactly the same
    37  * some files are only in `abuse-mac`: the whole `sfx/voice/` subdirectory
    38 
    39 SPE files:
    40  * all files in `abuse-lib` are also in `abuse-data`
    41  * most new files from `abuse-frabs` are in the `addons` directory
     35{{{
     36#!sh
     37git log --stat \
     38   | sed 's/sam <sam@........-[^>]*>/Sam Hocevar <sam@hocevar.net>/' \
     39   | sed 's/holiday <holiday@........-[^>]*>/Justin Cassidy <justin@boil.afraid.org>/' \
     40   | tac \
     41   | awk '/git-svn-id/ { sub(/.*@/, ""); id=$1; next } \
     42          /^commit/ { print "Commit: " id; id="UNCOMMITTED" } \
     43          /files changed.*insertions/ { if ($1 > 20) { print $0; print " [...]"; disable=1 } } \
     44          /^$/ { disable=0 } \
     45          { if (!disable) print $0 }' \
     46   | tac \
     47   | grep -v '\(^    $\|^commit\|git-svn-id\)' >| ChangeLog
     48}}}