Browse Source

Version klish-3.1.0. Many bugfixes and features.

Serj Kalichev 1 week ago
parent
commit
4ac6a82fbb
4 changed files with 15 additions and 5 deletions
  1. 4 2
      README.md
  2. 1 1
      configure.ac
  3. 7 1
      docs/Makefile.am
  4. 3 1
      plugins/lua/Makefile.am

+ 4 - 2
README.md

@@ -16,8 +16,8 @@ The main target for the klish is a Linux platform.
 
 ## Build
 
-The version 3 needs libfaux (http://faux.libcode.org) to be built.
-klish-3.0.0 is tested with faux-2.1.0
+The version 3 needs libfaux (https://faux.libcode.org) to be built.
+klish-3.1.0 based on [faux-2.2.0](https://src.libcode.org/download/faux/faux-2.2.0.tar.xz)
 
 
 ## Resources
@@ -34,4 +34,6 @@ Dev mailing list : http://groups.google.com/group/klish-dev
 
 Download : https://src.libcode.org/download/klish/
 
+Latest release : https://src.libcode.org/download/klish/klish-3.1.0.tar.xz
+
 Author : Serj Kalichev `pkun(_at_)libcode.org`

+ 1 - 1
configure.ac

@@ -1,7 +1,7 @@
 #                                               -*- Autoconf -*-
 # Process this file with autoconf to produce a configure script.
 m4_define([MAJOR_VERSION], 3)
-m4_define([MINOR_VERSION], 0)
+m4_define([MINOR_VERSION], 1)
 m4_define([MICRO_VERSION], 0)
 
 AC_PREREQ(2.59)

+ 7 - 1
docs/Makefile.am

@@ -1,2 +1,8 @@
 EXTRA_DIST += \
-	docs/specification.ru.md
+	docs/legacy-plan.ru.md \
+	docs/klish3.ru.md \
+	docs/klish-client-server.ru.png \
+	docs/klish-exec.ru.png \
+	docs/klish-filters.ru.png \
+	docs/klish-libs.ru.png \
+	docs/klish-plugin-db.ru.png

+ 3 - 1
plugins/lua/Makefile.am

@@ -9,4 +9,6 @@ libklish_plugin_lua_la_CFLAGS = $(AM_LDFLAGS) @LUA_INCLUDE@
 libklish_plugin_lua_la_LIBADD = libklish.la @LUA_LIB@
 
 libklish_plugin_lua_la_SOURCES += \
-	plugins/lua/klish_lua.c plugins/lua/lua-compat.c
+	plugins/lua/klish_lua.c \
+	plugins/lua/lua-compat.h \
+	plugins/lua/lua-compat.c