Skip to content

Commit 60fd198

Browse files
committed
Major update to v1.8
1 parent 0479819 commit 60fd198

File tree

7 files changed

+18
-15
lines changed

7 files changed

+18
-15
lines changed

Diff for: CHANGELOG.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# Mint Changelog
2-
3-
All notable changes to this project will be documented in this file.
1+
## [1.8] - 2023-01-08
2+
- New: Mint properly supports DPI scaling now
3+
- Security: Newtonsoft.JSON updated to latest version
44

55
## [1.7] - 2022-02-07
66
- New: Right-click menu in apps list

Diff for: Mint/Mint.csproj

+3-5
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@
3636
<ApplicationIcon>mint.ico</ApplicationIcon>
3737
</PropertyGroup>
3838
<ItemGroup>
39-
<Reference Include="Newtonsoft.Json, Version=11.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
40-
<HintPath>..\packages\Newtonsoft.Json.11.0.1\lib\net45\Newtonsoft.Json.dll</HintPath>
39+
<Reference Include="Newtonsoft.Json, Version=13.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
40+
<HintPath>..\packages\Newtonsoft.Json.13.0.2\lib\net45\Newtonsoft.Json.dll</HintPath>
4141
</Reference>
4242
<Reference Include="System" />
4343
<Reference Include="System.Core" />
@@ -129,11 +129,9 @@
129129
<ItemGroup>
130130
<None Include="App.config" />
131131
</ItemGroup>
132-
<ItemGroup>
133-
<EmbeddedResource Include="Newtonsoft.Json.dll" />
134-
</ItemGroup>
135132
<ItemGroup>
136133
<Content Include="mint.ico" />
134+
<EmbeddedResource Include="Newtonsoft.Json.dll" />
137135
</ItemGroup>
138136
<ItemGroup>
139137
<COMReference Include="IWshRuntimeLibrary">

Diff for: Mint/Newtonsoft.Json.dll

46.3 KB
Binary file not shown.

Diff for: Mint/Program.cs

+6-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ static class Program
1111

1212
// Enter current version here
1313
internal readonly static float Major = 1;
14-
internal readonly static float Minor = 7;
14+
internal readonly static float Minor = 8;
1515

1616
/* END OF VERSION PROPERTIES */
1717

@@ -31,9 +31,14 @@ internal static float GetCurrentVersion()
3131
internal static Mutex MUTEX;
3232
static bool _notRunning;
3333

34+
[System.Runtime.InteropServices.DllImport("user32.dll")]
35+
private static extern bool SetProcessDPIAware();
36+
3437
[STAThread]
3538
static void Main()
3639
{
40+
if (Environment.OSVersion.Version.Major >= 6) SetProcessDPIAware();
41+
3742
Application.EnableVisualStyles();
3843
Application.SetCompatibleTextRenderingDefault(false);
3944

Diff for: Mint/packages.config

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
3-
<package id="Newtonsoft.Json" version="11.0.1" targetFramework="net452" />
3+
<package id="Newtonsoft.Json" version="13.0.2" targetFramework="net452" />
44
</packages>

Diff for: README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
A minimal app launcher residing in your taskbar
88

99
<p align="center">
10-
<a href="https://github.com/hellzerg/mint/releases/download/1.7/Mint-1.7.exe" target="_blank">
10+
<a href="https://github.com/hellzerg/mint/releases/download/1.8/Mint-1.8.exe" target="_blank">
1111
<img src="download-button.png">
1212
</a>
1313
</p>
@@ -34,8 +34,8 @@ Compatible with Windows 7, 8.1, 10, 11
3434

3535
## Details: ##
3636

37-
Latest version: 1.7
37+
Latest version: 1.8
3838

39-
Released: February 7, 2022
39+
Released: January 8, 2023
4040

41-
SHA256: DE37BC4BE73891938E4CA52295B37BF2B27BF4EC644DF04F25C730FEAE039775
41+
SHA256: 01A01B18C661955B235E65E56F39BC895721289573FF41431C06BA62E71F99A6

Diff for: version.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.7
1+
1.8

0 commit comments

Comments
 (0)