diff --git a/CHANGELOG.md b/CHANGELOG.md index cdb993f..bc5226f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,5 @@ # Change Log -All [notable changes](#002---2024-02-06) to this project will be documented in this file. +All [notable changes](#003---2024-02-26) to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). @@ -22,7 +22,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/). - Avoid plugin crash when too-large int values are entered in the selection-remembering form. - Holding down `Enter` in a multiline textbox does not add multiple new lines; it only adds one newline on keyup. -## [0.0.3] - (UNRELEASED) YYYY-MM-DD +## [0.0.3] - 2024-02-26 ### Added @@ -31,7 +31,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ### Changed -1. Update method of building a DLL to [remove a dependency on .NET Framework 3.5](https://github.com/molsonkiko/NppCSharpPluginPack/pull/3). +1. Update method of building a DLL to [remove a dependency on .NET Framework 3.5](https://github.com/molsonkiko/NppCSharpPluginPack/pull/4). + - This also allows the user the specify whatever Notepad++ directory they wish, using the `NppPath32` (to specify 32-bit Notepad++ directory) and `NppPath64` (to specify 64-bit directory) variables from the command line like so: `msbuild /p:NppPath32="D:\portable\npp\x86";NppPath64="somewhere\else\x64" ...` ### Fixed diff --git a/NppCSharpPluginPack/NppCSharpPluginPack.csproj b/NppCSharpPluginPack/NppCSharpPluginPack.csproj index 61a94d2..3179164 100644 --- a/NppCSharpPluginPack/NppCSharpPluginPack.csproj +++ b/NppCSharpPluginPack/NppCSharpPluginPack.csproj @@ -61,9 +61,11 @@ + $(ProgramW6432)\Notepad++ + $(MSBuildProgramFiles32)\Notepad++ Program - $(ProgramW6432)\Notepad++\notepad++.exe - $(MSBuildProgramFiles32)\Notepad++\notepad++.exe + $(NppPath64)\notepad++.exe + $(NppPath32)\notepad++.exe $(MSBuildProjectDirectory)\packages @@ -198,8 +200,8 @@ - - + + diff --git a/NppCSharpPluginPack/Properties/AssemblyInfo.cs b/NppCSharpPluginPack/Properties/AssemblyInfo.cs index 4975c84..86dc2a4 100644 --- a/NppCSharpPluginPack/Properties/AssemblyInfo.cs +++ b/NppCSharpPluginPack/Properties/AssemblyInfo.cs @@ -28,5 +28,5 @@ // Build Number // Revision // -[assembly: AssemblyVersion("0.0.2.5")] -[assembly: AssemblyFileVersion("0.0.2.5")] +[assembly: AssemblyVersion("0.0.3.0")] +[assembly: AssemblyFileVersion("0.0.3.0")] diff --git a/NppCSharpPluginPack/Release_x64.zip b/NppCSharpPluginPack/Release_x64.zip index b75a9fd..9de7b74 100644 Binary files a/NppCSharpPluginPack/Release_x64.zip and b/NppCSharpPluginPack/Release_x64.zip differ diff --git a/NppCSharpPluginPack/Release_x86.zip b/NppCSharpPluginPack/Release_x86.zip index 3c19cde..52c4c29 100644 Binary files a/NppCSharpPluginPack/Release_x86.zip and b/NppCSharpPluginPack/Release_x86.zip differ diff --git a/README.md b/README.md index eb7e077..7d1b68f 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ If you have any issues, see if [updating to the latest release](https://github.c [Read the docs.](/docs/README.md) -[Read information about the plugin architecture (some of this may be out of date)](/PluginPackArchitecture.md) +[Read information about the plugin architecture (*some of this may be out of date*)](/PluginPackArchitecture.md) [View past changes.](/CHANGELOG.md)