├── .envrc ├── .github ├── CODEOWNERS ├── actions │ └── common-setup │ │ └── action.yml ├── dependabot.yml └── workflows │ ├── ci.yml │ └── update-flake-lock.yml ├── .gitignore ├── CHANGES.md ├── Cargo.lock ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── default.nix ├── example ├── asciinema-player.css ├── asciinema-player.js ├── demo.cast ├── demo.gif ├── demo.scenario ├── demo.svg └── index.html ├── flake.lock ├── flake.nix ├── shell.nix └── src └── main.rs /.envrc: -------------------------------------------------------------------------------- 1 | use flake 2 | -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garbas/asciinema-scenario/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/actions/common-setup/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garbas/asciinema-scenario/HEAD/.github/actions/common-setup/action.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garbas/asciinema-scenario/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garbas/asciinema-scenario/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/update-flake-lock.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garbas/asciinema-scenario/HEAD/.github/workflows/update-flake-lock.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garbas/asciinema-scenario/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garbas/asciinema-scenario/HEAD/CHANGES.md -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garbas/asciinema-scenario/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garbas/asciinema-scenario/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garbas/asciinema-scenario/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garbas/asciinema-scenario/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garbas/asciinema-scenario/HEAD/README.md -------------------------------------------------------------------------------- /default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garbas/asciinema-scenario/HEAD/default.nix -------------------------------------------------------------------------------- /example/asciinema-player.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garbas/asciinema-scenario/HEAD/example/asciinema-player.css -------------------------------------------------------------------------------- /example/asciinema-player.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garbas/asciinema-scenario/HEAD/example/asciinema-player.js -------------------------------------------------------------------------------- /example/demo.cast: -------------------------------------------------------------------------------- 1 | ERROR: svg preview file `example/demo.svg` already exist! 2 | -------------------------------------------------------------------------------- /example/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garbas/asciinema-scenario/HEAD/example/demo.gif -------------------------------------------------------------------------------- /example/demo.scenario: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garbas/asciinema-scenario/HEAD/example/demo.scenario -------------------------------------------------------------------------------- /example/demo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garbas/asciinema-scenario/HEAD/example/demo.svg -------------------------------------------------------------------------------- /example/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garbas/asciinema-scenario/HEAD/example/index.html -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garbas/asciinema-scenario/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garbas/asciinema-scenario/HEAD/flake.nix -------------------------------------------------------------------------------- /shell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garbas/asciinema-scenario/HEAD/shell.nix -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garbas/asciinema-scenario/HEAD/src/main.rs --------------------------------------------------------------------------------