aseprite/data/widgets/send_crash.xml
David Capello 81d39664a7 Add an alternative message to debug crashes in compiled versions
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.
2016-01-31 19:49:24 -03:00

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>