versies
This commit is contained in:
parent
0cac52369d
commit
9e15a8b3ce
5 changed files with 8 additions and 14 deletions
|
|
@ -241,7 +241,7 @@ namespace MK3
|
|||
WORD Issue();
|
||||
|
||||
~Epd2U();
|
||||
static HANDLE Ev1 = INVALID_HANDLE_VALUE;
|
||||
static HANDLE Ev1 ;
|
||||
static Epd2U* current;
|
||||
static void WINAPI discovery (CommsHandle hComms, DiscoveryId const discovered[], int32_t count);
|
||||
};
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@
|
|||
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi" xmlns:util="http://schemas.microsoft.com/wix/UtilExtension">
|
||||
<?define eDosStation_TargetDir=$(var.eDosStation.TargetDir)?>
|
||||
<?define syncEdosLocal_TargetDir=$(var.syncEdosLocal.TargetDir)?>
|
||||
<Product Id="*" Name="eDosStation" Language="1033" Version="1.0.4.0" Manufacturer="SCK CEN Luc Vandenbroucke" UpgradeCode="24e037ca-edbb-49d5-85d4-3a93dd7d10d8">
|
||||
<Product Id="*" Name="eDosStation" Language="1033" Version="1.2.0.0" Manufacturer="SCK CEN Luc Vandenbroucke" UpgradeCode="24e037ca-edbb-49d5-85d4-3a93dd7d10d8">
|
||||
<Package InstallerVersion="200" Compressed="yes" InstallScope="perMachine" Comments="EPD lees software en synchronisatie tussen local en remote database" InstallPrivileges="elevated" Platform="x86" />
|
||||
<Media Id="1" EmbedCab="yes" Cabinet="cab" />
|
||||
<MajorUpgrade DowngradeErrorMessage="A newer version of [ProductName] is already installed." />
|
||||
|
|
@ -18,15 +18,7 @@
|
|||
<ComponentGroupRef Id="SyncLog" />
|
||||
<ComponentRef Id="eDosSyncShortcut" />
|
||||
</Feature>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</Product>
|
||||
|
||||
<Fragment>
|
||||
<CustomAction Id="CreateScheduledTask" Return="check" Directory="eDosSyncFolder" Execute="deferred" Impersonate="no" ExeCommand=""[SystemFolder]SCHTASKS.EXE" /CREATE /TN "EDos Sync" /RU "eDosStation"/RP "Infopla+8" /XML "[#edossync.xml]"" />
|
||||
<CustomAction Id="DeleteScheduledTask" Return="check" Directory="eDosSyncFolder" Execute="deferred" Impersonate="no" ExeCommand=""[SystemFolder]SCHTASKS.EXE" /DELETE /TN "EDos Sync" /F" />
|
||||
|
|
|
|||
|
|
@ -31,7 +31,7 @@
|
|||
<ColumnDefinition Width="*"/>
|
||||
<ColumnDefinition Width="*"/>
|
||||
</Grid.ColumnDefinitions>
|
||||
<TextBlock Grid.Column="0" Text="HPH eDos" TextAlignment="Left" />
|
||||
<TextBlock Grid.Column="0" Name ="tVersion" Text="HPH eDos v" TextAlignment="Left" />
|
||||
<TextBlock Grid.Column="2" Name="tbTime" Text="..." TextAlignment="Right" />
|
||||
</Grid>
|
||||
<StackPanel DockPanel.Dock="Left" Width="100" />
|
||||
|
|
|
|||
|
|
@ -95,6 +95,8 @@ namespace eDosStation
|
|||
{
|
||||
bool ok = true;
|
||||
string errMsg = string.Empty;
|
||||
tVersion.Text = "HPH eDos "+ System.Reflection.Assembly.GetExecutingAssembly().GetName().Version;
|
||||
|
||||
bgTimer = new DispatcherTimer(DispatcherPriority.Background);
|
||||
bgTimer.Interval = TimeSpan.FromSeconds(60);
|
||||
bgTimer.Tick += BgTimer_Tick;
|
||||
|
|
@ -150,11 +152,11 @@ namespace eDosStation
|
|||
}
|
||||
else
|
||||
ibComment.Visibility = Visibility.Hidden;
|
||||
setLocalStatus();
|
||||
}
|
||||
else
|
||||
setErrorStatus(errMsg);
|
||||
|
||||
BgTimer_Tick(null, null);
|
||||
bgTimer.Start();
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -51,5 +51,5 @@ using System.Windows;
|
|||
// You can specify all the values or you can default the Build and Revision Numbers
|
||||
// by using the '*' as shown below:
|
||||
// [assembly: AssemblyVersion("1.0.*")]
|
||||
[assembly: AssemblyVersion("1.1.0.0")]
|
||||
[assembly: AssemblyFileVersion("1.1.0.0")]
|
||||
[assembly: AssemblyVersion("1.2.0.0")]
|
||||
[assembly: AssemblyFileVersion("1.2.0.0")]
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue