Skip to content

Commit

Permalink
Major update to v1.8
Browse files Browse the repository at this point in the history
  • Loading branch information
hellzerg committed Jan 8, 2023
1 parent 0479819 commit 60fd198
Show file tree
Hide file tree
Showing 7 changed files with 18 additions and 15 deletions.
6 changes: 3 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
8 changes: 3 additions & 5 deletions Mint/Mint.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@
<ApplicationIcon>mint.ico</ApplicationIcon>
</PropertyGroup>
<ItemGroup>
<Reference Include="Newtonsoft.Json, Version=11.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
<HintPath>..\packages\Newtonsoft.Json.11.0.1\lib\net45\Newtonsoft.Json.dll</HintPath>
<Reference Include="Newtonsoft.Json, Version=13.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
<HintPath>..\packages\Newtonsoft.Json.13.0.2\lib\net45\Newtonsoft.Json.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Core" />
Expand Down Expand Up @@ -129,11 +129,9 @@
<ItemGroup>
<None Include="App.config" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Newtonsoft.Json.dll" />
</ItemGroup>
<ItemGroup>
<Content Include="mint.ico" />
<EmbeddedResource Include="Newtonsoft.Json.dll" />
</ItemGroup>
<ItemGroup>
<COMReference Include="IWshRuntimeLibrary">
Expand Down
Binary file modified Mint/Newtonsoft.Json.dll
Binary file not shown.
7 changes: 6 additions & 1 deletion Mint/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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 */

Expand All @@ -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);

Expand Down
2 changes: 1 addition & 1 deletion Mint/packages.config
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="Newtonsoft.Json" version="11.0.1" targetFramework="net452" />
<package id="Newtonsoft.Json" version="13.0.2" targetFramework="net452" />
</packages>
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
A minimal app launcher residing in your taskbar

<p align="center">
<a href="https://github.com/hellzerg/mint/releases/download/1.7/Mint-1.7.exe" target="_blank">
<a href="https://github.com/hellzerg/mint/releases/download/1.8/Mint-1.8.exe" target="_blank">
<img src="download-button.png">
</a>
</p>
Expand All @@ -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
2 changes: 1 addition & 1 deletion version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.7
1.8

0 comments on commit 60fd198

Please sign in to comment.