Browse Source

Release 1.51

master
Valdis Vitolins 3 years ago
parent
commit
2e9a5fccbb
No account linked to committer's email address
6 changed files with 6 additions and 6 deletions
  1. 1
    1
      CHANGELOG.md
  2. 1
    1
      android/AndroidManifest.xml
  3. 1
    1
      android/build.gradle
  4. 1
    1
      android/jni/include/config.h
  5. 1
    1
      configure.ac
  6. 1
    1
      src/windows/config.h

+ 1
- 1
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.51 (In Development)
### 1.51


* Add support for speechPlayer. * Add support for speechPlayer.
* Add more tests to check the various parts of espeak-ng. * Add more tests to check the various parts of espeak-ng.

+ 1
- 1
android/AndroidManifest.xml View File

<manifest xmlns:android="http://schemas.android.com/apk/res/android" <manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.reecedunn.espeak" package="com.reecedunn.espeak"
android:versionCode="20" android:versionCode="20"
android:versionName="1.51-dev" >
android:versionName="1.51" >


<uses-feature <uses-feature
android:name="android.hardware.touchscreen" android:name="android.hardware.touchscreen"

+ 1
- 1
android/build.gradle View File

minSdkVersion 14 minSdkVersion 14
targetSdkVersion 26 targetSdkVersion 26
versionCode 20 versionCode 20
versionName "1.51-dev"
versionName "1.51"
} }


sourceSets { sourceSets {

+ 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.51-dev"
#define PACKAGE_VERSION "1.51"

+ 1
- 1
configure.ac View File

AC_PREREQ([2.63]) AC_PREREQ([2.63])
AC_INIT([eSpeak NG], [1.51-dev], [https://github.com/espeak-ng/espeak-ng/issues], [espeak-ng], [https://github.com/espeak-ng/espeak-ng])
AC_INIT([eSpeak NG], [1.51], [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.51-dev"
#define PACKAGE_VERSION "1.51"

Loading…
Cancel
Save