├── LICENSE ├── README.md ├── container ├── bin │ ├── busybox │ ├── flyos │ └── run_command └── setenv.sh ├── dashboard ├── babel.cfg ├── clean.sh ├── clitools │ ├── cli.py │ └── flycontainer.py ├── config.py ├── files │ ├── adb_pwd │ │ └── android_shell.py │ ├── backup │ │ └── config.py │ ├── genpwd.py │ ├── pwd.conf │ ├── temp │ │ └── otp │ ├── token │ │ ├── gen_token.py │ │ └── token │ ├── userspace │ │ ├── cli.py │ │ ├── start.sh │ │ └── stop.sh │ └── verify │ │ └── verify_data ├── flyos.db ├── main.py ├── message.pot ├── messages.pot ├── motd │ ├── __pycache__ │ │ └── motd.cpython-310.pyc │ └── motd.py ├── start.py ├── static │ ├── css │ │ ├── adminlte.min.css │ │ ├── all.min.css │ │ ├── bootstrap-grid.css │ │ ├── bootstrap-grid.css.map │ │ ├── bootstrap-grid.min.css │ │ ├── bootstrap-grid.min.css.map │ │ ├── bootstrap-grid.rtl.css │ │ ├── bootstrap-grid.rtl.css.map │ │ ├── bootstrap-grid.rtl.min.css │ │ ├── bootstrap-grid.rtl.min.css.map │ │ ├── bootstrap-reboot.css │ │ ├── bootstrap-reboot.css.map │ │ ├── bootstrap-reboot.min.css │ │ ├── bootstrap-reboot.min.css.map │ │ ├── bootstrap-reboot.rtl.css │ │ ├── bootstrap-reboot.rtl.css.map │ │ ├── bootstrap-reboot.rtl.min.css │ │ ├── bootstrap-reboot.rtl.min.css.map │ │ ├── bootstrap-utilities.css │ │ ├── bootstrap-utilities.css.map │ │ ├── bootstrap-utilities.min.css │ │ ├── bootstrap-utilities.min.css.map │ │ ├── bootstrap-utilities.rtl.css │ │ ├── bootstrap-utilities.rtl.css.map │ │ ├── bootstrap-utilities.rtl.min.css │ │ ├── bootstrap-utilities.rtl.min.css.map │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ ├── bootstrap.min.css │ │ ├── bootstrap.min.css.map │ │ ├── bootstrap.rtl.css │ │ ├── bootstrap.rtl.css.map │ │ ├── bootstrap.rtl.min.css │ │ ├── bootstrap.rtl.min.css.map │ │ └── font.css │ ├── fonts │ │ └── poppins.ttf │ ├── img │ │ ├── flyos.jpg │ │ └── rocket.png │ ├── js │ │ ├── adminlte.min.js │ │ ├── bootstrap-5.3.2-dist │ │ │ ├── css │ │ │ │ ├── bootstrap-grid.css │ │ │ │ ├── bootstrap-grid.css.map │ │ │ │ ├── bootstrap-grid.min.css │ │ │ │ ├── bootstrap-grid.min.css.map │ │ │ │ ├── bootstrap-grid.rtl.css │ │ │ │ ├── bootstrap-grid.rtl.css.map │ │ │ │ ├── bootstrap-grid.rtl.min.css │ │ │ │ ├── bootstrap-grid.rtl.min.css.map │ │ │ │ ├── bootstrap-reboot.css │ │ │ │ ├── bootstrap-reboot.css.map │ │ │ │ ├── bootstrap-reboot.min.css │ │ │ │ ├── bootstrap-reboot.min.css.map │ │ │ │ ├── bootstrap-reboot.rtl.css │ │ │ │ ├── bootstrap-reboot.rtl.css.map │ │ │ │ ├── bootstrap-reboot.rtl.min.css │ │ │ │ ├── bootstrap-reboot.rtl.min.css.map │ │ │ │ ├── bootstrap-utilities.css │ │ │ │ ├── bootstrap-utilities.css.map │ │ │ │ ├── bootstrap-utilities.min.css │ │ │ │ ├── bootstrap-utilities.min.css.map │ │ │ │ ├── bootstrap-utilities.rtl.css │ │ │ │ ├── bootstrap-utilities.rtl.css.map │ │ │ │ ├── bootstrap-utilities.rtl.min.css │ │ │ │ ├── bootstrap-utilities.rtl.min.css.map │ │ │ │ ├── bootstrap.css │ │ │ │ ├── bootstrap.css.map │ │ │ │ ├── bootstrap.min.css │ │ │ │ ├── bootstrap.min.css.map │ │ │ │ ├── bootstrap.rtl.css │ │ │ │ ├── bootstrap.rtl.css.map │ │ │ │ ├── bootstrap.rtl.min.css │ │ │ │ └── bootstrap.rtl.min.css.map │ │ │ └── js │ │ │ │ ├── bootstrap.bundle.js │ │ │ │ ├── bootstrap.bundle.js.map │ │ │ │ ├── bootstrap.bundle.min.js │ │ │ │ ├── bootstrap.bundle.min.js.map │ │ │ │ ├── bootstrap.esm.js │ │ │ │ ├── bootstrap.esm.js.map │ │ │ │ ├── bootstrap.esm.min.js │ │ │ │ ├── bootstrap.esm.min.js.map │ │ │ │ ├── bootstrap.js │ │ │ │ ├── bootstrap.js.map │ │ │ │ ├── bootstrap.min.js │ │ │ │ └── bootstrap.min.js.map │ │ ├── bootstrap.bundle.js │ │ ├── bootstrap.bundle.js.map │ │ ├── bootstrap.bundle.min.js │ │ ├── bootstrap.bundle.min.js.map │ │ ├── bootstrap.esm.js │ │ ├── bootstrap.esm.js.map │ │ ├── bootstrap.esm.min.js │ │ ├── bootstrap.esm.min.js.map │ │ ├── bootstrap.js │ │ ├── bootstrap.js.map │ │ ├── bootstrap.min.js │ │ ├── bootstrap.min.js.map │ │ ├── bootstrap_4.2 │ │ │ └── bootstrap.min.js │ │ ├── jquery-3.5.1.slim.min.js │ │ ├── jquery-3.6.0.min.js │ │ ├── jquery.js │ │ ├── moment-timezone-with-data-10-year-range.min.js │ │ ├── moment.min.js │ │ ├── popper.min.js │ │ └── winbox.bundle.min.js │ └── webfonts │ │ ├── fa-brands-400.ttf │ │ ├── fa-brands-400.woff2 │ │ ├── fa-regular-400.ttf │ │ ├── fa-regular-400.woff2 │ │ ├── fa-solid-900.ttf │ │ ├── fa-solid-900.woff2 │ │ ├── fa-v4compatibility.ttf │ │ └── fa-v4compatibility.woff2 ├── stop.py ├── sysconf.py ├── templates │ ├── about.html │ ├── about_license.html │ ├── androidmgr.html │ ├── float_panel.html │ ├── flycontainer.html │ ├── flycontainer_create.html │ ├── flycontainer_delete.html │ ├── info.html │ ├── login.html │ ├── manager │ │ ├── android_screen.html │ │ ├── cloudflare.html │ │ ├── linuxmode.html │ │ ├── linuxmode_launch.html │ │ ├── usb_tethering.html │ │ └── vnet.html │ ├── oops.html │ ├── otplogin.html │ ├── overview.html │ ├── panel.html │ ├── settings.html │ ├── settings │ │ └── system_update.html │ ├── setup │ │ ├── done.html │ │ ├── languages.html │ │ ├── setpwd.html │ │ ├── timezone.html │ │ ├── welcome.html │ │ └── welcome_rocket.html │ ├── success.html │ ├── systemapi.html │ ├── systemapi_output.html │ └── wine.html ├── tools.py └── translations │ ├── es │ └── LC_MESSAGES │ │ ├── messages.mo │ │ └── messages.po │ ├── fr │ └── LC_MESSAGES │ │ ├── messages.mo │ │ └── messages.po │ ├── ja │ └── LC_MESSAGES │ │ ├── messages.mo │ │ └── messages.po │ ├── tl │ └── LC_MESSAGES │ │ ├── messages.mo │ │ └── messages.po │ └── zh │ └── LC_MESSAGES │ ├── messages.mo │ └── messages.po ├── imgs ├── dashboard1.png ├── dashboard2.png ├── dashboard3.png ├── dashboard4.png ├── dashboard5.png ├── dashboard6.png ├── dashboard7.png ├── langugage.png ├── login1.png ├── manager1.jpg ├── manager2.jpg ├── manager3.jpg └── mirror1.png ├── installer ├── Pipfile ├── __pycache__ │ └── adb.cpython-312.pyc ├── adb.py ├── dist │ ├── FlyOS Installer.exe │ └── Start Installer.bat ├── files │ ├── __pycache__ │ │ └── tools.cpython-312.pyc │ └── tools.py ├── flyos.ico ├── installer.py ├── installer.spec ├── requirements.txt └── templates │ ├── check.html │ └── main.html └── notices.txt /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/README.md -------------------------------------------------------------------------------- /container/bin/busybox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/container/bin/busybox -------------------------------------------------------------------------------- /container/bin/flyos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/container/bin/flyos -------------------------------------------------------------------------------- /container/bin/run_command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/container/bin/run_command -------------------------------------------------------------------------------- /container/setenv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/container/setenv.sh -------------------------------------------------------------------------------- /dashboard/babel.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/babel.cfg -------------------------------------------------------------------------------- /dashboard/clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/clean.sh -------------------------------------------------------------------------------- /dashboard/clitools/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/clitools/cli.py -------------------------------------------------------------------------------- /dashboard/clitools/flycontainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/clitools/flycontainer.py -------------------------------------------------------------------------------- /dashboard/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/config.py -------------------------------------------------------------------------------- /dashboard/files/adb_pwd/android_shell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/files/adb_pwd/android_shell.py -------------------------------------------------------------------------------- /dashboard/files/backup/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/files/backup/config.py -------------------------------------------------------------------------------- /dashboard/files/genpwd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/files/genpwd.py -------------------------------------------------------------------------------- /dashboard/files/pwd.conf: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /dashboard/files/temp/otp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dashboard/files/token/gen_token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/files/token/gen_token.py -------------------------------------------------------------------------------- /dashboard/files/token/token: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dashboard/files/userspace/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/files/userspace/cli.py -------------------------------------------------------------------------------- /dashboard/files/userspace/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/files/userspace/start.sh -------------------------------------------------------------------------------- /dashboard/files/userspace/stop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/files/userspace/stop.sh -------------------------------------------------------------------------------- /dashboard/files/verify/verify_data: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dashboard/flyos.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/flyos.db -------------------------------------------------------------------------------- /dashboard/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/main.py -------------------------------------------------------------------------------- /dashboard/message.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/message.pot -------------------------------------------------------------------------------- /dashboard/messages.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/messages.pot -------------------------------------------------------------------------------- /dashboard/motd/__pycache__/motd.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/motd/__pycache__/motd.cpython-310.pyc -------------------------------------------------------------------------------- /dashboard/motd/motd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/motd/motd.py -------------------------------------------------------------------------------- /dashboard/start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/start.py -------------------------------------------------------------------------------- /dashboard/static/css/adminlte.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/static/css/adminlte.min.css -------------------------------------------------------------------------------- /dashboard/static/css/all.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/static/css/all.min.css -------------------------------------------------------------------------------- /dashboard/static/css/bootstrap-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/static/css/bootstrap-grid.css -------------------------------------------------------------------------------- /dashboard/static/css/bootstrap-grid.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/static/css/bootstrap-grid.css.map -------------------------------------------------------------------------------- /dashboard/static/css/bootstrap-grid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/static/css/bootstrap-grid.min.css -------------------------------------------------------------------------------- /dashboard/static/css/bootstrap-grid.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/static/css/bootstrap-grid.min.css.map -------------------------------------------------------------------------------- /dashboard/static/css/bootstrap-grid.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/static/css/bootstrap-grid.rtl.css -------------------------------------------------------------------------------- /dashboard/static/css/bootstrap-grid.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/static/css/bootstrap-grid.rtl.css.map -------------------------------------------------------------------------------- /dashboard/static/css/bootstrap-grid.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/static/css/bootstrap-grid.rtl.min.css -------------------------------------------------------------------------------- /dashboard/static/css/bootstrap-grid.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/static/css/bootstrap-grid.rtl.min.css.map -------------------------------------------------------------------------------- /dashboard/static/css/bootstrap-reboot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/static/css/bootstrap-reboot.css -------------------------------------------------------------------------------- /dashboard/static/css/bootstrap-reboot.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/static/css/bootstrap-reboot.css.map -------------------------------------------------------------------------------- /dashboard/static/css/bootstrap-reboot.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/static/css/bootstrap-reboot.min.css -------------------------------------------------------------------------------- /dashboard/static/css/bootstrap-reboot.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/static/css/bootstrap-reboot.min.css.map -------------------------------------------------------------------------------- /dashboard/static/css/bootstrap-reboot.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/static/css/bootstrap-reboot.rtl.css -------------------------------------------------------------------------------- /dashboard/static/css/bootstrap-reboot.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/static/css/bootstrap-reboot.rtl.css.map -------------------------------------------------------------------------------- /dashboard/static/css/bootstrap-reboot.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/static/css/bootstrap-reboot.rtl.min.css -------------------------------------------------------------------------------- /dashboard/static/css/bootstrap-reboot.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/static/css/bootstrap-reboot.rtl.min.css.map -------------------------------------------------------------------------------- /dashboard/static/css/bootstrap-utilities.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/static/css/bootstrap-utilities.css -------------------------------------------------------------------------------- /dashboard/static/css/bootstrap-utilities.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/static/css/bootstrap-utilities.css.map -------------------------------------------------------------------------------- /dashboard/static/css/bootstrap-utilities.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/static/css/bootstrap-utilities.min.css -------------------------------------------------------------------------------- /dashboard/static/css/bootstrap-utilities.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/static/css/bootstrap-utilities.min.css.map -------------------------------------------------------------------------------- /dashboard/static/css/bootstrap-utilities.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/static/css/bootstrap-utilities.rtl.css -------------------------------------------------------------------------------- /dashboard/static/css/bootstrap-utilities.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/static/css/bootstrap-utilities.rtl.css.map -------------------------------------------------------------------------------- /dashboard/static/css/bootstrap-utilities.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/static/css/bootstrap-utilities.rtl.min.css -------------------------------------------------------------------------------- /dashboard/static/css/bootstrap-utilities.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/static/css/bootstrap-utilities.rtl.min.css.map -------------------------------------------------------------------------------- /dashboard/static/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/static/css/bootstrap.css -------------------------------------------------------------------------------- /dashboard/static/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/static/css/bootstrap.css.map -------------------------------------------------------------------------------- /dashboard/static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /dashboard/static/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/static/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /dashboard/static/css/bootstrap.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/static/css/bootstrap.rtl.css -------------------------------------------------------------------------------- /dashboard/static/css/bootstrap.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/static/css/bootstrap.rtl.css.map -------------------------------------------------------------------------------- /dashboard/static/css/bootstrap.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/static/css/bootstrap.rtl.min.css -------------------------------------------------------------------------------- /dashboard/static/css/bootstrap.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/static/css/bootstrap.rtl.min.css.map -------------------------------------------------------------------------------- /dashboard/static/css/font.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/static/css/font.css -------------------------------------------------------------------------------- /dashboard/static/fonts/poppins.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/static/fonts/poppins.ttf -------------------------------------------------------------------------------- /dashboard/static/img/flyos.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/static/img/flyos.jpg -------------------------------------------------------------------------------- /dashboard/static/img/rocket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/static/img/rocket.png -------------------------------------------------------------------------------- /dashboard/static/js/adminlte.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/static/js/adminlte.min.js -------------------------------------------------------------------------------- /dashboard/static/js/bootstrap-5.3.2-dist/css/bootstrap-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/static/js/bootstrap-5.3.2-dist/css/bootstrap-grid.css -------------------------------------------------------------------------------- /dashboard/static/js/bootstrap-5.3.2-dist/css/bootstrap-grid.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/static/js/bootstrap-5.3.2-dist/css/bootstrap-grid.css.map -------------------------------------------------------------------------------- /dashboard/static/js/bootstrap-5.3.2-dist/css/bootstrap-grid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/static/js/bootstrap-5.3.2-dist/css/bootstrap-grid.min.css -------------------------------------------------------------------------------- /dashboard/static/js/bootstrap-5.3.2-dist/css/bootstrap-grid.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/static/js/bootstrap-5.3.2-dist/css/bootstrap-grid.min.css.map -------------------------------------------------------------------------------- /dashboard/static/js/bootstrap-5.3.2-dist/css/bootstrap-grid.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/static/js/bootstrap-5.3.2-dist/css/bootstrap-grid.rtl.css -------------------------------------------------------------------------------- /dashboard/static/js/bootstrap-5.3.2-dist/css/bootstrap-grid.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/static/js/bootstrap-5.3.2-dist/css/bootstrap-grid.rtl.css.map -------------------------------------------------------------------------------- /dashboard/static/js/bootstrap-5.3.2-dist/css/bootstrap-grid.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/static/js/bootstrap-5.3.2-dist/css/bootstrap-grid.rtl.min.css -------------------------------------------------------------------------------- /dashboard/static/js/bootstrap-5.3.2-dist/css/bootstrap-grid.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/static/js/bootstrap-5.3.2-dist/css/bootstrap-grid.rtl.min.css.map -------------------------------------------------------------------------------- /dashboard/static/js/bootstrap-5.3.2-dist/css/bootstrap-reboot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/static/js/bootstrap-5.3.2-dist/css/bootstrap-reboot.css -------------------------------------------------------------------------------- /dashboard/static/js/bootstrap-5.3.2-dist/css/bootstrap-reboot.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/static/js/bootstrap-5.3.2-dist/css/bootstrap-reboot.css.map -------------------------------------------------------------------------------- /dashboard/static/js/bootstrap-5.3.2-dist/css/bootstrap-reboot.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/static/js/bootstrap-5.3.2-dist/css/bootstrap-reboot.min.css -------------------------------------------------------------------------------- /dashboard/static/js/bootstrap-5.3.2-dist/css/bootstrap-reboot.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/static/js/bootstrap-5.3.2-dist/css/bootstrap-reboot.min.css.map -------------------------------------------------------------------------------- /dashboard/static/js/bootstrap-5.3.2-dist/css/bootstrap-reboot.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/static/js/bootstrap-5.3.2-dist/css/bootstrap-reboot.rtl.css -------------------------------------------------------------------------------- /dashboard/static/js/bootstrap-5.3.2-dist/css/bootstrap-reboot.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/static/js/bootstrap-5.3.2-dist/css/bootstrap-reboot.rtl.css.map -------------------------------------------------------------------------------- /dashboard/static/js/bootstrap-5.3.2-dist/css/bootstrap-reboot.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/static/js/bootstrap-5.3.2-dist/css/bootstrap-reboot.rtl.min.css -------------------------------------------------------------------------------- /dashboard/static/js/bootstrap-5.3.2-dist/css/bootstrap-reboot.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/static/js/bootstrap-5.3.2-dist/css/bootstrap-reboot.rtl.min.css.map -------------------------------------------------------------------------------- /dashboard/static/js/bootstrap-5.3.2-dist/css/bootstrap-utilities.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/static/js/bootstrap-5.3.2-dist/css/bootstrap-utilities.css -------------------------------------------------------------------------------- /dashboard/static/js/bootstrap-5.3.2-dist/css/bootstrap-utilities.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/static/js/bootstrap-5.3.2-dist/css/bootstrap-utilities.css.map -------------------------------------------------------------------------------- /dashboard/static/js/bootstrap-5.3.2-dist/css/bootstrap-utilities.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/static/js/bootstrap-5.3.2-dist/css/bootstrap-utilities.min.css -------------------------------------------------------------------------------- /dashboard/static/js/bootstrap-5.3.2-dist/css/bootstrap-utilities.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/static/js/bootstrap-5.3.2-dist/css/bootstrap-utilities.min.css.map -------------------------------------------------------------------------------- /dashboard/static/js/bootstrap-5.3.2-dist/css/bootstrap-utilities.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/static/js/bootstrap-5.3.2-dist/css/bootstrap-utilities.rtl.css -------------------------------------------------------------------------------- /dashboard/static/js/bootstrap-5.3.2-dist/css/bootstrap-utilities.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/static/js/bootstrap-5.3.2-dist/css/bootstrap-utilities.rtl.css.map -------------------------------------------------------------------------------- /dashboard/static/js/bootstrap-5.3.2-dist/css/bootstrap-utilities.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/static/js/bootstrap-5.3.2-dist/css/bootstrap-utilities.rtl.min.css -------------------------------------------------------------------------------- /dashboard/static/js/bootstrap-5.3.2-dist/css/bootstrap-utilities.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/static/js/bootstrap-5.3.2-dist/css/bootstrap-utilities.rtl.min.css.map -------------------------------------------------------------------------------- /dashboard/static/js/bootstrap-5.3.2-dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/static/js/bootstrap-5.3.2-dist/css/bootstrap.css -------------------------------------------------------------------------------- /dashboard/static/js/bootstrap-5.3.2-dist/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/static/js/bootstrap-5.3.2-dist/css/bootstrap.css.map -------------------------------------------------------------------------------- /dashboard/static/js/bootstrap-5.3.2-dist/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/static/js/bootstrap-5.3.2-dist/css/bootstrap.min.css -------------------------------------------------------------------------------- /dashboard/static/js/bootstrap-5.3.2-dist/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/static/js/bootstrap-5.3.2-dist/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /dashboard/static/js/bootstrap-5.3.2-dist/css/bootstrap.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/static/js/bootstrap-5.3.2-dist/css/bootstrap.rtl.css -------------------------------------------------------------------------------- /dashboard/static/js/bootstrap-5.3.2-dist/css/bootstrap.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/static/js/bootstrap-5.3.2-dist/css/bootstrap.rtl.css.map -------------------------------------------------------------------------------- /dashboard/static/js/bootstrap-5.3.2-dist/css/bootstrap.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/static/js/bootstrap-5.3.2-dist/css/bootstrap.rtl.min.css -------------------------------------------------------------------------------- /dashboard/static/js/bootstrap-5.3.2-dist/css/bootstrap.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/static/js/bootstrap-5.3.2-dist/css/bootstrap.rtl.min.css.map -------------------------------------------------------------------------------- /dashboard/static/js/bootstrap-5.3.2-dist/js/bootstrap.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/static/js/bootstrap-5.3.2-dist/js/bootstrap.bundle.js -------------------------------------------------------------------------------- /dashboard/static/js/bootstrap-5.3.2-dist/js/bootstrap.bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/static/js/bootstrap-5.3.2-dist/js/bootstrap.bundle.js.map -------------------------------------------------------------------------------- /dashboard/static/js/bootstrap-5.3.2-dist/js/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/static/js/bootstrap-5.3.2-dist/js/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /dashboard/static/js/bootstrap-5.3.2-dist/js/bootstrap.bundle.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/static/js/bootstrap-5.3.2-dist/js/bootstrap.bundle.min.js.map -------------------------------------------------------------------------------- /dashboard/static/js/bootstrap-5.3.2-dist/js/bootstrap.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/static/js/bootstrap-5.3.2-dist/js/bootstrap.esm.js -------------------------------------------------------------------------------- /dashboard/static/js/bootstrap-5.3.2-dist/js/bootstrap.esm.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/static/js/bootstrap-5.3.2-dist/js/bootstrap.esm.js.map -------------------------------------------------------------------------------- /dashboard/static/js/bootstrap-5.3.2-dist/js/bootstrap.esm.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/static/js/bootstrap-5.3.2-dist/js/bootstrap.esm.min.js -------------------------------------------------------------------------------- /dashboard/static/js/bootstrap-5.3.2-dist/js/bootstrap.esm.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/static/js/bootstrap-5.3.2-dist/js/bootstrap.esm.min.js.map -------------------------------------------------------------------------------- /dashboard/static/js/bootstrap-5.3.2-dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/static/js/bootstrap-5.3.2-dist/js/bootstrap.js -------------------------------------------------------------------------------- /dashboard/static/js/bootstrap-5.3.2-dist/js/bootstrap.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/static/js/bootstrap-5.3.2-dist/js/bootstrap.js.map -------------------------------------------------------------------------------- /dashboard/static/js/bootstrap-5.3.2-dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/static/js/bootstrap-5.3.2-dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /dashboard/static/js/bootstrap-5.3.2-dist/js/bootstrap.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/static/js/bootstrap-5.3.2-dist/js/bootstrap.min.js.map -------------------------------------------------------------------------------- /dashboard/static/js/bootstrap.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/static/js/bootstrap.bundle.js -------------------------------------------------------------------------------- /dashboard/static/js/bootstrap.bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/static/js/bootstrap.bundle.js.map -------------------------------------------------------------------------------- /dashboard/static/js/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/static/js/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /dashboard/static/js/bootstrap.bundle.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/static/js/bootstrap.bundle.min.js.map -------------------------------------------------------------------------------- /dashboard/static/js/bootstrap.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/static/js/bootstrap.esm.js -------------------------------------------------------------------------------- /dashboard/static/js/bootstrap.esm.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/static/js/bootstrap.esm.js.map -------------------------------------------------------------------------------- /dashboard/static/js/bootstrap.esm.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/static/js/bootstrap.esm.min.js -------------------------------------------------------------------------------- /dashboard/static/js/bootstrap.esm.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/static/js/bootstrap.esm.min.js.map -------------------------------------------------------------------------------- /dashboard/static/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/static/js/bootstrap.js -------------------------------------------------------------------------------- /dashboard/static/js/bootstrap.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/static/js/bootstrap.js.map -------------------------------------------------------------------------------- /dashboard/static/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/static/js/bootstrap.min.js -------------------------------------------------------------------------------- /dashboard/static/js/bootstrap.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/static/js/bootstrap.min.js.map -------------------------------------------------------------------------------- /dashboard/static/js/bootstrap_4.2/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/static/js/bootstrap_4.2/bootstrap.min.js -------------------------------------------------------------------------------- /dashboard/static/js/jquery-3.5.1.slim.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/static/js/jquery-3.5.1.slim.min.js -------------------------------------------------------------------------------- /dashboard/static/js/jquery-3.6.0.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/static/js/jquery-3.6.0.min.js -------------------------------------------------------------------------------- /dashboard/static/js/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/static/js/jquery.js -------------------------------------------------------------------------------- /dashboard/static/js/moment-timezone-with-data-10-year-range.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/static/js/moment-timezone-with-data-10-year-range.min.js -------------------------------------------------------------------------------- /dashboard/static/js/moment.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/static/js/moment.min.js -------------------------------------------------------------------------------- /dashboard/static/js/popper.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/static/js/popper.min.js -------------------------------------------------------------------------------- /dashboard/static/js/winbox.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/static/js/winbox.bundle.min.js -------------------------------------------------------------------------------- /dashboard/static/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/static/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /dashboard/static/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/static/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /dashboard/static/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/static/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /dashboard/static/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/static/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /dashboard/static/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/static/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /dashboard/static/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/static/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /dashboard/static/webfonts/fa-v4compatibility.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/static/webfonts/fa-v4compatibility.ttf -------------------------------------------------------------------------------- /dashboard/static/webfonts/fa-v4compatibility.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/static/webfonts/fa-v4compatibility.woff2 -------------------------------------------------------------------------------- /dashboard/stop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/stop.py -------------------------------------------------------------------------------- /dashboard/sysconf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/sysconf.py -------------------------------------------------------------------------------- /dashboard/templates/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/templates/about.html -------------------------------------------------------------------------------- /dashboard/templates/about_license.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/templates/about_license.html -------------------------------------------------------------------------------- /dashboard/templates/androidmgr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/templates/androidmgr.html -------------------------------------------------------------------------------- /dashboard/templates/float_panel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/templates/float_panel.html -------------------------------------------------------------------------------- /dashboard/templates/flycontainer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/templates/flycontainer.html -------------------------------------------------------------------------------- /dashboard/templates/flycontainer_create.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/templates/flycontainer_create.html -------------------------------------------------------------------------------- /dashboard/templates/flycontainer_delete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/templates/flycontainer_delete.html -------------------------------------------------------------------------------- /dashboard/templates/info.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/templates/info.html -------------------------------------------------------------------------------- /dashboard/templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/templates/login.html -------------------------------------------------------------------------------- /dashboard/templates/manager/android_screen.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/templates/manager/android_screen.html -------------------------------------------------------------------------------- /dashboard/templates/manager/cloudflare.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/templates/manager/cloudflare.html -------------------------------------------------------------------------------- /dashboard/templates/manager/linuxmode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/templates/manager/linuxmode.html -------------------------------------------------------------------------------- /dashboard/templates/manager/linuxmode_launch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/templates/manager/linuxmode_launch.html -------------------------------------------------------------------------------- /dashboard/templates/manager/usb_tethering.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/templates/manager/usb_tethering.html -------------------------------------------------------------------------------- /dashboard/templates/manager/vnet.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/templates/manager/vnet.html -------------------------------------------------------------------------------- /dashboard/templates/oops.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/templates/oops.html -------------------------------------------------------------------------------- /dashboard/templates/otplogin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/templates/otplogin.html -------------------------------------------------------------------------------- /dashboard/templates/overview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/templates/overview.html -------------------------------------------------------------------------------- /dashboard/templates/panel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/templates/panel.html -------------------------------------------------------------------------------- /dashboard/templates/settings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/templates/settings.html -------------------------------------------------------------------------------- /dashboard/templates/settings/system_update.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/templates/settings/system_update.html -------------------------------------------------------------------------------- /dashboard/templates/setup/done.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/templates/setup/done.html -------------------------------------------------------------------------------- /dashboard/templates/setup/languages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/templates/setup/languages.html -------------------------------------------------------------------------------- /dashboard/templates/setup/setpwd.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/templates/setup/setpwd.html -------------------------------------------------------------------------------- /dashboard/templates/setup/timezone.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/templates/setup/timezone.html -------------------------------------------------------------------------------- /dashboard/templates/setup/welcome.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/templates/setup/welcome.html -------------------------------------------------------------------------------- /dashboard/templates/setup/welcome_rocket.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/templates/setup/welcome_rocket.html -------------------------------------------------------------------------------- /dashboard/templates/success.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/templates/success.html -------------------------------------------------------------------------------- /dashboard/templates/systemapi.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/templates/systemapi.html -------------------------------------------------------------------------------- /dashboard/templates/systemapi_output.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/templates/systemapi_output.html -------------------------------------------------------------------------------- /dashboard/templates/wine.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/templates/wine.html -------------------------------------------------------------------------------- /dashboard/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/tools.py -------------------------------------------------------------------------------- /dashboard/translations/es/LC_MESSAGES/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/translations/es/LC_MESSAGES/messages.mo -------------------------------------------------------------------------------- /dashboard/translations/es/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/translations/es/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /dashboard/translations/fr/LC_MESSAGES/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/translations/fr/LC_MESSAGES/messages.mo -------------------------------------------------------------------------------- /dashboard/translations/fr/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/translations/fr/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /dashboard/translations/ja/LC_MESSAGES/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/translations/ja/LC_MESSAGES/messages.mo -------------------------------------------------------------------------------- /dashboard/translations/ja/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/translations/ja/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /dashboard/translations/tl/LC_MESSAGES/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/translations/tl/LC_MESSAGES/messages.mo -------------------------------------------------------------------------------- /dashboard/translations/tl/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/translations/tl/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /dashboard/translations/zh/LC_MESSAGES/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/translations/zh/LC_MESSAGES/messages.mo -------------------------------------------------------------------------------- /dashboard/translations/zh/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/dashboard/translations/zh/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /imgs/dashboard1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/imgs/dashboard1.png -------------------------------------------------------------------------------- /imgs/dashboard2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/imgs/dashboard2.png -------------------------------------------------------------------------------- /imgs/dashboard3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/imgs/dashboard3.png -------------------------------------------------------------------------------- /imgs/dashboard4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/imgs/dashboard4.png -------------------------------------------------------------------------------- /imgs/dashboard5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/imgs/dashboard5.png -------------------------------------------------------------------------------- /imgs/dashboard6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/imgs/dashboard6.png -------------------------------------------------------------------------------- /imgs/dashboard7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/imgs/dashboard7.png -------------------------------------------------------------------------------- /imgs/langugage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/imgs/langugage.png -------------------------------------------------------------------------------- /imgs/login1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/imgs/login1.png -------------------------------------------------------------------------------- /imgs/manager1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/imgs/manager1.jpg -------------------------------------------------------------------------------- /imgs/manager2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/imgs/manager2.jpg -------------------------------------------------------------------------------- /imgs/manager3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/imgs/manager3.jpg -------------------------------------------------------------------------------- /imgs/mirror1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/imgs/mirror1.png -------------------------------------------------------------------------------- /installer/Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/installer/Pipfile -------------------------------------------------------------------------------- /installer/__pycache__/adb.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/installer/__pycache__/adb.cpython-312.pyc -------------------------------------------------------------------------------- /installer/adb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/installer/adb.py -------------------------------------------------------------------------------- /installer/dist/FlyOS Installer.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/installer/dist/FlyOS Installer.exe -------------------------------------------------------------------------------- /installer/dist/Start Installer.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/installer/dist/Start Installer.bat -------------------------------------------------------------------------------- /installer/files/__pycache__/tools.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/installer/files/__pycache__/tools.cpython-312.pyc -------------------------------------------------------------------------------- /installer/files/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/installer/files/tools.py -------------------------------------------------------------------------------- /installer/flyos.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/installer/flyos.ico -------------------------------------------------------------------------------- /installer/installer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/installer/installer.py -------------------------------------------------------------------------------- /installer/installer.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/installer/installer.spec -------------------------------------------------------------------------------- /installer/requirements.txt: -------------------------------------------------------------------------------- 1 | rich 2 | gdown 3 | wget -------------------------------------------------------------------------------- /installer/templates/check.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/installer/templates/check.html -------------------------------------------------------------------------------- /installer/templates/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/installer/templates/main.html -------------------------------------------------------------------------------- /notices.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdwardLab/flyos/HEAD/notices.txt --------------------------------------------------------------------------------