Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 31 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# Change Log
All notable changes to this project will be documented in this file.

## [Unreleased]
### Planned
- autostart opion in the app
- option to disable automatic frequency restore
- Windows Universal app

## [0.4] - 2016-06-16
### Added
- Restore frequency on startup

## [0.3] - 2016-05-24
### Removed
- Background frequency watcher. Driver access in a background task disabled because of incorrect data.

## [0.2] - 2016-05-23
### Added
- Save last set frequency in setting file.
- Show notification in system tray when frequency is set or error occured.

## [0.1] - 2016-05-22
### Added
- Windows tray app with basic functionality

[Unreleased]: https://github.com/BALEHOK/PWM/compare/v0.4...exp
[0.4]: https://github.com/BALEHOK/PWM/compare/v0.1...v0.4
[0.3]: https://github.com/BALEHOK/PWM/compare/v0.1...v0.3
[0.2]: https://github.com/BALEHOK/PWM/compare/v0.1...v0.2
[0.1]: https://github.com/BALEHOK/PWM/compare/init...v0.1
Binary file added PWM tool.zip
Binary file not shown.
Binary file removed PWM.exe
Binary file not shown.
28 changes: 22 additions & 6 deletions PWM.sln
Original file line number Diff line number Diff line change
@@ -1,20 +1,36 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 14
VisualStudioVersion = 14.0.22823.1
VisualStudioVersion = 14.0.25123.0
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PWM", "PWM\PWM.csproj", "{2F0EABF3-467D-4F47-9F90-8158AB3D64D2}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PwmLib", "PwmLib\PwmLib.csproj", "{B770C3D4-35DE-4C73-BB83-30B8F139B3FC}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Wpf", "Wpf\Wpf.csproj", "{CBCB0057-1FA5-43B2-A1DF-83D635EEDFF7}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Debug|x64 = Debug|x64
Release|Any CPU = Release|Any CPU
Release|x64 = Release|x64
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{2F0EABF3-467D-4F47-9F90-8158AB3D64D2}.Debug|x64.ActiveCfg = Debug|x64
{2F0EABF3-467D-4F47-9F90-8158AB3D64D2}.Debug|x64.Build.0 = Debug|x64
{2F0EABF3-467D-4F47-9F90-8158AB3D64D2}.Release|x64.ActiveCfg = Release|x64
{2F0EABF3-467D-4F47-9F90-8158AB3D64D2}.Release|x64.Build.0 = Release|x64
{B770C3D4-35DE-4C73-BB83-30B8F139B3FC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{B770C3D4-35DE-4C73-BB83-30B8F139B3FC}.Debug|Any CPU.Build.0 = Debug|Any CPU
{B770C3D4-35DE-4C73-BB83-30B8F139B3FC}.Debug|x64.ActiveCfg = Debug|Any CPU
{B770C3D4-35DE-4C73-BB83-30B8F139B3FC}.Debug|x64.Build.0 = Debug|Any CPU
{B770C3D4-35DE-4C73-BB83-30B8F139B3FC}.Release|Any CPU.ActiveCfg = Release|Any CPU
{B770C3D4-35DE-4C73-BB83-30B8F139B3FC}.Release|Any CPU.Build.0 = Release|Any CPU
{B770C3D4-35DE-4C73-BB83-30B8F139B3FC}.Release|x64.ActiveCfg = Release|Any CPU
{B770C3D4-35DE-4C73-BB83-30B8F139B3FC}.Release|x64.Build.0 = Release|Any CPU
{CBCB0057-1FA5-43B2-A1DF-83D635EEDFF7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{CBCB0057-1FA5-43B2-A1DF-83D635EEDFF7}.Debug|Any CPU.Build.0 = Debug|Any CPU
{CBCB0057-1FA5-43B2-A1DF-83D635EEDFF7}.Debug|x64.ActiveCfg = Debug|Any CPU
{CBCB0057-1FA5-43B2-A1DF-83D635EEDFF7}.Debug|x64.Build.0 = Debug|Any CPU
{CBCB0057-1FA5-43B2-A1DF-83D635EEDFF7}.Release|Any CPU.ActiveCfg = Release|Any CPU
{CBCB0057-1FA5-43B2-A1DF-83D635EEDFF7}.Release|Any CPU.Build.0 = Release|Any CPU
{CBCB0057-1FA5-43B2-A1DF-83D635EEDFF7}.Release|x64.ActiveCfg = Release|Any CPU
{CBCB0057-1FA5-43B2-A1DF-83D635EEDFF7}.Release|x64.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand Down
150 changes: 0 additions & 150 deletions PWM/PWM.Designer.cs

This file was deleted.

56 changes: 0 additions & 56 deletions PWM/PWM.cs

This file was deleted.

Loading