Skip to content

Commit

Permalink
tslib 1.19
Browse files Browse the repository at this point in the history
  • Loading branch information
merge committed Jan 24, 2019
1 parent b167893 commit e60153f
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 9 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ project(tslib LANGUAGES C)
option(BUILD_SHARED_LIBS "ON: tslib is build as shared;
OFF: tslib is build as static" ON)
set(LIBTS_VERSION_CURRENT 10)
set(LIBTS_VERSION_REVISION 0)
set(LIBTS_VERSION_REVISION 1)
set(LIBTS_VERSION_AGE 10)

set(PACKAGE_VERSION 1.18+)
set(PACKAGE_VERSION 1.19)
set(tslib_extras_dir ${CMAKE_INSTALL_PREFIX}/etc)
set(TS_POINTERCAL ${tslib_extras_dir}/pointercal)
set(TS_CONF ${tslib_extras_dir}/ts.conf)
Expand Down
6 changes: 4 additions & 2 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@

tslib 1.19 - unreleased
tslib 1.19 - released 2019-01-24
================================
This release includes libts version 0.10.1 and the following changes:
* input-raw / ts_uinput: fix MT type A devices
* ts_calibrate: close framebuffer after validation. add timeout option -s for it

This release includes the following bugfixes:
* input-raw / ts_uinput: fix MT type A devices


tslib 1.18 - released 2018-11-27
================================
Expand Down
4 changes: 2 additions & 2 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Process this file with autoconf to produce a configure script.

AC_PREREQ(2.57)
AC_INIT([tslib], [1.18+], [[email protected]], [tslib], [http://tslib.org])
AC_INIT([tslib], [1.19], [[email protected]], [tslib], [http://tslib.org])
# AC_CONFIG_AUX_DIR(config)
AM_INIT_AUTOMAKE([dist-bzip2 dist-xz subdir-objects])
m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES(yes)]) # use silent rules where available - automake 1.11
Expand Down Expand Up @@ -188,7 +188,7 @@ AS_IF([test "x$with_sdl2" = "xyes"], [
# increment if the interface changed
LT_CURRENT=10
# increment if anything changed. set to 0 if current was incremented!
LT_REVISION=0
LT_REVISION=1
# increment if the interface change is backwards compatible (an addition). set to 0 if not.
LT_AGE=10
AC_SUBST(LT_CURRENT)
Expand Down
2 changes: 1 addition & 1 deletion src/ts_version.c
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
#include "config.h"
#include "tslib.h"

#define LIBTS_DATESTAMP "[unreleased]"
#define LIBTS_DATESTAMP "2019-01-24"

static struct ts_lib_version_data version_data = {
PACKAGE_VERSION,
Expand Down
4 changes: 2 additions & 2 deletions website/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@
<p>
<b>Download tslib</b>
<p>
tslib only provides source archives. The latest release is version <b>1.18</b>
including libts library version 0.10.0, released on the <b>27th of November 2018</b>.
tslib only provides source archives. The latest release is version <b>1.19</b>
including libts library version 0.10.1, released on the <b>24th of January 2019</b>.
Get it from our <a href="https://github.com/kergoth/tslib/releases">release page</a>
(<a href="https://gitlab.com/tslib/tslib/tags">mirror</a>).

Expand Down

0 comments on commit e60153f

Please sign in to comment.