-
Notifications
You must be signed in to change notification settings - Fork 241
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* chore: migrate from altool to notarytool * fix litte things in build-common * add pyenv install in build-osx * add pyinstaller/electron/signing_logs to gitignore * chore: migrate from altool to notarytool * fix little things in build.common * add pyenv install in build osx * add pyinatsller electron signing logs to gitignore * updated build-osx.sh * fix entitlement * heavily refactoring the electron app * polish and improve * further bugfixing and polishing * tiny change to improve support of MacOS * Fix dependency issues --------- Co-authored-by: Manolis <[email protected]>
- Loading branch information
1 parent
7970c3d
commit e9dc494
Showing
22 changed files
with
932 additions
and
803 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
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.