Browse Source

[1.34]

git-svn-id: https://espeak.svn.sourceforge.net/svnroot/espeak/trunk@162 d46cf337-b52f-0410-862d-fd96e6ae7743
master
jonsd 17 years ago
parent
commit
12c26f0bd8

+ 1
- 0
dictsource/es_rules View File

m) g g m) g g
n) g g n) g g
g (Y+ x // ge gi g (Y+ x // ge gi
g (r g




.group h .group h

+ 1
- 1
platforms/windows/make_espeak.iss View File

[Setup] [Setup]
AppName=eSpeak AppName=eSpeak
AppVerName=eSpeak version 1.33
AppVerName=eSpeak version 1.34
AppCopyright=Licensed under GNU General Public License version 3. (See file License.txt for details). AppCopyright=Licensed under GNU General Public License version 3. (See file License.txt for details).
WindowVisible=yes WindowVisible=yes

+ 1
- 1
platforms/windows/make_espeakedit.iss View File

[Setup] [Setup]
AppName=eSpeakEdit AppName=eSpeakEdit
AppVerName=eSpeakEdit version 1.33
AppVerName=eSpeakEdit version 1.34
DefaultDirName={pf}\eSpeak DefaultDirName={pf}\eSpeak
DefaultGroupName=eSpeak DefaultGroupName=eSpeak
OutputBaseFilename=setup_espeakedit OutputBaseFilename=setup_espeakedit

+ 1
- 1
src/synthdata.cpp View File

#include "translate.h" #include "translate.h"
#include "wave.h" #include "wave.h"


const char *version_string = "1.34 06.Mar.08";
const char *version_string = "1.34 07.Mar.08";
const int version_phdata = 0x013400; const int version_phdata = 0x013400;


int option_device_number = -1; int option_device_number = -1;

+ 6
- 6
src/synthesize.cpp View File

// next_pause.ph = phoneme_tab[phonPAUSE]; // this must be done after voice selection // next_pause.ph = phoneme_tab[phonPAUSE]; // this must be done after voice selection
next_pause.type = phPAUSE; next_pause.type = phPAUSE;
next_pause.newword = 0; next_pause.newword = 0;

if(!iswalpha(0x010d))
{
// check that c-caron is recognized as an alphabetic character
fprintf(stderr,"iswalpha() Accented letters are not recognized\n");
}
} }




if(option_phonemes > 0) if(option_phonemes > 0)
{ {
fprintf(f_trans,"%s\n",translator->phon_out); fprintf(f_trans,"%s\n",translator->phon_out);

if(!iswalpha(0x010d))
{
// check that c-caron is recognized as an alphabetic character
fprintf(stderr,"Warning: Accented letters are not recognized, eg: U+010D\n");
}
} }
if(phoneme_callback != NULL) if(phoneme_callback != NULL)
{ {

Loading…
Cancel
Save