spot: v to.19

This commit is contained in:
nick-delirium 2025-05-13 10:38:18 +02:00
parent 5c24594d5b
commit 4972cfad94
No known key found for this signature in database
GPG key ID: 93ABD695DF5FDBA0
3 changed files with 2 additions and 3 deletions

View file

@ -2,7 +2,7 @@ import { createSignal, onMount } from "solid-js";
import { AppState, RecordingArea } from "../types";
export function useAppState() {
const [state, setState] = createSignal<AppState>(AppState.EMPTY);
const [state, setState] = createSignal<AppState>(AppState.LOGIN);
const [isSettingsOpen, setIsSettingsOpen] = createSignal(false);
onMount(() => {

View file

@ -4,7 +4,6 @@ export type AudioDevice = {
};
export enum AppState {
EMPTY = "empty",
LOGIN = "login",
READY = "ready",
STARTING = "starting",

View file

@ -2,7 +2,7 @@
"name": "spot",
"description": "manifest.json description",
"private": true,
"version": "1.0.17",
"version": "1.0.19",
"type": "module",
"scripts": {
"dev": "wxt",