Skip to content

Commit 1302c6b

Browse files
committed
Release 1.0.1
Initial
1 parent bf36a7a commit 1302c6b

File tree

98 files changed

+29926
-1
lines changed

Some content is hidden

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

98 files changed

+29926
-1
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2020 Heiko-T
3+
Copyright (c) 2020 Heiko-Thome
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

Photoshop/IconBig.bmp

48.1 KB
Binary file not shown.

Photoshop/Logo.bmp

3.05 KB
Binary file not shown.

Photoshop/Logo.psd

862 KB
Binary file not shown.

Photoshop/LogoWide.bmp

274 KB
Binary file not shown.

README.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,11 @@
11
# HDR Profile
22

3+
You can add applications to HDR Profile to automatically activate HDR in Windows when one of hte added processes is running.
4+
5+
The tool is using NVApi (copied some code from https://github.com/bradgearon/hdr-switch, thank you!), so I think this will only work with NVidia graphic cards.
6+
7+
If you choose "Focused" HDR will be activated when one of the added application is in focus and will deactivate HDR, when none of the added app is in focus.
8+
9+
Running mode works the same, but as the name says, it is not neccessary for the application to be in focus.
10+
11+
For the moment, the tool is only looking for the process name and not the location of the file.

Screenshot_1-0-0.png

21 KB
Loading

Source/Debug_x64/HDRProfile.exe

1.03 MB
Binary file not shown.
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
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+
</configuration>
8.5 KB
Binary file not shown.

0 commit comments

Comments
 (0)