Skip to content

Commit 96c3b3c

Browse files
committed
1.5.8
[new] You can now add UWP apps. [new] If enable, an info screen will pop up, if there is a new release on GitHub [#] Stability improvements [#] Extended logging [fix] Fixed a bug, where an application could get into a restart loop, if compatibility mode is enabled for it
1 parent dd14545 commit 96c3b3c

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

49 files changed

+387491
-196
lines changed

Source/Debug_Any/HDRProfile.exe

1.59 MB
Binary file not shown.
Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<configuration>
3+
<configSections>
4+
<sectionGroup name="userSettings" type="System.Configuration.UserSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
5+
<section name="HDRProfile.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" allowExeDefinition="MachineToLocalUser" requirePermission="false" />
6+
</sectionGroup>
7+
</configSections>
8+
<startup>
9+
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7.2" />
10+
</startup>
11+
<userSettings>
12+
<HDRProfile.Properties.Settings>
13+
<setting name="Top" serializeAs="String">
14+
<value>0</value>
15+
</setting>
16+
<setting name="Left" serializeAs="String">
17+
<value>0</value>
18+
</setting>
19+
<setting name="Maximized" serializeAs="String">
20+
<value>False</value>
21+
</setting>
22+
<setting name="Height" serializeAs="String">
23+
<value>480</value>
24+
</setting>
25+
<setting name="Width" serializeAs="String">
26+
<value>640</value>
27+
</setting>
28+
</HDRProfile.Properties.Settings>
29+
</userSettings>
30+
<runtime>
31+
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
32+
<dependentAssembly>
33+
<assemblyIdentity name="System.Runtime.CompilerServices.Unsafe" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
34+
<bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
35+
</dependentAssembly>
36+
<dependentAssembly>
37+
<assemblyIdentity name="System.Text.Json" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
38+
<bindingRedirect oldVersion="0.0.0.0-5.0.0.1" newVersion="5.0.0.1" />
39+
</dependentAssembly>
40+
</assemblyBinding>
41+
</runtime>
42+
</configuration>
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<HDRProfileSettings xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
3+
<GlobalAutoHDR>true</GlobalAutoHDR>
4+
<AutoStart>false</AutoStart>
5+
<Logging>false</Logging>
6+
<StartMinimizedToTray>false</StartMinimizedToTray>
7+
<CloseToTray>false</CloseToTray>
8+
<CheckForNewVersion>true</CheckForNewVersion>
9+
<HDRMode>None</HDRMode>
10+
<ApplicationItems />
11+
<Monitors>
12+
<Display>
13+
<AutoHDR>true</AutoHDR>
14+
<Name>\\.\DISPLAY1</Name>
15+
<UID>28931</UID>
16+
<HDRState>false</HDRState>
17+
<Resolution>
18+
<Width>2560</Width>
19+
<Height>1440</Height>
20+
</Resolution>
21+
<RefreshRate>240</RefreshRate>
22+
</Display>
23+
</Monitors>
24+
</HDRProfileSettings>

0 commit comments

Comments
 (0)