Skip to content

Commit acfe762

Browse files
committed
makefile.yml tweaks + version.rc tweaks
1 parent ba6261f commit acfe762

2 files changed

Lines changed: 5 additions & 1 deletion

File tree

.github/workflows/makefile.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- name: Checkout
2424
uses: actions/checkout@v4
2525
with:
26-
fetch-depth: 2
26+
fetch-depth: 0
2727

2828
- name: Check if src/ changed
2929
id: changes
@@ -123,6 +123,7 @@ jobs:
123123
#define VER_COMPANYNAME_STR "DarthDemono\0"
124124
#define VER_FILEDESCRIPTION_STR "PingDD is a cross-platform ping tool for TCP port checking.\0"
125125
#define VER_INTERNALNAME_STR "PingDD\0"
126+
#define VER_LEGALCOPYRIGHT_STR "Copyright (c) 2025 DarthDemono\0"
126127
#define VER_ORIGINALFILENAME_STR "pingdd.exe\0"
127128
#define VER_PRODUCTNAME_STR "PingDD\0"
128129
@@ -143,6 +144,7 @@ jobs:
143144
VALUE "FileDescription", VER_FILEDESCRIPTION_STR
144145
VALUE "FileVersion", VER_FILEVERSION_STR
145146
VALUE "InternalName", VER_INTERNALNAME_STR
147+
VALUE "LegalCopyright", VER_LEGALCOPYRIGHT_STR
146148
VALUE "OriginalFilename", VER_ORIGINALFILENAME_STR
147149
VALUE "ProductName", VER_PRODUCTNAME_STR
148150
VALUE "ProductVersion", VER_PRODUCTVERSION_STR

version.rc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ IDI_MAIN_ICON ICON "pic/icon/PingDD Icon Small.ico"
1111
#define VER_COMPANYNAME_STR "DarthDemono\0"
1212
#define VER_FILEDESCRIPTION_STR "PingDD is a cross-platform ping tool for TCP port checking.\0"
1313
#define VER_INTERNALNAME_STR "PingDD\0"
14+
#define VER_LEGALCOPYRIGHT_STR "Copyright (c) 2025 DarthDemono\0"
1415
#define VER_ORIGINALFILENAME_STR "pingdd.exe\0"
1516
#define VER_PRODUCTNAME_STR "PingDD\0"
1617

@@ -26,6 +27,7 @@ PRODUCTVERSION VER_PRODUCTVERSION
2627
VALUE "FileDescription", VER_FILEDESCRIPTION_STR
2728
VALUE "FileVersion", VER_FILEVERSION_STR
2829
VALUE "InternalName", VER_INTERNALNAME_STR
30+
VALUE "LegalCopyright", VER_LEGALCOPYRIGHT_STR
2931
VALUE "OriginalFilename", VER_ORIGINALFILENAME_STR
3032
VALUE "ProductName", VER_PRODUCTNAME_STR
3133
VALUE "ProductVersion", VER_PRODUCTVERSION_STR

0 commit comments

Comments
 (0)