mirror of
https://github.com/rizinorg/cutter.git
synced 2024-12-21 12:26:11 +00:00
d34349b49f
Qt truncates integers to 52-bit, corrupting e.g. memory addresses. Use rizin's JSON parser, which can parse integers whose size is up to 64 bits.
51 lines
2.0 KiB
C++
51 lines
2.0 KiB
C++
#include "BugReporting.h"
|
|
|
|
#include "Cutter.h"
|
|
#include <QUrl>
|
|
#include <QJsonObject>
|
|
#include "CutterConfig.h"
|
|
#include <QDesktopServices>
|
|
|
|
void openIssue()
|
|
{
|
|
QString url, osInfo, format, arch, type;
|
|
// Pull in info needed for git issue
|
|
osInfo = QSysInfo::productType() + " "
|
|
+ (QSysInfo::productVersion() == "unknown" ? "" : QSysInfo::productVersion());
|
|
CutterJson docu = Core()->getFileInfo();
|
|
CutterJson coreObj = docu["core"];
|
|
CutterJson binObj = docu["bin"];
|
|
if (binObj.size()) {
|
|
format = coreObj["format"].toString();
|
|
arch = binObj["arch"].toString();
|
|
if (binObj["type"].valid()) {
|
|
type = coreObj["type"].toString();
|
|
} else {
|
|
type = "N/A";
|
|
}
|
|
} else {
|
|
format = coreObj["format"].toString();
|
|
arch = "N/A";
|
|
type = "N/A";
|
|
}
|
|
url = "https://github.com/rizinorg/cutter/issues/new?&body=**Environment information**\n* "
|
|
"Operating System: "
|
|
+ osInfo + "\n* Cutter version: " + CUTTER_VERSION_FULL + "\n* Obtained from:\n"
|
|
+ " - [x] Built from source\n - [ ] Downloaded release from Cutter website or GitHub "
|
|
"\n"
|
|
" - [ ] Distribution repository\n* File format: "
|
|
+ format + "\n * Arch: " + arch + "\n * Type: " + type
|
|
+ "\n\n**Describe the bug**\n\n<!-- A clear and concise description of what the bug "
|
|
"is. -->"
|
|
"\n\n**To Reproduce**\n\n"
|
|
"Steps to reproduce the behavior:\n1. Go to '...'\n2. Click on '....'\n3. Scroll "
|
|
"down to '....'\n"
|
|
"4. See error\n\n**Expected behavior**\n\n"
|
|
"<!-- A clear and concise description of what you expected to happen. -->\n\n\n"
|
|
"**Screenshots**\n\n<!-- If applicable, add screenshots to help explain your "
|
|
"problem. -->\n\n\n"
|
|
"**Additional context**\n\n<!-- Add any other context about the problem here. -->\n";
|
|
|
|
QDesktopServices::openUrl(QUrl(url, QUrl::TolerantMode));
|
|
}
|