Changeset 120f16d


Ignore:
Timestamp:
May 3, 2009, 7:47:55 PM (15 years ago)
Author:
Nelson Elhage <nelhage@mit.edu>
Branches:
master, release-1.10, release-1.4, release-1.5, release-1.6, release-1.7, release-1.8, release-1.9
Children:
67dd774
Parents:
11b9017 (diff), 96b5c81 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:
Merge branch 'master' of git@github.com:nelhage/barnowl
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • perlconfig.c

    r87dfeb7 r96b5c81  
    468468void owl_perlconfig_dispatch_free(owl_dispatch *d)
    469469{
    470   SvREFCNT_dec(d->data);
     470  SvREFCNT_dec((SV*)d->data);
    471471  owl_free(d);
    472472}
  • ChangeLog

    r879e90dc r68f1afe  
     11.1.1
     2 * Fix bogus errors 'subscribing to login messages'. -nelhage
     3 * Correctly send Zephyr login notices at startup. -nelhage
     4 * Fix compilation with Zephyr support. -alexmv
     5 * Fix an issue with incoming Zephyrs being delayed. -asedeno
     6 * Fix display of zpunt lines. -asedeno
     7 * Handle invalid regular expressions better (fix a segfault). -nelhage
     8 * Correctly handle zpunts with recipient %me%. -nelhage
     9 * Always send outgoing Zephyrs in utf-8. -nelhage
     10 * Fix documentation for 'zsig' and 'zisgproc'. -nelhage
     11 * Fix personal replies on webzephyr. -geofft
     12 * Fix two memory leaks formatting messages. -nelhage, andersk
     13 * Fix Makefile on platforms with Solaris tar. -nelhage
     14
    1151.1
    216 * Support building with -fstack-protector. -hartmans
  • Makefile.in

    rf200413 r8e9acd2  
    133133        ${INSTALL} -d ${DESTDIR}${datadir}/lib
    134134        ${INSTALL} -d ${DESTDIR}${datadir}/modules
    135         tar -C perl/lib --exclude .svn -cf - . | tar -C ${DESTDIR}${datadir}/lib -xf -
     135        (cd perl/lib && tar --exclude .svn -cf - . ) | (cd ${DESTDIR}${datadir}/lib && tar -xf - )
    136136        for i in $(PERL_MODULES); do \
    137137                ${INSTALL_DATA} perl/modules/$$i/$$i.par ${DESTDIR}${datadir}/modules/$$i.par; \
  • owl.h

    r19cc0b7e r4a999a7  
    5252
    5353#ifndef OWL_VERSION_STRING
    54 #define OWL_VERSION_STRING "1.1.1"
     54#define OWL_VERSION_STRING "1.1.2"
    5555#endif
    5656
  • scripts/do-release

    r5319565 r11b9017  
    4141echo "Created release tarball for BarnOwl $VERS in $(pwd)"
    4242echo "Remember to bump OWL_VERSION_STRING for future development."
     43
     44COMMIT=$(git rev-parse "$TAG")
     45NOW=$(date +"%B %d, %Y")
     46cat <<EOF
     47 * '''$NOW''': BarnOwl $VERS Released. [wiki:Download] it here. or see the [/browser/ChangeLog?rev=$COMMIT ChangeLog]
     48EOF
Note: See TracChangeset for help on using the changeset viewer.