Skip to content

Commit

Permalink
Release 0.7.4.3
Browse files Browse the repository at this point in the history
Fix mohzy83#90 , thanks @rdipardo !

Merge branch 'develop'
  • Loading branch information
VinsWorldcom committed Nov 2, 2023
2 parents 8c8bc88 + 2d8a816 commit b9f1fbc
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions MarkdigWrapper/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("0.7.4.2")]
[assembly: AssemblyFileVersion("0.7.4.2")]
[assembly: AssemblyVersion("0.7.4.3")]
[assembly: AssemblyFileVersion("0.7.4.3")]
2 changes: 1 addition & 1 deletion NppMarkdownPanel/MarkdownPanelController.cs
Original file line number Diff line number Diff line change
Expand Up @@ -389,7 +389,7 @@ private void TogglePanelVisible()
_nppTbData.dlgID = idMyDlg;
_nppTbData.uMask = NppTbMsg.DWS_DF_CONT_RIGHT | NppTbMsg.DWS_ICONTAB | NppTbMsg.DWS_ICONBAR;
_nppTbData.hIconTab = (uint)ConvertBitmapToIcon(Properties.Resources.markdown_16x16_solid_bmp).Handle;
_nppTbData.pszModuleName = Main.ModuleName;
_nppTbData.pszModuleName = $"{Main.ModuleName}.dll";
_ptrNppTbData = Marshal.AllocHGlobal(Marshal.SizeOf(_nppTbData));
Marshal.StructureToPtr(_nppTbData, _ptrNppTbData, false);

Expand Down
4 changes: 2 additions & 2 deletions NppMarkdownPanel/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("0.7.4.2")]
[assembly: AssemblyFileVersion("0.7.4.2")]
[assembly: AssemblyVersion("0.7.4.3")]
[assembly: AssemblyFileVersion("0.7.4.3")]

0 comments on commit b9f1fbc

Please sign in to comment.