Skip to content

Commit

Permalink
feat: add action to search for TMDB matches
Browse files Browse the repository at this point in the history
  • Loading branch information
revam committed Dec 10, 2024
1 parent d056ae8 commit 52beb24
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 @@ -47,6 +47,7 @@ const actions = {
tmdb: {
title: 'TMDB',
data: [
'search-for-tmdb-matches',
'update-all-tmdb-shows',
'delete-unused-tmdb-shows',
'update-all-tmdb-movies',
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 @@ -104,6 +104,11 @@ const quickActions = {
functionName: 'ValidateAllImages',
info: 'Identifies any invalid images and re-downloads them.',
},
'search-for-tmdb-matches': {
name: 'Search for TMDB Matches',
functionName: 'SearchForTmdbMatches',
info: 'Scan for TMDB matches for all unlinked AniDB anime.',
},
'update-all-tmdb-movies': {
name: 'Update All TMDB Movies',
functionName: 'UpdateAllTmdbMovies',
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 = '5.0.0.81';
export const minimumSupportedServerVersion = '5.0.0.86';

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

0 comments on commit 52beb24

Please sign in to comment.