Update App version to 0.0.2

This commit is contained in:
luckfox-eng29
2025-09-16 11:03:46 +08:00
parent 8fbd6bcf0d
commit 15d276652c
45 changed files with 3347 additions and 252 deletions

View File

@@ -11,6 +11,7 @@ import {
useMountMediaStore,
useSettingsStore,
useUiStore,
useAudioModeStore,
} from "@/hooks/stores";
import Container from "@components/Container";
import { cx } from "@/cva.config";
@@ -41,10 +42,10 @@ export default function Actionbar({
const developerMode = useSettingsStore(state => state.developerMode);
// Audio related
const [audioMode, setAudioMode] = useState("disabled");
const [send] = useJsonRpc();
const audioMode = useAudioModeStore(state => state.audioMode);
const setAudioMode = useAudioModeStore(state => state.setAudioMode);
// This is the only way to get a reliable state change for the popover
// at time of writing this there is no mount, or unmount event for the popover
const isOpen = useRef<boolean>(false);
@@ -126,11 +127,11 @@ export default function Actionbar({
return (
<>
<LuHardDrive className={className} />
<div
{/*<div
className={cx(className, "h-2 w-2 rounded-full bg-blue-700", {
hidden: !remoteVirtualMediaState,
})}
/>
/>*/}
</>
);
}}