├── .cargo └── config.toml ├── .github └── workflows │ ├── ci.yaml │ ├── pages.yml │ └── release.yaml ├── .gitignore ├── .gitmodules ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── README.md ├── assets ├── cat.ico ├── fonts │ └── x12y16pxMaruMonica.ttf └── meru.ico ├── meru-interface ├── Cargo.toml ├── README.md └── src │ ├── config.rs │ ├── key_assign.rs │ └── lib.rs ├── src ├── app.rs ├── archive.rs ├── config.rs ├── core.rs ├── file.rs ├── hotkey.rs ├── input.rs ├── lib.rs ├── main.rs ├── menu.rs ├── rewinding.rs └── utils.rs └── web ├── bootstrap.min.css ├── favicon.ico └── index.html /.cargo/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/meru/HEAD/.cargo/config.toml -------------------------------------------------------------------------------- /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/meru/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.github/workflows/pages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/meru/HEAD/.github/workflows/pages.yml -------------------------------------------------------------------------------- /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/meru/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/meru/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/meru/HEAD/.gitmodules -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/meru/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/meru/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/meru/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/meru/HEAD/README.md -------------------------------------------------------------------------------- /assets/cat.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/meru/HEAD/assets/cat.ico -------------------------------------------------------------------------------- /assets/fonts/x12y16pxMaruMonica.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/meru/HEAD/assets/fonts/x12y16pxMaruMonica.ttf -------------------------------------------------------------------------------- /assets/meru.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/meru/HEAD/assets/meru.ico -------------------------------------------------------------------------------- /meru-interface/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/meru/HEAD/meru-interface/Cargo.toml -------------------------------------------------------------------------------- /meru-interface/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/meru/HEAD/meru-interface/README.md -------------------------------------------------------------------------------- /meru-interface/src/config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/meru/HEAD/meru-interface/src/config.rs -------------------------------------------------------------------------------- /meru-interface/src/key_assign.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/meru/HEAD/meru-interface/src/key_assign.rs -------------------------------------------------------------------------------- /meru-interface/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/meru/HEAD/meru-interface/src/lib.rs -------------------------------------------------------------------------------- /src/app.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/meru/HEAD/src/app.rs -------------------------------------------------------------------------------- /src/archive.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/meru/HEAD/src/archive.rs -------------------------------------------------------------------------------- /src/config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/meru/HEAD/src/config.rs -------------------------------------------------------------------------------- /src/core.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/meru/HEAD/src/core.rs -------------------------------------------------------------------------------- /src/file.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/meru/HEAD/src/file.rs -------------------------------------------------------------------------------- /src/hotkey.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/meru/HEAD/src/hotkey.rs -------------------------------------------------------------------------------- /src/input.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/meru/HEAD/src/input.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/meru/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/meru/HEAD/src/main.rs -------------------------------------------------------------------------------- /src/menu.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/meru/HEAD/src/menu.rs -------------------------------------------------------------------------------- /src/rewinding.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/meru/HEAD/src/rewinding.rs -------------------------------------------------------------------------------- /src/utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/meru/HEAD/src/utils.rs -------------------------------------------------------------------------------- /web/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/meru/HEAD/web/bootstrap.min.css -------------------------------------------------------------------------------- /web/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/meru/HEAD/web/favicon.ico -------------------------------------------------------------------------------- /web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanakh/meru/HEAD/web/index.html --------------------------------------------------------------------------------