new crash reporter
|
@ -393,6 +393,10 @@
|
|||
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"mfcore.dll","CopyToMask":-1,"filePath":"datafiles",},
|
||||
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"mfplat.dll","CopyToMask":-1,"filePath":"datafiles",},
|
||||
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"README.txt","ConfigValues":{"Itch":{"CopyToMask":"0",},},"CopyToMask":-1,"filePath":"datafiles",},
|
||||
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"data.win","CopyToMask":-1,"filePath":"datafiles/report",},
|
||||
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"execute_shell_simple_ext_x64.dll","CopyToMask":-1,"filePath":"datafiles/report",},
|
||||
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"options.ini","CopyToMask":-1,"filePath":"datafiles/report",},
|
||||
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"PXC crash reporter.exe","CopyToMask":-1,"filePath":"datafiles/report",},
|
||||
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"arrowRight.png","CopyToMask":-1,"filePath":"datafiles/Sample Projects",},
|
||||
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"Bevel.png","CopyToMask":-1,"filePath":"datafiles/Sample Projects",},
|
||||
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"Broken heart.png","CopyToMask":-1,"filePath":"datafiles/Sample Projects",},
|
||||
|
@ -432,7 +436,7 @@
|
|||
"isEcma": false,
|
||||
"LibraryEmitters": [],
|
||||
"MetaData": {
|
||||
"IDEVersion": "2023.8.2.108",
|
||||
"IDEVersion": "2023.11.1.129",
|
||||
},
|
||||
"resources": [
|
||||
{"id":{"name":"s_node_corner","path":"sprites/s_node_corner/s_node_corner.yy",},},
|
||||
|
|
BIN
datafiles/report/PXC crash reporter.exe
Normal file
BIN
datafiles/report/data.win
Normal file
BIN
datafiles/report/execute_shell_simple_ext_x64.dll
Normal file
6
datafiles/report/options.ini
Normal file
|
@ -0,0 +1,6 @@
|
|||
[Windows]
|
||||
SleepMargin=10
|
||||
Usex64=True
|
||||
[LLVM-WINDOWS]
|
||||
VisualStudioDir=C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\Tools\VsDevCmd.bat
|
||||
[execute_shell_simple_ext]
|
Before Width: | Height: | Size: 80 KiB After Width: | Height: | Size: 80 KiB |
Before Width: | Height: | Size: 80 KiB After Width: | Height: | Size: 80 KiB |
Before Width: | Height: | Size: 58 KiB After Width: | Height: | Size: 58 KiB |
Before Width: | Height: | Size: 58 KiB After Width: | Height: | Size: 58 KiB |
|
@ -94,11 +94,11 @@ function setException() { #region
|
|||
clipboard_set_text(tt);
|
||||
show_debug_message(tt);
|
||||
|
||||
var rep = $"{program_directory}report\\PXC crash reporter.exe";
|
||||
if(OS == os_macosx) rep = $"{program_directory}PXC_crash_reporter.app";
|
||||
var rep = $"{APP_LOCATION}report\\PXC crash reporter.exe";
|
||||
//if(OS == os_macosx) rep = $"{program_directory}PXC_crash_reporter.app";
|
||||
|
||||
var pid = shell_execute_async(rep, DIRECTORY);
|
||||
show_message($"{rep} [{file_exists(rep)}]: {pid}");
|
||||
var pid = shell_execute(rep, DIRECTORY);
|
||||
print($"{rep} [{file_exists(rep)}]: {pid}");
|
||||
|
||||
return 0;
|
||||
});
|
||||
|
|