├── .gitignore ├── .vscode ├── extensions.json └── settings.json ├── LICENSE ├── README.md ├── ordr-socketio-example.js ├── package.json ├── src ├── client.ts ├── first_launch.ts ├── main.ts ├── renderers │ ├── common.ts │ └── danser │ │ ├── prepare.ts │ │ ├── render.ts │ │ └── update.ts ├── state.ts ├── update.ts ├── util │ ├── benchmark.ts │ ├── checksum.ts │ ├── clean_exit.ts │ ├── config.ts │ ├── crash_report.ts │ ├── discord_presence.ts │ ├── download_file.ts │ ├── extract_file.ts │ ├── inject_timestamp.ts │ ├── keys.ts │ ├── speedtest.ts │ ├── startup_data.ts │ ├── upload_video.ts │ └── validate_files.ts ├── websocket.ts └── websocket_types.ts └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterIO02/ordr-client/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterIO02/ordr-client/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterIO02/ordr-client/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterIO02/ordr-client/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterIO02/ordr-client/HEAD/README.md -------------------------------------------------------------------------------- /ordr-socketio-example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterIO02/ordr-client/HEAD/ordr-socketio-example.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterIO02/ordr-client/HEAD/package.json -------------------------------------------------------------------------------- /src/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterIO02/ordr-client/HEAD/src/client.ts -------------------------------------------------------------------------------- /src/first_launch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterIO02/ordr-client/HEAD/src/first_launch.ts -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterIO02/ordr-client/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/renderers/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterIO02/ordr-client/HEAD/src/renderers/common.ts -------------------------------------------------------------------------------- /src/renderers/danser/prepare.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterIO02/ordr-client/HEAD/src/renderers/danser/prepare.ts -------------------------------------------------------------------------------- /src/renderers/danser/render.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterIO02/ordr-client/HEAD/src/renderers/danser/render.ts -------------------------------------------------------------------------------- /src/renderers/danser/update.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterIO02/ordr-client/HEAD/src/renderers/danser/update.ts -------------------------------------------------------------------------------- /src/state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterIO02/ordr-client/HEAD/src/state.ts -------------------------------------------------------------------------------- /src/update.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterIO02/ordr-client/HEAD/src/update.ts -------------------------------------------------------------------------------- /src/util/benchmark.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterIO02/ordr-client/HEAD/src/util/benchmark.ts -------------------------------------------------------------------------------- /src/util/checksum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterIO02/ordr-client/HEAD/src/util/checksum.ts -------------------------------------------------------------------------------- /src/util/clean_exit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterIO02/ordr-client/HEAD/src/util/clean_exit.ts -------------------------------------------------------------------------------- /src/util/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterIO02/ordr-client/HEAD/src/util/config.ts -------------------------------------------------------------------------------- /src/util/crash_report.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterIO02/ordr-client/HEAD/src/util/crash_report.ts -------------------------------------------------------------------------------- /src/util/discord_presence.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterIO02/ordr-client/HEAD/src/util/discord_presence.ts -------------------------------------------------------------------------------- /src/util/download_file.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterIO02/ordr-client/HEAD/src/util/download_file.ts -------------------------------------------------------------------------------- /src/util/extract_file.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterIO02/ordr-client/HEAD/src/util/extract_file.ts -------------------------------------------------------------------------------- /src/util/inject_timestamp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterIO02/ordr-client/HEAD/src/util/inject_timestamp.ts -------------------------------------------------------------------------------- /src/util/keys.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterIO02/ordr-client/HEAD/src/util/keys.ts -------------------------------------------------------------------------------- /src/util/speedtest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterIO02/ordr-client/HEAD/src/util/speedtest.ts -------------------------------------------------------------------------------- /src/util/startup_data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterIO02/ordr-client/HEAD/src/util/startup_data.ts -------------------------------------------------------------------------------- /src/util/upload_video.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterIO02/ordr-client/HEAD/src/util/upload_video.ts -------------------------------------------------------------------------------- /src/util/validate_files.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterIO02/ordr-client/HEAD/src/util/validate_files.ts -------------------------------------------------------------------------------- /src/websocket.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterIO02/ordr-client/HEAD/src/websocket.ts -------------------------------------------------------------------------------- /src/websocket_types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterIO02/ordr-client/HEAD/src/websocket_types.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterIO02/ordr-client/HEAD/tsconfig.json --------------------------------------------------------------------------------