Skip to content

Commit

Permalink
Feat: Add DownloadMissingTmdbPeople as available action
Browse files Browse the repository at this point in the history
  • Loading branch information
fearnlj01 committed Nov 26, 2024
1 parent f0df158 commit e626fe7
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/components/Dialogs/ActionsModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ const actions = {
'delete-ununsed-tmdb-shows',
'update-all-tmdb-movies',
'delete-ununsed-tmdb-movies',
'download-missing-tmdb-people',
],
},
shoko: {
Expand Down
5 changes: 5 additions & 0 deletions src/core/quick-actions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,11 @@ const quickActions = {
functionName: 'PurgeAllUnusedTmdbShows',
info: 'Delete all unused TMDB Shows that are not linked to any AniDB anime.',
},
'download-missing-tmdb-people': {
name: 'Download Missing TMDB People',
functionName: 'DownloadMissingTmdbPeople',
info: 'Downloads any Tmdb People missing in the local database.',
},
'plex-sync-all': {
name: 'Sync Plex Watch Status',
functionName: 'PlexSyncAll',
Expand Down
2 changes: 1 addition & 1 deletion src/core/util.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export function isDebug() {
return DEV;
}

export const minimumSupportedServerVersion = '4.2.2.182';
export const minimumSupportedServerVersion = '5.0.0.61';

export const parseServerVersion = (version: string) => {
const semverVersion = semver.coerce(version)?.raw;
Expand Down

0 comments on commit e626fe7

Please sign in to comment.