Use "Atom-Shell" instead of "atom-shell" for product names.
This commit is contained in:
parent
70b7659893
commit
59f586ba59
4 changed files with 4 additions and 3 deletions
2
atom.gyp
2
atom.gyp
|
@ -420,7 +420,7 @@
|
|||
'tools/mac/generate_breakpad_symbols.py',
|
||||
'--build-dir=<(PRODUCT_DIR)',
|
||||
'--binary=<(PRODUCT_DIR)/<(product_name).app/Contents/MacOS/<(product_name)',
|
||||
'--symbols-dir=<(PRODUCT_DIR)/atom-shell.breakpad.syms',
|
||||
'--symbols-dir=<(PRODUCT_DIR)/Atom-Shell.breakpad.syms',
|
||||
'--clear',
|
||||
'--jobs=16',
|
||||
],
|
||||
|
|
|
@ -31,7 +31,7 @@ void CrashReporterMac::InitBreakpad(const std::string& product_name,
|
|||
NSMutableDictionary* parameters =
|
||||
[NSMutableDictionary dictionaryWithCapacity:4];
|
||||
|
||||
[parameters setValue:@"atom-shell"
|
||||
[parameters setValue:@"Atom-Shell"
|
||||
forKey:@BREAKPAD_PRODUCT];
|
||||
[parameters setValue:base::SysUTF8ToNSString(product_name)
|
||||
forKey:@BREAKPAD_PRODUCT_DISPLAY];
|
||||
|
|
|
@ -100,7 +100,7 @@ google_breakpad::CustomClientInfo* CrashReporterWin::GetCustomInfo(
|
|||
custom_info_entries_.reserve(2 + upload_parameters_.size());
|
||||
|
||||
custom_info_entries_.push_back(google_breakpad::CustomInfoEntry(
|
||||
L"prod", UTF8ToWide(product_name).c_str()));
|
||||
L"prod", L"Atom-Shell"));
|
||||
custom_info_entries_.push_back(google_breakpad::CustomInfoEntry(
|
||||
L"ver", UTF8ToWide(version).c_str()));
|
||||
|
||||
|
|
1
spec/fixtures/api/crash.html
vendored
1
spec/fixtures/api/crash.html
vendored
|
@ -3,6 +3,7 @@
|
|||
<script type="text/javascript" charset="utf-8">
|
||||
var crashReporter = require('crash-reporter');
|
||||
crashReporter.start({
|
||||
productName: 'Something other than Atom-Shell',
|
||||
submitUrl: 'http://127.0.0.1:1127',
|
||||
autoSubmit: true,
|
||||
ignoreSystemCrashHandler: true,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue