Skip to content

Commit

Permalink
1.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
incheon-kim committed Jan 22, 2021
1 parent ee57cde commit ec38429
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion App/ColorController.cs
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ public void ResetDVL()
}catch (NotImplementedException){ }
}

internal void OnExit()
internal void Close()
{
ResetDVL();

Expand Down
4 changes: 2 additions & 2 deletions App/ProcessMonitor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ public static ProcessMonitor Instance

public MainForm Parent { get; set; }

public ProcessMonitor()
private ProcessMonitor()
{

}
Expand Down Expand Up @@ -117,7 +117,7 @@ public void WinEventProc(IntPtr hWinEventHook, uint eventType, IntPtr hWnd, int
public void Reset()
{
Console.WriteLine("[pMonitor] Color Reset");
cController.OnExit();
cController.Close();
}

private static int GetWorkingThreads()
Expand Down
6 changes: 3 additions & 3 deletions Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
[assembly: AssemblyTitle("tarkov-settings")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyCompany("Michael Kim")]
[assembly: AssemblyProduct("tarkov-settings")]
[assembly: AssemblyCopyright("Copyright © 2021")]
[assembly: AssemblyTrademark("")]
Expand All @@ -32,5 +32,5 @@
// 모든 값을 지정하거나 아래와 같이 '*'를 사용하여 빌드 번호 및 수정 번호를
// 기본값으로 할 수 있습니다.
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.1.1")]
[assembly: AssemblyFileVersion("1.1.1")]
[assembly: AssemblyVersion("1.1.2")]
[assembly: AssemblyFileVersion("1.1.2")]

0 comments on commit ec38429

Please sign in to comment.