mirror of
https://github.com/aseprite/aseprite.git
synced 2024-12-26 09:19:27 +00:00
81d39664a7
As .dmp files are useful only for official releases (i.e. when we have the compiled .exe+.pdb), this is an alternative message to stop receiving .dmp files at support@aseprite.org that cannot be used to debug a crash.
28 lines
909 B
XML
28 lines
909 B
XML
<!-- Aseprite -->
|
|
<!-- Copyright (C) 2014, 2016 by David Capello -->
|
|
<gui>
|
|
<window text="Crash Report" id="send_crash">
|
|
<vbox>
|
|
|
|
<vbox id="official">
|
|
<label text="Please send the following file:" />
|
|
<link id="filename" text="" url="" />
|
|
<label text="to this email:" />
|
|
<entry readonly="true" text="support@aseprite.org" maxsize="256" />
|
|
<label text="explaining what you was doing when the program crashed." />
|
|
</vbox>
|
|
|
|
<vbox id="dev">
|
|
<label text="You are using a development version." />
|
|
<label text="Open the following file to debug your compilation:" />
|
|
<link id="dev_filename" text="" url="" />
|
|
</vbox>
|
|
|
|
<separator horizontal="true" />
|
|
|
|
<button text="Do it later" closewindow="true" />
|
|
<button id="delete_file" text="Delete file, I've already sent it" closewindow="true" />
|
|
</vbox>
|
|
</window>
|
|
</gui>
|