Skip to content

Commit

Permalink
Merge pull request #1500 from hovancik/more-debug
Browse files Browse the repository at this point in the history
Add more debug info
  • Loading branch information
hovancik authored Oct 13, 2024
2 parents d704702 + 6c1aaae commit 639088e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 3 additions & 1 deletion app/preferences.html
Original file line number Diff line number Diff line change
Expand Up @@ -389,9 +389,11 @@
settingsFile: <a href="" class="file" id="settingsfile"></a>
<br/>
logsFile: <a href="" class="file" id="logsfile"></a>
<br/>Node.js: <span id="node"></span>
<br/>Node.js: <span id="node"></span>,
Chromium: <span id="chrome"></span>,
Electron: <span id="electron"></span>
<br/>OS: <span id="platform"></span><span class="linux-hidden darwin-hidden">,
Windows Store: <span id="windowsStore"></span></span>
</p>
<p>
<button>copy to clipboard</button>
Expand Down
2 changes: 2 additions & 0 deletions app/preferences.js
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,8 @@ window.onload = (e) => {
document.querySelector('#node').innerHTML = process.versions.node
document.querySelector('#chrome').innerHTML = process.versions.chrome
document.querySelector('#electron').innerHTML = process.versions.electron
document.querySelector('#platform').innerHTML = process.platform
document.querySelector('#windowsStore').innerHTML = process.windowsStore || false
}
setWindowHeight()
})
Expand Down

0 comments on commit 639088e

Please sign in to comment.