Skip to content

Commit f57ea9b

Browse files
committed
Automate OverrideMap: To start, just bring in tinyxml2 library and get files ready
1 parent 4524361 commit f57ea9b

14 files changed

Lines changed: 5448 additions & 23 deletions

src/Classes/OverrideMapUpdaterClass.cpp

Whitespace-only changes.

src/Classes/OverrideMapUpdaterClass.h

Whitespace-only changes.

src/Dialogs/AboutDialog.cpp

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@ INT_PTR CALLBACK abtDlgProc(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lPara
6868

6969
// however, it overwrites the ConverStaticToHyperlink, so I need to go back and do that _after_ the message
7070
ConvertStaticToHyperlink(hwndDlg, IDC_GITHUB);
71+
ConvertStaticToHyperlink(hwndDlg, IDC_ABOUT_TINYXML2);
7172

7273
//// Finally, figure out where to draw the dialog, and draw it.
7374
RECT rc;
@@ -99,9 +100,9 @@ INT_PTR CALLBACK abtDlgProc(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lPara
99100
case IDC_GITHUB:
100101
ShellExecute(hwndDlg, TEXT("open"), TEXT(VERSION_URL), NULL, NULL, SW_SHOWNORMAL);
101102
return true;
102-
//case IDC_README:
103-
// ShellExecute(hwndDlg, TEXT("open"), TEXT("https://github.com/dail8859/DoxyIt/blob/v") VERSION_TEXT TEXT("/README.md"), NULL, NULL, SW_SHOWNORMAL);
104-
// return true;
103+
case IDC_ABOUT_TINYXML2:
104+
ShellExecute(hwndDlg, TEXT("open"), TEXT("https://github.com/leethomason/tinyxml2"), NULL, NULL, SW_SHOWNORMAL);
105+
return true;
105106
}
106107
}
107108
case WM_DESTROY:

src/Dialogs/AboutDialog.rc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,4 +39,5 @@ BEGIN
3939
LTEXT "This code is licensed under GPLv3", IDC_STATIC, 60, 60, 200, 8, SS_LEFT
4040
LTEXT "Libraries:", IDC_STATIC, 20, 77, 37, 8, SS_LEFT, WS_EX_LEFT
4141
LTEXT "Hyperlinks = Copyright 2002 Neal Stublen", IDC_STATIC, 60, 77, 200, 8, SS_LEFT
42+
LTEXT "tinyxml2 = Lee Thomason {github:/leethomason/tinyxml2}", IDC_ABOUT_TINYXML2, 60, 87, 200, 8, SS_LEFT
4243
END

src/Dialogs/Version.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,14 @@
1717
along with this program. If not, see <https://www.gnu.org/licenses/>.
1818
*/
1919

20-
#define VERSION_NUM 1,1,0,3
20+
#define VERSION_NUM 1,1,0,4
2121
#define VERSION_LINEAR 100
2222
#define VERSION_LINEAR_TEXT TEXT(VERSION_LINEAR)
2323
#define VERSION_STRING "1.1.0"
2424
// // VERSION_TEXT This must match the tag pushed on the server minus the "v"
2525
#define VERSION_TEXT TEXT(VERSION_STRING)
2626
// // VERSION_STAGE // "-alpha", "-beta", "-dev", ""
27-
#define VERSION_STAGE "-dev3"
27+
#define VERSION_STAGE "-dev4"
2828
#define VERSION_STAGE_WS TEXT(VERSION_STAGE)
2929
#define VERSION_NAME "CollectionInterface"
3030
#define VERSION_NAME_WS TEXT(VERSION_NAME)

src/Dialogs/resource.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
#define IDD_ABOUTDLG 101
2727
#define IDC_VERSION 1001
2828
#define IDC_GITHUB 1002
29+
#define IDC_ABOUT_TINYXML2 1003
2930

3031
// CollectionInterface Dialog
3132
#define IDD_COLLECTIONINTERFACEDLG 102
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)