diff options
author | sje <sje@4f64403b-2f21-0410-a795-97e2b3489a10> | 2006-11-11 14:25:05 +0000 |
---|---|---|
committer | sje <sje@4f64403b-2f21-0410-a795-97e2b3489a10> | 2006-11-11 14:25:05 +0000 |
commit | b5e6a6dfb117b1af32c3de28d173bab7d6b249d2 (patch) | |
tree | 9268e5e96771a33e72324ef87fa4ee4a683d788c | |
parent | 4e1b05db0379ee0bb6bdd146e575b6bdd5e42cf5 (diff) |
added privacy warning to upload dialog
git-svn-id: https://server.scottellis.com.au/svn/mim_plugs@41 4f64403b-2f21-0410-a795-97e2b3489a10
-rw-r--r-- | attache/DebugTools.cpp | 5 | ||||
-rw-r--r-- | attache/version.h | 2 |
2 files changed, 5 insertions, 2 deletions
diff --git a/attache/DebugTools.cpp b/attache/DebugTools.cpp index 0940a10..752ba03 100644 --- a/attache/DebugTools.cpp +++ b/attache/DebugTools.cpp @@ -346,6 +346,7 @@ BOOL CALLBACK MyMiniDumpCallback(PVOID pParam, const PMINIDUMP_CALLBACK_INPUT pI case MemoryCallback:
// We do not include any information here -> return FALSE
+ // check pOutput base address to see if it's our crashing plugin?
bRet = FALSE;
break;
@@ -490,7 +491,9 @@ LONG CreateMiniDump( EXCEPTION_POINTERS* pep ) { TCHAR *stzBzipFilename = a2t(szBzipFilename);
TCHAR msg[1024];
- mir_sntprintf(msg, 1024, TranslateT("MiniDump crash dump created.\nCrash in module: %s\n\nUpload to miranda-im.org?"), szModuleFileName, stzBzipFilename);
+ mir_sntprintf(msg, 1024, TranslateT("MiniDump crash dump created.\nCrash in module: %s\n\nUpload to miranda-im.org?"
+ "\n\nPlease be aware that this data includes\na snapshot of the state of the Miranda\n"
+ "program at the time of the crash.\nThis may include personal information."), szModuleFileName, stzBzipFilename);
// upload?
if(options.upload && (!options.confirm_upload ||
diff --git a/attache/version.h b/attache/version.h index 041083e..862d844 100644 --- a/attache/version.h +++ b/attache/version.h @@ -6,7 +6,7 @@ #define __MAJOR_VERSION 0
#define __MINOR_VERSION 1
#define __RELEASE_NUM 3
-#define __BUILD_NUM 1
+#define __BUILD_NUM 2
#define __FILEVERSION_STRING __MAJOR_VERSION,__MINOR_VERSION,__RELEASE_NUM,__BUILD_NUM
#define __FILEVERSION_STRING_DOTS __MAJOR_VERSION.__MINOR_VERSION.__RELEASE_NUM.__BUILD_NUM
|