Skip to content

Commit 6e47a8b

Browse files
committed
Gitignore fix
1 parent 9bbefab commit 6e47a8b

File tree

7 files changed

+14
-12
lines changed

7 files changed

+14
-12
lines changed

.gitignore

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,12 @@ mono_crash.*
2121
[Dd]ebugPublic/
2222
[Rr]elease/
2323
[Rr]eleases/
24-
[Dd]ebug_x64/
25-
[Dd]ebug_x86/
26-
[Rr]elease_x64/
27-
[Rr]elease_x86/
24+
**/x64/
25+
**/x86/
26+
**/Debug_x64/
27+
**/Debug_x86/
28+
**/Release_x64/
29+
**/Release_x86/
2830
[Aa][Rr][Mm]/
2931
[Aa][Rr][Mm]64/
3032
bld/

Source/Debug_x64/HDRProfile.exe

-512 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.

Source/HDRProfile/App.xaml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@
113113
<Setter Property="Template">
114114
<Setter.Value>
115115
<ControlTemplate TargetType="TabItem">
116-
<Border x:Name="HeaderBorder" Height="Auto" Width="Auto" BorderBrush="{TemplateBinding Background}" CornerRadius="3 3 0 0">
116+
<Border x:Name="HeaderBorder" Background="Transparent" Height="Auto" Width="Auto" BorderBrush="{TemplateBinding Background}" CornerRadius="3 3 0 0">
117117
<TextBlock x:Name="HeaderContent" FontSize="{TemplateBinding FontSize}" FontWeight="{TemplateBinding FontWeight}" Background="Transparent" Margin="5" Foreground="{TemplateBinding Foreground}" Text="{TemplateBinding Header}" HorizontalAlignment="Center" VerticalAlignment="Center"/>
118118
</Border>
119119
<ControlTemplate.Triggers>
@@ -126,7 +126,6 @@
126126

127127
<DataTrigger Binding="{Binding RelativeSource={RelativeSource Self}, Path=IsSelected}" Value="False" >
128128
<Setter TargetName="HeaderContent" Property="Foreground" Value="Black"/>
129-
130129
</DataTrigger>
131130

132131
</ControlTemplate.Triggers>

Source/HDRProfile/App.xaml.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,13 @@ namespace HDRProfile
1616

1717
public partial class App : Application
1818
{
19-
static Mutex mutex = new Mutex(true, "{4DF0C02E-F86D-4F5F-93A9-DC9F8EDF1AD5}");
19+
static Mutex mutex = new Mutex(true, "{2846416C-610B-4A6B-A31C-A4AA6826E9BE}");
2020
protected override void OnStartup(StartupEventArgs e)
2121
{
22-
base.OnStartup(e);
22+
2323
if (mutex.WaitOne(TimeSpan.Zero, true))
2424
{
25-
mutex.ReleaseMutex();
26-
25+
base.OnStartup(e);
2726
}
2827
else
2928
{
@@ -33,6 +32,7 @@ protected override void OnStartup(StartupEventArgs e)
3332
}
3433
private void Application_Exit(object sender, ExitEventArgs e)
3534
{
35+
mutex.ReleaseMutex();
3636

3737
}
3838
}

Source/HDRProfile/HDRProfileHandler.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,7 @@ public string Version
7777

7878
public HDRProfileHandler()
7979
{
80+
Logs.LoggingEnabled = true;
8081
//ChangeLanguage( new System.Globalization.CultureInfo("en-US"));
8182
Initialize();
8283
}

Source/HDRProfile/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,5 +52,5 @@
5252
// Sie können alle Werte angeben oder Standardwerte für die Build- und Revisionsnummern verwenden,
5353
// indem Sie "*" wie unten gezeigt eingeben:
5454
// [assembly: AssemblyVersion("1.0.*")]
55-
[assembly: AssemblyVersion("1.5.3.0")]
56-
[assembly: AssemblyFileVersion("1.5.3.0")]
55+
[assembly: AssemblyVersion("1.5.4.0")]
56+
[assembly: AssemblyFileVersion("1.5.4.0")]

0 commit comments

Comments
 (0)