Skip to content

Commit ef73fcf

Browse files
authored
Release 3.0.6 (#142)
* version bump, changelog updated * Fix fetch origin in Menu debugger request
1 parent efab4a4 commit ef73fcf

File tree

3 files changed

+18
-2
lines changed

3 files changed

+18
-2
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,18 @@
22

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

5+
## [3.0.6](https://github.com/Netflix-Skunkworks/stethoscope-app/tree/v3.0.6)
6+
7+
### Fixed
8+
- kmd disk script (moved to `tryExec` to prevent failures)
9+
- Crash when update is triggered after window is destroyed
10+
- Screenlock regex on Windows
11+
12+
### Added
13+
- Users can now copy debug info from Help menu
14+
15+
----
16+
517
## [3.0.5](https://github.com/Netflix-Skunkworks/stethoscope-app/tree/v3.0.5)
618

719
### Fixed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "Stethoscope",
3-
"version": "3.0.5",
3+
"version": "3.0.6",
44
"private": true,
55
"homepage": "./",
66
"author": "Netflix",

src/Menu.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,11 @@ module.exports = function (mainWindow, app, focusOrCreateWindow, updater, log) {
7676
}, {
7777
label: 'Copy Debug Info',
7878
click () {
79-
fetch(`http://127.0.0.1:37370/debugger`)
79+
fetch(`http://127.0.0.1:37370/debugger`, {
80+
headers: {
81+
Origin: 'stethoscope://main'
82+
}
83+
})
8084
.then(res => res.text())
8185
.then(data => clipboard.writeText(data))
8286
}

0 commit comments

Comments
 (0)