Skip to content

Latest commit

 

History

History
54 lines (39 loc) · 1.75 KB

README.md

File metadata and controls

54 lines (39 loc) · 1.75 KB

CrashReporter for Qt Apps

After getting frustated to get crash reporter (or with proper license). I decided to create one. This is result.

Download

Clone repo or download from releases.

How to use

  • Step 1: Include Header in app. Create version.h from sample_version.h file which suits your app.
#include "version.h"
#include "CrashHandler.h"
  • Step 2: Init Crash Handler
CrashManager::CrashHandler::instance()->Init( QDir::tempPath());
  • Step 3: Open CrashRepoter pro file(Qt Project) and build executable out of it. Put it in same dir of App executable.

  • Step 4: Compile App.

  • Step 5: Crash will open crashreporter.

That's it. :)

Components

  • CrashReporter - Support features like Send report with email,desc and dmp file to server, restart app.
  • CrashHandler - Add inside Qt App. It will create crash report and trigger crash reporter automatically.
  • breakpad - Google breakpad library ( BSD 3 license)
  • WebInterface - Receives dmp file, email, desc and sends email to user.

TODO

  • Tests
  • Examples
  • Add screenshots
  • Share web server code for uploading dmp file and send mail to developers
  • Any WIKI page about how easy to use breakpad with Qt.
  • Enable create issue button in crash reporter

For all TODOs I'm pretty much rely on PULL requests so make one and contribute back.

License

  • Apache 2.0 license

Finished

  • Crash reporter
  • Server side done. Dmp file upload and send mail is also done.
  • Crash Handler
  • WebInterface