Skip to content

Commit

Permalink
Release 3.0.6 (#142)
Browse files Browse the repository at this point in the history
* version bump, changelog updated

* Fix fetch origin in Menu debugger request
  • Loading branch information
rmcvey committed May 8, 2019
1 parent efab4a4 commit ef73fcf
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 2 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,18 @@

All notable changes to this project will be documented in this file.

## [3.0.6](https://github.com/Netflix-Skunkworks/stethoscope-app/tree/v3.0.6)

### Fixed
- kmd disk script (moved to `tryExec` to prevent failures)
- Crash when update is triggered after window is destroyed
- Screenlock regex on Windows

### Added
- Users can now copy debug info from Help menu

----

## [3.0.5](https://github.com/Netflix-Skunkworks/stethoscope-app/tree/v3.0.5)

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Stethoscope",
"version": "3.0.5",
"version": "3.0.6",
"private": true,
"homepage": "./",
"author": "Netflix",
Expand Down
6 changes: 5 additions & 1 deletion src/Menu.js
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,11 @@ module.exports = function (mainWindow, app, focusOrCreateWindow, updater, log) {
}, {
label: 'Copy Debug Info',
click () {
fetch(`http://127.0.0.1:37370/debugger`)
fetch(`http://127.0.0.1:37370/debugger`, {
headers: {
Origin: 'stethoscope://main'
}
})
.then(res => res.text())
.then(data => clipboard.writeText(data))
}
Expand Down

0 comments on commit ef73fcf

Please sign in to comment.