Skip to content
This repository was archived by the owner on Feb 10, 2025. It is now read-only.

Commit 4f88c68

Browse files
author
marek.gvora
committed
updated 3rd party libs
1 parent 9079e26 commit 4f88c68

File tree

8 files changed

+9
-11
lines changed

8 files changed

+9
-11
lines changed

HmiPublisher/HmiPublisher/HmiPublisher.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
</ItemGroup>
2626

2727
<ItemGroup>
28-
<PackageReference Include="ModernWpfUI" Version="0.9.5" />
28+
<PackageReference Include="ModernWpfUI" Version="0.9.7-preview.2" />
2929
</ItemGroup>
3030

3131
<ItemGroup>

HmiPublisher/HmiPublisher/MainViewModel.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ public MainViewModel()
200200
{
201201
SwitchCurrentPage(Views.Edit);
202202

203-
var item = new RemoteWrapper(new Remote() { Name = "---------" });
203+
var item = new RemoteWrapper(new Remote());
204204
Items.Add(item);
205205
SelectedItem = item;
206206
});

HmiPublisher/HmiPublisher/OverviewView.xaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
<StackPanel Opacity="{Binding Path=Include, Converter={StaticResource IncludeToOpacityConverter}}">
3535
<StackPanel Orientation="Horizontal">
3636
<Label Content="{Binding Name}" FontSize="16" FontWeight="Bold" />
37-
<Label Content="{Binding IpAddress}" FontSize="11" Foreground="Gray" Margin="5,0,0,2" VerticalAlignment="Bottom" FontWeight="SemiBold"/>
37+
<Label Content="{Binding IpAddress}" FontSize="10" Margin="5,0,0,2" VerticalAlignment="Bottom" FontWeight="SemiBold"/>
3838
</StackPanel>
3939

4040
<Label Content="{Binding ProgressMessage,UpdateSourceTrigger=PropertyChanged}" FontWeight="SemiBold" Padding="0,0,0,5" FontSize="14"

HmiPublisher/HmiPublisher/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.23.0.0
1+
3.24.0.0

HmiPublisher/HmiPublisherServer/WaitingWindow.xaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
<TextBlock FontSize="40"
4242
Foreground="White"
4343
HorizontalAlignment="Center"
44-
Text="Updating visualization ..."
44+
Text="Updating HMI ..."
4545
FontFamily="Segoe UI"/>
4646
<TextBlock FontSize="33"
4747
Foreground="White"

TeamViewerQuickConnect/TeamViewerQuickConnect/QuickConnect.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
3131
</PackageReference>
3232
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="3.1.25" />
33-
<PackageReference Include="ModernWpfUI" Version="0.9.5" />
33+
<PackageReference Include="ModernWpfUI" Version="0.9.7-preview.2" />
3434
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
3535
</ItemGroup>
3636

TeamViewerQuickConnect/TeamViewerQuickConnect/SettingsWindow.xaml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,11 @@
2222
</Window.Resources>
2323

2424
<ui:SimpleStackPanel Margin="12">
25-
<Label Content="TeamViewer FilePath"/>
26-
<TextBox Text="{Binding TeamViewerPath,UpdateSourceTrigger=PropertyChanged}" Name="PathTextBox"/>
25+
<TextBox ui:ControlHelper.Header="TeamViewer FilePath" Text="{Binding TeamViewerPath,UpdateSourceTrigger=PropertyChanged}" Name="PathTextBox"/>
2726

2827
<Grid Height="5"/>
2928

30-
<Label Content="Theme"/>
31-
<ComboBox SelectionChanged="ComboBox_SelectionChanged" HorizontalAlignment="Stretch" MinWidth="100" Grid.Column="1" ItemsSource="{Binding Source={StaticResource themeEnumProvider}}"
29+
<ComboBox ui:ControlHelper.Header="Theme" SelectionChanged="ComboBox_SelectionChanged" HorizontalAlignment="Stretch" MinWidth="100" Grid.Column="1" ItemsSource="{Binding Source={StaticResource themeEnumProvider}}"
3230
SelectedItem="{Binding Theme,Mode=TwoWay,UpdateSourceTrigger=PropertyChanged}">
3331
<ComboBox.ItemTemplate>
3432
<DataTemplate>
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.24.0.0
1+
1.25.0.0

0 commit comments

Comments
 (0)