Browse Source

release 1.52.0

master
Alexander Epaneshnikov 2 years ago
parent
commit
e809effe8e
No account linked to committer's email address
7 changed files with 17 additions and 9 deletions
  1. 1
    1
      CMakeLists.txt
  2. 10
    2
      ChangeLog.md
  3. 2
    2
      android/AndroidManifest.xml
  4. 1
    1
      android/build.gradle
  5. 1
    1
      android/jni/include/config.h
  6. 1
    1
      configure.ac
  7. 1
    1
      src/windows/config.h

+ 1
- 1
CMakeLists.txt View File

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"
) )

+ 10
- 2
ChangeLog.md View File



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

+ 2
- 2
android/AndroidManifest.xml View File

<?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"

+ 1
- 1
android/build.gradle View File

minSdk 21 minSdk 21
targetSdk 33 targetSdk 33
versionCode 22 versionCode 22
versionName "1.52-dev"
versionName "1.52.0"


externalNativeBuild { externalNativeBuild {
cmake { cmake {

+ 1
- 1
android/jni/include/config.h View File

// 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"

+ 1
- 1
configure.ac View File

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



+ 1
- 1
src/windows/config.h View File

#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"

Loading…
Cancel
Save