Difference between revisions of "Documentation/Nightly/Developers/FAQ/Dashboard"

From Slicer Wiki
Jump to: navigation, search
Line 20: Line 20:
 
Set registry key <tt>DontShowUI</tt> to <tt>1</tt> (see <tt>HKEY_CURRENT_USER\Software\Microsoft\Windows\Windows Error Reporting</tt>)
 
Set registry key <tt>DontShowUI</tt> to <tt>1</tt> (see <tt>HKEY_CURRENT_USER\Software\Microsoft\Windows\Windows Error Reporting</tt>)
  
This will prevent <b>Error reporting UI<b> from showing up when a program crash.
+
This will prevent <b>Error reporting UI</b> from showing up when a program crash.
  
 
== macOS: How to prevent the "application quit unexpectedly" dialog from showing up when a tested program crash ?==
 
== macOS: How to prevent the "application quit unexpectedly" dialog from showing up when a tested program crash ?==
Line 26: Line 26:
 
Few options:
 
Few options:
  
* <tt>defaults write com.apple.CrashReporter DialogType none</tt>
+
* <tt>defaults write com.apple.CrashReporter DialogType none</tt>: This will prevent <b>CrashReporter dialog</b> from showing up when a program crash.
  
* <tt>defaults write com.apple.CrashReporter UseUNC 1</tt>
+
* <tt>defaults write com.apple.CrashReporter UseUNC 1</tt>: This will prevent <b>CrashReporter dialog</b> from showing up when a program crash and will instead let the problem appear as a notification instead.
  
See https://apple.stackexchange.com/questions/105846/prevent-application-quit-unexpectedly-message-on-sigquit
+
References:
 +
 
 +
* https://apple.stackexchange.com/questions/105846/prevent-application-quit-unexpectedly-message-on-sigquit
 +
 
 +
* https://www.macissues.com/2016/04/12/using-the-os-x-crash-reporter-to-diagnose-a-program-failure/

Revision as of 03:07, 5 March 2018

Home < Documentation < Nightly < Developers < FAQ < Dashboard


For the latest Slicer documentation, visit the read-the-docs.


Dashboard

What time the nightly dashboard starts ?

The nightly build are expected to start every day after 3am UTC (22pm EST) and should be available in the morning. If no build error occurred, the latest packages can be downloaded using on of these links:

How can I setup a dashboard ?

See dashboard setup instruction.

Windows: How to prevent "Error reporting UI" dialog from showing up when a program crash ?

Set registry key DontShowUI to 1 (see HKEY_CURRENT_USER\Software\Microsoft\Windows\Windows Error Reporting)

This will prevent Error reporting UI from showing up when a program crash.

macOS: How to prevent the "application quit unexpectedly" dialog from showing up when a tested program crash ?

Few options:

  • defaults write com.apple.CrashReporter DialogType none: This will prevent CrashReporter dialog from showing up when a program crash.
  • defaults write com.apple.CrashReporter UseUNC 1: This will prevent CrashReporter dialog from showing up when a program crash and will instead let the problem appear as a notification instead.

References: