bug fixees, updated README
This commit is contained in:
parent
58151b8b91
commit
92607260d1
3 changed files with 4 additions and 7 deletions
|
|
@ -34,10 +34,6 @@ Prerequisites:
|
|||
* Apple Developer Account ($99)
|
||||
* Valid Apple Developer ID Application Certificate on keychain
|
||||
|
||||
Clear debris from app before signing:
|
||||
|
||||
xattr -cr Electron.app
|
||||
|
||||
Sign and Notarize:
|
||||
|
||||
node notarize.js
|
||||
|
|
|
|||
|
|
@ -24,7 +24,7 @@ const Settings =
|
|||
},
|
||||
|
||||
template: `
|
||||
<div v-if="active" id="settings" >
|
||||
<div v-if="active" id="settings">
|
||||
|
||||
<button class="settings-logout-button button" @click="logout">
|
||||
Logout
|
||||
|
|
|
|||
|
|
@ -66,9 +66,10 @@ function handleMessageQueue()
|
|||
body: content.text
|
||||
}).show();
|
||||
|
||||
if (content.category == "audio")
|
||||
/* Ideally, we want a more native solution than this */
|
||||
if (current.modifier == "ai" && content.category == "audio")
|
||||
{
|
||||
playback(current.id, content.blob);
|
||||
playback(content.blob, current.id);
|
||||
}
|
||||
|
||||
return;
|
||||
|
|
|
|||
Loading…
Reference in a new issue