diff --git a/.config/lingo.dic b/.config/lingo.dic index 4c41349..57b3418 100644 --- a/.config/lingo.dic +++ b/.config/lingo.dic @@ -17,6 +17,7 @@ libobs luma mul Mul +namespace NV12 OBS/M obws diff --git a/src/client/transitions.rs b/src/client/transitions.rs index 882194c..b14b533 100644 --- a/src/client/transitions.rs +++ b/src/client/transitions.rs @@ -99,13 +99,13 @@ impl<'a> Transitions<'a> { .await } - /// Sets the position of the TBar. + /// Sets the position of the T-Bar. /// /// **Very important note:** This will be deprecated and replaced in a future version of /// `obs-websocket`. /// /// - `position`: New position. - /// - `release`: Whether to release the TBar. Only set `false` if you know that you will be + /// - `release`: Whether to release the T-Bar. Only set `false` if you know that you will be /// sending another position update. pub async fn set_tbar_position(&self, position: f32, release: Option) -> Result<()> { self.client diff --git a/src/events.rs b/src/events.rs index b6ea30f..83e911d 100644 --- a/src/events.rs +++ b/src/events.rs @@ -90,7 +90,7 @@ pub enum Event { /// Name of the filter. filter_name: String, }, - /// A source's filter list has been reindexed. + /// A source's filter list has been re-indexed. #[serde(rename_all = "camelCase")] SourceFilterListReindexed { /// Name of the source. diff --git a/src/requests/mod.rs b/src/requests/mod.rs index 53a9afa..bba20e5 100644 --- a/src/requests/mod.rs +++ b/src/requests/mod.rs @@ -617,7 +617,7 @@ pub(crate) enum RequestType<'a> { SetTbarPosition { /// New position. position: f32, - /// Whether to release the TBar. Only set `false` if you know that you will be sending + /// Whether to release the T-Bar. Only set `false` if you know that you will be sending /// another position update. #[serde(skip_serializing_if = "Option::is_none")] release: Option, diff --git a/src/responses/mod.rs b/src/responses/mod.rs index ab83469..7701673 100644 --- a/src/responses/mod.rs +++ b/src/responses/mod.rs @@ -460,7 +460,7 @@ pub struct RecordStatus { pub output_active: bool, /// Whether the output is paused. pub output_paused: bool, - /// Current formatted timecode string for the output. + /// Current formatted time code string for the output. #[serde(deserialize_with = "crate::de::duration_timecode")] pub output_timecode: Duration, /// Current duration in milliseconds for the output. @@ -724,7 +724,7 @@ pub struct Transition { pub transition_name: String, /// Kind of the transition. pub transition_kind: String, - /// Whether the transition uses a fixed (unconfigurable) duration. + /// Whether the transition uses a fixed (non-configurable) duration. pub transition_fixed: bool, /// Whether the transition supports being configured. pub transition_configurable: bool, @@ -737,7 +737,7 @@ pub struct CurrentSceneTransition { pub transition_name: String, /// Kind of the transition. pub transition_kind: String, - /// Whether the transition uses a fixed (unconfigurable) duration. + /// Whether the transition uses a fixed (non-configurable) duration. pub transition_fixed: bool, /// Configured transition duration in milliseconds. #[serde(deserialize_with = "crate::de::duration_millis_opt")]