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

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

+ 10
- 2
ChangeLog.md View File

@@ -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

+ 2
- 2
android/AndroidManifest.xml View File

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

+ 1
- 1
android/build.gradle View File

@@ -39,7 +39,7 @@ android {
minSdk 21
targetSdk 33
versionCode 22
versionName "1.52-dev"
versionName "1.52.0"

externalNativeBuild {
cmake {

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

@@ -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
- 1
configure.ac View File

@@ -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


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

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

Loading…
Cancel
Save