Skip to content

Commit e60153f

Browse files
committed
tslib 1.19
1 parent b167893 commit e60153f

File tree

5 files changed

+11
-9
lines changed

5 files changed

+11
-9
lines changed

CMakeLists.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@ project(tslib LANGUAGES C)
1717
option(BUILD_SHARED_LIBS "ON: tslib is build as shared;
1818
OFF: tslib is build as static" ON)
1919
set(LIBTS_VERSION_CURRENT 10)
20-
set(LIBTS_VERSION_REVISION 0)
20+
set(LIBTS_VERSION_REVISION 1)
2121
set(LIBTS_VERSION_AGE 10)
2222

23-
set(PACKAGE_VERSION 1.18+)
23+
set(PACKAGE_VERSION 1.19)
2424
set(tslib_extras_dir ${CMAKE_INSTALL_PREFIX}/etc)
2525
set(TS_POINTERCAL ${tslib_extras_dir}/pointercal)
2626
set(TS_CONF ${tslib_extras_dir}/ts.conf)

NEWS

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11

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

7+
This release includes the following bugfixes:
8+
* input-raw / ts_uinput: fix MT type A devices
9+
810

911
tslib 1.18 - released 2018-11-27
1012
================================

configure.ac

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Process this file with autoconf to produce a configure script.
33

44
AC_PREREQ(2.57)
5-
AC_INIT([tslib], [1.18+], [[email protected]], [tslib], [http://tslib.org])
5+
AC_INIT([tslib], [1.19], [[email protected]], [tslib], [http://tslib.org])
66
# AC_CONFIG_AUX_DIR(config)
77
AM_INIT_AUTOMAKE([dist-bzip2 dist-xz subdir-objects])
88
m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES(yes)]) # use silent rules where available - automake 1.11
@@ -188,7 +188,7 @@ AS_IF([test "x$with_sdl2" = "xyes"], [
188188
# increment if the interface changed
189189
LT_CURRENT=10
190190
# increment if anything changed. set to 0 if current was incremented!
191-
LT_REVISION=0
191+
LT_REVISION=1
192192
# increment if the interface change is backwards compatible (an addition). set to 0 if not.
193193
LT_AGE=10
194194
AC_SUBST(LT_CURRENT)

src/ts_version.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
#include "config.h"
1818
#include "tslib.h"
1919

20-
#define LIBTS_DATESTAMP "[unreleased]"
20+
#define LIBTS_DATESTAMP "2019-01-24"
2121

2222
static struct ts_lib_version_data version_data = {
2323
PACKAGE_VERSION,

website/index.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,8 @@
4949
<p>
5050
<b>Download tslib</b>
5151
<p>
52-
tslib only provides source archives. The latest release is version <b>1.18</b>
53-
including libts library version 0.10.0, released on the <b>27th of November 2018</b>.
52+
tslib only provides source archives. The latest release is version <b>1.19</b>
53+
including libts library version 0.10.1, released on the <b>24th of January 2019</b>.
5454
Get it from our <a href="https://github.com/kergoth/tslib/releases">release page</a>
5555
(<a href="https://gitlab.com/tslib/tslib/tags">mirror</a>).
5656

0 commit comments

Comments
 (0)