diff --git a/ChangeLog b/ChangeLog index 9405aa8d..b0f640b9 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,6 @@ +2020-10-31 Markus Gans + * Version 0.8.0 + 2021-10-28 Markus Gans * The keyboard and timer examples now have flicker-free scrolling diff --git a/configure.ac b/configure.ac index 5ab46f4d..08ae7966 100644 --- a/configure.ac +++ b/configure.ac @@ -4,7 +4,7 @@ # Process this file with autoconf to produce a configure script. -AC_INIT([finalcut], [0.7.2]) +AC_INIT([finalcut], [0.8.0]) AC_CONFIG_HEADER([config.h]) AX_PREFIX_CONFIG_H([final/fconfig.h], [F]) AC_CONFIG_SRCDIR([final/fobject.cpp]) @@ -75,7 +75,7 @@ LT_OUTPUT ### This defines the version number of the installed .so files ### Update this value for every release! (A:B:C will map to foo.so.(A-C).C.B) ### using libtool's versioning system. -AC_SUBST(SO_VERSION, ["7:2:7"]) +AC_SUBST(SO_VERSION, ["8:0:8"]) AC_SUBST([LIBTOOL_DEPS]) diff --git a/final/Makefile.clang b/final/Makefile.clang index a9e620b4..e360baac 100644 --- a/final/Makefile.clang +++ b/final/Makefile.clang @@ -3,7 +3,7 @@ #----------------------------------------------------------------------------- # This is where make install will install the library -VERSION = "0.7.2" +VERSION = "0.8.0" MAJOR := $(shell echo ${VERSION} | cut -d. -f1) LIBDIR = /usr/local/lib INCLUDEDIR1 = . @@ -205,7 +205,7 @@ install: $(LIB) ldconfig mkdir -p $(INCLUDEDIR2) for d in dialog input menu output output/tty util vterm widget; \ - do \ + do \ mkdir -p $(INCLUDEDIR2)/$$d; \ done @list='$(INCLUDE_HEADERS)'; for h in $$list; \ @@ -220,7 +220,7 @@ uninstall: $(OBJS) $(RM) $(INCLUDEDIR2)/$$h; \ done for d in widget vterm util output/tty output menu input dialog; \ - do \ + do \ rmdir $(INCLUDEDIR2)/$$d; \ done rmdir $(INCLUDEDIR2) diff --git a/final/Makefile.gcc b/final/Makefile.gcc index 8ecab6a2..219ebce8 100644 --- a/final/Makefile.gcc +++ b/final/Makefile.gcc @@ -3,7 +3,7 @@ #----------------------------------------------------------------------------- # This is where make install will install the library -VERSION = "0.7.2" +VERSION = "0.8.0" MAJOR := $(shell echo ${VERSION} | cut -d. -f1) LIBDIR = /usr/local/lib INCLUDEDIR1 = . @@ -205,7 +205,7 @@ install: $(LIB) ldconfig mkdir -p $(INCLUDEDIR2) for d in dialog input menu output output/tty util vterm widget; \ - do \ + do \ mkdir -p $(INCLUDEDIR2)/$$d; \ done @list='$(INCLUDE_HEADERS)'; for h in $$list; \ @@ -220,7 +220,7 @@ uninstall: $(OBJS) $(RM) $(INCLUDEDIR2)/$$h; \ done for d in widget vterm util output/tty output menu input dialog; \ - do \ + do \ rmdir $(INCLUDEDIR2)/$$d; \ done rmdir $(INCLUDEDIR2) diff --git a/final/fconfig.h b/final/fconfig.h index 1018ccfc..1787b7d1 100644 --- a/final/fconfig.h +++ b/final/fconfig.h @@ -188,7 +188,7 @@ /* Define to the full name and version of this package. */ #ifndef F_PACKAGE_STRING -#define F_PACKAGE_STRING "finalcut 0.7.2" +#define F_PACKAGE_STRING "finalcut 0.8.0" #endif /* Define to the one symbol short name of this package. */ @@ -203,7 +203,7 @@ /* Define to the version of this package. */ #ifndef F_PACKAGE_VERSION -#define F_PACKAGE_VERSION "0.7.2" +#define F_PACKAGE_VERSION "0.8.0" #endif /* Define to 1 if you have the ANSI C header files. */ @@ -235,7 +235,7 @@ /* Version number of package */ #ifndef F_VERSION -#define F_VERSION "0.7.2" +#define F_VERSION "0.8.0" #endif /* Define to 1 if on MINIX. */ diff --git a/sonar-project.properties b/sonar-project.properties index 3f8f87b0..c317dc82 100644 --- a/sonar-project.properties +++ b/sonar-project.properties @@ -1,7 +1,7 @@ sonar.organization=gansm sonar.projectKey=gansm_finalcut sonar.projectName=finalcut -sonar.projectVersion=0.7.2 +sonar.projectVersion=0.8.0 sonar.projectDescription=A text-based widget toolkit #----------------------------------------------------------------------