Skip to content

Commit 8cc23dc

Browse files
committed
edited file manager
1 parent 6f3684e commit 8cc23dc

File tree

2 files changed

+30
-27
lines changed

2 files changed

+30
-27
lines changed

README.md

+25-24
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ pnpm install
2020
3. Run in developement environment
2121

2222
```sh
23+
pnpm recursive run build
2324
pnpm recursive run dev
2425
```
2526

@@ -46,30 +47,30 @@ This will create an `out` folder containing exported HTML files and all required
4647

4748
## Features
4849

49-
- File Management
50-
- List
51-
- Upload
52-
- Download
53-
- Delete
54-
- Preview image files
55-
- Screen Capture
56-
- Terminal Emulator powered by [Tabby](https://github.com/Eugeny/tabby)
57-
- Tabs and split panes
58-
- Color themes
59-
- Rich configuration
60-
- Install APK
61-
- [Scrcpy](https://github.com/Genymobile/scrcpy) compatible client
62-
- Screen mirroring
63-
- Audio forwarding (Android >= 11)
64-
- Recording
65-
- Control device with mouse, touch and keyboard
66-
- Monitor and dump logcat messages
67-
- Power off and reboot to different modes
50+
- File Management
51+
- List
52+
- Upload
53+
- Download
54+
- Delete
55+
- Preview image files
56+
- Screen Capture
57+
- Terminal Emulator powered by [Tabby](https://github.com/Eugeny/tabby)
58+
- Tabs and split panes
59+
- Color themes
60+
- Rich configuration
61+
- Install APK
62+
- [Scrcpy](https://github.com/Genymobile/scrcpy) compatible client
63+
- Screen mirroring
64+
- Audio forwarding (Android >= 11)
65+
- Recording
66+
- Control device with mouse, touch and keyboard
67+
- Monitor and dump logcat messages
68+
- Power off and reboot to different modes
6869

6970
## Used open-source projects
7071

71-
- [ADB](https://android.googlesource.com/platform/packages/modules/adb) from Google ([Apache License 2.0](./adb.NOTICE))
72-
- [Scrcpy](https://github.com/Genymobile/scrcpy) from Romain Vimont ([Apache License 2.0](https://github.com/Genymobile/scrcpy/blob/master/LICENSE))
73-
- [Tabby](https://github.com/Eugeny/tabby) from Eugeny ([MIT License](https://github.com/Eugeny/tabby/blob/master/LICENSE))
74-
- [webm-muxer](https://github.com/Vanilagy/webm-muxer) from Vanilagy ([MIT License](https://github.com/Vanilagy/webm-muxer/blob/main/LICENSE))
75-
- [web-streams-polyfill](https://github.com/MattiasBuelens/web-streams-polyfill) from Mattias Buelens ([MIT License](https://github.com/MattiasBuelens/web-streams-polyfill/blob/master/LICENSE))
72+
- [ADB](https://android.googlesource.com/platform/packages/modules/adb) from Google ([Apache License 2.0](./adb.NOTICE))
73+
- [Scrcpy](https://github.com/Genymobile/scrcpy) from Romain Vimont ([Apache License 2.0](https://github.com/Genymobile/scrcpy/blob/master/LICENSE))
74+
- [Tabby](https://github.com/Eugeny/tabby) from Eugeny ([MIT License](https://github.com/Eugeny/tabby/blob/master/LICENSE))
75+
- [webm-muxer](https://github.com/Vanilagy/webm-muxer) from Vanilagy ([MIT License](https://github.com/Vanilagy/webm-muxer/blob/main/LICENSE))
76+
- [web-streams-polyfill](https://github.com/MattiasBuelens/web-streams-polyfill) from Mattias Buelens ([MIT License](https://github.com/MattiasBuelens/web-streams-polyfill/blob/master/LICENSE))

packages/adm-emulator/src/pages/file-manager.tsx

+5-3
Original file line numberDiff line numberDiff line change
@@ -873,10 +873,12 @@ const FileManager: NextPage = (): JSX.Element | null => {
873873
<Head>
874874
<title>File Manager</title>
875875
</Head>
876+
<div style={{ display: 'flex', alignItems: 'center' }}>
877+
<CommandBar items={state.menuItems} />
878+
<div style={{ marginLeft: '25%', fontSize: '1.2em', fontWeight: '600' }}>File Manager</div>
879+
</div>
876880

877-
<CommandBar items={state.menuItems} />
878-
879-
<Breadcrumb items={state.breadcrumbItems} />
881+
{/* <Breadcrumb items={state.breadcrumbItems} /> */}
880882

881883
<StackItem
882884
grow

0 commit comments

Comments
 (0)