-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adding an error popup window, fixing a bug in nodetunes so It doesn’t…
… crash
- Loading branch information
CameronH
committed
Jan 7, 2017
1 parent
1a73195
commit 3e366ea
Showing
3 changed files
with
97 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta charset="UTF-8"> | ||
</head> | ||
<link rel="stylesheet" type="text/css" href="mac.css"> | ||
<body> | ||
<h2 id="air-sonos">AirSonos 🐞</h2> | ||
|
||
<p>Unknown Errors have occurred: logs can be found at</p> | ||
<p id="path"></p> | ||
<p>And the developer can be found on <a href="https://github.com/mermaid/AirSonos.app">GitHub</a></p> | ||
<p>Hopefully he can get you all sorted out | ||
|
||
<script src="redirectLinks.js"></script> | ||
<script> | ||
const path = require('electron').remote.require('path'); | ||
const logPath = path.join(require('electron').remote.app.getPath('appData'), 'AirSonos/'); | ||
|
||
document.getElementById('path').innerHTML = logPath; | ||
</script> | ||
</body> | ||
</html> |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters