| cmake_minimum_required(VERSION 3.8) | cmake_minimum_required(VERSION 3.8) | ||||
| project(espeak-ng | 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" | DESCRIPTION "open source speech synthesizer that supports more than hundred languages and accents" | ||||
| HOMEPAGE_URL "https://github.com/espeak-ng/espeak-ng" | HOMEPAGE_URL "https://github.com/espeak-ng/espeak-ng" | ||||
| ) | ) |
| The espeak-ng project is a fork of the espeak project. | 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: | android: | ||||
| * Added directBoot support -- beqabeqa473 | * Added directBoot support -- beqabeqa473 | ||||
| * Integrated ndk-build step into main gradle pipeline | |||||
| updated languages: | updated languages: | ||||
| * ba (Bashkir) -- Andiv06 | * ba (Bashkir) -- Andiv06 |
| <?xml version="1.0" encoding="utf-8"?> | <?xml version="1.0" encoding="utf-8"?> | ||||
| <manifest xmlns:android="http://schemas.android.com/apk/res/android" | <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 | <uses-feature | ||||
| android:name="android.hardware.touchscreen" | android:name="android.hardware.touchscreen" |
| minSdk 21 | minSdk 21 | ||||
| targetSdk 33 | targetSdk 33 | ||||
| versionCode 22 | versionCode 22 | ||||
| versionName "1.52-dev" | |||||
| versionName "1.52.0" | |||||
| externalNativeBuild { | externalNativeBuild { | ||||
| cmake { | cmake { |
| // This is created by autoconf on POSIX-compatibe build environments. | // This is created by autoconf on POSIX-compatibe build environments. | ||||
| #define PACKAGE_VERSION "1.52-dev" | |||||
| #define PACKAGE_VERSION "1.52.0" |
| AC_PREREQ([2.63]) | 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() | AM_INIT_AUTOMAKE() | ||||
| LT_INIT | LT_INIT | ||||
| #define _CRT_NONSTDC_NO_DEPRECATE | #define _CRT_NONSTDC_NO_DEPRECATE | ||||
| // This is created by autoconf on POSIX-compatibe build environments. | // This is created by autoconf on POSIX-compatibe build environments. | ||||
| #define PACKAGE_VERSION "1.52-dev" | |||||
| #define PACKAGE_VERSION "1.52.0" |