Compare commits

..

6 Commits

5 changed files with 10 additions and 6 deletions
+1 -1
View File
@@ -1 +1 @@
0.1.1.1
0.1.1.4
Binary file not shown.

After

Width:  |  Height:  |  Size: 292 KiB

+6 -2
View File
@@ -36,6 +36,10 @@ code {
min-height: 100svh;
padding: 24px 16px calc(48px + env(safe-area-inset-bottom, 0px));
box-sizing: border-box;
background-image: linear-gradient(rgba(15, 23, 42, 0.3), rgba(15, 23, 42, 0.5)), url('/login-bg.jpg');
background-size: cover;
background-position: center;
background-repeat: no-repeat;
}
/* Glassmorphism Auth Card */
@@ -5573,7 +5577,7 @@ html.theme-cupertino .events-scroll-container {
flex-wrap: wrap;
gap: 6px;
padding: 6px 12px calc(6px + env(safe-area-inset-bottom, 0px));
font-size: 11px;
font-size: 13px;
line-height: 1.4;
color: #64748b;
background: rgba(11, 12, 16, 0.72);
@@ -5615,7 +5619,7 @@ html.theme-cupertino .events-scroll-container {
gap: 4px;
padding: 2px 8px;
border-radius: 999px;
font-size: 11px;
font-size: 13px;
font-weight: 500;
color: #94a3b8;
text-decoration: none;
+1 -1
View File
@@ -35,7 +35,7 @@ export default function AppFooter() {
aria-label={t('footer.kofi_title')}
onClick={() => trackPlausibleEvent(PlausibleEvents.KOFI_LINK_CLICKED)}
>
<Coffee size={12} aria-hidden="true" />
<Coffee size={14} aria-hidden="true" />
<span>{t('footer.kofi_label')}</span>
</a>
</footer>
+2 -2
View File
@@ -110,8 +110,7 @@ export default function LiveVoiceCapture({
if (!recorder || recorder.state !== 'recording') return
recorder.stop()
clearTimer()
stopStream()
}, [clearTimer, stopStream])
}, [clearTimer])
const startRecording = async () => {
setMicError(null)
@@ -141,6 +140,7 @@ export default function LiveVoiceCapture({
)
const blob = new Blob(chunksRef.current, { type: resolvedMime })
chunksRef.current = []
stopStream()
try {
assertVoiceMemoBlobSize(blob)
finishRecording(blob, resolvedMime, durationSec)