Skip to content

Commit

Permalink
NppPluginList first release version 1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
donho committed Nov 10, 2018
1 parent b5cb497 commit 322f735
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 0 deletions.
30 changes: 30 additions & 0 deletions src/nppPluginList.rc
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,36 @@
// along with this program; if not, write to the Free Software
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.

#include <windows.h>
#include "resource.h"

IDR_PLUGINLISTJSONFILE TEXTFILE PLJSON

VS_VERSION_INFO VERSIONINFO
FILEVERSION VERSION_DIGITALVALUE
PRODUCTVERSION VERSION_DIGITALVALUE
FILEFLAGSMASK 0x3fL
FILEFLAGS 0
FILEOS VOS_NT_WINDOWS32
FILETYPE VFT_APP
FILESUBTYPE VFT2_UNKNOWN
BEGIN
BLOCK "VarFileInfo"
BEGIN
VALUE "Translation", 0x409, 1200
END
BLOCK "StringFileInfo"
BEGIN
BLOCK "040904b0"
BEGIN
VALUE "CompanyName", "Notepad++ Community\0"
VALUE "FileDescription", "Plugin List for Notepad++\0"
VALUE "FileVersion", VERSION_VALUE
VALUE "InternalName", "nppPluginList.dll\0"
VALUE "LegalCopyright", "Copyright 2018 by Don HO\0"
VALUE "OriginalFilename", "nppPluginList.dll\0"
VALUE "ProductName", "Plugin List for Notepad++\0"
VALUE "ProductVersion", VERSION_VALUE
END
END
END
4 changes: 4 additions & 0 deletions src/resource.h
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,16 @@
// along with this program; if not, write to the Free Software
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.

#pragma once

#ifdef _WIN64
#define PLJSON "pl.x64.json"
#else
#define PLJSON "pl.x86.json"
#endif

#define VERSION_VALUE "1.0\0"
#define VERSION_DIGITALVALUE 1, 0, 0, 0

#define TEXTFILE 256
#define IDR_PLUGINLISTJSONFILE 101

0 comments on commit 322f735

Please sign in to comment.