-
Notifications
You must be signed in to change notification settings - Fork 244
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into fix_install_noded
- Loading branch information
Showing
41 changed files
with
3,455 additions
and
1,525 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
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 |
---|---|---|
@@ -1,4 +1,9 @@ | ||
{ | ||
"python.testing.unittestEnabled": false, | ||
"python.testing.pytestEnabled": true | ||
"python.testing.pytestEnabled": true, | ||
"editor.formatOnSave": true, | ||
"editor.defaultFormatter": "esbenp.prettier-vscode", | ||
"[javascript]": { | ||
"editor.defaultFormatter": "esbenp.prettier-vscode" | ||
}, | ||
} |
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
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
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 |
---|---|---|
@@ -1,23 +1,20 @@ | ||
<html> | ||
<link rel="stylesheet" type="text/css" href="./styles.css"> | ||
<body style="overflow: auto; height: 100%;"> | ||
<div class="card" style="width:90%"> | ||
This window shows you the last 700 lines Logs of the specterApp. This also includes | ||
the Logs of specterd which are marked as such. It might give you hints on why specter is not coming up properly. | ||
The best approach is to scroll to the bottom and then search upwards for errors. | ||
You can find the logfile in [yourHomedirectory]/.specter/specterApp.log. | ||
<pre><code id="specterapp-logs"></code></pre> | ||
<br> | ||
|
||
</div> | ||
<link rel="stylesheet" type="text/css" href="./output.css" /> | ||
<body style="overflow: auto; height: 100%"> | ||
<div class="card" style="width: 90%"> | ||
This window shows you the last 700 lines Logs of the specterApp. This also includes the Logs of specterd which are | ||
marked as such. It might give you hints on why specter is not coming up properly. The best approach is to scroll to the | ||
bottom and then search upwards for errors. You can find the logfile in [yourHomedirectory]/.specter/specterApp.log. | ||
<pre><code id="specterapp-logs"></code></pre> | ||
<br /> | ||
</div> | ||
<script> | ||
const fs = require('fs') | ||
const path = require('path') | ||
const helpers = require('./helpers') | ||
helpers.getSpecterAppLogs( (lines) => { | ||
document.getElementById('specterapp-logs').innerText = lines | ||
}) | ||
|
||
const fs = require('fs') | ||
const path = require('path') | ||
const helpers = require('./src/helpers') | ||
helpers.getSpecterAppLogs((lines) => { | ||
document.getElementById('specterapp-logs').innerText = lines | ||
}) | ||
</script> | ||
</body> | ||
</html> | ||
</body> | ||
</html> |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.