Browse Source

Fix the version string references in '--version' and the Windows installer.

master
Reece H. Dunn 8 years ago
parent
commit
f235c7cb00
2 changed files with 2 additions and 2 deletions
  1. 1
    1
      src/libespeak-ng/synthdata.c
  2. 1
    1
      src/windows/installer/Product.wxs

+ 1
- 1
src/libespeak-ng/synthdata.c View File

#include "voice.h" #include "voice.h"
#include "translate.h" #include "translate.h"


const char *version_string = "1.48.15 16.Apr.15";
const char *version_string = PACKAGE_VERSION;
const int version_phdata = 0x014801; const int version_phdata = 0x014801;


// copy the current phoneme table into here // copy the current phoneme table into here

+ 1
- 1
src/windows/installer/Product.wxs View File

<?define PlatformProgramFilesFolder = "ProgramFilesFolder" ?> <?define PlatformProgramFilesFolder = "ProgramFilesFolder" ?>
<?endif ?> <?endif ?>
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi"> <Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
<Product Id="3DA6DF03-E5CD-4A93-B06F-707484742BAB" Name="$(var.ProductDisplayName)" Language="1033" Version="1.48.15.0" Manufacturer="Cainteoir Technologies" UpgradeCode="B4F779EB-AC6C-49D2-A12D-4871E4520C0F">
<Product Id="3DA6DF03-E5CD-4A93-B06F-707484742BAB" Name="$(var.ProductDisplayName)" Language="1033" Version="$(var.ProductVersion)" Manufacturer="Cainteoir Technologies" UpgradeCode="B4F779EB-AC6C-49D2-A12D-4871E4520C0F">
<Package InstallerVersion="200" Compressed="yes" InstallScope="perMachine" Platform="$(var.Platform)" /> <Package InstallerVersion="200" Compressed="yes" InstallScope="perMachine" Platform="$(var.Platform)" />


<MajorUpgrade DowngradeErrorMessage="A newer version of [ProductName] is already installed." /> <MajorUpgrade DowngradeErrorMessage="A newer version of [ProductName] is already installed." />

Loading…
Cancel
Save