summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 69dff26)
raw | patch | inline | side by side (parent: 69dff26)
author | oetiker <oetiker@a5681a0c-68f1-0310-ab6d-d61299d08faa> | |
Sun, 26 Dec 2010 19:50:34 +0000 (19:50 +0000) | ||
committer | oetiker <oetiker@a5681a0c-68f1-0310-ab6d-d61299d08faa> | |
Sun, 26 Dec 2010 19:50:34 +0000 (19:50 +0000) |
program/CHANGES | patch | blob | history | |
program/rrdtool-1.2-release | [deleted file] | patch | blob | history |
diff --git a/program/CHANGES b/program/CHANGES
index feb855d382431ccab3de17ddd9b8f596e93ec428..c24e392ac8c40d4f43e5ce18ca90dc226a22bfaf 100644 (file)
--- a/program/CHANGES
+++ b/program/CHANGES
+RRDtool 1.4.5 - 2010-12-26
+==========================
+Bugfixes:
+ * rrdcached: print \n at the end of log messages when running rrdcached in the
+ foreground -- Bernard Li
+ * rrdcached: Let the -s, -m and -P options affect the default socket as
+ well -- Sebastian Harl
+ * rrdgraph: font related memory leaks fixed #208 -- tobi
+ * rrdgraph-libdbi: print error message instead of dumping core on sql
+ problem -- Pavel Nikiforov
+ * rrdgraph-libdbi: properly allocated response buffer -- Pavel Nikiforov
+ * rrdtool: in remote mode, make argument count for remote commmands strict
+ -- Dave Peticolas
+ * rrdgraph: fix problems with second %s in right-axis format -- tobi
+ * compilation: works on MSVC2008 now -- jkane mail.com
+ * everywhere: fix locale handling. locales were not properly reset after
+ calling set locale -- tobi
+ * rrd_cgi: windows compilation fix -- jkane mail.com
+ * rrdgraph: fix use of %s in strftime (G)PRINT commands #277 -- tobi
+ * ruby: fix bindings to be compatible with curent ruby implementations #279
+ * rrdcached: Ensure that response_read() always calls fflush() or fclose() #278
+ -- kevin brintnall
+ * rrd_client: free addrinfo list after use ... -- Christian Magnusson
+ * rrdupdate: follow the normal code path for exiting rrd_update if there is a problem
+ with rrdc, plugging a memory leak on the way -- Christian Magnusson
+ * rrdgraph: make sure we do not try to draw points all that far outside the
+ drawing area since some versions of cairo seem to go unstable when this
+ happens. -- Peter Stamfest
+ * rrdgraph: fix an endles loop near 2^31 timestamp (32bit platform problem)
+ -- Peter Stamfest
+ * compilation: AIX does not like MAP_PRIVATE and -lW in LDFLAGS #216 -- tobi
+ * compliation: add extra space in LDFLAGS #284 -- dam at opencsw
+ * rrdcached: Fix permissions of the default socket -- Florian Forster
+ * rrdgraph-libdbi: Fix sigma calculation -- Hans Jørgen Jakobsen
+ * rrdcreate: better checks for RRA arguments
+ * configure: make configure recognize tcl-site argument (#281)
+ * rrdgraph: if there is no right label, do not reserve any space for it --tobi
+
+Enhancements:
+ * rrdcached: add hosts_access support added -- Shaun Reitan
+ * rrdfetch/graph: introduce "epoch" as a new base time reference, meaning
+ timestamp 0: you can now write epoch+11111111s or epoch+19711205s
+ -- Peter Stamfest
+
+
RRDtool 1.4.4 - 2010-07-05
==========================
Bugfixes:
diff --git a/program/rrdtool-1.2-release b/program/rrdtool-1.2-release
+++ /dev/null
@@ -1,37 +0,0 @@
-#!/bin/sh
-set -e
-VERSION=`perl -n -e 'm/\QAC_INIT([rrdtool],[\E(.+?)\Q])\E/ && print $1' configure.ac`
-PERLVERS=`perl -n -e 'm/NUMVERS=(\d+\.\d+)/ && print $1' configure.ac`
-set -x
-perl -i -p -e 's/^\$VERSION.+/\$VERSION='$PERLVERS';/' bindings/perl-*/*.pm
-perl -i -p -e 's/RRDtool 1\S+/RRDtool '$VERSION'/ && s/Copyright.+?Oetiker.+\d{4}/Copyright by Tobi Oetiker, 1997-2007/' src/*.h src/*.c
-perl -i -p -e 's/^Version:.+/Version: '$VERSION'/' rrdtool.spec
-perl -i -p -e 's/rrdtool-[\.\d]+\d(pre\d+)?(rc\d+)?/rrdtool-'$VERSION'/g' doc/rrdbuild.pod
-svn diff
-echo "Tagging and releasing rrdtool $VERSION ($PERLVERS). Press any Key to continue."
-read somekey
-svn commit -m "prepare for the release of rrdtool-$VERSION"
-mkdir /tmp/rrdtool-$$
-OPWD=`pwd`
-cd /tmp/rrdtool-$$
-svn checkout svn://svn.oetiker.ch/rrdtool/branches/1.2/program .
-svn log --stop-on-copy --xml --verbose svn://svn.oetiker.ch/rrdtool/branches/1.2/program | \
- xsltproc --stringparam strip-prefix branches/1.2/program $OPWD/svn2cl.xsl - >CHANGES
-sh MakeMakefile
-PKG_CONFIG_PATH=/usr/pack/rrdtool-1.2svn-to/i686-debian-linux3.1/lib/pkgconfig/
-export PKG_CONFIG_PATH
-./configure
-make dist
-# do a test build
-tar zxvf rrdtool*.tar.gz
-cd rrdtool-$VERSION
-./configure
-make
-src/rrdtool
-cd ..
-scp CHANGES rrdtool*.tar.gz oposs@james:public_html/rrdtool/pub/
-ssh oposs@james "cd public_html/rrdtool/pub/;rm rrdtool.tar.gz;ln -s rrdtool-$VERSION.tar.gz rrdtool.tar.gz"
-cd ..
-rm -rf rrdtool-$$
-svn copy -m "tagging version $VERSION" svn://svn.oetiker.ch/rrdtool/branches/1.2/program svn://svn.oetiker.ch/rrdtool/tags/$VERSION
-