bug fixees, updated README

This commit is contained in:
Andrew Gundersen 2022-03-31 07:36:01 -05:00
commit 92607260d1
3 changed files with 4 additions and 7 deletions

View file

@ -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

View file

@ -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

View file

@ -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;