Skip to content

Commit

Permalink
Version 0.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
gansm committed Oct 31, 2021
1 parent eaa105c commit 273f1da
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 12 deletions.
3 changes: 3 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
2020-10-31 Markus Gans <guru.mail@muenster.de>
* Version 0.8.0

2021-10-28 Markus Gans <guru.mail@muenster.de>
* The keyboard and timer examples now have flicker-free scrolling

Expand Down
4 changes: 2 additions & 2 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -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])
Expand Down Expand Up @@ -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])

Expand Down
6 changes: 3 additions & 3 deletions final/Makefile.clang
Original file line number Diff line number Diff line change
Expand Up @@ -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 = .
Expand Down Expand Up @@ -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; \
Expand All @@ -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)
Expand Down
6 changes: 3 additions & 3 deletions final/Makefile.gcc
Original file line number Diff line number Diff line change
Expand Up @@ -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 = .
Expand Down Expand Up @@ -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; \
Expand All @@ -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)
Expand Down
6 changes: 3 additions & 3 deletions final/fconfig.h
Original file line number Diff line number Diff line change
Expand Up @@ -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. */
Expand All @@ -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. */
Expand Down Expand Up @@ -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. */
Expand Down
2 changes: 1 addition & 1 deletion sonar-project.properties
Original file line number Diff line number Diff line change
@@ -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

#----------------------------------------------------------------------
Expand Down

0 comments on commit 273f1da

Please sign in to comment.