13 Commits

Author SHA1 Message Date
a38d0d76d4 Merge branch 'release-v2.3.2' 2017-03-06 06:20:12 +01:00
b417107d33 Write version info. 2017-03-06 06:19:46 +01:00
118a822332 Bump version, write history. 2017-03-06 06:19:25 +01:00
12bb372137 Use 500 ms delay to display FirstRunView. 2017-03-06 06:17:24 +01:00
c23fd4986d Fix SettingsRepositoryTest. 2017-03-06 06:17:11 +01:00
cc0573c326 Fix display of welcome screen.
- Repariert: Willkommensdialog mit der Auswahl des Modus wurde technisch nicht gut angezeigt.
2017-03-06 06:12:16 +01:00
dc6e1f9eaf Update some screenshots. 2017-03-04 05:48:15 +01:00
b9be245227 Merge branch 'release-2.3.1' into develop 2017-03-03 21:52:29 +01:00
eb524689b2 Merge branch 'release-2.3.1' 2017-03-03 21:52:09 +01:00
14b4de52c7 Update version info file. 2017-03-03 21:52:04 +01:00
f0f234ad9f Bump version and write history. 2017-03-03 21:50:51 +01:00
9653403189 Fix some views.
- Repariert: Der Begrüßungsdialog war manchmal hinter Word verborgen.
2017-03-03 21:49:49 +01:00
da2057bd26 Merge branch 'release-2.3.0' into develop 2017-03-03 16:25:03 +01:00
12 changed files with 47 additions and 18 deletions

View File

@ -1,3 +1,19 @@
Version 2.3.2 (2017-03-06)
------------------------------------------------------------------------
- Repariert: Willkommensdialog mit der Auswahl des Modus wurde technisch nicht gut angezeigt.
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
Version 2.3.1 (2017-03-03)
------------------------------------------------------------------------
- Repariert: Der Begrüßungsdialog war manchmal hinter Word verborgen.
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
Version 2.3.0 (2017-03-03)
------------------------------------------------------------------------

View File

@ -27,18 +27,18 @@ namespace Tests.Controller
[TestFixture]
class SettingsRepositoryTest
{
string _savedSettings;
SettingsRepository _savedRepository;
[SetUp]
public void SetUp()
{
_savedSettings = zaaReloaded2.UserSettings.Default.SettingsRepository;
_savedRepository = zaaReloaded2.UserSettings.Default.SettingsRepository;
}
[TearDown]
public void TearDown()
{
zaaReloaded2.UserSettings.Default.SettingsRepository = _savedSettings;
zaaReloaded2.UserSettings.Default.SettingsRepository = _savedRepository;
zaaReloaded2.UserSettings.Default.Save();
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 21 KiB

After

Width:  |  Height:  |  Size: 22 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.8 KiB

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 24 KiB

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 29 KiB

After

Width:  |  Height:  |  Size: 39 KiB

View File

@ -1,4 +1,4 @@
2.3.0
2.3.2
https://doktorkraus.de/zaareloaded/downloads/zaaReloaded-$VERSION.exe
b91672aa1989b7dae8a77192983561b542b3b80fafad3a0d219f9cff5ddd1599 ../deploy/releases/zaaReloaded-2.3.0.exe
49d8383326222a88ce447a7c97eba596ffd5782f307f8730ffac83743821949f deploy/releases/zaaReloaded-2.3.2.exe

View File

@ -26,6 +26,7 @@ using System.Windows.Input;
using System.Windows.Controls;
using System.Windows.Media;
using System.Configuration;
using System.Windows.Threading;
namespace zaaReloaded2
{
@ -89,7 +90,12 @@ namespace zaaReloaded2
Updater.Version.Current.ToString()
);
ViewModels.FirstRunViewModel.InjectIntoIfNeeded<Views.FirstRunView>();
_dispatcher = Dispatcher.CurrentDispatcher;
System.Threading.Timer timer = new System.Threading.Timer((obj) =>
{
_dispatcher.Invoke((Action)(() => ViewModels.FirstRunViewModel.InjectIntoIfNeeded<Views.FirstRunView>()), null);
}, null, 500, System.Threading.Timeout.Infinite);
Logger.Info("ThisAddIn_Startup: Finished startup");
}
@ -184,6 +190,7 @@ namespace zaaReloaded2
Ribbon _ribbon;
string _oldCaption;
UpdaterViewModel _updaterVM;
Dispatcher _dispatcher;
#endregion

View File

@ -1,2 +1,2 @@
2.3.0
2.3.0.0
2.3.2
2.3.2.0

View File

@ -19,6 +19,7 @@ using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Bovender.Extensions;
using Bovender.Mvvm;
using Bovender.Mvvm.ViewModels;
@ -43,7 +44,7 @@ namespace zaaReloaded2.ViewModels
if (UserSettings.Default.FirstRun)
{
FirstRunViewModel vm = new FirstRunViewModel();
vm.InjectInto<T>().Show();
vm.InjectInto<T>().ShowInForm();
}
}

View File

@ -23,7 +23,7 @@
xmlns:b="clr-namespace:Bovender.Mvvm.Views.Settings;assembly=Bovender"
xmlns:i="http://schemas.microsoft.com/expression/2010/interactivity"
xmlns:action="clr-namespace:Bovender.Mvvm.Actions;assembly=Bovender"
Width="520" Height="320"
Width="540" Height="360"
Icon="pack://application:,,,/zaaReloaded2;component/Icons/icon.png"
ShowInTaskbar="False" ResizeMode="NoResize"
b:WindowState.CenterScreen="True" b:WindowState.Save="True"

View File

@ -23,9 +23,9 @@
xmlns:b="clr-namespace:Bovender.Mvvm.Views.Settings;assembly=Bovender"
xmlns:i="http://schemas.microsoft.com/expression/2010/interactivity"
xmlns:action="clr-namespace:Bovender.Mvvm.Actions;assembly=Bovender"
Width="600" Height="420"
Width="640" Height="460"
ResizeMode="CanResizeWithGrip" ShowInTaskbar="True"
MinWidth="460" MinHeight="400"
MinWidth="460" MinHeight="460"
b:WindowState.CenterScreen="True" b:WindowState.Save="True"
Title="Stil bearbeiten"
FocusManager.FocusedElement="{Binding ElementName=NameTextBox}"
@ -63,8 +63,8 @@
SelectedItem="{Binding ReferenceStyle.SelectedItem}"
x:Name="ReferenceStyleChooser" HorizontalAlignment="Stretch" />
</DockPanel>
<StackPanel DockPanel.Dock="Top" Margin="0 10 0 0" Orientation="Horizontal">
<Label Content="Auszeichnung pathologischer Werte:" Margin="0 0 10 0"
<DockPanel DockPanel.Dock="Top" Margin="0 10 0 0">
<Label DockPanel.Dock="Left" Content="Auszeichnung pathologischer Werte:" Margin="0 0 10 0"
Target="{Binding ElementName=AbnormalStyleChooser}" />
<StackPanel Orientation="Horizontal" VerticalAlignment="Center">
<ToggleButton IsChecked="{Binding AbnormalBold}" Height="25" Width="25">
@ -77,10 +77,15 @@
<TextBlock TextDecorations="Underline">U</TextBlock>
</ToggleButton>
</StackPanel>
<CheckBox IsChecked="{Binding PreferVerboseMolar}" Margin="20 5 10 0">
mmol/l statt mM
</CheckBox>
</StackPanel>
</DockPanel>
<DockPanel DockPanel.Dock="Top" Margin="5 10 0 0">
<StackPanel Orientation="Horizontal">
<Label Content="Einheiten:" Padding="0 0 10 0" />
<CheckBox IsChecked="{Binding PreferVerboseMolar}">
mmol/l statt mM
</CheckBox>
</StackPanel>
</DockPanel>
<StackPanel DockPanel.Dock="Bottom" Orientation="Horizontal" HorizontalAlignment="Right">
<Button Command="{Binding CloseViewCommand}" Content="Schließen" IsDefault="True" IsCancel="True"
Margin="0 10 0 0" />