[dasher: 17/61] Preparation for 5.0 beta release.
- From: Patrick Welche <pwelche src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [dasher: 17/61] Preparation for 5.0 beta release.
- Date: Thu, 28 Dec 2017 10:04:01 +0000 (UTC)
commit 01f1409fabd4b89bbf7101234c24e2f1cff77519
Author: Ada Majorek <amajorek google com>
Date: Thu Apr 7 15:17:00 2016 -0700
Preparation for 5.0 beta release.
Src/Installer/Dasher.wxs | 16 ++++++++--------
Src/Installer/Installer.wixproj | 2 +-
Src/Win32/Dasher.rc | 10 +++++-----
3 files changed, 14 insertions(+), 14 deletions(-)
---
diff --git a/Src/Installer/Dasher.wxs b/Src/Installer/Dasher.wxs
index ec360f4..777f386 100644
--- a/Src/Installer/Dasher.wxs
+++ b/Src/Installer/Dasher.wxs
@@ -1,17 +1,17 @@
<?xml version="1.0" encoding="utf-8"?>
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
- <Product Name="Dasher 5.00-alpha"
+ <Product Name="Dasher 5.00-beta"
Id="d72a4885-f5b8-4dd2-99f1-a9b284135f5f"
Language="1033"
Codepage="1252"
- Version="4.99.1"
+ Version="4.99.2"
Manufacturer="The Dasher Project"
UpgradeCode="47c6c060-524d-49d7-90bf-d4a837947a2f">
- <Package Keywords="Installer" Description="Dasher 5.00-alpha Installer"
+ <Package Keywords="Installer" Description="Dasher 5.00-beta Installer"
Comments="This will install Dasher" Manufacturer="The Dasher Project"
InstallerVersion="100" Languages="1033" Compressed="yes" SummaryCodepage="1252"/>
<Media Id="1" Cabinet="Sample.cab" EmbedCab="yes" DiskPrompt="CD-ROM #1"/>
- <Property Id="DiskPrompt" Value="Dasher 5.00-alpha Installation [1]"/>
+ <Property Id="DiskPrompt" Value="Dasher 5.00-beta Installation [1]"/>
<Directory Id="TARGETDIR" Name="SourceDir">
<Directory Id="ProgramFilesFolder" Name="PFiles">
<Directory Id="Dasher" Name="Dasher">
@@ -235,9 +235,9 @@
</Directory>
</Directory>
<Directory Id="ProgramMenuFolder" Name="Programs">
- <Directory Id="ProgramMenuDir" Name="Dasher 5.00-alpha">
+ <Directory Id="ProgramMenuDir" Name="Dasher 5.00">
<Component Id="ProgramShortcuts"
Guid="D28C2189-5E40-4f93-B42E-0CD76D8B5B37" KeyPath="no">
- <Shortcut Id="pmfShortcutDasher" Name="Dasher 5.00 alpha" Target="[#DasherEXE]"
WorkingDirectory="INSTALLDIR" Icon="Dasher.exe" IconIndex="0"/>
+ <Shortcut Id="pmfShortcutDasher" Name="Dasher 5.00 beta" Target="[#DasherEXE]"
WorkingDirectory="INSTALLDIR" Icon="Dasher.exe" IconIndex="0"/>
<Shortcut Id="pmfShortcutDasherSpeak" Name="Dasher for conversation" Target="[#DasherEXE]"
Arguments="/config speak" WorkingDirectory="INSTALLDIR" Icon="Dasher.exe" IconIndex="0"/>
<Shortcut Id="pmfShortcutDasherPreparedSpeech" Name="Dasher for speeches" Target="[#DasherEXE]"
Arguments="/config prepared_speech" WorkingDirectory="INSTALLDIR" Icon="Dasher.exe" IconIndex="0"/>
<Shortcut Id="pmfShortcutDasherDirect" Name="Dasher direct entry" Target="[#DasherEXE]"
Arguments="/config direct" WorkingDirectory="INSTALLDIR" Icon="Dasher.exe" IconIndex="0"/>
@@ -249,7 +249,7 @@
</Directory>
<Directory Id="DesktopFolder" Name="Desktop">
<Component Id="DesktopShortcuts" Guid="113e7f55-fb83-40a6-8bec-9a143a90434c" KeyPath="no">
- <Shortcut Id="desktopShortcutDasher" Name="Dasher 5.00 alpha" Target="[#DasherEXE]"
WorkingDirectory="INSTALLDIR" Icon="Dasher.exe" IconIndex="0"/>
+ <Shortcut Id="desktopShortcutDasher" Name="Dasher 5.00 beta" Target="[#DasherEXE]"
WorkingDirectory="INSTALLDIR" Icon="Dasher.exe" IconIndex="0"/>
<Shortcut Id="desktopShortcutDasherSpeak" Name="Dasher for conversation" Target="[#DasherEXE]"
Arguments="/config speak" WorkingDirectory="INSTALLDIR" Icon="Dasher.exe" IconIndex="0"/>
<Shortcut Id="desktopShortcutDasherPreparedSpeech" Name="Dasher for speeches"
Target="[#DasherEXE]" Arguments="/config prepared_speech" WorkingDirectory="INSTALLDIR" Icon="Dasher.exe"
IconIndex="0"/>
<Shortcut Id="desktopShortcutDasherDirect" Name="Dasher direct entry" Target="[#DasherEXE]"
Arguments="/config direct" WorkingDirectory="INSTALLDIR" Icon="Dasher.exe" IconIndex="0"/>
@@ -260,7 +260,7 @@
</Directory>
</Directory>
- <Feature Id="Complete" Title="Dasher 5.00-alpha" Description="The full Dasher installation."
Display="expand" Level="1" ConfigurableDirectory="INSTALLDIR">
+ <Feature Id="Complete" Title="Dasher 5.00-beta" Description="The full Dasher installation."
Display="expand" Level="1" ConfigurableDirectory="INSTALLDIR">
<ComponentRef Id="MainExecutable"/>
<ComponentRef Id="ProgramShortcuts"/>
<ComponentRef Id="DesktopShortcuts"/>
diff --git a/Src/Installer/Installer.wixproj b/Src/Installer/Installer.wixproj
index b13e3c0..ad701fb 100644
--- a/Src/Installer/Installer.wixproj
+++ b/Src/Installer/Installer.wixproj
@@ -5,7 +5,7 @@
<ProductVersion>3.0</ProductVersion>
<ProjectGuid>{bbe9e817-e2c5-4081-9612-0738e27cf55a}</ProjectGuid>
<SchemaVersion>2.0</SchemaVersion>
- <OutputName>Dasher 5.00-alpha</OutputName>
+ <OutputName>Dasher 5.00-beta</OutputName>
<OutputType>Package</OutputType>
<WixToolPath>$(WIX)\bin\</WixToolPath>
</PropertyGroup>
diff --git a/Src/Win32/Dasher.rc b/Src/Win32/Dasher.rc
index c417f99..88921ef 100644
--- a/Src/Win32/Dasher.rc
+++ b/Src/Win32/Dasher.rc
@@ -96,7 +96,7 @@ FONT 8, "MS Shell Dlg", 0, 0, 0x0
BEGIN
DEFPUSHBUTTON "OK",IDOK,185,130,50,14
ICON IDI_DASHER,IDC_MYICON,23,18,20,20
- LTEXT "Dasher 5.00-alpha",IDC_STATIC,67,18,168,10,SS_NOPREFIX
+ LTEXT "Dasher 5.00-beta",IDC_STATIC,67,18,168,10,SS_NOPREFIX
LTEXT "Copyright (C) 1998-2016 The Dasher Project",IDC_STATIC,67,30,168,10
LTEXT "dasher inf phy cam ac uk",IDC_STATIC,67,63,168,10
LTEXT "https://github.com/ipomoena/dasher",IDC_STATIC,67,53,168,10
@@ -355,8 +355,8 @@ END
//
VS_VERSION_INFO VERSIONINFO
- FILEVERSION 4,99,9996,1
- PRODUCTVERSION 4,99,9996,1
+ FILEVERSION 4,99,9998,1
+ PRODUCTVERSION 4,99,9998,1
FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
FILEFLAGS 0x3L
@@ -374,12 +374,12 @@ BEGIN
VALUE "Comments", "Dasher is an information efficient text-entry system controlled by a pointer
or switch. It is licensed under the GPL."
VALUE "CompanyName", "Inference Group, Cavendish Laboratory, University of Cambridge"
VALUE "FileDescription", "Dasher"
- VALUE "FileVersion", "4.99.9996.1"
+ VALUE "FileVersion", "4.99.9998.1"
VALUE "InternalName", "Dasher"
VALUE "LegalCopyright", "Copyright � 1998-2016 The Dasher Project"
VALUE "OriginalFilename", "dasher.exe"
VALUE "ProductName", "Dasher"
- VALUE "ProductVersion", "4.99.9996.1"
+ VALUE "ProductVersion", "4.99.9998.1"
END
END
BLOCK "VarFileInfo"
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]