Skip to content

Commit dd096ec

Browse files
committed
refactor: add binaries and run format
- add working esp binary - add manifest file - run format
1 parent 826511b commit dd096ec

File tree

8 files changed

+9
-33
lines changed

8 files changed

+9
-33
lines changed
+1-25
Original file line numberDiff line numberDiff line change
@@ -1,25 +1 @@
1-
{
2-
"name": "OpenIris",
3-
"version": "2021.11.0",
4-
"new_install_prompt_erase": true,
5-
"builds": [
6-
{
7-
"chipFamily": "ESP32",
8-
"parts": [
9-
{
10-
"path": "merged-firmware.bin",
11-
"offset": 0
12-
}
13-
]
14-
},
15-
{
16-
"chipFamily": "ESP32-S2",
17-
"parts": [
18-
{
19-
"path": "merged-firmware.bin",
20-
"offset": 0
21-
}
22-
]
23-
}
24-
]
25-
}
1+
{"name": "OpenIris", "version": "v1.10.6", "new_install_prompt_erase": true, "builds": [{"chipFamily": "ESP32", "parts": [{"path": "merged-firmware.bin", "offset": 0}]}]}
2.84 KB
Binary file not shown.

GUI/ETVR/src/app.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1+
import { lazy, onMount, Suspense } from 'solid-js'
12
import { MdnsProvider } from '@utils/context/mdns'
23
import { handleAppBoot, handleTitlebar } from '@utils/hooks/app'
3-
import { lazy, onMount, Suspense } from 'solid-js'
44

55
const AppRoutes = lazy(() => import('@routes/Routes'))
66
const CameraSettingsModal = lazy(() => import('@components/Camera/CameraSettingsModal'))
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
const AddNewCamera = () => {
2-
return <div></div>
2+
return <div />
33
}
44

55
export default AddNewCamera

GUI/ETVR/src/components/CustomSlideAnimation/index.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { ANIMATION_MODE, POPOVER_ID } from '@src/static/types/enums'
21
import { createSignal, JSX } from 'solid-js'
2+
import { ANIMATION_MODE, POPOVER_ID } from '@src/static/types/enums'
33

44
export interface IProps {
55
firstChild: JSX.Element

GUI/ETVR/src/components/Settings/index.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
import { RANGE_INPUT_FORMAT } from '@src/static/types/enums'
2-
import { CameraStatus, CameraType } from '@store/camera/camera'
31
import CameraAddress from './CameraAddress/CameraAddress'
42
import CameraInfo from './CameraInfo/CameraInfo'
53
import CameraSettings from './CameraSettings'
64
import CamerasModal from './CamerasModal'
5+
import { RANGE_INPUT_FORMAT } from '@src/static/types/enums'
6+
import { CameraStatus, CameraType } from '@store/camera/camera'
77

88
export interface IProps {
99
onChange: (value: string) => void

GUI/ETVR/src/components/header/index.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
import icons from '@assets/images'
2-
import CustomSlideAnimation from '@components/CustomSlideAnimation'
31
import { Image } from '@kobalte/core'
42
import { Link } from '@solidjs/router'
53
import CustomPopover from './CustomPopover'
4+
import icons from '@assets/images'
5+
import CustomSlideAnimation from '@components/CustomSlideAnimation'
66
import './styles.css'
77

88
interface Iprops {

GUI/ETVR/src/pages/Home/index.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import { createSignal, For, Show } from 'solid-js'
12
import icons from '@assets/images'
23
import Camera from '@components/Camera'
34
import CustomSlideAnimation from '@components/CustomSlideAnimation'
@@ -8,7 +9,6 @@ import { POPOVER_ID } from '@src/static/types/enums'
89
import { setRestDevice } from '@src/store/api/restAPI'
910
import { cameras } from '@src/store/camera/selectors'
1011
import { setOpenModal } from '@src/store/ui/ui'
11-
import { createSignal, For, Show } from 'solid-js'
1212
import './index.css'
1313
const Home = () => {
1414
const [displayMode, setDisplayMode] = createSignal(POPOVER_ID.GRIP)

0 commit comments

Comments
 (0)