From 6fb7f5da5512cf4cc4995b16c8c5e8d493b75298 Mon Sep 17 00:00:00 2001
From: Kian-Meng Ang
- This release fixes numerous issues, including: main window being too large and too tall for phones, startup crash for playlist without images, "About" dialog not closing in qtile, keyboard navigation being broken in the login dialog. Special thanks to Douile for contributing fixes for many of these isssues! + This release fixes numerous issues, including: main window being too large and too tall for phones, startup crash for playlist without images, "About" dialog not closing in qtile, keyboard navigation being broken in the login dialog. Special thanks to Douile for contributing fixes for many of these issues!
diff --git a/doc/doc.tex b/doc/doc.tex index 3c9750f5..99e668b5 100644 --- a/doc/doc.tex +++ b/doc/doc.tex @@ -83,7 +83,7 @@ \subsection{A listener: the player subsystem} Any element that wishes to update the state or react to changes from the state has to follow that same pattern. For instance, the ``player'' part of Spot receives \texttt{Commands} (mapped from events by a \texttt{PlayerNotifier}) to start playing music, and dispatches actions back the app through a \texttt{SpotifyPlayerDelegate} (see figure \ref{fig:player}). -These two extra elements add some indirection so that the player is not too strongly coupled to the rest of the app (it does not and should not care about most events, afterall!). Moreover, those commands are handled in a separate thread where the player lives. +These two extra elements add some indirection so that the player is not too strongly coupled to the rest of the app (it does not and should not care about most events, after all!). Moreover, those commands are handled in a separate thread where the player lives. \begin{figure}[!ht] \centering diff --git a/src/api/cache.rs b/src/api/cache.rs index e2359a7a..5d3f8193 100644 --- a/src/api/cache.rs +++ b/src/api/cache.rs @@ -40,7 +40,7 @@ pub enum CachePolicy { Default, // query remote cache when stale IgnoreExpiry, // always use cached value Revalidate, // always query remote cache - IgnoreCached, // ignore cache alltogether + IgnoreCached, // ignore cache all together } #[derive(PartialEq, Clone, Debug)] diff --git a/src/app/batch_loader.rs b/src/app/batch_loader.rs index 71664f66..d080b38f 100644 --- a/src/app/batch_loader.rs +++ b/src/app/batch_loader.rs @@ -88,7 +88,7 @@ impl BatchLoader { error!("Spotify API error: {}", err); AppAction::ShowNotification(gettext( // translators: This notification is the default message for unhandled errors. Logs refer to console output. - "An error occured. Check logs for details!", + "An error occurred. Check logs for details!", )) } } diff --git a/src/app/components/mod.rs b/src/app/components/mod.rs index 86d4809e..509b9cb2 100644 --- a/src/app/components/mod.rs +++ b/src/app/components/mod.rs @@ -119,7 +119,7 @@ impl dyn ActionDispatcher { error!("Spotify API error: {}", err); vec![AppAction::ShowNotification(gettext( // translators: This notification is the default message for unhandled errors. Logs refer to console output. - "An error occured. Check logs for details!", + "An error occurred. Check logs for details!", ))] } }