Skip to content

Commit 322f735

Browse files
committed
NppPluginList first release version 1.0
1 parent b5cb497 commit 322f735

File tree

2 files changed

+34
-0
lines changed

2 files changed

+34
-0
lines changed

src/nppPluginList.rc

+30
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,36 @@
2525
// along with this program; if not, write to the Free Software
2626
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
2727

28+
#include <windows.h>
2829
#include "resource.h"
2930

3031
IDR_PLUGINLISTJSONFILE TEXTFILE PLJSON
32+
33+
VS_VERSION_INFO VERSIONINFO
34+
FILEVERSION VERSION_DIGITALVALUE
35+
PRODUCTVERSION VERSION_DIGITALVALUE
36+
FILEFLAGSMASK 0x3fL
37+
FILEFLAGS 0
38+
FILEOS VOS_NT_WINDOWS32
39+
FILETYPE VFT_APP
40+
FILESUBTYPE VFT2_UNKNOWN
41+
BEGIN
42+
BLOCK "VarFileInfo"
43+
BEGIN
44+
VALUE "Translation", 0x409, 1200
45+
END
46+
BLOCK "StringFileInfo"
47+
BEGIN
48+
BLOCK "040904b0"
49+
BEGIN
50+
VALUE "CompanyName", "Notepad++ Community\0"
51+
VALUE "FileDescription", "Plugin List for Notepad++\0"
52+
VALUE "FileVersion", VERSION_VALUE
53+
VALUE "InternalName", "nppPluginList.dll\0"
54+
VALUE "LegalCopyright", "Copyright 2018 by Don HO\0"
55+
VALUE "OriginalFilename", "nppPluginList.dll\0"
56+
VALUE "ProductName", "Plugin List for Notepad++\0"
57+
VALUE "ProductVersion", VERSION_VALUE
58+
END
59+
END
60+
END

src/resource.h

+4
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,16 @@
2626
// along with this program; if not, write to the Free Software
2727
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
2828

29+
#pragma once
2930

3031
#ifdef _WIN64
3132
#define PLJSON "pl.x64.json"
3233
#else
3334
#define PLJSON "pl.x86.json"
3435
#endif
3536

37+
#define VERSION_VALUE "1.0\0"
38+
#define VERSION_DIGITALVALUE 1, 0, 0, 0
39+
3640
#define TEXTFILE 256
3741
#define IDR_PLUGINLISTJSONFILE 101

0 commit comments

Comments
 (0)