Browse Source

eSpeak NG 1.52-dev

master
Valdis Vitolins 3 years ago
parent
commit
9fc8aa4a54
6 changed files with 7 additions and 5 deletions
  1. 2
    0
      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

+ 2
- 0
CHANGELOG.md View File

@@ -7,6 +7,8 @@

The espeak-ng project is a fork of the espeak project.

### 1.52 (In Development)

### 1.51

* Add support for speechPlayer.

+ 1
- 1
android/AndroidManifest.xml View File

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

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

+ 1
- 1
android/build.gradle View File

@@ -30,7 +30,7 @@ android {
minSdkVersion 14
targetSdkVersion 26
versionCode 20
versionName "1.51"
versionName "1.52-dev"
}

sourceSets {

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

+ 1
- 1
configure.ac View File

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

Loading…
Cancel
Save