alpha
Login
or
Join now
gwen.works
/
shapemaker
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
This repository has no description
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
🎨 Format code
author
gwennlbh
committer
github-actions[bot]
date
8 months ago
(Oct 26, 2025, 1:33 PM UTC)
commit
32ec28ee
32ec28eeb6ca578056ef89596e5d03bc0fb29173
parent
3b220401
3b2204013235e4dfffae18e60232626be4891722
+3
-3
3 changed files
Expand all
Collapse all
Unified
Split
src
synchronization
mod.rs
ui.rs
video
mod.rs
+1
-1
src/synchronization/mod.rs
Reviewed
···
1
1
pub mod audio;
2
2
+
pub mod cue_markers;
2
3
pub mod midi;
3
4
pub mod sync;
4
4
-
pub mod cue_markers;
+1
-1
src/ui.rs
Reviewed
···
1
1
+
use crate::video::engine::EngineProgression;
1
2
use console::Style;
2
3
use indicatif::{ProgressBar, ProgressStyle};
3
4
use std::borrow::Cow;
4
5
use std::sync::{Arc, Mutex};
5
6
use std::thread::{self, JoinHandle};
6
7
use std::time;
7
7
-
use crate::video::engine::EngineProgression;
8
8
9
9
pub const PROGRESS_BARS_STYLE: &str =
10
10
"{prefix:>12.bold.cyan} {percent:03}% [{bar:25}] {msg} ({elapsed} ago)";
+1
-1
src/video/mod.rs
Reviewed
···
12
12
pub mod server;
13
13
14
14
pub use animation::Animation;
15
15
-
pub use video::Video;
16
15
pub use hooks::AttachHooks;
17
16
pub use scene::Scene;
17
17
+
pub use video::Video;