summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJefferson Delfes <jefferson.delfes@gmail.com>2013-12-23 11:53:03 -0400
committerJefferson Delfes <jefferson.delfes@gmail.com>2013-12-23 11:53:03 -0400
commite5377ec40446fd63dbd8d574cdac2786265ab6d6 (patch)
treeb1daa8969fccad06401eede9eb545f0ad6e0b8d2
parentd41a4e6ad86f30db97826d6ffabdeca980a1a3d7 (diff)
Bump version, update ChangeLog and README0.4
-rw-r--r--ChangeLog9
-rw-r--r--README.txt7
-rw-r--r--btctl.c2
3 files changed, 15 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 07a1710..a345e90 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
+0.4
+===
+
+This version adds some important features and bugfixes:
+
+ * Support to multiple connections
+ * Some terminal fixes on line edit feature
+ * Check for root user
+
0.3
===
diff --git a/README.txt b/README.txt
index 258b87a..ce4ad77 100644
--- a/README.txt
+++ b/README.txt
@@ -37,7 +37,10 @@ Limitations of abtctl
=====================
On the btctl tool, we have some limits:
-* We accept only one connection per time. If you need another connection,
- disconnect first.
+* We support 10 connections at same time (easily extendable changing
+ MAX_CONNECTIONS value).
+* The stack doesn't support more than one pending connection at same time. So
+ if some connection is stuck, first cancel that connection with disconnect
+ command passing zero as connection ID.
* We are using a static buffer for search_result_cb, so we have a limit of 128
services that can be handled.
diff --git a/btctl.c b/btctl.c
index 409e53e..d47d3f7 100644
--- a/btctl.c
+++ b/btctl.c
@@ -35,7 +35,7 @@
#include "util.h"
#include "rl_helper.h"
-#define VERSION "0.3"
+#define VERSION "0.4"
#define MAX_LINE_SIZE 64
#define MAX_SVCS_SIZE 128