Skip to content

Commit

Permalink
app: Rename taggedNowPlaying to nowPlaying
Browse files Browse the repository at this point in the history
  • Loading branch information
evanpurkhiser committed Nov 19, 2020
1 parent 3ced169 commit 1fca20f
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions src/overlay/index.tsx
@@ -1,4 +1,4 @@
import taggedNowPlaying from './overlays/taggedNowPlaying';
import nowPlaying from './overlays/nowPlaying';

type OverlayType = typeof registeredOverlays[number]['type'];

Expand Down Expand Up @@ -64,4 +64,4 @@ export type OverlayInstance<T extends OverlayType = any> = {
*
* Add new entries here to register new overlays
*/
export const registeredOverlays = [taggedNowPlaying] as const;
export const registeredOverlays = [nowPlaying] as const;
Expand Up @@ -17,7 +17,7 @@ import {Tags, availableTags} from './tags';
import ThemeModern from './ThemeModern';

type TaggedNowPlaying = {
type: 'taggedNowPlaying';
type: 'nowPlaying';
config: NowPlayingConfig;
};

Expand Down Expand Up @@ -138,8 +138,8 @@ const ConfigInterface: React.FC<{config: NowPlayingConfig}> = observer(({config}
));

const descriptor: OverlayDescriptor<TaggedNowPlaying> = {
type: 'taggedNowPlaying',
name: 'Now Playing with Tags',
type: 'nowPlaying',
name: 'Live now playing metadata overlay, including themes',
component: HistoryOverlay,
example: Example,
configInterface: ConfigInterface,
Expand Down
File renamed without changes.

0 comments on commit 1fca20f

Please sign in to comment.