| @@ -1,7 +1,7 @@ | |||
| cmake_minimum_required(VERSION 3.8) | |||
| project(espeak-ng | |||
| VERSION 1.52.0.1 | |||
| VERSION 1.52.0 | |||
| DESCRIPTION "open source speech synthesizer that supports more than hundred languages and accents" | |||
| HOMEPAGE_URL "https://github.com/espeak-ng/espeak-ng" | |||
| ) | |||
| @@ -7,12 +7,20 @@ | |||
| The espeak-ng project is a fork of the espeak project. | |||
| ### 1.52 (In Development) | |||
| ### 1.52.0 | |||
| * Add stress marks to phoneme events (Rotem Dan) | |||
| attention! this is the last release witch support the autoconf build system. use cmake to compile espeak-ng. | |||
| * added cmake build system -- djphoenix | |||
| * Added stress marks to phoneme events -- Rotem Dan | |||
| bug fixes: | |||
| * a meny fixes to core C code -- djphoenix | |||
| android: | |||
| * Added directBoot support -- beqabeqa473 | |||
| * Integrated ndk-build step into main gradle pipeline | |||
| updated languages: | |||
| * ba (Bashkir) -- Andiv06 | |||
| @@ -1,7 +1,7 @@ | |||
| <?xml version="1.0" encoding="utf-8"?> | |||
| <manifest xmlns:android="http://schemas.android.com/apk/res/android" | |||
| android:versionCode="20" | |||
| android:versionName="1.52-dev" > | |||
| android:versionCode="22" | |||
| android:versionName="1.52.0" > | |||
| <uses-feature | |||
| android:name="android.hardware.touchscreen" | |||
| @@ -39,7 +39,7 @@ android { | |||
| minSdk 21 | |||
| targetSdk 33 | |||
| versionCode 22 | |||
| versionName "1.52-dev" | |||
| versionName "1.52.0" | |||
| externalNativeBuild { | |||
| cmake { | |||
| @@ -1,2 +1,2 @@ | |||
| // This is created by autoconf on POSIX-compatibe build environments. | |||
| #define PACKAGE_VERSION "1.52-dev" | |||
| #define PACKAGE_VERSION "1.52.0" | |||
| @@ -1,5 +1,5 @@ | |||
| AC_PREREQ([2.63]) | |||
| AC_INIT([eSpeak NG], [1.52-dev], [https://github.com/espeak-ng/espeak-ng/issues], [espeak-ng], [https://github.com/espeak-ng/espeak-ng]) | |||
| AC_INIT([eSpeak NG], [1.52.0], [https://github.com/espeak-ng/espeak-ng/issues], [espeak-ng], [https://github.com/espeak-ng/espeak-ng]) | |||
| AM_INIT_AUTOMAKE() | |||
| LT_INIT | |||
| @@ -9,4 +9,4 @@ | |||
| #define _CRT_NONSTDC_NO_DEPRECATE | |||
| // This is created by autoconf on POSIX-compatibe build environments. | |||
| #define PACKAGE_VERSION "1.52-dev" | |||
| #define PACKAGE_VERSION "1.52.0" | |||