diff --git a/CHANGELOG.md b/CHANGELOG.md
index 4f4ce78..344feea 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,6 +1,6 @@
-# Mint Changelog
-
-All notable changes to this project will be documented in this file.
+## [1.8] - 2023-01-08
+- New: Mint properly supports DPI scaling now
+- Security: Newtonsoft.JSON updated to latest version
## [1.7] - 2022-02-07
- New: Right-click menu in apps list
diff --git a/Mint/Mint.csproj b/Mint/Mint.csproj
index c93d1a7..edc3b19 100644
--- a/Mint/Mint.csproj
+++ b/Mint/Mint.csproj
@@ -36,8 +36,8 @@
mint.ico
-
- ..\packages\Newtonsoft.Json.11.0.1\lib\net45\Newtonsoft.Json.dll
+
+ ..\packages\Newtonsoft.Json.13.0.2\lib\net45\Newtonsoft.Json.dll
@@ -129,11 +129,9 @@
-
-
-
+
diff --git a/Mint/Newtonsoft.Json.dll b/Mint/Newtonsoft.Json.dll
index 1971a35..b7c6596 100644
Binary files a/Mint/Newtonsoft.Json.dll and b/Mint/Newtonsoft.Json.dll differ
diff --git a/Mint/Program.cs b/Mint/Program.cs
index a98ff56..53014dd 100644
--- a/Mint/Program.cs
+++ b/Mint/Program.cs
@@ -11,7 +11,7 @@ static class Program
// Enter current version here
internal readonly static float Major = 1;
- internal readonly static float Minor = 7;
+ internal readonly static float Minor = 8;
/* END OF VERSION PROPERTIES */
@@ -31,9 +31,14 @@ internal static float GetCurrentVersion()
internal static Mutex MUTEX;
static bool _notRunning;
+ [System.Runtime.InteropServices.DllImport("user32.dll")]
+ private static extern bool SetProcessDPIAware();
+
[STAThread]
static void Main()
{
+ if (Environment.OSVersion.Version.Major >= 6) SetProcessDPIAware();
+
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
diff --git a/Mint/packages.config b/Mint/packages.config
index cf9a694..1cad659 100644
--- a/Mint/packages.config
+++ b/Mint/packages.config
@@ -1,4 +1,4 @@
-
+
\ No newline at end of file
diff --git a/README.md b/README.md
index 6bfaba2..214f8b1 100644
--- a/README.md
+++ b/README.md
@@ -7,7 +7,7 @@
A minimal app launcher residing in your taskbar
-
+
@@ -34,8 +34,8 @@ Compatible with Windows 7, 8.1, 10, 11
## Details: ##
-Latest version: 1.7
+Latest version: 1.8
-Released: February 7, 2022
+Released: January 8, 2023
-SHA256: DE37BC4BE73891938E4CA52295B37BF2B27BF4EC644DF04F25C730FEAE039775
+SHA256: 01A01B18C661955B235E65E56F39BC895721289573FF41431C06BA62E71F99A6
diff --git a/version.txt b/version.txt
index 7c483e8..4684374 100644
--- a/version.txt
+++ b/version.txt
@@ -1 +1 @@
-1.7
\ No newline at end of file
+1.8
\ No newline at end of file