├── .cargo └── config.toml ├── .github └── workflows │ ├── before_deploy.sh │ ├── build.sh │ ├── install.sh │ └── rust.yml ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── README.md ├── config.yaml ├── src ├── config.rs ├── icon.png ├── main.rs └── stream_markers.rs └── twitch-stream-markers ├── .gitignore ├── Cargo.toml └── src └── lib.rs /.cargo/config.toml: -------------------------------------------------------------------------------- 1 | [target.x86_64-pc-windows-msvc] 2 | linker = "rust-lld" 3 | -------------------------------------------------------------------------------- /.github/workflows/before_deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryZe/livesplit-one-desktop/HEAD/.github/workflows/before_deploy.sh -------------------------------------------------------------------------------- /.github/workflows/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryZe/livesplit-one-desktop/HEAD/.github/workflows/build.sh -------------------------------------------------------------------------------- /.github/workflows/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryZe/livesplit-one-desktop/HEAD/.github/workflows/install.sh -------------------------------------------------------------------------------- /.github/workflows/rust.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryZe/livesplit-one-desktop/HEAD/.github/workflows/rust.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryZe/livesplit-one-desktop/HEAD/.gitignore -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryZe/livesplit-one-desktop/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryZe/livesplit-one-desktop/HEAD/Cargo.toml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryZe/livesplit-one-desktop/HEAD/README.md -------------------------------------------------------------------------------- /config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryZe/livesplit-one-desktop/HEAD/config.yaml -------------------------------------------------------------------------------- /src/config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryZe/livesplit-one-desktop/HEAD/src/config.rs -------------------------------------------------------------------------------- /src/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryZe/livesplit-one-desktop/HEAD/src/icon.png -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryZe/livesplit-one-desktop/HEAD/src/main.rs -------------------------------------------------------------------------------- /src/stream_markers.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryZe/livesplit-one-desktop/HEAD/src/stream_markers.rs -------------------------------------------------------------------------------- /twitch-stream-markers/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | **/*.rs.bk 3 | Cargo.lock 4 | -------------------------------------------------------------------------------- /twitch-stream-markers/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryZe/livesplit-one-desktop/HEAD/twitch-stream-markers/Cargo.toml -------------------------------------------------------------------------------- /twitch-stream-markers/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryZe/livesplit-one-desktop/HEAD/twitch-stream-markers/src/lib.rs --------------------------------------------------------------------------------