+Summary of changes from v006 to v007
+============================================
+
+Greg Kroah-Hartman (4):
+ fix git command in Makefile
+ change README to show that we handle identi.ca also now
+ more README updates
+ Merge branch 'master' of greg@mail.kroah.net:git/bti
+
+Olivier Blin (1):
+ fix segfault when piping to bti and user/password are not set
+
+
Summary of changes from v005 to v006
============================================
added github url to the README
add identi.ca support to bti
+
Summary of changes from v004 to v005
============================================
#
#
-VERSION = 006
+VERSION = 007
PROGRAM = bti
git commit -a -m "release $(VERSION)"
cat .git/refs/heads/master > .git/refs/tags/$(VERSION)
@ echo
- git-archive --format=tar --prefix=bti-$(VERSION)/ HEAD | gzip -9v > bti-$(VERSION).tar.gz
+ git archive --format=tar --prefix=bti-$(VERSION)/ HEAD | gzip -9v > bti-$(VERSION).tar.gz
.PHONY: release
-bti - bash twitter ididocy
+bti - bash twitter/identi.ca ididocy
-Allows you to pipe your bash input to twitter in an easy and fast manner
-to annoy the whole world.
+Allows you to pipe your bash input to twitter or identi.ca in an easy
+and fast manner to annoy the whole world.
See the man page bti.1 for how to use it and more information.
USE AT YOUR OWN RISK!
Any questions, contact Greg Kroah-Hartman <greg@kroah.com> or @gregkh
-on twitter.
+on twitter or identi.ca.
bti is developed using git and the tree can be found at:
git://github.com/gregkh/bti.git
+bti 007
+=============
+segfault fix from Oliver Blin
+
bti 006
=============
added identi.ca support
}
#endif
tweet = get_string_from_stdin();
- if (strlen(tweet) == 0) {
+ if (!tweet || strlen(tweet) == 0) {
dbg("no tweet?\n");
return -1;
}