summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Herrmann <dh.herrmann@gmail.com>2013-02-28 11:37:16 +0100
committerDavid Herrmann <dh.herrmann@gmail.com>2013-02-28 11:37:16 +0100
commited6d7fa1166b20e4dfbcdb59035c6bc0bc293028 (patch)
tree96bbde763d874a0153c921eb79b0a959d0348a44
parentb465a8372512690b4f420cf18f5eb32c57849c69 (diff)
Release kmscon-7kmscon-7
This is kmscon-7. See ./NEWS for a list of new features. Unfortunately, github disabled the "Downloads" section so there is no way to upload new pre-generated tarballs. I have a pending application to move kmscon to freedesktop.org, but it didn't get processed in time for this release. Therefore, you need to build the GNU-autotools files yourself. That is, before calling ./configure you need to call: NOCONFIGURE=1 ./autogen.sh You can extend your build-scripts with: test -f ./configure || NOCONFIGURE=1 ./autogen.sh Which will call ./autogen.sh if needed. Everything else can be left unchanged. I will not upload the tarballs at another location. Feel free to do that yourself, but I personally think this will introduce more confusion than help. I hope the freedesktop.org move will be soon approved. This will also provide a mailing-list where I can properly announce new releases. Raw tarballs will be available as (without pre-generated autotools): https://github.com/dvdhrm/kmscon/archive/kmscon-7.tar.gz https://github.com/dvdhrm/kmscon/archive/kmscon-7.zip The git-tag is: kmscon-7 You can use my public GPG key to verify the tarballs. As usual, please report bugs to: https://github.com/dvdhrm/kmscon Signed-off-by: David Herrmann <dh.herrmann@gmail.com>
-rw-r--r--NEWS6
-rw-r--r--README3
-rw-r--r--configure.ac2
3 files changed, 9 insertions, 2 deletions
diff --git a/NEWS b/NEWS
index 96b2b5e..3fb05a4 100644
--- a/NEWS
+++ b/NEWS
@@ -57,6 +57,12 @@ CHANGES WITH 7:
still not considered stable so don't package them separately! Feel
free to link them statically.
+ * An experimental unfinished version of the UVT library has been added.
+ Use it only for testing purposes. The next kmscon release will include
+ documentation and more.
+ UVT implements virtual terminals in user-space. It will soon replace
+ the cdev-sessions in kmscon.
+
* Lots of bug-fixes!
CHANGES WITH 6:
diff --git a/README b/README
index 7fbe1fa..1b36cd6 100644
--- a/README
+++ b/README
@@ -33,7 +33,7 @@ console. See kmscon(1) man-page for usage information.
== Install ==
To compile the kmscon binary, run the standard autotools commands:
- $ ./autogen.sh (you need this only when building from git directly)
+ $ test -f ./configure || NOCONFIGURE=1 ./autogen.sh
$ ./configure
$ make
$ make install
@@ -89,6 +89,7 @@ console. See kmscon(1) man-page for usage information.
--enable-eloop: Build eloop event loop library [default: off]
--enable-tsm: Build TSM terminal state-machine library [default: off]
--enable-uterm: Build uterm library [default: off]
+ --enable-uvt: Build UVT library [default: off]
== Running ==
diff --git a/configure.ac b/configure.ac
index bcbe234..96f7c5f 100644
--- a/configure.ac
+++ b/configure.ac
@@ -5,7 +5,7 @@
AC_PREREQ(2.68)
-AC_INIT([kmscon], [6])
+AC_INIT([kmscon], [7])
AC_SUBST(PACKAGE_URL, [https://github.com/dvdhrm/kmscon])
AC_CONFIG_SRCDIR([src/kmscon_main.c])
AC_CONFIG_AUX_DIR([build-aux])