From: Jean-Paul Mari Date: Sat, 17 Aug 2019 01:28:43 +0000 (-0400) Subject: Added a date creation stamp in the application command line information X-Git-Tag: v2.1.3-R5^2~50 X-Git-Url: http://git.hcoop.net/clinton/Virtual-Jaguar-Rx.git/commitdiff_plain/fe41cce0955dbbbcfa9c2ad54b718ac49f592e82 Added a date creation stamp in the application command line information --- diff --git a/docs/vj_HistoryNotes.txt b/docs/vj_HistoryNotes.txt index 06040bb..87d145b 100644 --- a/docs/vj_HistoryNotes.txt +++ b/docs/vj_HistoryNotes.txt @@ -1,6 +1,11 @@ -Release 4a (TBA) ----------------- -Git commit: +Release 5 (TBA) +--------------- +0) Added a date creation stamp in the application command line information +- This date already appears in the Release 4 executable but was not referenced in his history note + +Release 4a (15th August 2019) +----------------------------- +Git commit: f04df4f185ed4f3cfc805d0f61b3c019a108ae2c - 0) Fix specific breakpoint for ROM cartridge or unknown memory location writing diff --git a/src/gui/app.cpp b/src/gui/app.cpp index 9392692..6acd9f0 100644 --- a/src/gui/app.cpp +++ b/src/gui/app.cpp @@ -174,7 +174,7 @@ bool ParseCommandLine(int argc, char * argv[]) if ((strcmp(argv[i], "--help") == 0) || (strcmp(argv[i], "-h") == 0) || (strcmp(argv[i], "-?") == 0)) { printf( - "Virtual Jaguar " VJ_RELEASE_VERSION " (" VJ_RELEASE_SUBVERSION ") Rx\n" + "Virtual Jaguar " VJ_RELEASE_VERSION " (" VJ_RELEASE_SUBVERSION ") Rx - " __DATE__ "\n" "Based upon Virtual Jaguar core v1.0.0 by David Raingeard.\n" "Based upon the work by James Hammons (Linux/WIN32), Niels Wagenaar (Linux/WIN32),\n" "Carwin Jones (BeOS), and Adam Green (MacOS)\n"