Skip to content

Commit e95e9e0

Browse files
committed
Released v1.1
1 parent 0bfaf19 commit e95e9e0

File tree

3 files changed

+30
-5
lines changed

3 files changed

+30
-5
lines changed

README.MD

+12-2
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22

33
Builds for 32 and 64 bits Notepad++ installations available
44

5-
Author: Andreas Heim, 2019
5+
Author: Andreas Heim, 2019 - 2022
66

77

88
# Features
99

1010
This is a new implemented clone of the old _ReloadButton_ plugin which is not maintained anymore by its author and never has been available as 64 bit version.
1111

12-
The plugin adds a menu entry to the _Plugins_ menu and a button to the toolbar of Notepad++ that, when pressed, causes a reload of the file in the currently active tab. It is possible to assign a keyboard shortcut to the menu entry via Notepad++ _Shortcut Mapper_.
12+
The plugin adds a menu entry to the _Plugins_ menu and a button to the toolbar of Notepad++ that, when pressed, causes a reload of the file in the currently active tab. It is possible to assign a keyboard shortcut to the menu entry via Notepad++ _Shortcut Mapper_.
1313

1414
**Please note: Reload of the file happens without asking the user to save his changed but unsaved document, so use with care!**
1515

@@ -46,5 +46,15 @@ The following steps depend on the version of Notepad++ you use.
4646

4747
# History
4848

49+
v1.1 - November 2022
50+
- fixed: The 64 bit version caused Notepad++ to crash when reloading a file
51+
- fixed: When plugin's dialog box is on screen but hidden by another application's window which has input focus, it is not possible to return to Notepad++ by clicking its taskbar icon.
52+
- fixed: Wrong implementation of Notepad++ version comparison.
53+
- enhanced: Added support for Dark Mode icons.
54+
- enhanced: Added new Notepad++ message constants from v7.9.2 up to v8.4.7
55+
- enhanced: Added new Notepad++ menu command ids from v7.9.6 up to v8.4.7
56+
- enhanced: Added new Scintilla constants from v4.4.6 up to v5.3.1
57+
- enhanced: Adapted to new Scintilla v5.3.1 API of Notepad++ v8.4.7
58+
4959
v1.0 - September 2019
5060
- Initial release

doc/ReloadFile.txt

+16-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11

22
********************************************************************************
33
* *
4-
* ReloadFile plugin v1.0 for Notepad++ *
4+
* ReloadFile plugin v1.1 for Notepad++ *
55
* Builds for 32 and 64 bits Notepad++ installations available *
66
* *
7-
* Author: Andreas Heim, 2019 *
7+
* Author: Andreas Heim, 2019 - 2022 *
88
* *
99
********************************************************************************
1010

@@ -31,6 +31,20 @@ changed but unsaved document, so use with care!
3131
History
3232
===========
3333

34+
v1.1 - November 2022
35+
~~~~~~~~~~~~~~~~~~~~
36+
- fixed: The 64 bit version caused Notepad++ to crash when reloading a file
37+
- fixed: When plugin's dialog box is on screen but hidden by another
38+
application's window which has input focus, it is not possible
39+
to return to Notepad++ by clicking its taskbar icon.
40+
- fixed: Wrong implementation of Notepad++ version comparison.
41+
- enhanced: Added support for Dark Mode icons.
42+
- enhanced: Added new Notepad++ message constants from v7.9.2 up to v8.4.7
43+
- enhanced: Added new Notepad++ menu command ids from v7.9.6 up to v8.4.7
44+
- enhanced: Added new Scintilla constants from v4.4.6 up to v5.3.1
45+
- enhanced: Adapted to new Scintilla v5.3.1 API of Notepad++ v8.4.7
46+
47+
3448
v1.0 - September 2019
3549
~~~~~~~~~~~~~~~~~~~~~
3650
- Initial release

src/ReloadFile.dproj

+2-1
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@
3434
<Base>true</Base>
3535
</PropertyGroup>
3636
<PropertyGroup Condition="'$(Base)'!=''">
37+
<VerInfo_MinorVer>1</VerInfo_MinorVer>
3738
<PreBuildEvent><![CDATA[cmd /c ".\BuildScripts\PreBuildScript.cmd "$(PROJECTNAME)" $(CONFIG) $(PLATFORM)"
3839
$(PreBuildEvent)]]></PreBuildEvent>
3940
<PostBuildEvent><![CDATA[cmd /c ".\BuildScripts\PostBuildScript.cmd "$(PROJECTNAME)" $(CONFIG) $(PLATFORM)"
@@ -51,7 +52,7 @@ $(PostBuildEvent)]]></PostBuildEvent>
5152
<DCC_E>false</DCC_E>
5253
<DCC_F>false</DCC_F>
5354
<VerInfo_IncludeVerInfo>true</VerInfo_IncludeVerInfo>
54-
<VerInfo_Keys>CompanyName=;FileDescription=A plugin that adds a button to the toolbar of Notepad++ to reload the file of the currently active tab;FileVersion=1.0.0.0;InternalName=;LegalCopyright=2019 by Andreas Heim;LegalTrademarks=;OriginalFilename=ReloadFile.dll;ProductName=ReloadFile;ProductVersion=1.0.0.0;Comments=A plugin for Notepad++</VerInfo_Keys>
55+
<VerInfo_Keys>CompanyName=;FileDescription=A plugin that adds a button to the toolbar of Notepad++ to reload the file of the currently active tab;FileVersion=1.1.0.0;InternalName=;LegalCopyright=2019 - 2022 by Andreas Heim;LegalTrademarks=;OriginalFilename=ReloadFile.dll;ProductName=ReloadFile;ProductVersion=1.1.0.0;Comments=A plugin for Notepad++</VerInfo_Keys>
5556
<VerInfo_Locale>1033</VerInfo_Locale>
5657
</PropertyGroup>
5758
<PropertyGroup Condition="'$(Base_Win64)'!=''">

0 commit comments

Comments
 (0)