Skip to content

Commit

Permalink
4.6.0 (2019-08-28)
Browse files Browse the repository at this point in the history
* Upgrade to .NET 4.8, built with Visual Studio 2019
* Disable DPI awareness, as it breaks right-click behaviour.
  • Loading branch information
Mertsch committed Dec 16, 2019
1 parent 9175fd2 commit a8aaa2d
Show file tree
Hide file tree
Showing 6 changed files with 22 additions and 18 deletions.
4 changes: 2 additions & 2 deletions Source/Launchbar/Launchbar.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<OutputType>WinExe</OutputType>
<RootNamespace>Launchbar</RootNamespace>
<AssemblyName>Launchbar</AssemblyName>
<TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
<TargetFrameworkProfile />
<FileAlignment>512</FileAlignment>
<ProjectTypeGuids>{60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
Expand Down Expand Up @@ -60,7 +60,7 @@
</ItemGroup>
<ItemGroup>
<PackageReference Include="JetBrains.Annotations">
<Version>2018.3.0</Version>
<Version>2019.1.3</Version>
</PackageReference>
</ItemGroup>
<ItemGroup>
Expand Down
9 changes: 6 additions & 3 deletions Source/Launchbar/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
using System.Resources;
using System.Runtime.InteropServices;
using System.Windows;
using System.Windows.Media;

[assembly: AssemblyTitle("Launchbar")]
[assembly: AssemblyDescription("RunIT to the next level.")]
Expand All @@ -16,6 +17,8 @@
[assembly: CLSCompliant(true)]
[assembly: NeutralResourcesLanguage("en")]
[assembly: ThemeInfo(ResourceDictionaryLocation.None, ResourceDictionaryLocation.SourceAssembly)]
[assembly: AssemblyVersion /* */("4.5.1.0")]
[assembly: AssemblyFileVersion /* */("4.5.1.0")]
[assembly: AssemblyInformationalVersion /**/("4.5.1")]
[assembly: AssemblyVersion /* */("4.6.0.0")]
[assembly: AssemblyFileVersion /* */("4.6.0.0")]
[assembly: AssemblyInformationalVersion /**/("4.6.0")]

[assembly: DisableDpiAwareness]
17 changes: 7 additions & 10 deletions Source/Launchbar/Properties/Resources.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 5 additions & 1 deletion Source/Launchbar/Properties/Resources.resx
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,11 @@
<comment>Message for first time users.</comment>
</data>
<data name="Changelog" xml:space="preserve">
<value>4.5.1 (2019-03-15)
<value>4.6.0 (2019-08-28)
* Upgrade to .NET 4.8, built with Visual Studio 2019
* Disable DPI awareness, as it breaks right-click behaviour.

4.5.1 (2019-03-15)
* Upgrade to .NET 4.7.2, built with Visual Studio 2017
* Version number is now aligned with the changelog

Expand Down
2 changes: 1 addition & 1 deletion Source/Launchbar/Properties/Settings.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Source/Launchbar/app.config
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,6 @@
</Launchbar.Properties.Settings>
</userSettings>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7.2"/>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.8"/>
</startup>
</configuration>

0 comments on commit a8aaa2d

Please sign in to comment.