mirror of
https://github.com/cryptoadvance/specter-desktop.git
synced 2026-08-13 12:33:29 +02:00
* 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 <moneymanolis@protonmail.com>
20 lines
885 B
HTML
20 lines
885 B
HTML
<html>
|
|
<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('./src/helpers')
|
|
helpers.getSpecterAppLogs((lines) => {
|
|
document.getElementById('specterapp-logs').innerText = lines
|
|
})
|
|
</script>
|
|
</body>
|
|
</html>
|