-
Notifications
You must be signed in to change notification settings - Fork 72
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ViewScene bug report button #1997
Merged
Merged
Changes from all commits
Commits
Show all changes
18 commits
Select commit
Hold shift + click to select a range
638364b
Added view scene bug report button. currently calls regular screenshot
d3a7498
bug report icon
facb052
Bug reporting sent over email. Image auto saving. System info is retr…
c5736c5
Added qt version to bug report
b32d9d1
Moved screenshot to better location. Tweaked system info output
bc62b4d
Merge branch 'master' into bug_report
dcwhite f31aec1
Merge branch 'master' into bug_report
dcwhite b6f67ec
More efficient string buiding and made some string non-static
2a7d278
Merge branch 'bug_report' of https://github.com/rubiojr9/scirun into …
27391f1
Merge branch 'master' into bug_report
dcwhite 3fcbf32
Merge branch 'master' into bug_report
dcwhite 7cd09c5
Merge branch 'master' into bug_report
jessdtate e6167b0
Merge branch 'master' of https://github.com/SCIInstitute/SCIRun into …
165bd3f
Updated function call name
d7aca2e
Merge branch 'master' into bug_report
dcwhite 61607d4
Merge branch 'master' into bug_report
jessdtate a3465c2
Moved bug report button to dev tab
74f84cc
Merge branch 'master' into bug_report
dcwhite File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,17 +29,18 @@ DEALINGS IN THE SOFTWARE. | |
#include <es-log/trace-log.h> | ||
#include <gl-platform/GLPlatform.hpp> | ||
|
||
#include <Interface/Modules/Render/ViewScenePlatformCompatibility.h> | ||
#include <Interface/Modules/Render/ES/SRInterface.h> | ||
#include <Interface/Modules/Render/GLWidget.h> | ||
#include <Core/Application/Application.h> | ||
#include <Core/Application/Preferences/Preferences.h> | ||
#include <Core/Application/Version.h> | ||
#include <Core/GeometryPrimitives/Transform.h> | ||
#include <Core/Logging/Log.h> | ||
#include <Modules/Render/ViewScene.h> | ||
#include <Interface/Modules/Render/Screenshot.h> | ||
#include <Graphics/Glyphs/GlyphGeom.h> | ||
#include <Graphics/Datatypes/GeometryImpl.h> | ||
#include <Core/GeometryPrimitives/Transform.h> | ||
#include <Graphics/Glyphs/GlyphGeom.h> | ||
#include <Interface/Modules/Render/ES/SRInterface.h> | ||
#include <Interface/Modules/Render/GLWidget.h> | ||
#include <Interface/Modules/Render/Screenshot.h> | ||
#include <Interface/Modules/Render/ViewScenePlatformCompatibility.h> | ||
#include <Modules/Render/ViewScene.h> | ||
#include <boost/timer.hpp> | ||
|
||
using namespace SCIRun::Gui; | ||
|
@@ -2139,6 +2140,55 @@ void ViewSceneDialog::screenshotClicked() | |
screenshotTaker_->saveScreenshot(); | ||
} | ||
|
||
//-------------------------------------------------------------------------------------------------- | ||
void ViewSceneDialog::sendBugReport() | ||
{ | ||
QString glVersion = reinterpret_cast<const char*>(glGetString(GL_VERSION)); | ||
QString gpuVersion = reinterpret_cast<const char *>(glGetString(GL_RENDERER)); | ||
|
||
// Temporarily save screenshot so that it can be sent over email | ||
takeScreenshot(); | ||
QImage image = screenshotTaker_->getScreenshot(); | ||
QString location = QDir::homePath() % QLatin1String("/scirun5screenshots/scirun_bug.png"); | ||
image.save(location); | ||
|
||
// Generate email template | ||
QString askForScreenshot = "\nIMPORTANT: Make sure to attach the screenshot of the ViewScene located at " | ||
% location % "\n\n\n"; | ||
static QString instructions = "## For bugs, follow the template below: fill out all pertinent sections," | ||
"then delete the rest of the template to reduce clutter." | ||
"\n### If the prerequisite is met, just delete that text as well. " | ||
"If they're not all met, the issue will be closed or assigned back to you.\n\n"; | ||
static QString prereqs = "**Prerequisite**\n* [ ] Did you [perform a cursory search](https://github.com/SCIInstitute/SCIRun/issues)" | ||
"to see if your bug or enhancement is already reported?\n\n"; | ||
static QString reportGuide = "For more information on how to write a good " | ||
"[bug report](https://github.com/atom/atom/blob/master/CONTRIBUTING.md#how-do-i-submit-a-good-bug-report) or" | ||
"[enhancement request](https://github.com/atom/atom/blob/master/CONTRIBUTING.md#how-do-i-submit-a-good-enhancement-suggestion)," | ||
"see the `CONTRIBUTING` guide. These links point to another project, but most of the advice holds in general.\n\n"; | ||
static QString describe = "**Describe the bug**\nA clear and concise description of what the bug is.\n\n"; | ||
static QString askForData = "**Providing sample network(s) along with input data is useful to solving your issue.**\n\n"; | ||
static QString reproduction = "**To Reproduce**\nSteps to reproduce the behavior:" | ||
"\n1. Go to '...'\n2. Click on '....'\n3. Scroll down to '....'\n4. See error\n\n"; | ||
|
||
static QString expectedBehavior = "**Expected behavior**\nA clear and concise description of what you expected to happen.\n\n"; | ||
static QString additional = "**Additional context**\nAdd any other context about the problem here.\n\n"; | ||
QString desktopInfo = "Desktop: " % QSysInfo::prettyProductName() % "\n"; | ||
QString kernelInfo = "Kernel: " % QSysInfo::kernelVersion() % "\n"; | ||
QString gpuInfo = "GPU: " % gpuVersion % "\n"; | ||
QString qtInfo = "QT Version: " % QLibraryInfo::version().toString() % "\n"; | ||
QString glInfo = "GL Version: " % glVersion % "\n"; | ||
QString scirunVersionInfo = "SCIRun Version: " % QString::fromStdString(VersionInfo::GIT_VERSION_TAG) % "\n"; | ||
QString machineIdInfo = "Machine ID: " % QString(QSysInfo::machineUniqueId()) % "\n"; | ||
|
||
static QString recipient = "[email protected]"; | ||
static QString subject = "View%20Scene%20Bug%20Report"; | ||
QDesktopServices::openUrl(QUrl(QString("mailto:" % recipient % "?subject=" % subject % "&body=" % | ||
askForScreenshot % instructions % prereqs % reportGuide % | ||
describe % askForData % reproduction % expectedBehavior % | ||
additional % desktopInfo % kernelInfo % gpuInfo % | ||
qtInfo % glInfo % scirunVersionInfo % machineIdInfo))); | ||
} | ||
|
||
//-------------------------------------------------------------------------------------------------- | ||
void ViewSceneDialog::takeScreenshot() | ||
{ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@RubioJr9 I tested this and it works great. One request though. It would be nice to make unique screenshot files for people that test frequently. It's easy to append a timestamp to the file name and then copy that unique name here. Could you add that too? Thanks.