-
-
Notifications
You must be signed in to change notification settings - Fork 24
/
res.rc
38 lines (33 loc) · 914 Bytes
/
res.rc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#include <windows.h>
#include "VersionInfo.h"
1 TYPELIB ".\\project.tlb"
1 ICON "jN.ico"
STRINGTABLE
BEGIN
1 "jN Plugin for Notepad++\n© Eugen Kremer, 2024\ngithub.com/sieukrem/jn-npp-plugin"
END
1 VERSIONINFO
FILEVERSION VERSION_MA,VERSION_MI,BUILD_NUMBER,VERSION_REVISION
PRODUCTVERSION VERSION_MA,VERSION_MI,BUILD_NUMBER,VERSION_REVISION
FILEOS 0x40004
FILETYPE 0x1
{
BLOCK "StringFileInfo"
{
BLOCK "040904b0"
{
VALUE "CompanyName", "Eugen Kremer"
VALUE "FileDescription", "jN Plugin for Notepad++ that allows you to automate tasks with JavaScript"
VALUE "FileVersion", xstr(_VERSION_STR)
VALUE "InternalName", "jN.dll"
VALUE "LegalCopyright", "Copyleft 2024 by Eugen Kremer"
VALUE "OriginalFilename", "jN.dll"
VALUE "ProductName", "jN"
VALUE "ProductVersion", xstr(_VERSION_STR)
}
}
BLOCK "VarFileInfo"
{
VALUE "Translation", 0x0409 0x04B0
}
}