Skip to content

Commit

Permalink
V 0.92 Release
Browse files Browse the repository at this point in the history
- Updates and improvements since last release:
	- Now localized in 15 languages
	- UI and logic updates to Intra-aortic Balloon Pump
	- Logic updates to other devices for improved realism across
devices
	- Realism improvements to waveforms and timing
	- Development areas removed from release version
		- Release is fully functional
  • Loading branch information
tanjera committed Apr 13, 2019
1 parent 75901db commit ed63450
Show file tree
Hide file tree
Showing 8 changed files with 90 additions and 52 deletions.
2 changes: 1 addition & 1 deletion II_Core/Classes/Utility.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ namespace II {

public static class Utility {

public const string Version = "0.91";
public const string Version = "0.92";

public static double Time {
get { return (double)(DateTime.UtcNow - System.Diagnostics.Process.GetCurrentProcess ().StartTime.ToUniversalTime ()).TotalSeconds; }
Expand Down
2 changes: 1 addition & 1 deletion II_Windows/II_Windows.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
<UpdateRequired>false</UpdateRequired>
<MapFileExtensions>true</MapFileExtensions>
<ApplicationRevision>0</ApplicationRevision>
<ApplicationVersion>0.91.07.0</ApplicationVersion>
<ApplicationVersion>0.92.0.0</ApplicationVersion>
<UseApplicationTrust>false</UseApplicationTrust>
<PublishWizardCompleted>true</PublishWizardCompleted>
<BootstrapperEnabled>true</BootstrapperEnabled>
Expand Down
81 changes: 42 additions & 39 deletions II_Windows/Windows/PatientEditor.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
Title="PatientEditor"
Icon="{StaticResource Icon_Infirmary}"
WindowStartupLocation="CenterScreen"
Height="650" Width="700" SizeToContent="Width"
Height="530" Width="700" SizeToContent="Width"
Closed="OnClosed">

<Window.InputBindings>
Expand Down Expand Up @@ -136,7 +136,14 @@
<Label Name="lblDevice12LeadECG" Style="{StaticResource deviceLabel}" />
</StackPanel>
</Button>
<Button Name="btnDeviceDefibrillator" Click="ButtonDeviceDefib_Click" Style="{StaticResource deviceButton}">
<Button Name="btnDeviceIABP" Click="ButtonDeviceIABP_Click" Style="{StaticResource deviceButton}">
<StackPanel Orientation="Horizontal">
<Image Source="{StaticResource Icon_DeviceIABP}" Style="{StaticResource deviceImage}" />
<Label Name="lblDeviceIABP" Style="{StaticResource deviceLabel}" />
</StackPanel>
</Button>
<Button Name="btnDeviceDefibrillator" Click="ButtonDeviceDefib_Click" Style="{StaticResource deviceButton}"
Visibility="Hidden">
<StackPanel Orientation="Horizontal">
<Image Source="{StaticResource Icon_DeviceDefibrillator}" Style="{StaticResource deviceImage}" />
<Label Name="lblDeviceDefibrillator" Style="{StaticResource deviceLabel}" />
Expand All @@ -150,12 +157,6 @@
</StackPanel>
</Button>
-->
<Button Name="btnDeviceIABP" Click="ButtonDeviceIABP_Click" Style="{StaticResource deviceButton}">
<StackPanel Orientation="Horizontal">
<Image Source="{StaticResource Icon_DeviceIABP}" Style="{StaticResource deviceImage}" />
<Label Name="lblDeviceIABP" Style="{StaticResource deviceLabel}" />
</StackPanel>
</Button>
<!--
<Button Name="btnDeviceEFM" Style="{StaticResource deviceButton}" IsEnabled="False">
<StackPanel Orientation="Horizontal">
Expand Down Expand Up @@ -287,36 +288,6 @@
</Expander>
</Border>


<!-- Group for Respiratory Profile -->
<Border Style="{StaticResource expBorder}">
<Expander Name="expRespiratoryProfile" IsExpanded="False" Style="{StaticResource expParameters}">
<Expander.Header>
<Label Name="lblGroupRespiratoryProfile" Style="{StaticResource expHeader}"/>
</Expander.Header>

<Grid Margin="3">
<Grid.RowDefinitions>
<RowDefinition Height="Auto" />
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="Auto" />
<ColumnDefinition Width="Auto" />
<ColumnDefinition Width="Auto" />
<ColumnDefinition Width="Auto" />
</Grid.ColumnDefinitions>

<Label Name="lblInspiratoryRatio" Grid.Column="0" Grid.Row="0" />
<xctk:IntegerUpDown Name="numInspiratoryRatio" Increment="1" Minimum="0" Maximum="50"
Grid.Column="1" Grid.Row="0" Style="{StaticResource intUpDown}" />
<Label Name="lblExpiratoryRatio" Grid.Column="2" Grid.Row="0" Content=":" />
<xctk:IntegerUpDown Name="numExpiratoryRatio" Increment="1" Minimum="0" Maximum="50"
Grid.Column="3" Grid.Row="0" Style="{StaticResource intUpDown}" />
</Grid>
</Expander>
</Border>


<!-- Group for Cardiac Profile -->
<Border Style="{StaticResource expBorder}">
<Expander Name="expCardiacProfile" IsExpanded="False" Style="{StaticResource expParameters}">
Expand Down Expand Up @@ -451,9 +422,41 @@
</Expander>
</Border>

<!-- Group for Respiratory Profile -->
<!-- <Border Style="{StaticResource expBorder}"> -->
<Expander Name="expRespiratoryProfile" IsExpanded="False"
Visibility="Hidden" Height="0"
Style="{StaticResource expParameters}">
<Expander.Header>
<Label Name="lblGroupRespiratoryProfile" Style="{StaticResource expHeader}"/>
</Expander.Header>

<Grid Margin="3">
<Grid.RowDefinitions>
<RowDefinition Height="Auto" />
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="Auto" />
<ColumnDefinition Width="Auto" />
<ColumnDefinition Width="Auto" />
<ColumnDefinition Width="Auto" />
</Grid.ColumnDefinitions>

<Label Name="lblInspiratoryRatio" Grid.Column="0" Grid.Row="0" />
<xctk:IntegerUpDown Name="numInspiratoryRatio" Increment="1" Minimum="0" Maximum="50"
Grid.Column="1" Grid.Row="0" Style="{StaticResource intUpDown}" />
<Label Name="lblExpiratoryRatio" Grid.Column="2" Grid.Row="0" Content=":" />
<xctk:IntegerUpDown Name="numExpiratoryRatio" Increment="1" Minimum="0" Maximum="50"
Grid.Column="3" Grid.Row="0" Style="{StaticResource intUpDown}" />
</Grid>
</Expander>
<!-- </Border> -->

<!-- Group for Obstetric Profile -->
<!-- <Border Style="{StaticResource expBorder}" IsEnabled="False"> -->
<Expander Name="expObstetricProfile" IsExpanded="False" Visibility="Hidden" Style="{StaticResource expParameters}">
<Expander Name="expObstetricProfile" IsExpanded="False"
Visibility="Hidden" Height="0"
Style="{StaticResource expParameters}">
<Expander.Header>
<Label Name="lblGroupObstetricProfile" Style="{StaticResource expHeader}"/>
</Expander.Header>
Expand Down
57 changes: 46 additions & 11 deletions Installer_Windows/Installer_Windows.vdproj
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
"Entry"
{
"MsmKey" = "8:_73EE134B230D72832097CE5FA6AA31AF"
"OwnerKey" = "8:_CA6CA3B047BF389843FD10485A0C8346"
"OwnerKey" = "8:_0174027EC844C8A3955BA7C78AEFD0C9"
"MsmSig" = "8:_UNDEFINED"
}
"Entry"
Expand All @@ -64,7 +64,7 @@
"Entry"
{
"MsmKey" = "8:_73EE134B230D72832097CE5FA6AA31AF"
"OwnerKey" = "8:_0174027EC844C8A3955BA7C78AEFD0C9"
"OwnerKey" = "8:_CA6CA3B047BF389843FD10485A0C8346"
"MsmSig" = "8:_UNDEFINED"
}
"Entry"
Expand Down Expand Up @@ -100,19 +100,19 @@
"Entry"
{
"MsmKey" = "8:_UNDEFINED"
"OwnerKey" = "8:_6B13C03ECD5C1F7C64B567A474C79D0F"
"OwnerKey" = "8:_8E7C138FD121C43470EA1010A3C321C6"
"MsmSig" = "8:_UNDEFINED"
}
"Entry"
{
"MsmKey" = "8:_UNDEFINED"
"OwnerKey" = "8:_73EE134B230D72832097CE5FA6AA31AF"
"OwnerKey" = "8:_2520863D48805E79F141DB73EA4B6FC3"
"MsmSig" = "8:_UNDEFINED"
}
"Entry"
{
"MsmKey" = "8:_UNDEFINED"
"OwnerKey" = "8:_CA6CA3B047BF389843FD10485A0C8346"
"OwnerKey" = "8:_0174027EC844C8A3955BA7C78AEFD0C9"
"MsmSig" = "8:_UNDEFINED"
}
"Entry"
Expand All @@ -124,19 +124,19 @@
"Entry"
{
"MsmKey" = "8:_UNDEFINED"
"OwnerKey" = "8:_0174027EC844C8A3955BA7C78AEFD0C9"
"OwnerKey" = "8:_CA6CA3B047BF389843FD10485A0C8346"
"MsmSig" = "8:_UNDEFINED"
}
"Entry"
{
"MsmKey" = "8:_UNDEFINED"
"OwnerKey" = "8:_2520863D48805E79F141DB73EA4B6FC3"
"OwnerKey" = "8:_73EE134B230D72832097CE5FA6AA31AF"
"MsmSig" = "8:_UNDEFINED"
}
"Entry"
{
"MsmKey" = "8:_UNDEFINED"
"OwnerKey" = "8:_8E7C138FD121C43470EA1010A3C321C6"
"OwnerKey" = "8:_6B13C03ECD5C1F7C64B567A474C79D0F"
"MsmSig" = "8:_UNDEFINED"
}
}
Expand Down Expand Up @@ -241,6 +241,11 @@
"AssemblyAsmDisplayName" = "8:Xceed.Wpf.AvalonDock.Themes.VS2010, Version=3.2.0.0, Culture=neutral, PublicKeyToken=3e4669d2f30244f4, processorArchitecture=MSIL"
"ScatterAssemblies"
{
"_0174027EC844C8A3955BA7C78AEFD0C9"
{
"Name" = "8:Xceed.Wpf.AvalonDock.Themes.VS2010.dll"
"Attributes" = "3:512"
}
}
"SourcePath" = "8:Xceed.Wpf.AvalonDock.Themes.VS2010.dll"
"TargetName" = "8:"
Expand Down Expand Up @@ -287,6 +292,11 @@
"AssemblyAsmDisplayName" = "8:Xceed.Wpf.Toolkit, Version=3.2.0.0, Culture=neutral, PublicKeyToken=3e4669d2f30244f4, processorArchitecture=MSIL"
"ScatterAssemblies"
{
"_2520863D48805E79F141DB73EA4B6FC3"
{
"Name" = "8:Xceed.Wpf.Toolkit.dll"
"Attributes" = "3:512"
}
}
"SourcePath" = "8:Xceed.Wpf.Toolkit.dll"
"TargetName" = "8:"
Expand All @@ -313,6 +323,11 @@
"AssemblyAsmDisplayName" = "8:System.Net.Http, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
"ScatterAssemblies"
{
"_6B13C03ECD5C1F7C64B567A474C79D0F"
{
"Name" = "8:System.Net.Http.dll"
"Attributes" = "3:512"
}
}
"SourcePath" = "8:System.Net.Http.dll"
"TargetName" = "8:"
Expand All @@ -339,6 +354,11 @@
"AssemblyAsmDisplayName" = "8:Xceed.Wpf.AvalonDock, Version=3.2.0.0, Culture=neutral, PublicKeyToken=3e4669d2f30244f4, processorArchitecture=MSIL"
"ScatterAssemblies"
{
"_73EE134B230D72832097CE5FA6AA31AF"
{
"Name" = "8:Xceed.Wpf.AvalonDock.dll"
"Attributes" = "3:512"
}
}
"SourcePath" = "8:Xceed.Wpf.AvalonDock.dll"
"TargetName" = "8:"
Expand All @@ -365,6 +385,11 @@
"AssemblyAsmDisplayName" = "8:Xceed.Wpf.DataGrid, Version=3.2.0.0, Culture=neutral, PublicKeyToken=3e4669d2f30244f4, processorArchitecture=MSIL"
"ScatterAssemblies"
{
"_8E7C138FD121C43470EA1010A3C321C6"
{
"Name" = "8:Xceed.Wpf.DataGrid.dll"
"Attributes" = "3:512"
}
}
"SourcePath" = "8:Xceed.Wpf.DataGrid.dll"
"TargetName" = "8:"
Expand All @@ -391,6 +416,11 @@
"AssemblyAsmDisplayName" = "8:Xceed.Wpf.AvalonDock.Themes.Aero, Version=3.2.0.0, Culture=neutral, PublicKeyToken=3e4669d2f30244f4, processorArchitecture=MSIL"
"ScatterAssemblies"
{
"_CA6CA3B047BF389843FD10485A0C8346"
{
"Name" = "8:Xceed.Wpf.AvalonDock.Themes.Aero.dll"
"Attributes" = "3:512"
}
}
"SourcePath" = "8:Xceed.Wpf.AvalonDock.Themes.Aero.dll"
"TargetName" = "8:"
Expand All @@ -417,6 +447,11 @@
"AssemblyAsmDisplayName" = "8:Xceed.Wpf.AvalonDock.Themes.Metro, Version=3.2.0.0, Culture=neutral, PublicKeyToken=3e4669d2f30244f4, processorArchitecture=MSIL"
"ScatterAssemblies"
{
"_E4DB1866FB15A9353A9AB9E4CBBA3F56"
{
"Name" = "8:Xceed.Wpf.AvalonDock.Themes.Metro.dll"
"Attributes" = "3:512"
}
}
"SourcePath" = "8:Xceed.Wpf.AvalonDock.Themes.Metro.dll"
"TargetName" = "8:"
Expand Down Expand Up @@ -515,15 +550,15 @@
{
"Name" = "8:Microsoft Visual Studio"
"ProductName" = "8:Infirmary Integrated"
"ProductCode" = "8:{577BC89F-C6D0-4537-A69F-6D624359AE2F}"
"PackageCode" = "8:{663D8A19-3853-4983-ADED-AD5829162742}"
"ProductCode" = "8:{9226CBBC-8BC3-4300-AD1D-9A9B3617495A}"
"PackageCode" = "8:{62351D25-666D-4ECB-B87E-5743DCA7D98D}"
"UpgradeCode" = "8:{758648DA-6066-4C3C-93E2-F8A69B5CD407}"
"AspNetVersion" = "8:2.0.50727.0"
"RestartWWWService" = "11:FALSE"
"RemovePreviousVersions" = "11:TRUE"
"DetectNewerInstalledVersion" = "11:TRUE"
"InstallAllUsers" = "11:FALSE"
"ProductVersion" = "8:0.91.07"
"ProductVersion" = "8:0.92"
"Manufacturer" = "8:Tanjera"
"ARPHELPTELEPHONE" = "8:"
"ARPHELPLINK" = "8:"
Expand Down
Binary file removed Releases/infirmary-integrated-0.91.msi
Binary file not shown.
Binary file removed Releases/infirmary-integrated-0.91.zip
Binary file not shown.
Binary file not shown.
Binary file not shown.

0 comments on commit ed63450

Please sign in to comment.